(0) Obligation:

JBC Problem based on JBC Program:
/*
* Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* This class provides a skeletal implementation of the <tt>Collection</tt>
* interface, to minimize the effort required to implement this interface. <p>
*
* To implement an unmodifiable collection, the programmer needs only to
* extend this class and provide implementations for the <tt>iterator</tt> and
* <tt>size</tt> methods. (The iterator returned by the <tt>iterator</tt>
* method must implement <tt>hasNext</tt> and <tt>next</tt>.)<p>
*
* To implement a modifiable collection, the programmer must additionally
* override this class's <tt>add</tt> method (which otherwise throws an
* <tt>UnsupportedOperationException</tt>), and the iterator returned by the
* <tt>iterator</tt> method must additionally implement its <tt>remove</tt>
* method.<p>
*
* The programmer should generally provide a void (no argument) and
* <tt>Collection</tt> constructor, as per the recommendation in the
* <tt>Collection</tt> interface specification.<p>
*
* The documentation for each non-abstract method in this class describes its
* implementation in detail. Each of these methods may be overridden if
* the collection being implemented admits a more efficient implementation.<p>
*
* This class is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @author Josh Bloch
* @author Neal Gafter
* @see Collection
* @since 1.2
*/

public abstract class AbstractCollection<E> implements Collection<E> {
/**
* Sole constructor. (For invocation by subclass constructors, typically
* implicit.)
*/
protected AbstractCollection() {
}

// Query Operations

/**
* Returns an iterator over the elements contained in this collection.
*
* @return an iterator over the elements contained in this collection
*/
public abstract Iterator<E> iterator();

public abstract int size();

/**
* {@inheritDoc}
*
* <p>This implementation returns <tt>size() == 0</tt>.
*/
public boolean isEmpty() {
return size() == 0;
}

/**
* {@inheritDoc}
*
* <p>This implementation iterates over the elements in the collection,
* checking each element in turn for equality with the specified element.
*
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
*/
public boolean contains(Object o) {
Iterator<E> e = iterator();
if (o==null) {
while (e.hasNext())
if (e.next()==null)
return true;
} else {
while (e.hasNext())
if (o.equals(e.next()))
return true;
}
return false;
}

// Modification Operations

/**
* {@inheritDoc}
*
* <p>This implementation always throws an
* <tt>UnsupportedOperationException</tt>.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @throws IllegalArgumentException {@inheritDoc}
* @throws IllegalStateException {@inheritDoc}
*/
public boolean add(E e) {
throw new UnsupportedOperationException();
}

/**
* {@inheritDoc}
*
* <p>This implementation iterates over the collection looking for the
* specified element. If it finds the element, it removes the element
* from the collection using the iterator's remove method.
*
* <p>Note that this implementation throws an
* <tt>UnsupportedOperationException</tt> if the iterator returned by this
* collection's iterator method does not implement the <tt>remove</tt>
* method and this collection contains the specified object.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
*/
public boolean remove(Object o) {
Iterator<E> e = iterator();
if (o==null) {
while (e.hasNext()) {
if (e.next()==null) {
e.remove();
return true;
}
}
} else {
while (e.hasNext()) {
if (o.equals(e.next())) {
e.remove();
return true;
}
}
}
return false;
}


// Bulk Operations

/**
* {@inheritDoc}
*
* <p>This implementation iterates over the specified collection,
* checking each element returned by the iterator in turn to see
* if it's contained in this collection. If all elements are so
* contained <tt>true</tt> is returned, otherwise <tt>false</tt>.
*
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @see #contains(Object)
*/
public boolean containsAll(Collection<?> c) {
Iterator<?> e = c.iterator();
while (e.hasNext())
if (!contains(e.next()))
return false;
return true;
}

/**
* {@inheritDoc}
*
* <p>This implementation iterates over the specified collection, and adds
* each object returned by the iterator to this collection, in turn.
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> unless <tt>add</tt> is
* overridden (assuming the specified collection is non-empty).
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @throws IllegalArgumentException {@inheritDoc}
* @throws IllegalStateException {@inheritDoc}
*
* @see #add(Object)
*/
public boolean addAll(Collection<? extends E> c) {
boolean modified = false;
Iterator<? extends E> e = c.iterator();
while (e.hasNext()) {
if (add(e.next()))
modified = true;
}
return modified;
}

/**
* {@inheritDoc}
*
* <p>This implementation iterates over this collection, checking each
* element returned by the iterator in turn to see if it's contained
* in the specified collection. If it's so contained, it's removed from
* this collection with the iterator's <tt>remove</tt> method.
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> if the iterator returned by the
* <tt>iterator</tt> method does not implement the <tt>remove</tt> method
* and this collection contains one or more elements in common with the
* specified collection.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
*
* @see #remove(Object)
* @see #contains(Object)
*/
public boolean removeAll(Collection<?> c) {
boolean modified = false;
Iterator<?> e = iterator();
while (e.hasNext()) {
if (c.contains(e.next())) {
e.remove();
modified = true;
}
}
return modified;
}

/**
* {@inheritDoc}
*
* <p>This implementation iterates over this collection, checking each
* element returned by the iterator in turn to see if it's contained
* in the specified collection. If it's not so contained, it's removed
* from this collection with the iterator's <tt>remove</tt> method.
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> if the iterator returned by the
* <tt>iterator</tt> method does not implement the <tt>remove</tt> method
* and this collection contains one or more elements not present in the
* specified collection.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
*
* @see #remove(Object)
* @see #contains(Object)
*/
public boolean retainAll(Collection<?> c) {
boolean modified = false;
Iterator<E> e = iterator();
while (e.hasNext()) {
if (!c.contains(e.next())) {
e.remove();
modified = true;
}
}
return modified;
}

/**
* {@inheritDoc}
*
* <p>This implementation iterates over this collection, removing each
* element using the <tt>Iterator.remove</tt> operation. Most
* implementations will probably choose to override this method for
* efficiency.
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> if the iterator returned by this
* collection's <tt>iterator</tt> method does not implement the
* <tt>remove</tt> method and this collection is non-empty.
*
* @throws UnsupportedOperationException {@inheritDoc}
*/
public void clear() {
Iterator<E> e = iterator();
while (e.hasNext()) {
e.next();
e.remove();
}
}


// String conversion

/**
* Returns a string representation of this collection. The string
* representation consists of a list of the collection's elements in the
* order they are returned by its iterator, enclosed in square brackets
* (<tt>"[]"</tt>). Adjacent elements are separated by the characters
* <tt>", "</tt> (comma and space). Elements are converted to strings as
* by {@link String#valueOf(Object)}.
*
* @return a string representation of this collection
*/
public String toString() {
Iterator<E> i = iterator();
if (! i.hasNext())
return "[]";

String sb = "";
sb = sb + "[";
for (;;) {
E e = i.next();
sb = sb + (e == this ? "(this Collection)" : e);
if (! i.hasNext()) {
sb = sb + "]";
return sb;
}
sb = sb + ", ";
}
}

}


/*
* Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* This class provides a skeletal implementation of the {@link List}
* interface to minimize the effort required to implement this interface
* backed by a "random access" data store (such as an array). For sequential
* access data (such as a linked list), {@link AbstractSequentialList} should
* be used in preference to this class.
*
* <p>To implement an unmodifiable list, the programmer needs only to extend
* this class and provide implementations for the {@link #get(int)} and
* {@link List#size() size()} methods.
*
* <p>To implement a modifiable list, the programmer must additionally
* override the {@link #set(int, Object) set(int, E)} method (which otherwise
* throws an {@code UnsupportedOperationException}). If the list is
* variable-size the programmer must additionally override the
* {@link #add(int, Object) add(int, E)} and {@link #remove(int)} methods.
*
* <p>The programmer should generally provide a void (no argument) and collection
* constructor, as per the recommendation in the {@link Collection} interface
* specification.
*
* <p>Unlike the other abstract collection implementations, the programmer does
* <i>not</i> have to provide an iterator implementation; the iterator and
* list iterator are implemented by this class, on top of the "random access"
* methods:
* {@link #get(int)},
* {@link #set(int, Object) set(int, E)},
* {@link #add(int, Object) add(int, E)} and
* {@link #remove(int)}.
*
* <p>The documentation for each non-abstract method in this class describes its
* implementation in detail. Each of these methods may be overridden if the
* collection being implemented admits a more efficient implementation.
*
* <p>This class is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @author Josh Bloch
* @author Neal Gafter
* @since 1.2
*/

public abstract class AbstractList<E> extends AbstractCollection<E> implements List<E> {
/**
* Sole constructor. (For invocation by subclass constructors, typically
* implicit.)
*/
protected AbstractList() {
}

/**
* Appends the specified element to the end of this list (optional
* operation).
*
* <p>Lists that support this operation may place limitations on what
* elements may be added to this list. In particular, some
* lists will refuse to add null elements, and others will impose
* restrictions on the type of elements that may be added. List
* classes should clearly specify in their documentation any restrictions
* on what elements may be added.
*
* <p>This implementation calls {@code add(size(), e)}.
*
* <p>Note that this implementation throws an
* {@code UnsupportedOperationException} unless
* {@link #add(int, Object) add(int, E)} is overridden.
*
* @param e element to be appended to this list
* @return {@code true} (as specified by {@link Collection#add})
* @throws UnsupportedOperationException if the {@code add} operation
* is not supported by this list
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this list
* @throws NullPointerException if the specified element is null and this
* list does not permit null elements
* @throws IllegalArgumentException if some property of this element
* prevents it from being added to this list
*/
public boolean add(E e) {
add(size(), e);
return true;
}

/**
* {@inheritDoc}
*
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
abstract public E get(int index);

/**
* {@inheritDoc}
*
* <p>This implementation always throws an
* {@code UnsupportedOperationException}.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @throws IllegalArgumentException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public E set(int index, E element) {
throw new UnsupportedOperationException();
}

/**
* {@inheritDoc}
*
* <p>This implementation always throws an
* {@code UnsupportedOperationException}.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @throws IllegalArgumentException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public void add(int index, E element) {
throw new UnsupportedOperationException();
}

/**
* {@inheritDoc}
*
* <p>This implementation always throws an
* {@code UnsupportedOperationException}.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public E remove(int index) {
throw new UnsupportedOperationException();
}


// Search Operations

/**
* {@inheritDoc}
*
* <p>This implementation first gets a list iterator (with
* {@code listIterator()}). Then, it iterates over the list until the
* specified element is found or the end of the list is reached.
*
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
*/
public int indexOf(Object o) {
ListIterator<E> e = listIterator();
if (o==null) {
while (e.hasNext())
if (e.next()==null)
return e.previousIndex();
} else {
while (e.hasNext())
if (o.equals(e.next()))
return e.previousIndex();
}
return -1;
}

/**
* {@inheritDoc}
*
* <p>This implementation first gets a list iterator that points to the end
* of the list (with {@code listIterator(size())}). Then, it iterates
* backwards over the list until the specified element is found, or the
* beginning of the list is reached.
*
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
*/
public int lastIndexOf(Object o) {
ListIterator<E> e = listIterator(size());
if (o==null) {
while (e.hasPrevious())
if (e.previous()==null)
return e.nextIndex();
} else {
while (e.hasPrevious())
if (o.equals(e.previous()))
return e.nextIndex();
}
return -1;
}


// Bulk Operations

/**
* Removes all of the elements from this list (optional operation).
* The list will be empty after this call returns.
*
* <p>This implementation calls {@code removeRange(0, size())}.
*
* <p>Note that this implementation throws an
* {@code UnsupportedOperationException} unless {@code remove(int
* index)} or {@code removeRange(int fromIndex, int toIndex)} is
* overridden.
*
* @throws UnsupportedOperationException if the {@code clear} operation
* is not supported by this list
*/
public void clear() {
removeRange(0, size());
}

/**
* {@inheritDoc}
*
* <p>This implementation gets an iterator over the specified collection
* and iterates over it, inserting the elements obtained from the
* iterator into this list at the appropriate position, one at a time,
* using {@code add(int, E)}.
* Many implementations will override this method for efficiency.
*
* <p>Note that this implementation throws an
* {@code UnsupportedOperationException} unless
* {@link #add(int, Object) add(int, E)} is overridden.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @throws IllegalArgumentException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public boolean addAll(int index, Collection<? extends E> c) {
rangeCheckForAdd(index);
boolean modified = false;
Iterator<? extends E> e = c.iterator();
while (e.hasNext()) {
add(index++, e.next());
modified = true;
}
return modified;
}


// Iterators

/**
* Returns an iterator over the elements in this list in proper sequence.
*
* <p>This implementation returns a straightforward implementation of the
* iterator interface, relying on the backing list's {@code size()},
* {@code get(int)}, and {@code remove(int)} methods.
*
* <p>Note that the iterator returned by this method will throw an
* {@link UnsupportedOperationException} in response to its
* {@code remove} method unless the list's {@code remove(int)} method is
* overridden.
*
* <p>This implementation can be made to throw runtime exceptions in the
* face of concurrent modification, as described in the specification
* for the (protected) {@link #modCount} field.
*
* @return an iterator over the elements in this list in proper sequence
*/
public Iterator<E> iterator() {
return new Itr();
}

/**
* {@inheritDoc}
*
* <p>This implementation returns {@code listIterator(0)}.
*
* @see #listIterator(int)
*/
public ListIterator<E> listIterator() {
return listIterator(0);
}

/**
* {@inheritDoc}
*
* <p>This implementation returns a straightforward implementation of the
* {@code ListIterator} interface that extends the implementation of the
* {@code Iterator} interface returned by the {@code iterator()} method.
* The {@code ListIterator} implementation relies on the backing list's
* {@code get(int)}, {@code set(int, E)}, {@code add(int, E)}
* and {@code remove(int)} methods.
*
* <p>Note that the list iterator returned by this implementation will
* throw an {@link UnsupportedOperationException} in response to its
* {@code remove}, {@code set} and {@code add} methods unless the
* list's {@code remove(int)}, {@code set(int, E)}, and
* {@code add(int, E)} methods are overridden.
*
* <p>This implementation can be made to throw runtime exceptions in the
* face of concurrent modification, as described in the specification for
* the (protected) {@link #modCount} field.
*
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public ListIterator<E> listIterator(final int index) {
rangeCheckForAdd(index);

return new ListItr(index);
}

private class Itr implements Iterator<E> {
/**
* Index of element to be returned by subsequent call to next.
*/
int cursor = 0;

/**
* Index of element returned by most recent call to next or
* previous. Reset to -1 if this element is deleted by a call
* to remove.
*/
int lastRet = -1;

/**
* The modCount value that the iterator believes that the backing
* List should have. If this expectation is violated, the iterator
* has detected concurrent modification.
*/
int expectedModCount = modCount;

public boolean hasNext() {
return cursor != size();
}

public E next() {
checkForComodification();
try {
int i = cursor;
E next = get(i);
lastRet = i;
cursor = i + 1;
return next;
} catch (IndexOutOfBoundsException e) {
checkForComodification();
throw new NoSuchElementException();
}
}

public void remove() {
if (lastRet < 0)
throw new IllegalStateException();
checkForComodification();

try {
AbstractList.this.remove(lastRet);
if (lastRet < cursor)
cursor--;
lastRet = -1;
expectedModCount = modCount;
} catch (IndexOutOfBoundsException e) {
throw new ConcurrentModificationException();
}
}

final void checkForComodification() {
if (modCount != expectedModCount)
throw new ConcurrentModificationException();
}
}

private class ListItr extends Itr implements ListIterator<E> {
ListItr(int index) {
cursor = index;
}

public boolean hasPrevious() {
return cursor != 0;
}

public E previous() {
checkForComodification();
try {
int i = cursor - 1;
E previous = get(i);
lastRet = cursor = i;
return previous;
} catch (IndexOutOfBoundsException e) {
checkForComodification();
throw new NoSuchElementException();
}
}

public int nextIndex() {
return cursor;
}

public int previousIndex() {
return cursor-1;
}

public void set(E e) {
if (lastRet < 0)
throw new IllegalStateException();
checkForComodification();

try {
AbstractList.this.set(lastRet, e);
expectedModCount = modCount;
} catch (IndexOutOfBoundsException ex) {
throw new ConcurrentModificationException();
}
}

public void add(E e) {
checkForComodification();

try {
int i = cursor;
AbstractList.this.add(i, e);
lastRet = -1;
cursor = i + 1;
expectedModCount = modCount;
} catch (IndexOutOfBoundsException ex) {
throw new ConcurrentModificationException();
}
}
}

/**
* {@inheritDoc}
*
* <p>This implementation returns a list that subclasses
* {@code AbstractList}. The subclass stores, in private fields, the
* offset of the subList within the backing list, the size of the subList
* (which can change over its lifetime), and the expected
* {@code modCount} value of the backing list. There are two variants
* of the subclass, one of which implements {@code RandomAccess}.
* If this list implements {@code RandomAccess} the returned list will
* be an instance of the subclass that implements {@code RandomAccess}.
*
* <p>The subclass's {@code set(int, E)}, {@code get(int)},
* {@code add(int, E)}, {@code remove(int)}, {@code addAll(int,
* Collection)} and {@code removeRange(int, int)} methods all
* delegate to the corresponding methods on the backing abstract list,
* after bounds-checking the index and adjusting for the offset. The
* {@code addAll(Collection c)} method merely returns {@code addAll(size,
* c)}.
*
* <p>The {@code listIterator(int)} method returns a "wrapper object"
* over a list iterator on the backing list, which is created with the
* corresponding method on the backing list. The {@code iterator} method
* merely returns {@code listIterator()}, and the {@code size} method
* merely returns the subclass's {@code size} field.
*
* <p>All methods first check to see if the actual {@code modCount} of
* the backing list is equal to its expected value, and throw a
* {@code ConcurrentModificationException} if it is not.
*
* @throws IndexOutOfBoundsException if an endpoint index value is out of range
* {@code (fromIndex < 0 || toIndex > size)}
* @throws IllegalArgumentException if the endpoint indices are out of order
* {@code (fromIndex > toIndex)}
*/
public List<E> subList(int fromIndex, int toIndex) {
return (this instanceof RandomAccess ?
new RandomAccessSubList<E>(this, fromIndex, toIndex) :
new SubList<E>(this, fromIndex, toIndex));
}

// Comparison and hashing

/**
* Compares the specified object with this list for equality. Returns
* {@code true} if and only if the specified object is also a list, both
* lists have the same size, and all corresponding pairs of elements in
* the two lists are <i>equal</i>. (Two elements {@code e1} and
* {@code e2} are <i>equal</i> if {@code (e1==null ? e2==null :
* e1.equals(e2))}.) In other words, two lists are defined to be
* equal if they contain the same elements in the same order.<p>
*
* This implementation first checks if the specified object is this
* list. If so, it returns {@code true}; if not, it checks if the
* specified object is a list. If not, it returns {@code false}; if so,
* it iterates over both lists, comparing corresponding pairs of elements.
* If any comparison returns {@code false}, this method returns
* {@code false}. If either iterator runs out of elements before the
* other it returns {@code false} (as the lists are of unequal length);
* otherwise it returns {@code true} when the iterations complete.
*
* @param o the object to be compared for equality with this list
* @return {@code true} if the specified object is equal to this list
*/
public boolean equals(Object o) {
if (o == this)
return true;
if (!(o instanceof List))
return false;

ListIterator<E> e1 = listIterator();
ListIterator e2 = ((List) o).listIterator();
while(e1.hasNext() && e2.hasNext()) {
E o1 = e1.next();
Object o2 = e2.next();
if (!(o1==null ? o2==null : o1.equals(o2)))
return false;
}
return !(e1.hasNext() || e2.hasNext());
}

/**
* Returns the hash code value for this list.
*
* <p>This implementation uses exactly the code that is used to define the
* list hash function in the documentation for the {@link List#hashCode}
* method.
*
* @return the hash code value for this list
*/
public int hashCode() {
int hashCode = 1;
Iterator<E> it = this.iterator();
while (it.hasNext()) {
E e = it.next();
hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
}
return hashCode;
}

/**
* Removes from this list all of the elements whose index is between
* {@code fromIndex}, inclusive, and {@code toIndex}, exclusive.
* Shifts any succeeding elements to the left (reduces their index).
* This call shortens the list by {@code (toIndex - fromIndex)} elements.
* (If {@code toIndex==fromIndex}, this operation has no effect.)
*
* <p>This method is called by the {@code clear} operation on this list
* and its subLists. Overriding this method to take advantage of
* the internals of the list implementation can <i>substantially</i>
* improve the performance of the {@code clear} operation on this list
* and its subLists.
*
* <p>This implementation gets a list iterator positioned before
* {@code fromIndex}, and repeatedly calls {@code ListIterator.next}
* followed by {@code ListIterator.remove} until the entire range has
* been removed. <b>Note: if {@code ListIterator.remove} requires linear
* time, this implementation requires quadratic time.</b>
*
* @param fromIndex index of first element to be removed
* @param toIndex index after last element to be removed
*/
protected void removeRange(int fromIndex, int toIndex) {
ListIterator<E> it = listIterator(fromIndex);
for (int i=0, n=toIndex-fromIndex; i<n; i++) {
it.next();
it.remove();
}
}

/**
* The number of times this list has been <i>structurally modified</i>.
* Structural modifications are those that change the size of the
* list, or otherwise perturb it in such a fashion that iterations in
* progress may yield incorrect results.
*
* <p>This field is used by the iterator and list iterator implementation
* returned by the {@code iterator} and {@code listIterator} methods.
* If the value of this field changes unexpectedly, the iterator (or list
* iterator) will throw a {@code ConcurrentModificationException} in
* response to the {@code next}, {@code remove}, {@code previous},
* {@code set} or {@code add} operations. This provides
* <i>fail-fast</i> behavior, rather than non-deterministic behavior in
* the face of concurrent modification during iteration.
*
* <p><b>Use of this field by subclasses is optional.</b> If a subclass
* wishes to provide fail-fast iterators (and list iterators), then it
* merely has to increment this field in its {@code add(int, E)} and
* {@code remove(int)} methods (and any other methods that it overrides
* that result in structural modifications to the list). A single call to
* {@code add(int, E)} or {@code remove(int)} must add no more than
* one to this field, or the iterators (and list iterators) will throw
* bogus {@code ConcurrentModificationExceptions}. If an implementation
* does not wish to provide fail-fast iterators, this field may be
* ignored.
*/
protected transient int modCount = 0;

private void rangeCheckForAdd(int index) {
if (index < 0 || index > size())
throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
}

private String outOfBoundsMsg(int index) {
return "";
}
}

class SubList<E> extends AbstractList<E> {
private final AbstractList<E> l;
private final int offset;
private int size;

SubList(AbstractList<E> list, int fromIndex, int toIndex) {
if (fromIndex < 0)
throw new IndexOutOfBoundsException();
if (toIndex > list.size())
throw new IndexOutOfBoundsException();
if (fromIndex > toIndex)
throw new IllegalArgumentException();
l = list;
offset = fromIndex;
size = toIndex - fromIndex;
this.modCount = l.modCount;
}

public E set(int index, E element) {
rangeCheck(index);
checkForComodification();
return l.set(index+offset, element);
}

public E get(int index) {
rangeCheck(index);
checkForComodification();
return l.get(index+offset);
}

public int size() {
checkForComodification();
return size;
}

public void add(int index, E element) {
rangeCheckForAdd(index);
checkForComodification();
l.add(index+offset, element);
this.modCount = l.modCount;
size++;
}

public E remove(int index) {
rangeCheck(index);
checkForComodification();
E result = l.remove(index+offset);
this.modCount = l.modCount;
size--;
return result;
}

protected void removeRange(int fromIndex, int toIndex) {
checkForComodification();
l.removeRange(fromIndex+offset, toIndex+offset);
this.modCount = l.modCount;
size -= (toIndex-fromIndex);
}

public boolean addAll(Collection<? extends E> c) {
return addAll(size, c);
}

public boolean addAll(int index, Collection<? extends E> c) {
rangeCheckForAdd(index);
int cSize = c.size();
if (cSize==0)
return false;

checkForComodification();
l.addAll(offset+index, c);
this.modCount = l.modCount;
size += cSize;
return true;
}

public Iterator<E> iterator() {
return listIterator();
}

public ListIterator<E> listIterator(final int index) {
checkForComodification();
rangeCheckForAdd(index);

return new ListIterator<E>() {
private final ListIterator<E> i = l.listIterator(index+offset);

public boolean hasNext() {
return nextIndex() < size;
}

public E next() {
if (hasNext())
return i.next();
else
throw new NoSuchElementException();
}

public boolean hasPrevious() {
return previousIndex() >= 0;
}

public E previous() {
if (hasPrevious())
return i.previous();
else
throw new NoSuchElementException();
}

public int nextIndex() {
return i.nextIndex() - offset;
}

public int previousIndex() {
return i.previousIndex() - offset;
}

public void remove() {
i.remove();
SubList.this.modCount = l.modCount;
size--;
}

public void set(E e) {
i.set(e);
}

public void add(E e) {
i.add(e);
SubList.this.modCount = l.modCount;
size++;
}
};
}

public List<E> subList(int fromIndex, int toIndex) {
return new SubList<E>(this, fromIndex, toIndex);
}

private void rangeCheck(int index) {
if (index < 0 || index >= size)
throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
}

private void rangeCheckForAdd(int index) {
if (index < 0 || index > size)
throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
}

private String outOfBoundsMsg(int index) {
return "";
}

private void checkForComodification() {
if (this.modCount != l.modCount)
throw new ConcurrentModificationException();
}
}

class RandomAccessSubList<E> extends SubList<E> implements RandomAccess {
RandomAccessSubList(AbstractList<E> list, int fromIndex, int toIndex) {
super(list, fromIndex, toIndex);
}

public List<E> subList(int fromIndex, int toIndex) {
return new RandomAccessSubList<E>(this, fromIndex, toIndex);
}
}


/*
* Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* This class provides a skeletal implementation of the <tt>List</tt>
* interface to minimize the effort required to implement this interface
* backed by a "sequential access" data store (such as a linked list). For
* random access data (such as an array), <tt>AbstractList</tt> should be used
* in preference to this class.<p>
*
* This class is the opposite of the <tt>AbstractList</tt> class in the sense
* that it implements the "random access" methods (<tt>get(int index)</tt>,
* <tt>set(int index, E element)</tt>, <tt>add(int index, E element)</tt> and
* <tt>remove(int index)</tt>) on top of the list's list iterator, instead of
* the other way around.<p>
*
* To implement a list the programmer needs only to extend this class and
* provide implementations for the <tt>listIterator</tt> and <tt>size</tt>
* methods. For an unmodifiable list, the programmer need only implement the
* list iterator's <tt>hasNext</tt>, <tt>next</tt>, <tt>hasPrevious</tt>,
* <tt>previous</tt> and <tt>index</tt> methods.<p>
*
* For a modifiable list the programmer should additionally implement the list
* iterator's <tt>set</tt> method. For a variable-size list the programmer
* should additionally implement the list iterator's <tt>remove</tt> and
* <tt>add</tt> methods.<p>
*
* The programmer should generally provide a void (no argument) and collection
* constructor, as per the recommendation in the <tt>Collection</tt> interface
* specification.<p>
*
* This class is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @author Josh Bloch
* @author Neal Gafter
* @see Collection
* @see List
* @see AbstractList
* @see AbstractCollection
* @since 1.2
*/

public abstract class AbstractSequentialList<E> extends AbstractList<E> {
/**
* Sole constructor. (For invocation by subclass constructors, typically
* implicit.)
*/
protected AbstractSequentialList() {
}

/**
* Returns the element at the specified position in this list.
*
* <p>This implementation first gets a list iterator pointing to the
* indexed element (with <tt>listIterator(index)</tt>). Then, it gets
* the element using <tt>ListIterator.next</tt> and returns it.
*
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public E get(int index) {
try {
return listIterator(index).next();
} catch (NoSuchElementException exc) {
throw new IndexOutOfBoundsException();
}
}

/**
* Replaces the element at the specified position in this list with the
* specified element (optional operation).
*
* <p>This implementation first gets a list iterator pointing to the
* indexed element (with <tt>listIterator(index)</tt>). Then, it gets
* the current element using <tt>ListIterator.next</tt> and replaces it
* with <tt>ListIterator.set</tt>.
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> if the list iterator does not
* implement the <tt>set</tt> operation.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @throws IllegalArgumentException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public E set(int index, E element) {
try {
ListIterator<E> e = listIterator(index);
E oldVal = e.next();
e.set(element);
return oldVal;
} catch (NoSuchElementException exc) {
throw new IndexOutOfBoundsException();
}
}

/**
* Inserts the specified element at the specified position in this list
* (optional operation). Shifts the element currently at that position
* (if any) and any subsequent elements to the right (adds one to their
* indices).
*
* <p>This implementation first gets a list iterator pointing to the
* indexed element (with <tt>listIterator(index)</tt>). Then, it
* inserts the specified element with <tt>ListIterator.add</tt>.
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> if the list iterator does not
* implement the <tt>add</tt> operation.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @throws IllegalArgumentException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public void add(int index, E element) {
try {
listIterator(index).add(element);
} catch (NoSuchElementException exc) {
throw new IndexOutOfBoundsException();
}
}

/**
* Removes the element at the specified position in this list (optional
* operation). Shifts any subsequent elements to the left (subtracts one
* from their indices). Returns the element that was removed from the
* list.
*
* <p>This implementation first gets a list iterator pointing to the
* indexed element (with <tt>listIterator(index)</tt>). Then, it removes
* the element with <tt>ListIterator.remove</tt>.
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> if the list iterator does not
* implement the <tt>remove</tt> operation.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public E remove(int index) {
try {
ListIterator<E> e = listIterator(index);
E outCast = e.next();
e.remove();
return outCast;
} catch (NoSuchElementException exc) {
throw new IndexOutOfBoundsException();
}
}


// Bulk Operations

/**
* Inserts all of the elements in the specified collection into this
* list at the specified position (optional operation). Shifts the
* element currently at that position (if any) and any subsequent
* elements to the right (increases their indices). The new elements
* will appear in this list in the order that they are returned by the
* specified collection's iterator. The behavior of this operation is
* undefined if the specified collection is modified while the
* operation is in progress. (Note that this will occur if the specified
* collection is this list, and it's nonempty.)
*
* <p>This implementation gets an iterator over the specified collection and
* a list iterator over this list pointing to the indexed element (with
* <tt>listIterator(index)</tt>). Then, it iterates over the specified
* collection, inserting the elements obtained from the iterator into this
* list, one at a time, using <tt>ListIterator.add</tt> followed by
* <tt>ListIterator.next</tt> (to skip over the added element).
*
* <p>Note that this implementation will throw an
* <tt>UnsupportedOperationException</tt> if the list iterator returned by
* the <tt>listIterator</tt> method does not implement the <tt>add</tt>
* operation.
*
* @throws UnsupportedOperationException {@inheritDoc}
* @throws ClassCastException {@inheritDoc}
* @throws NullPointerException {@inheritDoc}
* @throws IllegalArgumentException {@inheritDoc}
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public boolean addAll(int index, Collection<? extends E> c) {
try {
boolean modified = false;
ListIterator<E> e1 = listIterator(index);
Iterator<? extends E> e2 = c.iterator();
while (e2.hasNext()) {
e1.add(e2.next());
modified = true;
}
return modified;
} catch (NoSuchElementException exc) {
throw new IndexOutOfBoundsException();
}
}


// Iterators

/**
* Returns an iterator over the elements in this list (in proper
* sequence).<p>
*
* This implementation merely returns a list iterator over the list.
*
* @return an iterator over the elements in this list (in proper sequence)
*/
public Iterator<E> iterator() {
return listIterator();
}

/**
* Returns a list iterator over the elements in this list (in proper
* sequence).
*
* @param index index of first element to be returned from the list
* iterator (by a call to the <code>next</code> method)
* @return a list iterator over the elements in this list (in proper
* sequence)
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public abstract ListIterator<E> listIterator(int index);
}


/*
* Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* The root interface in the <i>collection hierarchy</i>. A collection
* represents a group of objects, known as its <i>elements</i>. Some
* collections allow duplicate elements and others do not. Some are ordered
* and others unordered. The JDK does not provide any <i>direct</i>
* implementations of this interface: it provides implementations of more
* specific subinterfaces like <tt>Set</tt> and <tt>List</tt>. This interface
* is typically used to pass collections around and manipulate them where
* maximum generality is desired.
*
* <p><i>Bags</i> or <i>multisets</i> (unordered collections that may contain
* duplicate elements) should implement this interface directly.
*
* <p>All general-purpose <tt>Collection</tt> implementation classes (which
* typically implement <tt>Collection</tt> indirectly through one of its
* subinterfaces) should provide two "standard" constructors: a void (no
* arguments) constructor, which creates an empty collection, and a
* constructor with a single argument of type <tt>Collection</tt>, which
* creates a new collection with the same elements as its argument. In
* effect, the latter constructor allows the user to copy any collection,
* producing an equivalent collection of the desired implementation type.
* There is no way to enforce this convention (as interfaces cannot contain
* constructors) but all of the general-purpose <tt>Collection</tt>
* implementations in the Java platform libraries comply.
*
* <p>The "destructive" methods contained in this interface, that is, the
* methods that modify the collection on which they operate, are specified to
* throw <tt>UnsupportedOperationException</tt> if this collection does not
* support the operation. If this is the case, these methods may, but are not
* required to, throw an <tt>UnsupportedOperationException</tt> if the
* invocation would have no effect on the collection. For example, invoking
* the {@link #addAll(Collection)} method on an unmodifiable collection may,
* but is not required to, throw the exception if the collection to be added
* is empty.
*
* <p>Some collection implementations have restrictions on the elements that
* they may contain. For example, some implementations prohibit null elements,
* and some have restrictions on the types of their elements. Attempting to
* add an ineligible element throws an unchecked exception, typically
* <tt>NullPointerException</tt> or <tt>ClassCastException</tt>. Attempting
* to query the presence of an ineligible element may throw an exception,
* or it may simply return false; some implementations will exhibit the former
* behavior and some will exhibit the latter. More generally, attempting an
* operation on an ineligible element whose completion would not result in
* the insertion of an ineligible element into the collection may throw an
* exception or it may succeed, at the option of the implementation.
* Such exceptions are marked as "optional" in the specification for this
* interface.
*
* <p>It is up to each collection to determine its own synchronization
* policy. In the absence of a stronger guarantee by the
* implementation, undefined behavior may result from the invocation
* of any method on a collection that is being mutated by another
* thread; this includes direct invocations, passing the collection to
* a method that might perform invocations, and using an existing
* iterator to examine the collection.
*
* <p>Many methods in Collections Framework interfaces are defined in
* terms of the {@link Object#equals(Object) equals} method. For example,
* the specification for the {@link #contains(Object) contains(Object o)}
* method says: "returns <tt>true</tt> if and only if this collection
* contains at least one element <tt>e</tt> such that
* <tt>(o==null ? e==null : o.equals(e))</tt>." This specification should
* <i>not</i> be construed to imply that invoking <tt>Collection.contains</tt>
* with a non-null argument <tt>o</tt> will cause <tt>o.equals(e)</tt> to be
* invoked for any element <tt>e</tt>. Implementations are free to implement
* optimizations whereby the <tt>equals</tt> invocation is avoided, for
* example, by first comparing the hash codes of the two elements. (The
* {@link Object#hashCode()} specification guarantees that two objects with
* unequal hash codes cannot be equal.) More generally, implementations of
* the various Collections Framework interfaces are free to take advantage of
* the specified behavior of underlying {@link Object} methods wherever the
* implementor deems it appropriate.
*
* <p>This interface is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @author Josh Bloch
* @author Neal Gafter
* @see Set
* @see List
* @see Map
* @see SortedSet
* @see SortedMap
* @see HashSet
* @see TreeSet
* @see ArrayList
* @see LinkedList
* @see Vector
* @see Collections
* @see Arrays
* @see AbstractCollection
* @since 1.2
*/

public interface Collection<E> {
// Query Operations

/**
* Returns the number of elements in this collection. If this collection
* contains more than <tt>Integer.MAX_VALUE</tt> elements, returns
* <tt>Integer.MAX_VALUE</tt>.
*
* @return the number of elements in this collection
*/
int size();

/**
* Returns <tt>true</tt> if this collection contains no elements.
*
* @return <tt>true</tt> if this collection contains no elements
*/
boolean isEmpty();

/**
* Returns <tt>true</tt> if this collection contains the specified element.
* More formally, returns <tt>true</tt> if and only if this collection
* contains at least one element <tt>e</tt> such that
* <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
*
* @param o element whose presence in this collection is to be tested
* @return <tt>true</tt> if this collection contains the specified
* element
* @throws ClassCastException if the type of the specified element
* is incompatible with this collection (optional)
* @throws NullPointerException if the specified element is null and this
* collection does not permit null elements (optional)
*/
boolean contains(Object o);

/**
* Returns an iterator over the elements in this collection. There are no
* guarantees concerning the order in which the elements are returned
* (unless this collection is an instance of some class that provides a
* guarantee).
*
* @return an <tt>Iterator</tt> over the elements in this collection
*/
Iterator<E> iterator();

// Modification Operations

/**
* Ensures that this collection contains the specified element (optional
* operation). Returns <tt>true</tt> if this collection changed as a
* result of the call. (Returns <tt>false</tt> if this collection does
* not permit duplicates and already contains the specified element.)<p>
*
* Collections that support this operation may place limitations on what
* elements may be added to this collection. In particular, some
* collections will refuse to add <tt>null</tt> elements, and others will
* impose restrictions on the type of elements that may be added.
* Collection classes should clearly specify in their documentation any
* restrictions on what elements may be added.<p>
*
* If a collection refuses to add a particular element for any reason
* other than that it already contains the element, it <i>must</i> throw
* an exception (rather than returning <tt>false</tt>). This preserves
* the invariant that a collection always contains the specified element
* after this call returns.
*
* @param e element whose presence in this collection is to be ensured
* @return <tt>true</tt> if this collection changed as a result of the
* call
* @throws UnsupportedOperationException if the <tt>add</tt> operation
* is not supported by this collection
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this collection
* @throws NullPointerException if the specified element is null and this
* collection does not permit null elements
* @throws IllegalArgumentException if some property of the element
* prevents it from being added to this collection
* @throws IllegalStateException if the element cannot be added at this
* time due to insertion restrictions
*/
boolean add(E e);

/**
* Removes a single instance of the specified element from this
* collection, if it is present (optional operation). More formally,
* removes an element <tt>e</tt> such that
* <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>, if
* this collection contains one or more such elements. Returns
* <tt>true</tt> if this collection contained the specified element (or
* equivalently, if this collection changed as a result of the call).
*
* @param o element to be removed from this collection, if present
* @return <tt>true</tt> if an element was removed as a result of this call
* @throws ClassCastException if the type of the specified element
* is incompatible with this collection (optional)
* @throws NullPointerException if the specified element is null and this
* collection does not permit null elements (optional)
* @throws UnsupportedOperationException if the <tt>remove</tt> operation
* is not supported by this collection
*/
boolean remove(Object o);


// Bulk Operations

/**
* Returns <tt>true</tt> if this collection contains all of the elements
* in the specified collection.
*
* @param c collection to be checked for containment in this collection
* @return <tt>true</tt> if this collection contains all of the elements
* in the specified collection
* @throws ClassCastException if the types of one or more elements
* in the specified collection are incompatible with this
* collection (optional)
* @throws NullPointerException if the specified collection contains one
* or more null elements and this collection does not permit null
* elements (optional), or if the specified collection is null
* @see #contains(Object)
*/
boolean containsAll(Collection<?> c);

/**
* Adds all of the elements in the specified collection to this collection
* (optional operation). The behavior of this operation is undefined if
* the specified collection is modified while the operation is in progress.
* (This implies that the behavior of this call is undefined if the
* specified collection is this collection, and this collection is
* nonempty.)
*
* @param c collection containing elements to be added to this collection
* @return <tt>true</tt> if this collection changed as a result of the call
* @throws UnsupportedOperationException if the <tt>addAll</tt> operation
* is not supported by this collection
* @throws ClassCastException if the class of an element of the specified
* collection prevents it from being added to this collection
* @throws NullPointerException if the specified collection contains a
* null element and this collection does not permit null elements,
* or if the specified collection is null
* @throws IllegalArgumentException if some property of an element of the
* specified collection prevents it from being added to this
* collection
* @throws IllegalStateException if not all the elements can be added at
* this time due to insertion restrictions
* @see #add(Object)
*/
boolean addAll(Collection<? extends E> c);

/**
* Removes all of this collection's elements that are also contained in the
* specified collection (optional operation). After this call returns,
* this collection will contain no elements in common with the specified
* collection.
*
* @param c collection containing elements to be removed from this collection
* @return <tt>true</tt> if this collection changed as a result of the
* call
* @throws UnsupportedOperationException if the <tt>removeAll</tt> method
* is not supported by this collection
* @throws ClassCastException if the types of one or more elements
* in this collection are incompatible with the specified
* collection (optional)
* @throws NullPointerException if this collection contains one or more
* null elements and the specified collection does not support
* null elements (optional), or if the specified collection is null
* @see #remove(Object)
* @see #contains(Object)
*/
boolean removeAll(Collection<?> c);

/**
* Retains only the elements in this collection that are contained in the
* specified collection (optional operation). In other words, removes from
* this collection all of its elements that are not contained in the
* specified collection.
*
* @param c collection containing elements to be retained in this collection
* @return <tt>true</tt> if this collection changed as a result of the call
* @throws UnsupportedOperationException if the <tt>retainAll</tt> operation
* is not supported by this collection
* @throws ClassCastException if the types of one or more elements
* in this collection are incompatible with the specified
* collection (optional)
* @throws NullPointerException if this collection contains one or more
* null elements and the specified collection does not permit null
* elements (optional), or if the specified collection is null
* @see #remove(Object)
* @see #contains(Object)
*/
boolean retainAll(Collection<?> c);

/**
* Removes all of the elements from this collection (optional operation).
* The collection will be empty after this method returns.
*
* @throws UnsupportedOperationException if the <tt>clear</tt> operation
* is not supported by this collection
*/
void clear();


// Comparison and hashing

/**
* Compares the specified object with this collection for equality. <p>
*
* While the <tt>Collection</tt> interface adds no stipulations to the
* general contract for the <tt>Object.equals</tt>, programmers who
* implement the <tt>Collection</tt> interface "directly" (in other words,
* create a class that is a <tt>Collection</tt> but is not a <tt>Set</tt>
* or a <tt>List</tt>) must exercise care if they choose to override the
* <tt>Object.equals</tt>. It is not necessary to do so, and the simplest
* course of action is to rely on <tt>Object</tt>'s implementation, but
* the implementor may wish to implement a "value comparison" in place of
* the default "reference comparison." (The <tt>List</tt> and
* <tt>Set</tt> interfaces mandate such value comparisons.)<p>
*
* The general contract for the <tt>Object.equals</tt> method states that
* equals must be symmetric (in other words, <tt>a.equals(b)</tt> if and
* only if <tt>b.equals(a)</tt>). The contracts for <tt>List.equals</tt>
* and <tt>Set.equals</tt> state that lists are only equal to other lists,
* and sets to other sets. Thus, a custom <tt>equals</tt> method for a
* collection class that implements neither the <tt>List</tt> nor
* <tt>Set</tt> interface must return <tt>false</tt> when this collection
* is compared to any list or set. (By the same logic, it is not possible
* to write a class that correctly implements both the <tt>Set</tt> and
* <tt>List</tt> interfaces.)
*
* @param o object to be compared for equality with this collection
* @return <tt>true</tt> if the specified object is equal to this
* collection
*
* @see Object#equals(Object)
* @see Set#equals(Object)
* @see List#equals(Object)
*/
boolean equals(Object o);

/**
* Returns the hash code value for this collection. While the
* <tt>Collection</tt> interface adds no stipulations to the general
* contract for the <tt>Object.hashCode</tt> method, programmers should
* take note that any class that overrides the <tt>Object.equals</tt>
* method must also override the <tt>Object.hashCode</tt> method in order
* to satisfy the general contract for the <tt>Object.hashCode</tt>method.
* In particular, <tt>c1.equals(c2)</tt> implies that
* <tt>c1.hashCode()==c2.hashCode()</tt>.
*
* @return the hash code value for this collection
*
* @see Object#hashCode()
* @see Object#equals(Object)
*/
int hashCode();
}


/*
* Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* This exception may be thrown by methods that have detected concurrent
* modification of an object when such modification is not permissible.
* <p>
* For example, it is not generally permissible for one thread to modify a Collection
* while another thread is iterating over it. In general, the results of the
* iteration are undefined under these circumstances. Some Iterator
* implementations (including those of all the general purpose collection implementations
* provided by the JRE) may choose to throw this exception if this behavior is
* detected. Iterators that do this are known as <i>fail-fast</i> iterators,
* as they fail quickly and cleanly, rather that risking arbitrary,
* non-deterministic behavior at an undetermined time in the future.
* <p>
* Note that this exception does not always indicate that an object has
* been concurrently modified by a <i>different</i> thread. If a single
* thread issues a sequence of method invocations that violates the
* contract of an object, the object may throw this exception. For
* example, if a thread modifies a collection directly while it is
* iterating over the collection with a fail-fast iterator, the iterator
* will throw this exception.
*
* <p>Note that fail-fast behavior cannot be guaranteed as it is, generally
* speaking, impossible to make any hard guarantees in the presence of
* unsynchronized concurrent modification. Fail-fast operations
* throw <tt>ConcurrentModificationException</tt> on a best-effort basis.
* Therefore, it would be wrong to write a program that depended on this
* exception for its correctness: <i><tt>ConcurrentModificationException</tt>
* should be used only to detect bugs.</i>
*
* @author Josh Bloch
* @see Collection
* @see Iterator
* @see ListIterator
* @see Vector
* @see LinkedList
* @see HashSet
* @see Hashtable
* @see TreeMap
* @see AbstractList
* @since 1.2
*/
public class ConcurrentModificationException extends RuntimeException {
/**
* Constructs a ConcurrentModificationException with no
* detail message.
*/
public ConcurrentModificationException() {
}

/**
* Constructs a <tt>ConcurrentModificationException</tt> with the
* specified detail message.
*
* @param message the detail message pertaining to this exception.
*/
public ConcurrentModificationException(String message) {
super(message);
}
}


/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

/*
* This file is available under and governed by the GNU General Public
* License version 2 only, as published by the Free Software Foundation.
* However, the following notice accompanied the original version of this
* file:
*
* Written by Doug Lea and Josh Bloch with assistance from members of
* JCP JSR-166 Expert Group and released to the public domain, as explained
* at http://creativecommons.org/licenses/publicdomain
*/

package javaUtilEx;

/**
* A linear collection that supports element insertion and removal at
* both ends. The name <i>deque</i> is short for "double ended queue"
* and is usually pronounced "deck". Most <tt>Deque</tt>
* implementations place no fixed limits on the number of elements
* they may contain, but this interface supports capacity-restricted
* deques as well as those with no fixed size limit.
*
* <p>This interface defines methods to access the elements at both
* ends of the deque. Methods are provided to insert, remove, and
* examine the element. Each of these methods exists in two forms:
* one throws an exception if the operation fails, the other returns a
* special value (either <tt>null</tt> or <tt>false</tt>, depending on
* the operation). The latter form of the insert operation is
* designed specifically for use with capacity-restricted
* <tt>Deque</tt> implementations; in most implementations, insert
* operations cannot fail.
*
* <p>The twelve methods described above are summarized in the
* following table:
*
* <p>
* <table BORDER CELLPADDING=3 CELLSPACING=1>
* <tr>
* <td></td>
* <td ALIGN=CENTER COLSPAN = 2> <b>First Element (Head)</b></td>
* <td ALIGN=CENTER COLSPAN = 2> <b>Last Element (Tail)</b></td>
* </tr>
* <tr>
* <td></td>
* <td ALIGN=CENTER><em>Throws exception</em></td>
* <td ALIGN=CENTER><em>Special value</em></td>
* <td ALIGN=CENTER><em>Throws exception</em></td>
* <td ALIGN=CENTER><em>Special value</em></td>
* </tr>
* <tr>
* <td><b>Insert</b></td>
* <td>{@link #addFirst addFirst(e)}</td>
* <td>{@link #offerFirst offerFirst(e)}</td>
* <td>{@link #addLast addLast(e)}</td>
* <td>{@link #offerLast offerLast(e)}</td>
* </tr>
* <tr>
* <td><b>Remove</b></td>
* <td>{@link #removeFirst removeFirst()}</td>
* <td>{@link #pollFirst pollFirst()}</td>
* <td>{@link #removeLast removeLast()}</td>
* <td>{@link #pollLast pollLast()}</td>
* </tr>
* <tr>
* <td><b>Examine</b></td>
* <td>{@link #getFirst getFirst()}</td>
* <td>{@link #peekFirst peekFirst()}</td>
* <td>{@link #getLast getLast()}</td>
* <td>{@link #peekLast peekLast()}</td>
* </tr>
* </table>
*
* <p>This interface extends the {@link Queue} interface. When a deque is
* used as a queue, FIFO (First-In-First-Out) behavior results. Elements are
* added at the end of the deque and removed from the beginning. The methods
* inherited from the <tt>Queue</tt> interface are precisely equivalent to
* <tt>Deque</tt> methods as indicated in the following table:
*
* <p>
* <table BORDER CELLPADDING=3 CELLSPACING=1>
* <tr>
* <td ALIGN=CENTER> <b><tt>Queue</tt> Method</b></td>
* <td ALIGN=CENTER> <b>Equivalent <tt>Deque</tt> Method</b></td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#add add(e)}</td>
* <td>{@link #addLast addLast(e)}</td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#offer offer(e)}</td>
* <td>{@link #offerLast offerLast(e)}</td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#remove remove()}</td>
* <td>{@link #removeFirst removeFirst()}</td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#poll poll()}</td>
* <td>{@link #pollFirst pollFirst()}</td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#element element()}</td>
* <td>{@link #getFirst getFirst()}</td>
* </tr>
* <tr>
* <td>{@link java.util.Queue#peek peek()}</td>
* <td>{@link #peek peekFirst()}</td>
* </tr>
* </table>
*
* <p>Deques can also be used as LIFO (Last-In-First-Out) stacks. This
* interface should be used in preference to the legacy {@link Stack} class.
* When a deque is used as a stack, elements are pushed and popped from the
* beginning of the deque. Stack methods are precisely equivalent to
* <tt>Deque</tt> methods as indicated in the table below:
*
* <p>
* <table BORDER CELLPADDING=3 CELLSPACING=1>
* <tr>
* <td ALIGN=CENTER> <b>Stack Method</b></td>
* <td ALIGN=CENTER> <b>Equivalent <tt>Deque</tt> Method</b></td>
* </tr>
* <tr>
* <td>{@link #push push(e)}</td>
* <td>{@link #addFirst addFirst(e)}</td>
* </tr>
* <tr>
* <td>{@link #pop pop()}</td>
* <td>{@link #removeFirst removeFirst()}</td>
* </tr>
* <tr>
* <td>{@link #peek peek()}</td>
* <td>{@link #peekFirst peekFirst()}</td>
* </tr>
* </table>
*
* <p>Note that the {@link #peek peek} method works equally well when
* a deque is used as a queue or a stack; in either case, elements are
* drawn from the beginning of the deque.
*
* <p>This interface provides two methods to remove interior
* elements, {@link #removeFirstOccurrence removeFirstOccurrence} and
* {@link #removeLastOccurrence removeLastOccurrence}.
*
* <p>Unlike the {@link List} interface, this interface does not
* provide support for indexed access to elements.
*
* <p>While <tt>Deque</tt> implementations are not strictly required
* to prohibit the insertion of null elements, they are strongly
* encouraged to do so. Users of any <tt>Deque</tt> implementations
* that do allow null elements are strongly encouraged <i>not</i> to
* take advantage of the ability to insert nulls. This is so because
* <tt>null</tt> is used as a special return value by various methods
* to indicated that the deque is empty.
*
* <p><tt>Deque</tt> implementations generally do not define
* element-based versions of the <tt>equals</tt> and <tt>hashCode</tt>
* methods, but instead inherit the identity-based versions from class
* <tt>Object</tt>.
*
* <p>This interface is a member of the <a
* href="{@docRoot}/../technotes/guides/collections/index.html"> Java Collections
* Framework</a>.
*
* @author Doug Lea
* @author Josh Bloch
* @since 1.6
* @param <E> the type of elements held in this collection
*/

public interface Deque<E> extends Queue<E> {
/**
* Inserts the specified element at the front of this deque if it is
* possible to do so immediately without violating capacity restrictions.
* When using a capacity-restricted deque, it is generally preferable to
* use method {@link #offerFirst}.
*
* @param e the element to add
* @throws IllegalStateException if the element cannot be added at this
* time due to capacity restrictions
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
void addFirst(E e);

/**
* Inserts the specified element at the end of this deque if it is
* possible to do so immediately without violating capacity restrictions.
* When using a capacity-restricted deque, it is generally preferable to
* use method {@link #offerLast}.
*
* <p>This method is equivalent to {@link #add}.
*
* @param e the element to add
* @throws IllegalStateException if the element cannot be added at this
* time due to capacity restrictions
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
void addLast(E e);

/**
* Inserts the specified element at the front of this deque unless it would
* violate capacity restrictions. When using a capacity-restricted deque,
* this method is generally preferable to the {@link #addFirst} method,
* which can fail to insert an element only by throwing an exception.
*
* @param e the element to add
* @return <tt>true</tt> if the element was added to this deque, else
* <tt>false</tt>
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
boolean offerFirst(E e);

/**
* Inserts the specified element at the end of this deque unless it would
* violate capacity restrictions. When using a capacity-restricted deque,
* this method is generally preferable to the {@link #addLast} method,
* which can fail to insert an element only by throwing an exception.
*
* @param e the element to add
* @return <tt>true</tt> if the element was added to this deque, else
* <tt>false</tt>
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
boolean offerLast(E e);

/**
* Retrieves and removes the first element of this deque. This method
* differs from {@link #pollFirst pollFirst} only in that it throws an
* exception if this deque is empty.
*
* @return the head of this deque
* @throws NoSuchElementException if this deque is empty
*/
E removeFirst();

/**
* Retrieves and removes the last element of this deque. This method
* differs from {@link #pollLast pollLast} only in that it throws an
* exception if this deque is empty.
*
* @return the tail of this deque
* @throws NoSuchElementException if this deque is empty
*/
E removeLast();

/**
* Retrieves and removes the first element of this deque,
* or returns <tt>null</tt> if this deque is empty.
*
* @return the head of this deque, or <tt>null</tt> if this deque is empty
*/
E pollFirst();

/**
* Retrieves and removes the last element of this deque,
* or returns <tt>null</tt> if this deque is empty.
*
* @return the tail of this deque, or <tt>null</tt> if this deque is empty
*/
E pollLast();

/**
* Retrieves, but does not remove, the first element of this deque.
*
* This method differs from {@link #peekFirst peekFirst} only in that it
* throws an exception if this deque is empty.
*
* @return the head of this deque
* @throws NoSuchElementException if this deque is empty
*/
E getFirst();

/**
* Retrieves, but does not remove, the last element of this deque.
* This method differs from {@link #peekLast peekLast} only in that it
* throws an exception if this deque is empty.
*
* @return the tail of this deque
* @throws NoSuchElementException if this deque is empty
*/
E getLast();

/**
* Retrieves, but does not remove, the first element of this deque,
* or returns <tt>null</tt> if this deque is empty.
*
* @return the head of this deque, or <tt>null</tt> if this deque is empty
*/
E peekFirst();

/**
* Retrieves, but does not remove, the last element of this deque,
* or returns <tt>null</tt> if this deque is empty.
*
* @return the tail of this deque, or <tt>null</tt> if this deque is empty
*/
E peekLast();

/**
* Removes the first occurrence of the specified element from this deque.
* If the deque does not contain the element, it is unchanged.
* More formally, removes the first element <tt>e</tt> such that
* <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
* (if such an element exists).
* Returns <tt>true</tt> if this deque contained the specified element
* (or equivalently, if this deque changed as a result of the call).
*
* @param o element to be removed from this deque, if present
* @return <tt>true</tt> if an element was removed as a result of this call
* @throws ClassCastException if the class of the specified element
* is incompatible with this deque (optional)
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements (optional)
*/
boolean removeFirstOccurrence(Object o);

/**
* Removes the last occurrence of the specified element from this deque.
* If the deque does not contain the element, it is unchanged.
* More formally, removes the last element <tt>e</tt> such that
* <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
* (if such an element exists).
* Returns <tt>true</tt> if this deque contained the specified element
* (or equivalently, if this deque changed as a result of the call).
*
* @param o element to be removed from this deque, if present
* @return <tt>true</tt> if an element was removed as a result of this call
* @throws ClassCastException if the class of the specified element
* is incompatible with this deque (optional)
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements (optional)
*/
boolean removeLastOccurrence(Object o);

// *** Queue methods ***

/**
* Inserts the specified element into the queue represented by this deque
* (in other words, at the tail of this deque) if it is possible to do so
* immediately without violating capacity restrictions, returning
* <tt>true</tt> upon success and throwing an
* <tt>IllegalStateException</tt> if no space is currently available.
* When using a capacity-restricted deque, it is generally preferable to
* use {@link #offer(Object) offer}.
*
* <p>This method is equivalent to {@link #addLast}.
*
* @param e the element to add
* @return <tt>true</tt> (as specified by {@link Collection#add})
* @throws IllegalStateException if the element cannot be added at this
* time due to capacity restrictions
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
boolean add(E e);

/**
* Inserts the specified element into the queue represented by this deque
* (in other words, at the tail of this deque) if it is possible to do so
* immediately without violating capacity restrictions, returning
* <tt>true</tt> upon success and <tt>false</tt> if no space is currently
* available. When using a capacity-restricted deque, this method is
* generally preferable to the {@link #add} method, which can fail to
* insert an element only by throwing an exception.
*
* <p>This method is equivalent to {@link #offerLast}.
*
* @param e the element to add
* @return <tt>true</tt> if the element was added to this deque, else
* <tt>false</tt>
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
boolean offer(E e);

/**
* Retrieves and removes the head of the queue represented by this deque
* (in other words, the first element of this deque).
* This method differs from {@link #poll poll} only in that it throws an
* exception if this deque is empty.
*
* <p>This method is equivalent to {@link #removeFirst()}.
*
* @return the head of the queue represented by this deque
* @throws NoSuchElementException if this deque is empty
*/
E remove();

/**
* Retrieves and removes the head of the queue represented by this deque
* (in other words, the first element of this deque), or returns
* <tt>null</tt> if this deque is empty.
*
* <p>This method is equivalent to {@link #pollFirst()}.
*
* @return the first element of this deque, or <tt>null</tt> if
* this deque is empty
*/
E poll();

/**
* Retrieves, but does not remove, the head of the queue represented by
* this deque (in other words, the first element of this deque).
* This method differs from {@link #peek peek} only in that it throws an
* exception if this deque is empty.
*
* <p>This method is equivalent to {@link #getFirst()}.
*
* @return the head of the queue represented by this deque
* @throws NoSuchElementException if this deque is empty
*/
E element();

/**
* Retrieves, but does not remove, the head of the queue represented by
* this deque (in other words, the first element of this deque), or
* returns <tt>null</tt> if this deque is empty.
*
* <p>This method is equivalent to {@link #peekFirst()}.
*
* @return the head of the queue represented by this deque, or
* <tt>null</tt> if this deque is empty
*/
E peek();


// *** Stack methods ***

/**
* Pushes an element onto the stack represented by this deque (in other
* words, at the head of this deque) if it is possible to do so
* immediately without violating capacity restrictions, returning
* <tt>true</tt> upon success and throwing an
* <tt>IllegalStateException</tt> if no space is currently available.
*
* <p>This method is equivalent to {@link #addFirst}.
*
* @param e the element to push
* @throws IllegalStateException if the element cannot be added at this
* time due to capacity restrictions
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this deque
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this deque
*/
void push(E e);

/**
* Pops an element from the stack represented by this deque. In other
* words, removes and returns the first element of this deque.
*
* <p>This method is equivalent to {@link #removeFirst()}.
*
* @return the element at the front of this deque (which is the top
* of the stack represented by this deque)
* @throws NoSuchElementException if this deque is empty
*/
E pop();


// *** Collection methods ***

/**
* Removes the first occurrence of the specified element from this deque.
* If the deque does not contain the element, it is unchanged.
* More formally, removes the first element <tt>e</tt> such that
* <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
* (if such an element exists).
* Returns <tt>true</tt> if this deque contained the specified element
* (or equivalently, if this deque changed as a result of the call).
*
* <p>This method is equivalent to {@link #removeFirstOccurrence}.
*
* @param o element to be removed from this deque, if present
* @return <tt>true</tt> if an element was removed as a result of this call
* @throws ClassCastException if the class of the specified element
* is incompatible with this deque (optional)
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements (optional)
*/
boolean remove(Object o);

/**
* Returns <tt>true</tt> if this deque contains the specified element.
* More formally, returns <tt>true</tt> if and only if this deque contains
* at least one element <tt>e</tt> such that
* <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
*
* @param o element whose presence in this deque is to be tested
* @return <tt>true</tt> if this deque contains the specified element
* @throws ClassCastException if the type of the specified element
* is incompatible with this deque (optional)
* @throws NullPointerException if the specified element is null and this
* deque does not permit null elements (optional)
*/
boolean contains(Object o);

/**
* Returns the number of elements in this deque.
*
* @return the number of elements in this deque
*/
public int size();

/**
* Returns an iterator over the elements in this deque in proper sequence.
* The elements will be returned in order from first (head) to last (tail).
*
* @return an iterator over the elements in this deque in proper sequence
*/
Iterator<E> iterator();

/**
* Returns an iterator over the elements in this deque in reverse
* sequential order. The elements will be returned in order from
* last (tail) to first (head).
*
* @return an iterator over the elements in this deque in reverse
* sequence
*/
Iterator<E> descendingIterator();

}


/*
* Copyright 1994-2003 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* Thrown to indicate that a method has been passed an illegal or
* inappropriate argument.
*
* @author unascribed
* @see java.lang.Thread#setPriority(int)
* @since JDK1.0
*/
public
class IllegalArgumentException extends RuntimeException {
/**
* Constructs an <code>IllegalArgumentException</code> with no
* detail message.
*/
public IllegalArgumentException() {
super();
}

/**
* Constructs an <code>IllegalArgumentException</code> with the
* specified detail message.
*
* @param s the detail message.
*/
public IllegalArgumentException(String s) {
super(s);
}

/**
* Constructs a new exception with the specified detail message and
* cause.
*
* <p>Note that the detail message associated with <code>cause</code> is
* <i>not</i> automatically incorporated in this exception's detail
* message.
*
* @param message the detail message (which is saved for later retrieval
* by the {@link Throwable#getMessage()} method).
* @param cause the cause (which is saved for later retrieval by the
* {@link Throwable#getCause()} method). (A <tt>null</tt> value
* is permitted, and indicates that the cause is nonexistent or
* unknown.)
* @since 1.5
*/
public IllegalArgumentException(String message, Throwable cause) {
super(message, cause);
}

/**
* Constructs a new exception with the specified cause and a detail
* message of <tt>(cause==null ? null : cause.toString())</tt> (which
* typically contains the class and detail message of <tt>cause</tt>).
* This constructor is useful for exceptions that are little more than
* wrappers for other throwables (for example, {@link
* java.security.PrivilegedActionException}).
*
* @param cause the cause (which is saved for later retrieval by the
* {@link Throwable#getCause()} method). (A <tt>null</tt> value is
* permitted, and indicates that the cause is nonexistent or
* unknown.)
* @since 1.5
*/
public IllegalArgumentException(Throwable cause) {
super(cause);
}

private static final long serialVersionUID = -5365630128856068164L;
}


/*
* Copyright 1996-2003 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* Signals that a method has been invoked at an illegal or
* inappropriate time. In other words, the Java environment or
* Java application is not in an appropriate state for the requested
* operation.
*
* @author Jonni Kanerva
* @since JDK1.1
*/
public
class IllegalStateException extends RuntimeException {
/**
* Constructs an IllegalStateException with no detail message.
* A detail message is a String that describes this particular exception.
*/
public IllegalStateException() {
super();
}

/**
* Constructs an IllegalStateException with the specified detail
* message. A detail message is a String that describes this particular
* exception.
*
* @param s the String that contains a detailed message
*/
public IllegalStateException(String s) {
super(s);
}

/**
* Constructs a new exception with the specified detail message and
* cause.
*
* <p>Note that the detail message associated with <code>cause</code> is
* <i>not</i> automatically incorporated in this exception's detail
* message.
*
* @param message the detail message (which is saved for later retrieval
* by the {@link Throwable#getMessage()} method).
* @param cause the cause (which is saved for later retrieval by the
* {@link Throwable#getCause()} method). (A <tt>null</tt> value
* is permitted, and indicates that the cause is nonexistent or
* unknown.)
* @since 1.5
*/
public IllegalStateException(String message, Throwable cause) {
super(message, cause);
}

/**
* Constructs a new exception with the specified cause and a detail
* message of <tt>(cause==null ? null : cause.toString())</tt> (which
* typically contains the class and detail message of <tt>cause</tt>).
* This constructor is useful for exceptions that are little more than
* wrappers for other throwables (for example, {@link
* java.security.PrivilegedActionException}).
*
* @param cause the cause (which is saved for later retrieval by the
* {@link Throwable#getCause()} method). (A <tt>null</tt> value is
* permitted, and indicates that the cause is nonexistent or
* unknown.)
* @since 1.5
*/
public IllegalStateException(Throwable cause) {
super(cause);
}

static final long serialVersionUID = -1848914673093119416L;
}


/*
* Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* An iterator over a collection. {@code Iterator} takes the place of
* {@link Enumeration} in the Java Collections Framework. Iterators
* differ from enumerations in two ways:
*
* <ul>
* <li> Iterators allow the caller to remove elements from the
* underlying collection during the iteration with well-defined
* semantics.
* <li> Method names have been improved.
* </ul>
*
* <p>This interface is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @author Josh Bloch
* @see Collection
* @see ListIterator
* @see Iterable
* @since 1.2
*/
public interface Iterator<E> {
/**
* Returns {@code true} if the iteration has more elements.
* (In other words, returns {@code true} if {@link #next} would
* return an element rather than throwing an exception.)
*
* @return {@code true} if the iteration has more elements
*/
boolean hasNext();

/**
* Returns the next element in the iteration.
*
* @return the next element in the iteration
* @throws NoSuchElementException if the iteration has no more elements
*/
E next();

/**
* Removes from the underlying collection the last element returned
* by this iterator (optional operation). This method can be called
* only once per call to {@link #next}. The behavior of an iterator
* is unspecified if the underlying collection is modified while the
* iteration is in progress in any way other than by calling this
* method.
*
* @throws UnsupportedOperationException if the {@code remove}
* operation is not supported by this iterator
*
* @throws IllegalStateException if the {@code next} method has not
* yet been called, or the {@code remove} method has already
* been called after the last call to the {@code next}
* method
*/
void remove();
}


package javaUtilEx;

public class juLinkedListCreateLastIndexOf {
public static void main(String[] args) {
Random.args = args;

LinkedList<Content> l = createList(Random.random());
Content c = new Content(Random.random());
if (Random.random() > 42) {
c = l.get(Random.random());
}
l.lastIndexOf(c);
}

public static LinkedList<Content> createList(int n) {
LinkedList<Content> l = new LinkedList<Content>();
while (n > 0) {
l.addLast(new Content(Random.random()));
n--;
}
return l;
}
}

final class Content {
int val;

public Content(int v) {
this.val = v;
}

public int hashCode() {
return val^31;
}

public boolean equals(Object o) {
if (o instanceof Content) {
return this.val == ((Content) o).val;
}
return false;
}
}


/*
* Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* Linked list implementation of the <tt>List</tt> interface. Implements all
* optional list operations, and permits all elements (including
* <tt>null</tt>). In addition to implementing the <tt>List</tt> interface,
* the <tt>LinkedList</tt> class provides uniformly named methods to
* <tt>get</tt>, <tt>remove</tt> and <tt>insert</tt> an element at the
* beginning and end of the list. These operations allow linked lists to be
* used as a stack, {@linkplain Queue queue}, or {@linkplain Deque
* double-ended queue}. <p>
*
* The class implements the <tt>Deque</tt> interface, providing
* first-in-first-out queue operations for <tt>add</tt>,
* <tt>poll</tt>, along with other stack and deque operations.<p>
*
* All of the operations perform as could be expected for a doubly-linked
* list. Operations that index into the list will traverse the list from
* the beginning or the end, whichever is closer to the specified index.<p>
*
* <p><strong>Note that this implementation is not synchronized.</strong>
* If multiple threads access a linked list concurrently, and at least
* one of the threads modifies the list structurally, it <i>must</i> be
* synchronized externally. (A structural modification is any operation
* that adds or deletes one or more elements; merely setting the value of
* an element is not a structural modification.) This is typically
* accomplished by synchronizing on some object that naturally
* encapsulates the list.
*
* If no such object exists, the list should be "wrapped" using the
* {@link Collections#synchronizedList Collections.synchronizedList}
* method. This is best done at creation time, to prevent accidental
* unsynchronized access to the list:<pre>
* List list = Collections.synchronizedList(new LinkedList(...));</pre>
*
* <p>The iterators returned by this class's <tt>iterator</tt> and
* <tt>listIterator</tt> methods are <i>fail-fast</i>: if the list is
* structurally modified at any time after the iterator is created, in
* any way except through the Iterator's own <tt>remove</tt> or
* <tt>add</tt> methods, the iterator will throw a {@link
* ConcurrentModificationException}. Thus, in the face of concurrent
* modification, the iterator fails quickly and cleanly, rather than
* risking arbitrary, non-deterministic behavior at an undetermined
* time in the future.
*
* <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
* as it is, generally speaking, impossible to make any hard guarantees in the
* presence of unsynchronized concurrent modification. Fail-fast iterators
* throw <tt>ConcurrentModificationException</tt> on a best-effort basis.
* Therefore, it would be wrong to write a program that depended on this
* exception for its correctness: <i>the fail-fast behavior of iterators
* should be used only to detect bugs.</i>
*
* <p>This class is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @author Josh Bloch
* @see List
* @see ArrayList
* @see Vector
* @since 1.2
* @param <E> the type of elements held in this collection
*/

public class LinkedList<E>
extends AbstractSequentialList<E>
implements List<E>, Deque<E>
{
private transient Entry<E> header = new Entry<E>(null, null, null);
private transient int size = 0;

/**
* Constructs an empty list.
*/
public LinkedList() {
header.next = header.previous = header;
}

/**
* Constructs a list containing the elements of the specified
* collection, in the order they are returned by the collection's
* iterator.
*
* @param c the collection whose elements are to be placed into this list
* @throws NullPointerException if the specified collection is null
*/
public LinkedList(Collection<? extends E> c) {
this();
addAll(c);
}

/**
* Returns the first element in this list.
*
* @return the first element in this list
* @throws NoSuchElementException if this list is empty
*/
public E getFirst() {
if (size==0)
throw new NoSuchElementException();

return header.next.element;
}

/**
* Returns the last element in this list.
*
* @return the last element in this list
* @throws NoSuchElementException if this list is empty
*/
public E getLast() {
if (size==0)
throw new NoSuchElementException();

return header.previous.element;
}

/**
* Removes and returns the first element from this list.
*
* @return the first element from this list
* @throws NoSuchElementException if this list is empty
*/
public E removeFirst() {
return remove(header.next);
}

/**
* Removes and returns the last element from this list.
*
* @return the last element from this list
* @throws NoSuchElementException if this list is empty
*/
public E removeLast() {
return remove(header.previous);
}

/**
* Inserts the specified element at the beginning of this list.
*
* @param e the element to add
*/
public void addFirst(E e) {
addBefore(e, header.next);
}

/**
* Appends the specified element to the end of this list.
*
* <p>This method is equivalent to {@link #add}.
*
* @param e the element to add
*/
public void addLast(E e) {
addBefore(e, header);
}

/**
* Returns <tt>true</tt> if this list contains the specified element.
* More formally, returns <tt>true</tt> if and only if this list contains
* at least one element <tt>e</tt> such that
* <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
*
* @param o element whose presence in this list is to be tested
* @return <tt>true</tt> if this list contains the specified element
*/
public boolean contains(Object o) {
return indexOf(o) != -1;
}

/**
* Returns the number of elements in this list.
*
* @return the number of elements in this list
*/
public int size() {
return size;
}

/**
* Appends the specified element to the end of this list.
*
* <p>This method is equivalent to {@link #addLast}.
*
* @param e element to be appended to this list
* @return <tt>true</tt> (as specified by {@link Collection#add})
*/
public boolean add(E e) {
addBefore(e, header);
return true;
}

/**
* Removes the first occurrence of the specified element from this list,
* if it is present. If this list does not contain the element, it is
* unchanged. More formally, removes the element with the lowest index
* <tt>i</tt> such that
* <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>
* (if such an element exists). Returns <tt>true</tt> if this list
* contained the specified element (or equivalently, if this list
* changed as a result of the call).
*
* @param o element to be removed from this list, if present
* @return <tt>true</tt> if this list contained the specified element
*/
public boolean remove(Object o) {
if (o==null) {
for (Entry<E> e = header.next; e != header; e = e.next) {
if (e.element==null) {
remove(e);
return true;
}
}
} else {
for (Entry<E> e = header.next; e != header; e = e.next) {
if (o.equals(e.element)) {
remove(e);
return true;
}
}
}
return false;
}
/**
* Removes all of the elements from this list.
*/
public void clear() {
Entry<E> e = header.next;
while (e != header) {
Entry<E> next = e.next;
e.next = e.previous = null;
e.element = null;
e = next;
}
header.next = header.previous = header;
size = 0;
modCount++;
}


// Positional Access Operations

/**
* Returns the element at the specified position in this list.
*
* @param index index of the element to return
* @return the element at the specified position in this list
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public E get(int index) {
return entry(index).element;
}

/**
* Replaces the element at the specified position in this list with the
* specified element.
*
* @param index index of the element to replace
* @param element element to be stored at the specified position
* @return the element previously at the specified position
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public E set(int index, E element) {
Entry<E> e = entry(index);
E oldVal = e.element;
e.element = element;
return oldVal;
}

/**
* Inserts the specified element at the specified position in this list.
* Shifts the element currently at that position (if any) and any
* subsequent elements to the right (adds one to their indices).
*
* @param index index at which the specified element is to be inserted
* @param element element to be inserted
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public void add(int index, E element) {
addBefore(element, (index==size ? header : entry(index)));
}

/**
* Removes the element at the specified position in this list. Shifts any
* subsequent elements to the left (subtracts one from their indices).
* Returns the element that was removed from the list.
*
* @param index the index of the element to be removed
* @return the element previously at the specified position
* @throws IndexOutOfBoundsException {@inheritDoc}
*/
public E remove(int index) {
return remove(entry(index));
}

/**
* Returns the indexed entry.
*/
private Entry<E> entry(int index) {
if (index < 0 || index >= size)
throw new IndexOutOfBoundsException();
Entry<E> e = header;
if (index < (size >> 1)) {
for (int i = 0; i <= index; i++)
e = e.next;
} else {
for (int i = size; i > index; i--)
e = e.previous;
}
return e;
}


// Search Operations

/**
* Returns the index of the first occurrence of the specified element
* in this list, or -1 if this list does not contain the element.
* More formally, returns the lowest index <tt>i</tt> such that
* <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
* or -1 if there is no such index.
*
* @param o element to search for
* @return the index of the first occurrence of the specified element in
* this list, or -1 if this list does not contain the element
*/
public int indexOf(Object o) {
int index = 0;
if (o==null) {
for (Entry e = header.next; e != header; e = e.next) {
if (e.element==null)
return index;
index++;
}
} else {
for (Entry e = header.next; e != header; e = e.next) {
if (o.equals(e.element))
return index;
index++;
}
}
return -1;
}

/**
* Returns the index of the last occurrence of the specified element
* in this list, or -1 if this list does not contain the element.
* More formally, returns the highest index <tt>i</tt> such that
* <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
* or -1 if there is no such index.
*
* @param o element to search for
* @return the index of the last occurrence of the specified element in
* this list, or -1 if this list does not contain the element
*/
public int lastIndexOf(Object o) {
int index = size;
if (o==null) {
for (Entry e = header.previous; e != header; e = e.previous) {
index--;
if (e.element==null)
return index;
}
} else {
for (Entry e = header.previous; e != header; e = e.previous) {
index--;
if (o.equals(e.element))
return index;
}
}
return -1;
}

// Queue operations.

/**
* Retrieves, but does not remove, the head (first element) of this list.
* @return the head of this list, or <tt>null</tt> if this list is empty
* @since 1.5
*/
public E peek() {
if (size==0)
return null;
return getFirst();
}

/**
* Retrieves, but does not remove, the head (first element) of this list.
* @return the head of this list
* @throws NoSuchElementException if this list is empty
* @since 1.5
*/
public E element() {
return getFirst();
}

/**
* Retrieves and removes the head (first element) of this list
* @return the head of this list, or <tt>null</tt> if this list is empty
* @since 1.5
*/
public E poll() {
if (size==0)
return null;
return removeFirst();
}

/**
* Retrieves and removes the head (first element) of this list.
*
* @return the head of this list
* @throws NoSuchElementException if this list is empty
* @since 1.5
*/
public E remove() {
return removeFirst();
}

/**
* Adds the specified element as the tail (last element) of this list.
*
* @param e the element to add
* @return <tt>true</tt> (as specified by {@link Queue#offer})
* @since 1.5
*/
public boolean offer(E e) {
return add(e);
}

// Deque operations
/**
* Inserts the specified element at the front of this list.
*
* @param e the element to insert
* @return <tt>true</tt> (as specified by {@link Deque#offerFirst})
* @since 1.6
*/
public boolean offerFirst(E e) {
addFirst(e);
return true;
}

/**
* Inserts the specified element at the end of this list.
*
* @param e the element to insert
* @return <tt>true</tt> (as specified by {@link Deque#offerLast})
* @since 1.6
*/
public boolean offerLast(E e) {
addLast(e);
return true;
}

/**
* Retrieves, but does not remove, the first element of this list,
* or returns <tt>null</tt> if this list is empty.
*
* @return the first element of this list, or <tt>null</tt>
* if this list is empty
* @since 1.6
*/
public E peekFirst() {
if (size==0)
return null;
return getFirst();
}

/**
* Retrieves, but does not remove, the last element of this list,
* or returns <tt>null</tt> if this list is empty.
*
* @return the last element of this list, or <tt>null</tt>
* if this list is empty
* @since 1.6
*/
public E peekLast() {
if (size==0)
return null;
return getLast();
}

/**
* Retrieves and removes the first element of this list,
* or returns <tt>null</tt> if this list is empty.
*
* @return the first element of this list, or <tt>null</tt> if
* this list is empty
* @since 1.6
*/
public E pollFirst() {
if (size==0)
return null;
return removeFirst();
}

/**
* Retrieves and removes the last element of this list,
* or returns <tt>null</tt> if this list is empty.
*
* @return the last element of this list, or <tt>null</tt> if
* this list is empty
* @since 1.6
*/
public E pollLast() {
if (size==0)
return null;
return removeLast();
}

/**
* Pushes an element onto the stack represented by this list. In other
* words, inserts the element at the front of this list.
*
* <p>This method is equivalent to {@link #addFirst}.
*
* @param e the element to push
* @since 1.6
*/
public void push(E e) {
addFirst(e);
}

/**
* Pops an element from the stack represented by this list. In other
* words, removes and returns the first element of this list.
*
* <p>This method is equivalent to {@link #removeFirst()}.
*
* @return the element at the front of this list (which is the top
* of the stack represented by this list)
* @throws NoSuchElementException if this list is empty
* @since 1.6
*/
public E pop() {
return removeFirst();
}

/**
* Removes the first occurrence of the specified element in this
* list (when traversing the list from head to tail). If the list
* does not contain the element, it is unchanged.
*
* @param o element to be removed from this list, if present
* @return <tt>true</tt> if the list contained the specified element
* @since 1.6
*/
public boolean removeFirstOccurrence(Object o) {
return remove(o);
}

/**
* Removes the last occurrence of the specified element in this
* list (when traversing the list from head to tail). If the list
* does not contain the element, it is unchanged.
*
* @param o element to be removed from this list, if present
* @return <tt>true</tt> if the list contained the specified element
* @since 1.6
*/
public boolean removeLastOccurrence(Object o) {
if (o==null) {
for (Entry<E> e = header.previous; e != header; e = e.previous) {
if (e.element==null) {
remove(e);
return true;
}
}
} else {
for (Entry<E> e = header.previous; e != header; e = e.previous) {
if (o.equals(e.element)) {
remove(e);
return true;
}
}
}
return false;
}

/**
* Returns a list-iterator of the elements in this list (in proper
* sequence), starting at the specified position in the list.
* Obeys the general contract of <tt>List.listIterator(int)</tt>.<p>
*
* The list-iterator is <i>fail-fast</i>: if the list is structurally
* modified at any time after the Iterator is created, in any way except
* through the list-iterator's own <tt>remove</tt> or <tt>add</tt>
* methods, the list-iterator will throw a
* <tt>ConcurrentModificationException</tt>. Thus, in the face of
* concurrent modification, the iterator fails quickly and cleanly, rather
* than risking arbitrary, non-deterministic behavior at an undetermined
* time in the future.
*
* @param index index of the first element to be returned from the
* list-iterator (by a call to <tt>next</tt>)
* @return a ListIterator of the elements in this list (in proper
* sequence), starting at the specified position in the list
* @throws IndexOutOfBoundsException {@inheritDoc}
* @see List#listIterator(int)
*/
public ListIterator<E> listIterator(int index) {
return new ListItr(index);
}

private class ListItr implements ListIterator<E> {
private Entry<E> lastReturned = header;
private Entry<E> next;
private int nextIndex;
private int expectedModCount = modCount;

ListItr(int index) {
if (index < 0 || index > size)
throw new IndexOutOfBoundsException();
if (index < (size >> 1)) {
next = header.next;
for (nextIndex=0; nextIndex<index; nextIndex++)
next = next.next;
} else {
next = header;
for (nextIndex=size; nextIndex>index; nextIndex--)
next = next.previous;
}
}

public boolean hasNext() {
return nextIndex != size;
}

public E next() {
checkForComodification();
if (nextIndex == size)
throw new NoSuchElementException();

lastReturned = next;
next = next.next;
nextIndex++;
return lastReturned.element;
}

public boolean hasPrevious() {
return nextIndex != 0;
}

public E previous() {
if (nextIndex == 0)
throw new NoSuchElementException();

lastReturned = next = next.previous;
nextIndex--;
checkForComodification();
return lastReturned.element;
}

public int nextIndex() {
return nextIndex;
}

public int previousIndex() {
return nextIndex-1;
}

public void remove() {
checkForComodification();
Entry<E> lastNext = lastReturned.next;
try {
LinkedList.this.remove(lastReturned);
} catch (NoSuchElementException e) {
throw new IllegalStateException();
}
if (next==lastReturned)
next = lastNext;
else
nextIndex--;
lastReturned = header;
expectedModCount++;
}

public void set(E e) {
if (lastReturned == header)
throw new IllegalStateException();
checkForComodification();
lastReturned.element = e;
}

public void add(E e) {
checkForComodification();
lastReturned = header;
addBefore(e, next);
nextIndex++;
expectedModCount++;
}

final void checkForComodification() {
if (modCount != expectedModCount)
throw new ConcurrentModificationException();
}
}

private static class Entry<E> {
E element;
Entry<E> next;
Entry<E> previous;

Entry(E element, Entry<E> next, Entry<E> previous) {
this.element = element;
this.next = next;
this.previous = previous;
}
}

private Entry<E> addBefore(E e, Entry<E> entry) {
Entry<E> newEntry = new Entry<E>(e, entry, entry.previous);
newEntry.previous.next = newEntry;
newEntry.next.previous = newEntry;
size++;
modCount++;
return newEntry;
}

private E remove(Entry<E> e) {
if (e == header)
throw new NoSuchElementException();

E result = e.element;
e.previous.next = e.next;
e.next.previous = e.previous;
e.next = e.previous = null;
e.element = null;
size--;
modCount++;
return result;
}

/**
* @since 1.6
*/
public Iterator<E> descendingIterator() {
return new DescendingIterator();
}

/** Adapter to provide descending iterators via ListItr.previous */
private class DescendingIterator implements Iterator {
final ListItr itr = new ListItr(size());
public boolean hasNext() {
return itr.hasPrevious();
}
public E next() {
return itr.previous();
}
public void remove() {
itr.remove();
}
}

/**
* Returns an array containing all of the elements in this list
* in proper sequence (from first to last element).
*
* <p>The returned array will be "safe" in that no references to it are
* maintained by this list. (In other words, this method must allocate
* a new array). The caller is thus free to modify the returned array.
*
* <p>This method acts as bridge between array-based and collection-based
* APIs.
*
* @return an array containing all of the elements in this list
* in proper sequence
*/
public Object[] toArray() {
Object[] result = new Object[size];
int i = 0;
for (Entry<E> e = header.next; e != header; e = e.next)
result[i++] = e.element;
return result;
}

private static final long serialVersionUID = 876323262645176354L;
}


/*
* Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* An iterator for lists that allows the programmer
* to traverse the list in either direction, modify
* the list during iteration, and obtain the iterator's
* current position in the list. A {@code ListIterator}
* has no current element; its <I>cursor position</I> always
* lies between the element that would be returned by a call
* to {@code previous()} and the element that would be
* returned by a call to {@code next()}.
* An iterator for a list of length {@code n} has {@code n+1} possible
* cursor positions, as illustrated by the carets ({@code ^}) below:
* <PRE>
* Element(0) Element(1) Element(2) ... Element(n-1)
* cursor positions: ^ ^ ^ ^ ^
* </PRE>
* Note that the {@link #remove} and {@link #set(Object)} methods are
* <i>not</i> defined in terms of the cursor position; they are defined to
* operate on the last element returned by a call to {@link #next} or
* {@link #previous()}.
*
* <p>This interface is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @author Josh Bloch
* @see Collection
* @see List
* @see Iterator
* @see Enumeration
* @see List#listIterator()
* @since 1.2
*/
public interface ListIterator<E> extends Iterator<E> {
// Query Operations

/**
* Returns {@code true} if this list iterator has more elements when
* traversing the list in the forward direction. (In other words,
* returns {@code true} if {@link #next} would return an element rather
* than throwing an exception.)
*
* @return {@code true} if the list iterator has more elements when
* traversing the list in the forward direction
*/
boolean hasNext();

/**
* Returns the next element in the list and advances the cursor position.
* This method may be called repeatedly to iterate through the list,
* or intermixed with calls to {@link #previous} to go back and forth.
* (Note that alternating calls to {@code next} and {@code previous}
* will return the same element repeatedly.)
*
* @return the next element in the list
* @throws NoSuchElementException if the iteration has no next element
*/
E next();

/**
* Returns {@code true} if this list iterator has more elements when
* traversing the list in the reverse direction. (In other words,
* returns {@code true} if {@link #previous} would return an element
* rather than throwing an exception.)
*
* @return {@code true} if the list iterator has more elements when
* traversing the list in the reverse direction
*/
boolean hasPrevious();

/**
* Returns the previous element in the list and moves the cursor
* position backwards. This method may be called repeatedly to
* iterate through the list backwards, or intermixed with calls to
* {@link #next} to go back and forth. (Note that alternating calls
* to {@code next} and {@code previous} will return the same
* element repeatedly.)
*
* @return the previous element in the list
* @throws NoSuchElementException if the iteration has no previous
* element
*/
E previous();

/**
* Returns the index of the element that would be returned by a
* subsequent call to {@link #next}. (Returns list size if the list
* iterator is at the end of the list.)
*
* @return the index of the element that would be returned by a
* subsequent call to {@code next}, or list size if the list
* iterator is at the end of the list
*/
int nextIndex();

/**
* Returns the index of the element that would be returned by a
* subsequent call to {@link #previous}. (Returns -1 if the list
* iterator is at the beginning of the list.)
*
* @return the index of the element that would be returned by a
* subsequent call to {@code previous}, or -1 if the list
* iterator is at the beginning of the list
*/
int previousIndex();


// Modification Operations

/**
* Removes from the list the last element that was returned by {@link
* #next} or {@link #previous} (optional operation). This call can
* only be made once per call to {@code next} or {@code previous}.
* It can be made only if {@link #add} has not been
* called after the last call to {@code next} or {@code previous}.
*
* @throws UnsupportedOperationException if the {@code remove}
* operation is not supported by this list iterator
* @throws IllegalStateException if neither {@code next} nor
* {@code previous} have been called, or {@code remove} or
* {@code add} have been called after the last call to
* {@code next} or {@code previous}
*/
void remove();

/**
* Replaces the last element returned by {@link #next} or
* {@link #previous} with the specified element (optional operation).
* This call can be made only if neither {@link #remove} nor {@link
* #add} have been called after the last call to {@code next} or
* {@code previous}.
*
* @param e the element with which to replace the last element returned by
* {@code next} or {@code previous}
* @throws UnsupportedOperationException if the {@code set} operation
* is not supported by this list iterator
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this list
* @throws IllegalArgumentException if some aspect of the specified
* element prevents it from being added to this list
* @throws IllegalStateException if neither {@code next} nor
* {@code previous} have been called, or {@code remove} or
* {@code add} have been called after the last call to
* {@code next} or {@code previous}
*/
void set(E e);

/**
* Inserts the specified element into the list (optional operation).
* The element is inserted immediately before the next element that
* would be returned by {@link #next}, if any, and after the next
* element that would be returned by {@link #previous}, if any. (If the
* list contains no elements, the new element becomes the sole element
* on the list.) The new element is inserted before the implicit
* cursor: a subsequent call to {@code next} would be unaffected, and a
* subsequent call to {@code previous} would return the new element.
* (This call increases by one the value that would be returned by a
* call to {@code nextIndex} or {@code previousIndex}.)
*
* @param e the element to insert
* @throws UnsupportedOperationException if the {@code add} method is
* not supported by this list iterator
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this list
* @throws IllegalArgumentException if some aspect of this element
* prevents it from being added to this list
*/
void add(E e);
}


/*
* Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* An ordered collection (also known as a <i>sequence</i>). The user of this
* interface has precise control over where in the list each element is
* inserted. The user can access elements by their integer index (position in
* the list), and search for elements in the list.<p>
*
* Unlike sets, lists typically allow duplicate elements. More formally,
* lists typically allow pairs of elements <tt>e1</tt> and <tt>e2</tt>
* such that <tt>e1.equals(e2)</tt>, and they typically allow multiple
* null elements if they allow null elements at all. It is not inconceivable
* that someone might wish to implement a list that prohibits duplicates, by
* throwing runtime exceptions when the user attempts to insert them, but we
* expect this usage to be rare.<p>
*
* The <tt>List</tt> interface places additional stipulations, beyond those
* specified in the <tt>Collection</tt> interface, on the contracts of the
* <tt>iterator</tt>, <tt>add</tt>, <tt>remove</tt>, <tt>equals</tt>, and
* <tt>hashCode</tt> methods. Declarations for other inherited methods are
* also included here for convenience.<p>
*
* The <tt>List</tt> interface provides four methods for positional (indexed)
* access to list elements. Lists (like Java arrays) are zero based. Note
* that these operations may execute in time proportional to the index value
* for some implementations (the <tt>LinkedList</tt> class, for
* example). Thus, iterating over the elements in a list is typically
* preferable to indexing through it if the caller does not know the
* implementation.<p>
*
* The <tt>List</tt> interface provides a special iterator, called a
* <tt>ListIterator</tt>, that allows element insertion and replacement, and
* bidirectional access in addition to the normal operations that the
* <tt>Iterator</tt> interface provides. A method is provided to obtain a
* list iterator that starts at a specified position in the list.<p>
*
* The <tt>List</tt> interface provides two methods to search for a specified
* object. From a performance standpoint, these methods should be used with
* caution. In many implementations they will perform costly linear
* searches.<p>
*
* The <tt>List</tt> interface provides two methods to efficiently insert and
* remove multiple elements at an arbitrary point in the list.<p>
*
* Note: While it is permissible for lists to contain themselves as elements,
* extreme caution is advised: the <tt>equals</tt> and <tt>hashCode</tt>
* methods are no longer well defined on such a list.
*
* <p>Some list implementations have restrictions on the elements that
* they may contain. For example, some implementations prohibit null elements,
* and some have restrictions on the types of their elements. Attempting to
* add an ineligible element throws an unchecked exception, typically
* <tt>NullPointerException</tt> or <tt>ClassCastException</tt>. Attempting
* to query the presence of an ineligible element may throw an exception,
* or it may simply return false; some implementations will exhibit the former
* behavior and some will exhibit the latter. More generally, attempting an
* operation on an ineligible element whose completion would not result in
* the insertion of an ineligible element into the list may throw an
* exception or it may succeed, at the option of the implementation.
* Such exceptions are marked as "optional" in the specification for this
* interface.
*
* <p>This interface is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @author Josh Bloch
* @author Neal Gafter
* @see Collection
* @see Set
* @see ArrayList
* @see LinkedList
* @see Vector
* @see Arrays#asList(Object[])
* @see Collections#nCopies(int, Object)
* @see Collections#EMPTY_LIST
* @see AbstractList
* @see AbstractSequentialList
* @since 1.2
*/

public interface List<E> extends Collection<E> {
// Query Operations

/**
* Returns the number of elements in this list. If this list contains
* more than <tt>Integer.MAX_VALUE</tt> elements, returns
* <tt>Integer.MAX_VALUE</tt>.
*
* @return the number of elements in this list
*/
int size();

/**
* Returns <tt>true</tt> if this list contains no elements.
*
* @return <tt>true</tt> if this list contains no elements
*/
boolean isEmpty();

/**
* Returns <tt>true</tt> if this list contains the specified element.
* More formally, returns <tt>true</tt> if and only if this list contains
* at least one element <tt>e</tt> such that
* <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
*
* @param o element whose presence in this list is to be tested
* @return <tt>true</tt> if this list contains the specified element
* @throws ClassCastException if the type of the specified element
* is incompatible with this list (optional)
* @throws NullPointerException if the specified element is null and this
* list does not permit null elements (optional)
*/
boolean contains(Object o);

/**
* Returns an iterator over the elements in this list in proper sequence.
*
* @return an iterator over the elements in this list in proper sequence
*/
Iterator<E> iterator();

// Modification Operations

/**
* Appends the specified element to the end of this list (optional
* operation).
*
* <p>Lists that support this operation may place limitations on what
* elements may be added to this list. In particular, some
* lists will refuse to add null elements, and others will impose
* restrictions on the type of elements that may be added. List
* classes should clearly specify in their documentation any restrictions
* on what elements may be added.
*
* @param e element to be appended to this list
* @return <tt>true</tt> (as specified by {@link Collection#add})
* @throws UnsupportedOperationException if the <tt>add</tt> operation
* is not supported by this list
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this list
* @throws NullPointerException if the specified element is null and this
* list does not permit null elements
* @throws IllegalArgumentException if some property of this element
* prevents it from being added to this list
*/
boolean add(E e);

/**
* Removes the first occurrence of the specified element from this list,
* if it is present (optional operation). If this list does not contain
* the element, it is unchanged. More formally, removes the element with
* the lowest index <tt>i</tt> such that
* <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>
* (if such an element exists). Returns <tt>true</tt> if this list
* contained the specified element (or equivalently, if this list changed
* as a result of the call).
*
* @param o element to be removed from this list, if present
* @return <tt>true</tt> if this list contained the specified element
* @throws ClassCastException if the type of the specified element
* is incompatible with this list (optional)
* @throws NullPointerException if the specified element is null and this
* list does not permit null elements (optional)
* @throws UnsupportedOperationException if the <tt>remove</tt> operation
* is not supported by this list
*/
boolean remove(Object o);


// Bulk Modification Operations

/**
* Returns <tt>true</tt> if this list contains all of the elements of the
* specified collection.
*
* @param c collection to be checked for containment in this list
* @return <tt>true</tt> if this list contains all of the elements of the
* specified collection
* @throws ClassCastException if the types of one or more elements
* in the specified collection are incompatible with this
* list (optional)
* @throws NullPointerException if the specified collection contains one
* or more null elements and this list does not permit null
* elements (optional), or if the specified collection is null
* @see #contains(Object)
*/
boolean containsAll(Collection<?> c);

/**
* Appends all of the elements in the specified collection to the end of
* this list, in the order that they are returned by the specified
* collection's iterator (optional operation). The behavior of this
* operation is undefined if the specified collection is modified while
* the operation is in progress. (Note that this will occur if the
* specified collection is this list, and it's nonempty.)
*
* @param c collection containing elements to be added to this list
* @return <tt>true</tt> if this list changed as a result of the call
* @throws UnsupportedOperationException if the <tt>addAll</tt> operation
* is not supported by this list
* @throws ClassCastException if the class of an element of the specified
* collection prevents it from being added to this list
* @throws NullPointerException if the specified collection contains one
* or more null elements and this list does not permit null
* elements, or if the specified collection is null
* @throws IllegalArgumentException if some property of an element of the
* specified collection prevents it from being added to this list
* @see #add(Object)
*/
boolean addAll(Collection<? extends E> c);

/**
* Inserts all of the elements in the specified collection into this
* list at the specified position (optional operation). Shifts the
* element currently at that position (if any) and any subsequent
* elements to the right (increases their indices). The new elements
* will appear in this list in the order that they are returned by the
* specified collection's iterator. The behavior of this operation is
* undefined if the specified collection is modified while the
* operation is in progress. (Note that this will occur if the specified
* collection is this list, and it's nonempty.)
*
* @param index index at which to insert the first element from the
* specified collection
* @param c collection containing elements to be added to this list
* @return <tt>true</tt> if this list changed as a result of the call
* @throws UnsupportedOperationException if the <tt>addAll</tt> operation
* is not supported by this list
* @throws ClassCastException if the class of an element of the specified
* collection prevents it from being added to this list
* @throws NullPointerException if the specified collection contains one
* or more null elements and this list does not permit null
* elements, or if the specified collection is null
* @throws IllegalArgumentException if some property of an element of the
* specified collection prevents it from being added to this list
* @throws IndexOutOfBoundsException if the index is out of range
* (<tt>index &lt; 0 || index &gt; size()</tt>)
*/
boolean addAll(int index, Collection<? extends E> c);

/**
* Removes from this list all of its elements that are contained in the
* specified collection (optional operation).
*
* @param c collection containing elements to be removed from this list
* @return <tt>true</tt> if this list changed as a result of the call
* @throws UnsupportedOperationException if the <tt>removeAll</tt> operation
* is not supported by this list
* @throws ClassCastException if the class of an element of this list
* is incompatible with the specified collection (optional)
* @throws NullPointerException if this list contains a null element and the
* specified collection does not permit null elements (optional),
* or if the specified collection is null
* @see #remove(Object)
* @see #contains(Object)
*/
boolean removeAll(Collection<?> c);

/**
* Retains only the elements in this list that are contained in the
* specified collection (optional operation). In other words, removes
* from this list all of its elements that are not contained in the
* specified collection.
*
* @param c collection containing elements to be retained in this list
* @return <tt>true</tt> if this list changed as a result of the call
* @throws UnsupportedOperationException if the <tt>retainAll</tt> operation
* is not supported by this list
* @throws ClassCastException if the class of an element of this list
* is incompatible with the specified collection (optional)
* @throws NullPointerException if this list contains a null element and the
* specified collection does not permit null elements (optional),
* or if the specified collection is null
* @see #remove(Object)
* @see #contains(Object)
*/
boolean retainAll(Collection<?> c);

/**
* Removes all of the elements from this list (optional operation).
* The list will be empty after this call returns.
*
* @throws UnsupportedOperationException if the <tt>clear</tt> operation
* is not supported by this list
*/
void clear();


// Comparison and hashing

/**
* Compares the specified object with this list for equality. Returns
* <tt>true</tt> if and only if the specified object is also a list, both
* lists have the same size, and all corresponding pairs of elements in
* the two lists are <i>equal</i>. (Two elements <tt>e1</tt> and
* <tt>e2</tt> are <i>equal</i> if <tt>(e1==null ? e2==null :
* e1.equals(e2))</tt>.) In other words, two lists are defined to be
* equal if they contain the same elements in the same order. This
* definition ensures that the equals method works properly across
* different implementations of the <tt>List</tt> interface.
*
* @param o the object to be compared for equality with this list
* @return <tt>true</tt> if the specified object is equal to this list
*/
boolean equals(Object o);

/**
* Returns the hash code value for this list. The hash code of a list
* is defined to be the result of the following calculation:
* <pre>
* int hashCode = 1;
* for (E e : list)
* hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
* </pre>
* This ensures that <tt>list1.equals(list2)</tt> implies that
* <tt>list1.hashCode()==list2.hashCode()</tt> for any two lists,
* <tt>list1</tt> and <tt>list2</tt>, as required by the general
* contract of {@link Object#hashCode}.
*
* @return the hash code value for this list
* @see Object#equals(Object)
* @see #equals(Object)
*/
int hashCode();


// Positional Access Operations

/**
* Returns the element at the specified position in this list.
*
* @param index index of the element to return
* @return the element at the specified position in this list
* @throws IndexOutOfBoundsException if the index is out of range
* (<tt>index &lt; 0 || index &gt;= size()</tt>)
*/
E get(int index);

/**
* Replaces the element at the specified position in this list with the
* specified element (optional operation).
*
* @param index index of the element to replace
* @param element element to be stored at the specified position
* @return the element previously at the specified position
* @throws UnsupportedOperationException if the <tt>set</tt> operation
* is not supported by this list
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this list
* @throws NullPointerException if the specified element is null and
* this list does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this list
* @throws IndexOutOfBoundsException if the index is out of range
* (<tt>index &lt; 0 || index &gt;= size()</tt>)
*/
E set(int index, E element);

/**
* Inserts the specified element at the specified position in this list
* (optional operation). Shifts the element currently at that position
* (if any) and any subsequent elements to the right (adds one to their
* indices).
*
* @param index index at which the specified element is to be inserted
* @param element element to be inserted
* @throws UnsupportedOperationException if the <tt>add</tt> operation
* is not supported by this list
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this list
* @throws NullPointerException if the specified element is null and
* this list does not permit null elements
* @throws IllegalArgumentException if some property of the specified
* element prevents it from being added to this list
* @throws IndexOutOfBoundsException if the index is out of range
* (<tt>index &lt; 0 || index &gt; size()</tt>)
*/
void add(int index, E element);

/**
* Removes the element at the specified position in this list (optional
* operation). Shifts any subsequent elements to the left (subtracts one
* from their indices). Returns the element that was removed from the
* list.
*
* @param index the index of the element to be removed
* @return the element previously at the specified position
* @throws UnsupportedOperationException if the <tt>remove</tt> operation
* is not supported by this list
* @throws IndexOutOfBoundsException if the index is out of range
* (<tt>index &lt; 0 || index &gt;= size()</tt>)
*/
E remove(int index);


// Search Operations

/**
* Returns the index of the first occurrence of the specified element
* in this list, or -1 if this list does not contain the element.
* More formally, returns the lowest index <tt>i</tt> such that
* <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
* or -1 if there is no such index.
*
* @param o element to search for
* @return the index of the first occurrence of the specified element in
* this list, or -1 if this list does not contain the element
* @throws ClassCastException if the type of the specified element
* is incompatible with this list (optional)
* @throws NullPointerException if the specified element is null and this
* list does not permit null elements (optional)
*/
int indexOf(Object o);

/**
* Returns the index of the last occurrence of the specified element
* in this list, or -1 if this list does not contain the element.
* More formally, returns the highest index <tt>i</tt> such that
* <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
* or -1 if there is no such index.
*
* @param o element to search for
* @return the index of the last occurrence of the specified element in
* this list, or -1 if this list does not contain the element
* @throws ClassCastException if the type of the specified element
* is incompatible with this list (optional)
* @throws NullPointerException if the specified element is null and this
* list does not permit null elements (optional)
*/
int lastIndexOf(Object o);


// List Iterators

/**
* Returns a list iterator over the elements in this list (in proper
* sequence).
*
* @return a list iterator over the elements in this list (in proper
* sequence)
*/
ListIterator<E> listIterator();

/**
* Returns a list iterator over the elements in this list (in proper
* sequence), starting at the specified position in the list.
* The specified index indicates the first element that would be
* returned by an initial call to {@link ListIterator#next next}.
* An initial call to {@link ListIterator#previous previous} would
* return the element with the specified index minus one.
*
* @param index index of the first element to be returned from the
* list iterator (by a call to {@link ListIterator#next next})
* @return a list iterator over the elements in this list (in proper
* sequence), starting at the specified position in the list
* @throws IndexOutOfBoundsException if the index is out of range
* ({@code index < 0 || index > size()})
*/
ListIterator<E> listIterator(int index);

// View

/**
* Returns a view of the portion of this list between the specified
* <tt>fromIndex</tt>, inclusive, and <tt>toIndex</tt>, exclusive. (If
* <tt>fromIndex</tt> and <tt>toIndex</tt> are equal, the returned list is
* empty.) The returned list is backed by this list, so non-structural
* changes in the returned list are reflected in this list, and vice-versa.
* The returned list supports all of the optional list operations supported
* by this list.<p>
*
* This method eliminates the need for explicit range operations (of
* the sort that commonly exist for arrays). Any operation that expects
* a list can be used as a range operation by passing a subList view
* instead of a whole list. For example, the following idiom
* removes a range of elements from a list:
* <pre>
* list.subList(from, to).clear();
* </pre>
* Similar idioms may be constructed for <tt>indexOf</tt> and
* <tt>lastIndexOf</tt>, and all of the algorithms in the
* <tt>Collections</tt> class can be applied to a subList.<p>
*
* The semantics of the list returned by this method become undefined if
* the backing list (i.e., this list) is <i>structurally modified</i> in
* any way other than via the returned list. (Structural modifications are
* those that change the size of this list, or otherwise perturb it in such
* a fashion that iterations in progress may yield incorrect results.)
*
* @param fromIndex low endpoint (inclusive) of the subList
* @param toIndex high endpoint (exclusive) of the subList
* @return a view of the specified range within this list
* @throws IndexOutOfBoundsException for an illegal endpoint index value
* (<tt>fromIndex &lt; 0 || toIndex &gt; size ||
* fromIndex &gt; toIndex</tt>)
*/
List<E> subList(int fromIndex, int toIndex);
}


/*
* Copyright 1994-1998 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* Thrown by the <code>nextElement</code> method of an
* <code>Enumeration</code> to indicate that there are no more
* elements in the enumeration.
*
* @author unascribed
* @see java.util.Enumeration
* @see java.util.Enumeration#nextElement()
* @since JDK1.0
*/
public
class NoSuchElementException extends RuntimeException {
/**
* Constructs a <code>NoSuchElementException</code> with <tt>null</tt>
* as its error message string.
*/
public NoSuchElementException() {
super();
}

/**
* Constructs a <code>NoSuchElementException</code>, saving a reference
* to the error message string <tt>s</tt> for later retrieval by the
* <tt>getMessage</tt> method.
*
* @param s the detail message.
*/
public NoSuchElementException(String s) {
super(s);
}
}


/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

/*
* This file is available under and governed by the GNU General Public
* License version 2 only, as published by the Free Software Foundation.
* However, the following notice accompanied the original version of this
* file:
*
* Written by Doug Lea with assistance from members of JCP JSR-166
* Expert Group and released to the public domain, as explained at
* http://creativecommons.org/licenses/publicdomain
*/

package javaUtilEx;

/**
* A collection designed for holding elements prior to processing.
* Besides basic {@link java.util.Collection Collection} operations,
* queues provide additional insertion, extraction, and inspection
* operations. Each of these methods exists in two forms: one throws
* an exception if the operation fails, the other returns a special
* value (either <tt>null</tt> or <tt>false</tt>, depending on the
* operation). The latter form of the insert operation is designed
* specifically for use with capacity-restricted <tt>Queue</tt>
* implementations; in most implementations, insert operations cannot
* fail.
*
* <p>
* <table BORDER CELLPADDING=3 CELLSPACING=1>
* <tr>
* <td></td>
* <td ALIGN=CENTER><em>Throws exception</em></td>
* <td ALIGN=CENTER><em>Returns special value</em></td>
* </tr>
* <tr>
* <td><b>Insert</b></td>
* <td>{@link #add add(e)}</td>
* <td>{@link #offer offer(e)}</td>
* </tr>
* <tr>
* <td><b>Remove</b></td>
* <td>{@link #remove remove()}</td>
* <td>{@link #poll poll()}</td>
* </tr>
* <tr>
* <td><b>Examine</b></td>
* <td>{@link #element element()}</td>
* <td>{@link #peek peek()}</td>
* </tr>
* </table>
*
* <p>Queues typically, but do not necessarily, order elements in a
* FIFO (first-in-first-out) manner. Among the exceptions are
* priority queues, which order elements according to a supplied
* comparator, or the elements' natural ordering, and LIFO queues (or
* stacks) which order the elements LIFO (last-in-first-out).
* Whatever the ordering used, the <em>head</em> of the queue is that
* element which would be removed by a call to {@link #remove() } or
* {@link #poll()}. In a FIFO queue, all new elements are inserted at
* the <em> tail</em> of the queue. Other kinds of queues may use
* different placement rules. Every <tt>Queue</tt> implementation
* must specify its ordering properties.
*
* <p>The {@link #offer offer} method inserts an element if possible,
* otherwise returning <tt>false</tt>. This differs from the {@link
* java.util.Collection#add Collection.add} method, which can fail to
* add an element only by throwing an unchecked exception. The
* <tt>offer</tt> method is designed for use when failure is a normal,
* rather than exceptional occurrence, for example, in fixed-capacity
* (or &quot;bounded&quot;) queues.
*
* <p>The {@link #remove()} and {@link #poll()} methods remove and
* return the head of the queue.
* Exactly which element is removed from the queue is a
* function of the queue's ordering policy, which differs from
* implementation to implementation. The <tt>remove()</tt> and
* <tt>poll()</tt> methods differ only in their behavior when the
* queue is empty: the <tt>remove()</tt> method throws an exception,
* while the <tt>poll()</tt> method returns <tt>null</tt>.
*
* <p>The {@link #element()} and {@link #peek()} methods return, but do
* not remove, the head of the queue.
*
* <p>The <tt>Queue</tt> interface does not define the <i>blocking queue
* methods</i>, which are common in concurrent programming. These methods,
* which wait for elements to appear or for space to become available, are
* defined in the {@link java.util.concurrent.BlockingQueue} interface, which
* extends this interface.
*
* <p><tt>Queue</tt> implementations generally do not allow insertion
* of <tt>null</tt> elements, although some implementations, such as
* {@link LinkedList}, do not prohibit insertion of <tt>null</tt>.
* Even in the implementations that permit it, <tt>null</tt> should
* not be inserted into a <tt>Queue</tt>, as <tt>null</tt> is also
* used as a special return value by the <tt>poll</tt> method to
* indicate that the queue contains no elements.
*
* <p><tt>Queue</tt> implementations generally do not define
* element-based versions of methods <tt>equals</tt> and
* <tt>hashCode</tt> but instead inherit the identity based versions
* from class <tt>Object</tt>, because element-based equality is not
* always well-defined for queues with the same elements but different
* ordering properties.
*
*
* <p>This interface is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @see java.util.Collection
* @see LinkedList
* @see PriorityQueue
* @see java.util.concurrent.LinkedBlockingQueue
* @see java.util.concurrent.BlockingQueue
* @see java.util.concurrent.ArrayBlockingQueue
* @see java.util.concurrent.LinkedBlockingQueue
* @see java.util.concurrent.PriorityBlockingQueue
* @since 1.5
* @author Doug Lea
* @param <E> the type of elements held in this collection
*/
public interface Queue<E> extends Collection<E> {
/**
* Inserts the specified element into this queue if it is possible to do so
* immediately without violating capacity restrictions, returning
* <tt>true</tt> upon success and throwing an <tt>IllegalStateException</tt>
* if no space is currently available.
*
* @param e the element to add
* @return <tt>true</tt> (as specified by {@link Collection#add})
* @throws IllegalStateException if the element cannot be added at this
* time due to capacity restrictions
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this queue
* @throws NullPointerException if the specified element is null and
* this queue does not permit null elements
* @throws IllegalArgumentException if some property of this element
* prevents it from being added to this queue
*/
boolean add(E e);

/**
* Inserts the specified element into this queue if it is possible to do
* so immediately without violating capacity restrictions.
* When using a capacity-restricted queue, this method is generally
* preferable to {@link #add}, which can fail to insert an element only
* by throwing an exception.
*
* @param e the element to add
* @return <tt>true</tt> if the element was added to this queue, else
* <tt>false</tt>
* @throws ClassCastException if the class of the specified element
* prevents it from being added to this queue
* @throws NullPointerException if the specified element is null and
* this queue does not permit null elements
* @throws IllegalArgumentException if some property of this element
* prevents it from being added to this queue
*/
boolean offer(E e);

/**
* Retrieves and removes the head of this queue. This method differs
* from {@link #poll poll} only in that it throws an exception if this
* queue is empty.
*
* @return the head of this queue
* @throws NoSuchElementException if this queue is empty
*/
E remove();

/**
* Retrieves and removes the head of this queue,
* or returns <tt>null</tt> if this queue is empty.
*
* @return the head of this queue, or <tt>null</tt> if this queue is empty
*/
E poll();

/**
* Retrieves, but does not remove, the head of this queue. This method
* differs from {@link #peek peek} only in that it throws an exception
* if this queue is empty.
*
* @return the head of this queue
* @throws NoSuchElementException if this queue is empty
*/
E element();

/**
* Retrieves, but does not remove, the head of this queue,
* or returns <tt>null</tt> if this queue is empty.
*
* @return the head of this queue, or <tt>null</tt> if this queue is empty
*/
E peek();
}


/*
* Copyright 2000-2006 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* Marker interface used by <tt>List</tt> implementations to indicate that
* they support fast (generally constant time) random access. The primary
* purpose of this interface is to allow generic algorithms to alter their
* behavior to provide good performance when applied to either random or
* sequential access lists.
*
* <p>The best algorithms for manipulating random access lists (such as
* <tt>ArrayList</tt>) can produce quadratic behavior when applied to
* sequential access lists (such as <tt>LinkedList</tt>). Generic list
* algorithms are encouraged to check whether the given list is an
* <tt>instanceof</tt> this interface before applying an algorithm that would
* provide poor performance if it were applied to a sequential access list,
* and to alter their behavior if necessary to guarantee acceptable
* performance.
*
* <p>It is recognized that the distinction between random and sequential
* access is often fuzzy. For example, some <tt>List</tt> implementations
* provide asymptotically linear access times if they get huge, but constant
* access times in practice. Such a <tt>List</tt> implementation
* should generally implement this interface. As a rule of thumb, a
* <tt>List</tt> implementation should implement this interface if,
* for typical instances of the class, this loop:
* <pre>
* for (int i=0, n=list.size(); i &lt; n; i++)
* list.get(i);
* </pre>
* runs faster than this loop:
* <pre>
* for (Iterator i=list.iterator(); i.hasNext(); )
* i.next();
* </pre>
*
* <p>This interface is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @since 1.4
*/
public interface RandomAccess {
}


package javaUtilEx;

public class Random {
static String[] args;
static int index = 0;

public static int random() {
String string = args[index];
index++;
return string.length();
}
}


/*
* Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/

package javaUtilEx;

/**
* Thrown to indicate that the requested operation is not supported.<p>
*
* This class is a member of the
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
*
* @author Josh Bloch
* @since 1.2
*/
public class UnsupportedOperationException extends RuntimeException {
/**
* Constructs an UnsupportedOperationException with no detail message.
*/
public UnsupportedOperationException() {
}

/**
* Constructs an UnsupportedOperationException with the specified
* detail message.
*
* @param message the detail message
*/
public UnsupportedOperationException(String message) {
super(message);
}

/**
* Constructs a new exception with the specified detail message and
* cause.
*
* <p>Note that the detail message associated with <code>cause</code> is
* <i>not</i> automatically incorporated in this exception's detail
* message.
*
* @param message the detail message (which is saved for later retrieval
* by the {@link Throwable#getMessage()} method).
* @param cause the cause (which is saved for later retrieval by the
* {@link Throwable#getCause()} method). (A <tt>null</tt> value
* is permitted, and indicates that the cause is nonexistent or
* unknown.)
* @since 1.5
*/
public UnsupportedOperationException(String message, Throwable cause) {
super(message, cause);
}

/**
* Constructs a new exception with the specified cause and a detail
* message of <tt>(cause==null ? null : cause.toString())</tt> (which
* typically contains the class and detail message of <tt>cause</tt>).
* This constructor is useful for exceptions that are little more than
* wrappers for other throwables (for example, {@link
* java.security.PrivilegedActionException}).
*
* @param cause the cause (which is saved for later retrieval by the
* {@link Throwable#getCause()} method). (A <tt>null</tt> value is
* permitted, and indicates that the cause is nonexistent or
* unknown.)
* @since 1.5
*/
public UnsupportedOperationException(Throwable cause) {
super(cause);
}

static final long serialVersionUID = -1242599979055084673L;
}


(1) JBCToGraph (SOUND transformation)

Constructed TerminationGraph.

(2) Obligation:

Termination Graph based on JBC Program:
javaUtilEx.juLinkedListCreateLastIndexOf.main([Ljava/lang/String;)V: Graph of 782 nodes with 5 SCCs.

javaUtilEx.juLinkedListCreateLastIndexOf.createList(I)LjavaUtilEx/LinkedList;: Graph of 271 nodes with 1 SCC.

javaUtilEx.Content.equals(Ljava/lang/Object;)Z: Graph of 84 nodes with 0 SCCs.


(3) TerminationGraphToSCCProof (SOUND transformation)

Splitted TerminationGraph to 6 SCCss.

(4) Complex Obligation (AND)

(5) Obligation:

SCC of termination graph based on JBC Program.
SCC contains nodes from the following methods: javaUtilEx.juLinkedListCreateLastIndexOf.createList(I)LjavaUtilEx/LinkedList;
SCC calls the following helper methods:
Performed SCC analyses:
  • Used field analysis yielded the following read fields:
    • java.lang.String: [count]
    • javaUtilEx.LinkedList: [header, size]
    • javaUtilEx.LinkedList$Entry: [previous, next]
    • javaUtilEx.AbstractList: [modCount]
  • Marker field analysis yielded the following relations that could be markers:

(6) SCCToIntTRSProof (SOUND transformation)

Transformed FIGraph SCCs to intTRSs. Log:

Generated rules. Obtained 161 IRules

P rules:
f9263_0_createList_LE(EOS, i1165, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9266_0_createList_LE(EOS, i1165, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9266_0_createList_LE(EOS, i1165, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9277_0_createList_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) | >(i1165, 0)
f9277_0_createList_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9287_0_createList_New(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9287_0_createList_New(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9301_0_createList_Duplicate(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9301_0_createList_Duplicate(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9331_0_createList_InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9331_0_createList_InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9334_0_random_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9334_0_random_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9340_0_random_FieldAccess(EOS, i1165, java.lang.Object(ARRAY(i125)), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9340_0_random_FieldAccess(EOS, i1165, java.lang.Object(ARRAY(i125)), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9342_0_random_ArrayAccess(EOS, i1165, java.lang.Object(ARRAY(i125)), i1152, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9342_0_random_ArrayAccess(EOS, i1165, java.lang.Object(ARRAY(i125)), i1152, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9381_0_random_ArrayAccess(EOS, i1165, java.lang.Object(ARRAY(i125)), i1152, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9381_0_random_ArrayAccess(EOS, i1165, java.lang.Object(ARRAY(i125)), i1152, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9385_0_random_Store(EOS, i1165, o2930, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) | <(i1152, i125)
f9385_0_random_Store(EOS, i1165, o2930, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9389_0_random_FieldAccess(EOS, i1165, o2930, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9389_0_random_FieldAccess(EOS, i1165, o2930, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9391_0_random_ConstantStackPush(EOS, i1165, o2930, i1152, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9391_0_random_ConstantStackPush(EOS, i1165, o2930, i1152, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9399_0_random_IntArithmetic(EOS, i1165, o2930, i1152, 1, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9399_0_random_IntArithmetic(EOS, i1165, o2930, i1152, matching1, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9408_0_random_FieldAccess(EOS, i1165, o2930, +(i1152, 1), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) | &&(>(i1152, 0), =(matching1, 1))
f9408_0_random_FieldAccess(EOS, i1165, o2930, i1194, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9412_0_random_Load(EOS, i1165, o2930, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9412_0_random_Load(EOS, i1165, o2930, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9423_0_random_InvokeMethod(EOS, i1165, o2930, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9423_0_random_InvokeMethod(EOS, i1165, java.lang.Object(o2935sub), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9435_0_random_InvokeMethod(EOS, i1165, java.lang.Object(o2935sub), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9435_0_random_InvokeMethod(EOS, i1165, java.lang.Object(o2935sub), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9443_0_length_Load(EOS, i1165, java.lang.Object(o2935sub), java.lang.Object(o2935sub), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9443_0_length_Load(EOS, i1165, java.lang.Object(o2935sub), java.lang.Object(o2935sub), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9467_0_length_FieldAccess(EOS, i1165, java.lang.Object(o2935sub), java.lang.Object(o2935sub), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9467_0_length_FieldAccess(EOS, i1165, java.lang.Object(java.lang.String(o2940sub, i1204)), java.lang.Object(java.lang.String(o2940sub, i1204)), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9474_0_length_FieldAccess(EOS, i1165, java.lang.Object(java.lang.String(o2940sub, i1204)), java.lang.Object(java.lang.String(o2940sub, i1204)), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9474_0_length_FieldAccess(EOS, i1165, java.lang.Object(java.lang.String(o2940sub, i1204)), java.lang.Object(java.lang.String(o2940sub, i1204)), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9492_0_length_Return(EOS, i1165, java.lang.Object(java.lang.String(o2940sub, i1204)), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9492_0_length_Return(EOS, i1165, java.lang.Object(java.lang.String(o2940sub, i1204)), o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9504_0_random_Return(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9504_0_random_Return(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9509_0_createList_InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9509_0_createList_InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9515_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9515_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9524_0__init__InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9524_0__init__InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9529_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9529_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9534_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9534_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9539_0__init__FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9539_0__init__FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9543_0__init__Return(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9543_0__init__Return(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9549_0_createList_InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9549_0_createList_InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9555_0_addLast_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9555_0_addLast_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9565_0_addLast_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9565_0_addLast_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9571_0_addLast_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9571_0_addLast_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9577_0_addLast_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9577_0_addLast_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9591_0_addLast_InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9591_0_addLast_InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9611_0_addBefore_New(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9611_0_addBefore_New(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9663_0_addBefore_Duplicate(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9663_0_addBefore_Duplicate(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9678_0_addBefore_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9678_0_addBefore_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9694_0_addBefore_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9694_0_addBefore_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9705_0_addBefore_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9705_0_addBefore_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9746_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9746_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9784_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) | &&(&&(&&(>(o2868[LinkedList$Entry.previous]o2867, 0), >(o2868[LinkedList$Entry.previous]o2868, 0)), >(o2868[LinkedList$Entry.next]o2867, 0)), >(o2868[LinkedList$Entry.next]o2868, 0))
f9784_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9820_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) | &&(&&(&&(>(o2869[LinkedList$Entry.next]o2867, 0), >(o2869[LinkedList$Entry.previous]o2867, 0)), >(o2869[LinkedList$Entry.next]o2869, 0)), >(o2869[LinkedList$Entry.previous]o2869, 0))
f9784_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9821_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) | =(o2868[LinkedList$Entry.next]o2867, +(o2869[LinkedList$Entry.next]o2869, -1))
f9820_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9825_0_addBefore_InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9825_0_addBefore_InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9870_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9870_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9885_0__init__InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9885_0__init__InvokeMethod(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9899_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9899_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9912_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9912_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9916_0__init__FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9916_0__init__FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9935_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9935_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9951_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9951_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9960_0__init__FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9960_0__init__FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9981_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f9981_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f10000_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f10000_0__init__Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f10012_0__init__FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f10012_0__init__FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f10031_0__init__Return(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f10031_0__init__Return(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f10050_0_addBefore_Store(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f10050_0_addBefore_Store(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f10063_0_addBefore_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f10063_0_addBefore_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f10072_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f10072_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f10087_0_addBefore_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f10087_0_addBefore_Load(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f10099_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f10099_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f10153_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) | &&(&&(&&(&&(&&(&&(>(o2869[LinkedList$Entry.next]o2868, 0), >(o2868[LinkedList$Entry.previous]o2868, 0)), >(o2868[LinkedList$Entry.previous]o2869, 0)), >(o2869[LinkedList$Entry.next]o2869, 0)), >(o2868[LinkedList$Entry.next]o2869, 0)), >(o2868[LinkedList$Entry.next]o2868, 0)), >(o2869[LinkedList$Entry.previous]o2869, 0))
f10099_0_addBefore_FieldAccess(EOS, i1165, o2869[LinkedList$Entry.next]o2868, o3174[LinkedList$Entry.next]o2867, o3174[LinkedList$Entry.previous]o2867, o3174[LinkedList$Entry.previous]o2867, o3174[LinkedList$Entry.previous]o3174, o2868[LinkedList$Entry.previous]o2869, o3174[LinkedList$Entry.next]o3174, o2868[LinkedList$Entry.next]o2869, o3174[LinkedList$Entry.next]o2867, o3174[LinkedList$Entry.next]o3174, o3174[LinkedList$Entry.previous]o3174) → f10154_0_addBefore_FieldAccess(EOS, i1165, o3174[LinkedList$Entry.previous]o2867, o3174[LinkedList$Entry.previous]o3174, o3174[LinkedList$Entry.next]o2867, o3174[LinkedList$Entry.next]o3174)
f10153_0_addBefore_FieldAccess(EOS, i1165, o3175[LinkedList$Entry.next]o2868, o3175[LinkedList$Entry.next]o2867, o3175[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o3175[LinkedList$Entry.next]o3175, o2868[LinkedList$Entry.next]o3175, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o3175[LinkedList$Entry.previous]o3175) → f10171_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3177[LinkedList$Entry.next]o2868, o3177[LinkedList$Entry.next]o2867, o3177[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175) | &&(&&(&&(&&(=(o3177[LinkedList$Entry.next]o2868, +(o3175[LinkedList$Entry.next]o2868, -1)), =(o3177[LinkedList$Entry.next]o2867, +(o3175[LinkedList$Entry.next]o2867, -1))), =(o3177[LinkedList$Entry.next]o3175, +(o3175[LinkedList$Entry.next]o3175, -1))), =(o3178[LinkedList$Entry.previous]o2867, +(o3175[LinkedList$Entry.previous]o2867, -1))), =(o3178[LinkedList$Entry.previous]o3175, +(o3175[LinkedList$Entry.previous]o3175, -1)))
f10171_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3177[LinkedList$Entry.next]o2868, o3177[LinkedList$Entry.next]o2867, o3177[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175) → f10222_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175)
f10222_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175) → f10275_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175)
f10275_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175) → f10300_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175)
f10300_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175) → f10336_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175)
f10336_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175) → f10394_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175)
f10394_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175) → f10503_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175) | >(o3178[LinkedList$Entry.previous]o2867, 0)
f10503_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o3175, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867, o3178[LinkedList$Entry.previous]o3175) → f10642_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10642_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f10743_0_addBefore_Duplicate(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10743_0_addBefore_Duplicate(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f10765_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10765_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f10791_0_addBefore_ConstantStackPush(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10791_0_addBefore_ConstantStackPush(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f10812_0_addBefore_IntArithmetic(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10812_0_addBefore_IntArithmetic(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f10837_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10837_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f10863_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10863_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f10888_0_addBefore_Duplicate(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10888_0_addBefore_Duplicate(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f10911_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10911_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f10938_0_addBefore_ConstantStackPush(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10938_0_addBefore_ConstantStackPush(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f10964_0_addBefore_IntArithmetic(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10964_0_addBefore_IntArithmetic(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f10990_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f10990_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f11018_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f11018_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f11042_0_addBefore_Return(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f11042_0_addBefore_Return(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f11091_0_addLast_StackPop(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f11091_0_addLast_StackPop(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f11149_0_addLast_Return(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f11149_0_addLast_Return(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f11202_0_createList_Inc(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f11202_0_createList_Inc(EOS, i1165, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f11220_0_createList_JMP(EOS, +(i1165, -1), o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) | >(i1165, 0)
f11220_0_createList_JMP(EOS, i1349, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f11258_0_createList_Load(EOS, i1349, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867)
f11258_0_createList_Load(EOS, i1349, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3175, o3178[LinkedList$Entry.previous]o2867) → f9260_0_createList_Load(EOS, i1349, o2979[LinkedList$Entry.next]o2868, o2979[LinkedList$Entry.next]o2867, o2979[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2979, o2979[LinkedList$Entry.next]o2979, o2868[LinkedList$Entry.next]o2979, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2979[LinkedList$Entry.previous]o2979) | &&(&&(=(o2979[LinkedList$Entry.next]o2979, 0), =(o2868[LinkedList$Entry.next]o2868, 0)), =(o2979[LinkedList$Entry.previous]o2979, 0))
f9260_0_createList_Load(EOS, i1153, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869) → f9263_0_createList_LE(EOS, i1153, i1153, o2869[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.next]o2867, o2869[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2867, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.previous]o2869, o2869[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2869, o2868[LinkedList$Entry.next]o2867, o2868[LinkedList$Entry.next]o2868, o2869[LinkedList$Entry.previous]o2869)
f10154_0_addBefore_FieldAccess(EOS, i1165, o3180[LinkedList$Entry.previous]o2867, o3180[LinkedList$Entry.previous]o3180, o3180[LinkedList$Entry.next]o2867, o3180[LinkedList$Entry.next]o3180) → f10178_0_addBefore_FieldAccess(EOS, i1165, o3182[LinkedList$Entry.next]o2867, o3182[LinkedList$Entry.next]o3180, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180) | &&(&&(&&(=(o3182[LinkedList$Entry.next]o2867, +(o3180[LinkedList$Entry.next]o2867, -1)), =(o3182[LinkedList$Entry.next]o3180, +(o3180[LinkedList$Entry.next]o3180, -1))), =(o3183[LinkedList$Entry.previous]o2867, +(o3180[LinkedList$Entry.previous]o2867, -1))), =(o3183[LinkedList$Entry.previous]o3180, +(o3180[LinkedList$Entry.previous]o3180, -1)))
f10178_0_addBefore_FieldAccess(EOS, i1165, o3182[LinkedList$Entry.next]o2867, o3182[LinkedList$Entry.next]o3180, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180) → f10259_0_addBefore_Load(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180)
f10259_0_addBefore_Load(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180) → f10287_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180)
f10287_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180) → f10310_0_addBefore_Load(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180)
f10310_0_addBefore_Load(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180) → f10353_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180)
f10353_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180) → f10440_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180)
f10440_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180) → f10535_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180) | >(o3183[LinkedList$Entry.previous]o2867, 0)
f10535_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867, o3183[LinkedList$Entry.previous]o3180) → f10732_0_addBefore_Load(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10732_0_addBefore_Load(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f10755_0_addBefore_Duplicate(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10755_0_addBefore_Duplicate(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f10777_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10777_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f10806_0_addBefore_ConstantStackPush(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10806_0_addBefore_ConstantStackPush(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f10821_0_addBefore_IntArithmetic(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10821_0_addBefore_IntArithmetic(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f10848_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10848_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f10870_0_addBefore_Load(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10870_0_addBefore_Load(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f10897_0_addBefore_Duplicate(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10897_0_addBefore_Duplicate(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f10921_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10921_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f10949_0_addBefore_ConstantStackPush(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10949_0_addBefore_ConstantStackPush(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f10977_0_addBefore_IntArithmetic(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10977_0_addBefore_IntArithmetic(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f10999_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f10999_0_addBefore_FieldAccess(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f11030_0_addBefore_Load(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f11030_0_addBefore_Load(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f11053_0_addBefore_Return(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f11053_0_addBefore_Return(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f11102_0_addLast_StackPop(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f11102_0_addLast_StackPop(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f11183_0_addLast_Return(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f11183_0_addLast_Return(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f11212_0_createList_Inc(EOS, i1165, o3183[LinkedList$Entry.previous]o2867)
f11212_0_createList_Inc(EOS, i1165, o3183[LinkedList$Entry.previous]o2867) → f11230_0_createList_JMP(EOS, +(i1165, -1), o3183[LinkedList$Entry.previous]o2867) | >(i1165, 0)
f11230_0_createList_JMP(EOS, i1351, o3183[LinkedList$Entry.previous]o2867) → f11265_0_createList_Load(EOS, i1351, o3183[LinkedList$Entry.previous]o2867)
f11265_0_createList_Load(EOS, i1351, o3183[LinkedList$Entry.previous]o2867) → f9260_0_createList_Load(EOS, i1351, o2979[LinkedList$Entry.next]o3180, o2979[LinkedList$Entry.next]o2867, o2979[LinkedList$Entry.previous]o2867, o3180[LinkedList$Entry.previous]o2867, o3180[LinkedList$Entry.previous]o3180, o3180[LinkedList$Entry.previous]o2979, o2979[LinkedList$Entry.next]o2979, o3180[LinkedList$Entry.next]o2979, o3180[LinkedList$Entry.next]o2867, o3180[LinkedList$Entry.next]o3180, o2979[LinkedList$Entry.previous]o2979) | &&(&&(&&(&&(=(o3180[LinkedList$Entry.previous]o3180, 0), =(o2979[LinkedList$Entry.next]o2979, 0)), =(o3180[LinkedList$Entry.next]o2979, 1)), =(o3180[LinkedList$Entry.next]o3180, 0)), =(o2979[LinkedList$Entry.previous]o2979, 0))
f9821_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f9864_0_addBefore_InvokeMethod(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f9864_0_addBefore_InvokeMethod(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f9874_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f9874_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f9892_0__init__InvokeMethod(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f9892_0__init__InvokeMethod(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f9907_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f9907_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f9914_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f9914_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f9924_0__init__FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f9924_0__init__FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f9945_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f9945_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f9958_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f9958_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f9969_0__init__FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f9969_0__init__FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f9997_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f9997_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f10006_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f10006_0__init__Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f10022_0__init__FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f10022_0__init__FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f10046_0__init__Return(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f10046_0__init__Return(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f10061_0_addBefore_Store(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f10061_0_addBefore_Store(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f10067_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f10067_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f10081_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f10081_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f10095_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f10095_0_addBefore_Load(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f10102_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026)
f10102_0_addBefore_FieldAccess(EOS, i1165, o2868[LinkedList$Entry.previous]o3026, o2868[LinkedList$Entry.previous]o2868, o2868[LinkedList$Entry.next]o3026, o2868[LinkedList$Entry.next]o2868, o3026[LinkedList$Entry.next]o3026) → f10166_0_addBefore_Load(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10166_0_addBefore_Load(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10185_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10185_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10264_0_addBefore_Load(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10264_0_addBefore_Load(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10289_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10289_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10321_0_addBefore_Load(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10321_0_addBefore_Load(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10357_0_addBefore_Duplicate(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10357_0_addBefore_Duplicate(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10453_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10453_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10539_0_addBefore_ConstantStackPush(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10539_0_addBefore_ConstantStackPush(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10734_0_addBefore_IntArithmetic(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10734_0_addBefore_IntArithmetic(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10757_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10757_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10784_0_addBefore_Load(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10784_0_addBefore_Load(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10808_0_addBefore_Duplicate(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10808_0_addBefore_Duplicate(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10826_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10826_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10852_0_addBefore_ConstantStackPush(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10852_0_addBefore_ConstantStackPush(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10880_0_addBefore_IntArithmetic(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10880_0_addBefore_IntArithmetic(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10906_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10906_0_addBefore_FieldAccess(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10930_0_addBefore_Load(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10930_0_addBefore_Load(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10955_0_addBefore_Return(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10955_0_addBefore_Return(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f10981_0_addLast_StackPop(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f10981_0_addLast_StackPop(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f11006_0_addLast_Return(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f11006_0_addLast_Return(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f11037_0_createList_Inc(EOS, i1165, o3026[LinkedList$Entry.next]o3026)
f11037_0_createList_Inc(EOS, i1165, o3026[LinkedList$Entry.next]o3026) → f11057_0_createList_JMP(EOS, +(i1165, -1), o3026[LinkedList$Entry.next]o3026) | >(i1165, 0)
f11057_0_createList_JMP(EOS, i1340, o3026[LinkedList$Entry.next]o3026) → f11137_0_createList_Load(EOS, i1340, o3026[LinkedList$Entry.next]o3026)
f11137_0_createList_Load(EOS, i1340, o3026[LinkedList$Entry.next]o3026) → f9260_0_createList_Load(EOS, i1340, o2979[LinkedList$Entry.next]o2979, o2979[LinkedList$Entry.next]o3026, o2979[LinkedList$Entry.previous]o3026, o2979[LinkedList$Entry.previous]o3026, o2979[LinkedList$Entry.previous]o2979, o2979[LinkedList$Entry.previous]o2979, o2979[LinkedList$Entry.next]o2979, o2979[LinkedList$Entry.next]o2979, o2979[LinkedList$Entry.next]o3026, o2979[LinkedList$Entry.next]o2979, o2979[LinkedList$Entry.previous]o2979) | &&(&&(&&(&&(&&(&&(=(o2979[LinkedList$Entry.next]o2979, 0), =(o2979[LinkedList$Entry.previous]o2979, 0)), =(o2979[LinkedList$Entry.previous]o2979, 0)), =(o2979[LinkedList$Entry.next]o2979, 0)), =(o2979[LinkedList$Entry.next]o2979, 0)), =(o2979[LinkedList$Entry.next]o2979, 0)), =(o2979[LinkedList$Entry.previous]o2979, 0))

Combined rules. Obtained 3 IRules

P rules:
f9263_0_createList_LE(EOS, x0, x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) → f9263_0_createList_LE(EOS, -(x0, 1), -(x0, 1), x12, x13, x14, x4, x5, x15, 0, x17, x18, 0, 0) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x7, 0)), >(x6, 0)), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x2, 0)), >(x11, 0)), >(x10, 0)), >(x1, 0)), >(x0, 0))
f9263_0_createList_LE(EOS, x0, x0, x1, x2, x3, x3, x4, x5, x6, x7, x2, x6, x4) → f9263_0_createList_LE(EOS, -(x0, 1), -(x0, 1), x8, x9, x10, x11, 0, x13, 0, 1, x16, 0, 0) | &&(&&(&&(&&(>(x6, 0), >(x4, 0)), >(x3, 0)), >(x2, 0)), >(x0, 0))
f9263_0_createList_LE(EOS, x0, x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) → f9263_0_createList_LE(EOS, -(x0, 1), -(x0, 1), 0, x13, x14, x14, 0, 0, 0, 0, x13, 0, 0) | &&(&&(&&(&&(>(x9, 0), >(x5, 0)), >(x4, 0)), >(x10, 0)), >(x0, 0))

Filtered ground terms:


f9263_0_createList_LE(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) → f9263_0_createList_LE(x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14)
Cond_f9263_0_createList_LE(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21) → Cond_f9263_0_createList_LE(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21)
Cond_f9263_0_createList_LE1(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21) → Cond_f9263_0_createList_LE1(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21)
Cond_f9263_0_createList_LE2(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) → Cond_f9263_0_createList_LE2(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17)

Filtered duplicate terms:


f9263_0_createList_LE(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) → f9263_0_createList_LE(x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13)
Cond_f9263_0_createList_LE(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20) → Cond_f9263_0_createList_LE(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20)
Cond_f9263_0_createList_LE1(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20) → Cond_f9263_0_createList_LE1(x1, x3, x4, x7, x9, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20)
Cond_f9263_0_createList_LE2(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16) → Cond_f9263_0_createList_LE2(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16)

Filtered unneeded terms:


Cond_f9263_0_createList_LE(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19) → Cond_f9263_0_createList_LE(x1, x2, x6, x7, x14, x15, x16, x17, x18, x19)
Cond_f9263_0_createList_LE1(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15) → Cond_f9263_0_createList_LE1(x1, x2, x10, x11, x12, x13, x14, x15)
Cond_f9263_0_createList_LE2(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15) → Cond_f9263_0_createList_LE2(x1, x2, x14, x15)

Prepared 3 rules for path length conversion:

P rules:
f9263_0_createList_LE(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) → f9263_0_createList_LE(-(x0, 1), x12, x13, x14, x4, x5, x15, 0, x17, x18, 0, 0) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x7, 0)), >(x6, 0)), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x2, 0)), >(x11, 0)), >(x10, 0)), >(x1, 0)), >(x0, 0))
f9263_0_createList_LE(x0, x1, x2, x3, x3, x4, x5, x6, x7, x2, x6, x4) → f9263_0_createList_LE(-(x0, 1), x8, x9, x10, x11, 0, x13, 0, 1, x16, 0, 0) | &&(&&(&&(&&(>(x6, 0), >(x4, 0)), >(x3, 0)), >(x2, 0)), >(x0, 0))
f9263_0_createList_LE(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) → f9263_0_createList_LE(-(x0, 1), 0, x13, x14, x14, 0, 0, 0, 0, x13, 0, 0) | &&(&&(&&(&&(>(x9, 0), >(x5, 0)), >(x4, 0)), >(x10, 0)), >(x0, 0))

Finished conversion. Obtained 3 rules.

P rules:
f9263_0_createList_LE(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) → f9263_0_createList_LE(-(x0, 1), x12, x13, x14, x4, x5, x15, 0, x16, x17, 0, 0) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x7, 0)), >(x6, 0)), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x2, 0)), >(x11, 0)), >(x10, 0)), >(x0, 0)), >(x1, 0))
f9263_0_createList_LE(x18, x19, x20, x21, x211, x22, x23, x24, x25, x201, x241, x221) → f9263_0_createList_LE(-(x18, 1), x26, x27, x28, x29, 0, x30, 0, 1, x31, 0, 0) | &&(&&(&&(&&(&&(&&(&&(&&(>(x24, 0), >(x22, 0)), >(x21, 0)), >(x18, 0)), >(x20, 0)), =(x21, x211)), =(x20, x201)), =(x24, x241)), =(x22, x221))
f9263_0_createList_LE(x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42, x43) → f9263_0_createList_LE(-(x32, 1), 0, x44, x45, x45, 0, 0, 0, 0, x44, 0, 0) | &&(&&(&&(&&(>(x42, 0), >(x41, 0)), >(x37, 0)), >(x32, 0)), >(x36, 0))

(7) Obligation:

Rules:
f9263_0_createList_LE(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) → f9263_0_createList_LE(-(x0, 1), x12, x13, x14, x4, x5, x15, 0, x16, x17, 0, 0) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x7, 0)), >(x6, 0)), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x2, 0)), >(x11, 0)), >(x10, 0)), >(x0, 0)), >(x1, 0))
f9263_0_createList_LE(x18, x19, x20, x21, x211, x22, x23, x24, x25, x201, x241, x221) → f9263_0_createList_LE(-(x18, 1), x26, x27, x28, x29, 0, x30, 0, 1, x31, 0, 0) | &&(&&(&&(&&(&&(&&(&&(&&(>(x24, 0), >(x22, 0)), >(x21, 0)), >(x18, 0)), >(x20, 0)), =(x21, x211)), =(x20, x201)), =(x24, x241)), =(x22, x221))
f9263_0_createList_LE(x32, x33, x34, x35, x36, x37, x38, x39, x40, x41, x42, x43) → f9263_0_createList_LE(-(x32, 1), 0, x44, x45, x45, 0, 0, 0, 0, x44, 0, 0) | &&(&&(&&(&&(>(x42, 0), >(x41, 0)), >(x37, 0)), >(x32, 0)), >(x36, 0))

(8) TerminationGraphProcessor (EQUIVALENT transformation)

Constructed the termination graph and obtained no non-trivial SCC(s).


(9) YES

(10) Obligation:

SCC of termination graph based on JBC Program.
SCC contains nodes from the following methods: javaUtilEx.juLinkedListCreateLastIndexOf.main([Ljava/lang/String;)V
SCC calls the following helper methods: javaUtilEx.Content.equals(Ljava/lang/Object;)Z
Performed SCC analyses:
  • Used field analysis yielded the following read fields:
    • javaUtilEx.LinkedList: [header]
    • javaUtilEx.LinkedList$Entry: [element, previous]
  • Marker field analysis yielded the following relations that could be markers:

(11) SCCToIntTRSProof (SOUND transformation)

Transformed FIGraph SCCs to intTRSs. Log:

Generated rules. Obtained 48 IRules

P rules:
f18606_0_lastIndexOf_Load(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284) → f18608_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284)
f18608_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284) → f18610_0_lastIndexOf_EQ(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284)
f18610_0_lastIndexOf_EQ(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284) → f18612_0_lastIndexOf_EQ(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284) | &&(>(o11284[LinkedList$Entry.previous]o11282, 0), >(o11284[LinkedList$Entry.previous]o11284, 0))
f18612_0_lastIndexOf_EQ(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284) → f18615_0_lastIndexOf_Inc(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284)
f18615_0_lastIndexOf_Inc(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284) → f18620_0_lastIndexOf_Load(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284)
f18620_0_lastIndexOf_Load(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284) → f18624_0_lastIndexOf_Load(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), java.lang.Object(o11283sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284)
f18624_0_lastIndexOf_Load(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), java.lang.Object(o11283sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284) → f18628_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284)
f18628_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), java.lang.Object(o11283sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), o11501[LinkedList$Entry.previous]o11282, o11501[LinkedList$Entry.previous]o11501) → f18632_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), java.lang.Object(o11283sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), o11504[LinkedList$Entry.previous]o11282, o11504[LinkedList$Entry.previous]o11501) | &&(=(o11504[LinkedList$Entry.previous]o11282, +(o11501[LinkedList$Entry.previous]o11282, -1)), =(o11504[LinkedList$Entry.previous]o11501, +(o11501[LinkedList$Entry.previous]o11501, -1)))
f18632_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), java.lang.Object(o11283sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), o11504[LinkedList$Entry.previous]o11282, o11504[LinkedList$Entry.previous]o11501) → f18636_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), java.lang.Object(o11283sub0), o115020, o11504[LinkedList$Entry.previous]o11282, o11504[LinkedList$Entry.previous]o11501)
f18636_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), java.lang.Object(o11283sub0), o115020, o11504[LinkedList$Entry.previous]o11282, o11504[LinkedList$Entry.previous]o11501) → f18638_0_equals_Load(EOS, java.lang.Object(o11283sub0), o115020, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), java.lang.Object(o11504sub0), java.lang.Object(o11283sub0), o115020, o11504[LinkedList$Entry.previous]o11282, o11504[LinkedList$Entry.previous]o11501)
f18636_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), java.lang.Object(o11283sub0), o115020, o11504[LinkedList$Entry.previous]o11282, o11504[LinkedList$Entry.previous]o11501) → f18638_1_equals_Load(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), java.lang.Object(o11283sub0), o115020, java.lang.Object(o11283sub0), o115020, o11504[LinkedList$Entry.previous]o11282, o11504[LinkedList$Entry.previous]o11501)
f18638_0_equals_Load(EOS, java.lang.Object(o11283sub0), o115020, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), java.lang.Object(o11504sub0), java.lang.Object(o11283sub0), o115020, o11504[LinkedList$Entry.previous]o11282, o11504[LinkedList$Entry.previous]o11501) → f18640_0_equals_Load(EOS, java.lang.Object(o11283sub0), o115020, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o115021688790031, java.lang.Object(o11504sub1688790031))), java.lang.Object(o11504sub0), java.lang.Object(o11283sub0), o115020, o11504[LinkedList$Entry.previous]o11282, o11504[LinkedList$Entry.previous]o11501)
f18658_0_equals_Return(EOS, java.lang.Object(o11740sub0), java.lang.Object(o11740sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11746sub1688853488))), java.lang.Object(o11740sub0), NULL, matching1, o11746[LinkedList$Entry.previous]o11738, o11746[LinkedList$Entry.previous]o11742, o11746[LinkedList$Entry.previous]o11746) → f18661_0_equals_Return(EOS, java.lang.Object(o11740sub0), java.lang.Object(o11740sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11746sub1688853488))), java.lang.Object(o11740sub0), NULL, 0, o11746[LinkedList$Entry.previous]o11738, o11746[LinkedList$Entry.previous]o11742, o11746[LinkedList$Entry.previous]o11746) | =(matching1, 0)
f18661_0_equals_Return(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o117941688858324, java.lang.Object(o11796sub1688858324))), java.lang.Object(o11792sub0), o117940, matching1, o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11793, o11796[LinkedList$Entry.previous]o11796) → f18664_0_lastIndexOf_EQ(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o117941688858324, java.lang.Object(o11796sub1688858324))), 0, o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11793, o11796[LinkedList$Entry.previous]o11796) | =(matching1, 0)
f18664_0_lastIndexOf_EQ(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o117941688858324, java.lang.Object(o11796sub1688858324))), matching1, o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11793, o11796[LinkedList$Entry.previous]o11796) → f18666_0_lastIndexOf_Load(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o117941688858324, java.lang.Object(o11796sub1688858324))), o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11793, o11796[LinkedList$Entry.previous]o11796) | =(matching1, 0)
f18666_0_lastIndexOf_Load(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o117941688858324, java.lang.Object(o11796sub1688858324))), o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11793, o11796[LinkedList$Entry.previous]o11796) → f18668_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o117941688858324, java.lang.Object(o11796sub1688858324))), o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11793, o11796[LinkedList$Entry.previous]o11796)
f18668_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o117941688858324, java.lang.Object(o11796sub1688858324))), o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11793, o11796[LinkedList$Entry.previous]o11796) → f18670_0_lastIndexOf_Store(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(o11796sub0), o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11796)
f18670_0_lastIndexOf_Store(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(o11796sub0), o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11796) → f18672_0_lastIndexOf_JMP(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(o11796sub0), o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11796)
f18672_0_lastIndexOf_JMP(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(o11796sub0), o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11796) → f18674_0_lastIndexOf_Load(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(o11796sub0), o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11796)
f18674_0_lastIndexOf_Load(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(o11796sub0), o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11796) → f18604_0_lastIndexOf_Load(EOS, java.lang.Object(o11792sub0), java.lang.Object(o11792sub0), java.lang.Object(o11796sub0), o11796[LinkedList$Entry.previous]o11791, o11796[LinkedList$Entry.previous]o11796)
f18604_0_lastIndexOf_Load(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284) → f18606_0_lastIndexOf_Load(EOS, java.lang.Object(o11283sub0), java.lang.Object(o11283sub0), java.lang.Object(o11284sub0), java.lang.Object(o11284sub0), o11284[LinkedList$Entry.previous]o11282, o11284[LinkedList$Entry.previous]o11284)
f18660_0_equals_Return(EOS, java.lang.Object(o11759sub0), java.lang.Object(o11759sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11763sub1688855379), java.lang.Object(o11767sub1688855379))), java.lang.Object(o11759sub0), java.lang.Object(o11763sub0), matching1, o11767[LinkedList$Entry.previous]o11757, o11767[LinkedList$Entry.previous]o11761, o11767[LinkedList$Entry.previous]o11767) → f18661_0_equals_Return(EOS, java.lang.Object(o11759sub0), java.lang.Object(o11759sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11763sub1688855379), java.lang.Object(o11767sub1688855379))), java.lang.Object(o11759sub0), java.lang.Object(o11763sub0), 0, o11767[LinkedList$Entry.previous]o11757, o11767[LinkedList$Entry.previous]o11761, o11767[LinkedList$Entry.previous]o11767) | =(matching1, 0)
f18685_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12222sub1689625357))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12222[LinkedList$Entry.previous]o12213, o12222[LinkedList$Entry.previous]o12218, o12222[LinkedList$Entry.previous]o12222) → f18708_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12222sub1689625357))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o12222[LinkedList$Entry.previous]o12213, o12222[LinkedList$Entry.previous]o12218, o12222[LinkedList$Entry.previous]o12222) | =(matching1, 1)
f18708_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o12759sub1689778156), java.lang.Object(o12761sub1689778156))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12759sub0), i4247, o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12758, o12761[LinkedList$Entry.previous]o12761) → f18709_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o12759sub1689778156), java.lang.Object(o12761sub1689778156))), i4247, o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12758, o12761[LinkedList$Entry.previous]o12761)
f18709_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o12759sub1689778156), java.lang.Object(o12761sub1689778156))), matching1, o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12758, o12761[LinkedList$Entry.previous]o12761) → f18712_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o12759sub1689778156), java.lang.Object(o12761sub1689778156))), 0, o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12758, o12761[LinkedList$Entry.previous]o12761) | =(matching1, 0)
f18712_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o12759sub1689778156), java.lang.Object(o12761sub1689778156))), matching1, o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12758, o12761[LinkedList$Entry.previous]o12761) → f18717_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o12759sub1689778156), java.lang.Object(o12761sub1689778156))), o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12758, o12761[LinkedList$Entry.previous]o12761) | =(matching1, 0)
f18717_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o12759sub1689778156), java.lang.Object(o12761sub1689778156))), o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12758, o12761[LinkedList$Entry.previous]o12761) → f18723_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o12759sub1689778156), java.lang.Object(o12761sub1689778156))), o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12758, o12761[LinkedList$Entry.previous]o12761)
f18723_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o12759sub1689778156), java.lang.Object(o12761sub1689778156))), o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12758, o12761[LinkedList$Entry.previous]o12761) → f18729_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12761sub0), o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12761)
f18729_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12761sub0), o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12761) → f18737_0_lastIndexOf_JMP(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12761sub0), o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12761)
f18737_0_lastIndexOf_JMP(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12761sub0), o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12761) → f18747_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12761sub0), o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12761)
f18747_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12761sub0), o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12761) → f18604_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12761sub0), o12761[LinkedList$Entry.previous]o12756, o12761[LinkedList$Entry.previous]o12761)
f18698_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12415sub1689684722))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12415[LinkedList$Entry.previous]o12406, o12415[LinkedList$Entry.previous]o12411, o12415[LinkedList$Entry.previous]o12415) → f18685_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12415sub1689684722))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o12415[LinkedList$Entry.previous]o12406, o12415[LinkedList$Entry.previous]o12411, o12415[LinkedList$Entry.previous]o12415) | =(matching1, 1)
f18707_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12744sub1689776234))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12744[LinkedList$Entry.previous]o12734, o12744[LinkedList$Entry.previous]o12738, o12744[LinkedList$Entry.previous]o12744) → f18708_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12744sub1689776234))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12744[LinkedList$Entry.previous]o12734, o12744[LinkedList$Entry.previous]o12738, o12744[LinkedList$Entry.previous]o12744) | =(matching1, 0)
f18719_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12953sub1689836746))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12953[LinkedList$Entry.previous]o12943, o12953[LinkedList$Entry.previous]o12947, o12953[LinkedList$Entry.previous]o12953) → f18708_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12953sub1689836746))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12953[LinkedList$Entry.previous]o12943, o12953[LinkedList$Entry.previous]o12947, o12953[LinkedList$Entry.previous]o12953) | =(matching1, 0)
f18728_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13127sub1690519831))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13127[LinkedList$Entry.previous]o13117, o13127[LinkedList$Entry.previous]o13121, o13127[LinkedList$Entry.previous]o13127) → f18708_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13127sub1690519831))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o13127[LinkedList$Entry.previous]o13117, o13127[LinkedList$Entry.previous]o13121, o13127[LinkedList$Entry.previous]o13127) | =(matching1, 0)
f18735_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13305sub1690556597))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13305[LinkedList$Entry.previous]o13295, o13305[LinkedList$Entry.previous]o13299, o13305[LinkedList$Entry.previous]o13305) → f18708_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13305sub1690556597))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13305[LinkedList$Entry.previous]o13295, o13305[LinkedList$Entry.previous]o13299, o13305[LinkedList$Entry.previous]o13305) | =(matching1, 1)
f18741_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13476sub1690613978))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13476[LinkedList$Entry.previous]o13466, o13476[LinkedList$Entry.previous]o13470, o13476[LinkedList$Entry.previous]o13476) → f18708_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13476sub1690613978))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13476[LinkedList$Entry.previous]o13466, o13476[LinkedList$Entry.previous]o13470, o13476[LinkedList$Entry.previous]o13476) | =(matching1, 1)
f18748_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13640sub1690669840))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13640[LinkedList$Entry.previous]o13630, o13640[LinkedList$Entry.previous]o13634, o13640[LinkedList$Entry.previous]o13640) → f18708_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13640sub1690669840))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13640[LinkedList$Entry.previous]o13630, o13640[LinkedList$Entry.previous]o13634, o13640[LinkedList$Entry.previous]o13640) | =(matching1, 1)
f18638_1_equals_Load(EOS, java.lang.Object(o11740sub0), java.lang.Object(o11740sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11746sub1688853488))), java.lang.Object(o11740sub0), NULL, java.lang.Object(o11740sub0), NULL, o11746[LinkedList$Entry.previous]o11738, o11746[LinkedList$Entry.previous]o11742) → f18658_0_equals_Return(EOS, java.lang.Object(o11740sub0), java.lang.Object(o11740sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11746sub1688853488))), java.lang.Object(o11740sub0), NULL, 0, o11746[LinkedList$Entry.previous]o11738, o11746[LinkedList$Entry.previous]o11742, o11746[LinkedList$Entry.previous]o11746)
f18638_1_equals_Load(EOS, java.lang.Object(o11759sub0), java.lang.Object(o11759sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11763sub1688855379), java.lang.Object(o11767sub1688855379))), java.lang.Object(o11759sub0), java.lang.Object(o11763sub0), java.lang.Object(o11759sub0), java.lang.Object(o11763sub0), o11767[LinkedList$Entry.previous]o11757, o11767[LinkedList$Entry.previous]o11761) → f18660_0_equals_Return(EOS, java.lang.Object(o11759sub0), java.lang.Object(o11759sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11763sub1688855379), java.lang.Object(o11767sub1688855379))), java.lang.Object(o11759sub0), java.lang.Object(o11763sub0), 0, o11767[LinkedList$Entry.previous]o11757, o11767[LinkedList$Entry.previous]o11761, o11767[LinkedList$Entry.previous]o11767)
f18638_1_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12222sub1689625357))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12222[LinkedList$Entry.previous]o12213, o12222[LinkedList$Entry.previous]o12218) → f18685_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12222sub1689625357))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o12222[LinkedList$Entry.previous]o12213, o12222[LinkedList$Entry.previous]o12218, o12222[LinkedList$Entry.previous]o12222)
f18638_1_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12415sub1689684722))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12415[LinkedList$Entry.previous]o12406, o12415[LinkedList$Entry.previous]o12411) → f18698_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12415sub1689684722))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o12415[LinkedList$Entry.previous]o12406, o12415[LinkedList$Entry.previous]o12411, o12415[LinkedList$Entry.previous]o12415)
f18638_1_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12744sub1689776234))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12744[LinkedList$Entry.previous]o12734, o12744[LinkedList$Entry.previous]o12738) → f18707_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12744sub1689776234))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12744[LinkedList$Entry.previous]o12734, o12744[LinkedList$Entry.previous]o12738, o12744[LinkedList$Entry.previous]o12744)
f18638_1_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12953sub1689836746))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12953[LinkedList$Entry.previous]o12943, o12953[LinkedList$Entry.previous]o12947) → f18719_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12953sub1689836746))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12953[LinkedList$Entry.previous]o12943, o12953[LinkedList$Entry.previous]o12947, o12953[LinkedList$Entry.previous]o12953)
f18638_1_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13127sub1690519831))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13127[LinkedList$Entry.previous]o13117, o13127[LinkedList$Entry.previous]o13121) → f18728_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13127sub1690519831))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o13127[LinkedList$Entry.previous]o13117, o13127[LinkedList$Entry.previous]o13121, o13127[LinkedList$Entry.previous]o13127)
f18638_1_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13305sub1690556597))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13305[LinkedList$Entry.previous]o13295, o13305[LinkedList$Entry.previous]o13299) → f18735_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13305sub1690556597))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13305[LinkedList$Entry.previous]o13295, o13305[LinkedList$Entry.previous]o13299, o13305[LinkedList$Entry.previous]o13305)
f18638_1_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13476sub1690613978))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13476[LinkedList$Entry.previous]o13466, o13476[LinkedList$Entry.previous]o13470) → f18741_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13476sub1690613978))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13476[LinkedList$Entry.previous]o13466, o13476[LinkedList$Entry.previous]o13470, o13476[LinkedList$Entry.previous]o13476)
f18638_1_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13640sub1690669840))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13640[LinkedList$Entry.previous]o13630, o13640[LinkedList$Entry.previous]o13634) → f18748_0_equals_Return(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13640sub1690669840))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13640[LinkedList$Entry.previous]o13630, o13640[LinkedList$Entry.previous]o13634, o13640[LinkedList$Entry.previous]o13640)

Combined rules. Obtained 4 IRules

P rules:
f18606_0_lastIndexOf_Load(EOS, java.lang.Object(x0), java.lang.Object(x0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x1, java.lang.Object(x2))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x1, java.lang.Object(x2))), x3, x4) → f18640_0_equals_Load(EOS, java.lang.Object(x0), x5, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x1, java.lang.Object(x2))), java.lang.Object(x6), java.lang.Object(x0), x5, -(x3, 1), -(x4, 1)) | &&(>(x3, 0), >(x4, 0))
f18606_0_lastIndexOf_Load(EOS, java.lang.Object(x0), java.lang.Object(x0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x1))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x1))), x2, x3) → f18606_0_lastIndexOf_Load(EOS, java.lang.Object(x0), java.lang.Object(x0), java.lang.Object(x4), java.lang.Object(x4), -(x2, 1), x6) | &&(>(x2, 0), >(x3, 0))
f18606_0_lastIndexOf_Load(EOS, java.lang.Object(x0), java.lang.Object(x0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x1), java.lang.Object(x2))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x1), java.lang.Object(x2))), x3, x4) → f18606_0_lastIndexOf_Load(EOS, java.lang.Object(x0), java.lang.Object(x0), java.lang.Object(x5), java.lang.Object(x5), -(x3, 1), x7) | &&(>(x3, 0), >(x4, 0))
f18606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x0))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x0))), x1, x2) → f18606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x3), java.lang.Object(x3), -(x1, 1), x5) | &&(>(x1, 0), >(x2, 0))

Filtered ground terms:


f18606_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6, x7) → f18606_0_lastIndexOf_Load(x2, x3, x4, x5, x6, x7)
Cond_f18606_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) → Cond_f18606_0_lastIndexOf_Load(x1, x3, x4, x5, x6, x7, x8, x9, x10)
f18640_0_equals_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9) → f18640_0_equals_Load(x2, x3, x4, x5, x6, x7, x8, x9)
Cond_f18606_0_lastIndexOf_Load1(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) → Cond_f18606_0_lastIndexOf_Load1(x1, x3, x4, x5, x6, x7, x8, x9, x10)
Cond_f18606_0_lastIndexOf_Load2(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) → Cond_f18606_0_lastIndexOf_Load2(x1, x3, x4, x5, x6, x7, x8, x9, x10)
Cond_f18606_0_lastIndexOf_Load3(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) → Cond_f18606_0_lastIndexOf_Load3(x1, x5, x6, x7, x8, x9, x10)
javaUtilEx.LinkedList$Entry(x1, x2, x3) → javaUtilEx.LinkedList$Entry(x2, x3)
javaUtilEx.Content(x1) → javaUtilEx.Content

Filtered duplicate terms:


f18606_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6) → f18606_0_lastIndexOf_Load(x2, x4, x5, x6)
Cond_f18606_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9) → Cond_f18606_0_lastIndexOf_Load(x1, x3, x5, x6, x7, x8, x9)
f18640_0_equals_Load(x1, x2, x3, x4, x5, x6, x7, x8) → f18640_0_equals_Load(x3, x4, x5, x6, x7, x8)
Cond_f18606_0_lastIndexOf_Load1(x1, x2, x3, x4, x5, x6, x7, x8, x9) → Cond_f18606_0_lastIndexOf_Load1(x1, x3, x5, x6, x7, x8, x9)
Cond_f18606_0_lastIndexOf_Load2(x1, x2, x3, x4, x5, x6, x7, x8, x9) → Cond_f18606_0_lastIndexOf_Load2(x1, x3, x5, x6, x7, x8, x9)
Cond_f18606_0_lastIndexOf_Load3(x1, x2, x3, x4, x5, x6, x7) → Cond_f18606_0_lastIndexOf_Load3(x1, x3, x4, x5, x6, x7)

Filtered unneeded terms:


Cond_f18606_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6, x7) → Cond_f18606_0_lastIndexOf_Load(x1)
javaUtilEx.LinkedList$Entry(x1, x2) → javaUtilEx.LinkedList$Entry(x1)
Cond_f18606_0_lastIndexOf_Load1(x1, x2, x3, x4, x5, x6, x7) → Cond_f18606_0_lastIndexOf_Load1(x1, x2, x4, x6, x7)
Cond_f18606_0_lastIndexOf_Load2(x1, x2, x3, x4, x5, x6, x7) → Cond_f18606_0_lastIndexOf_Load2(x1, x2, x4, x6, x7)
Cond_f18606_0_lastIndexOf_Load3(x1, x2, x3, x4, x5, x6) → Cond_f18606_0_lastIndexOf_Load3(x1, x3, x5, x6)

Prepared 4 rules for path length conversion:

P rules:
f18606_0_lastIndexOf_Load(java.lang.Object(x0), java.lang.Object(javaUtilEx.LinkedList$Entry(x1)), x3, x4) → f18640_0_equals_Load(java.lang.Object(javaUtilEx.LinkedList$Entry(x1)), java.lang.Object(x6), java.lang.Object(x0), x5, -(x3, 1), -(x4, 1)) | &&(>(x3, 0), >(x4, 0))
f18606_0_lastIndexOf_Load(java.lang.Object(x0), java.lang.Object(javaUtilEx.LinkedList$Entry(NULL)), x2, x3) → f18606_0_lastIndexOf_Load(java.lang.Object(x0), java.lang.Object(x4), -(x2, 1), x6) | &&(>(x2, 0), >(x3, 0))
f18606_0_lastIndexOf_Load(java.lang.Object(x0), java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x1))), x3, x4) → f18606_0_lastIndexOf_Load(java.lang.Object(x0), java.lang.Object(x5), -(x3, 1), x7) | &&(>(x3, 0), >(x4, 0))
f18606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.Content), java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(javaUtilEx.Content))), x1, x2) → f18606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.Content), java.lang.Object(x3), -(x1, 1), x5) | &&(>(x1, 0), >(x2, 0))

Finished conversion. Obtained 3 rules.

P rules:
f18606_0_lastIndexOf_Load(v25, v26, x7, x8) → f18606_0_lastIndexOf_Load(v27, v28, -(x7, 1), x10) | &&(&&(&&(&&(&&(&&(>(x8, 0), >(x7, 0)), >(+(v28, 1), 1)), >(+(v27, 1), 1)), <=(v27, v25)), >(+(v26, 1), 2)), >(+(v25, 1), 1))
f18606_0_lastIndexOf_Load(v29, v30, x13, x14) → f18606_0_lastIndexOf_Load(v31, v32, -(x13, 1), x16) | &&(&&(&&(&&(&&(&&(>(x14, 0), >(x13, 0)), >(+(v32, 1), 1)), >(+(v31, 1), 1)), <=(v31, v29)), >(+(v30, 1), 3)), >(+(v29, 1), 1))
f18606_0_lastIndexOf_Load(v33, v34, x17, x18) → f18606_0_lastIndexOf_Load(v35, v36, -(x17, 1), x20) | &&(&&(&&(&&(&&(&&(&&(>(x18, 0), >(x17, 0)), >(+(v36, 1), 1)), >(+(v35, 1), 1)), <=(v35, v33)), <=(+(v35, 2), v34)), >(+(v34, 1), 3)), >(+(v33, 1), 1))

(12) Obligation:

Rules:
f18606_0_lastIndexOf_Load(v25, v26, x7, x8) → f18606_0_lastIndexOf_Load(v27, v28, -(x7, 1), x10) | &&(&&(&&(&&(&&(&&(>(x8, 0), >(x7, 0)), >(+(v28, 1), 1)), >(+(v27, 1), 1)), <=(v27, v25)), >(+(v26, 1), 2)), >(+(v25, 1), 1))
f18606_0_lastIndexOf_Load(v29, v30, x13, x14) → f18606_0_lastIndexOf_Load(v31, v32, -(x13, 1), x16) | &&(&&(&&(&&(&&(&&(>(x14, 0), >(x13, 0)), >(+(v32, 1), 1)), >(+(v31, 1), 1)), <=(v31, v29)), >(+(v30, 1), 3)), >(+(v29, 1), 1))
f18606_0_lastIndexOf_Load(v33, v34, x17, x18) → f18606_0_lastIndexOf_Load(v35, v36, -(x17, 1), x20) | &&(&&(&&(&&(&&(&&(&&(>(x18, 0), >(x17, 0)), >(+(v36, 1), 1)), >(+(v35, 1), 1)), <=(v35, v33)), <=(+(v35, 2), v34)), >(+(v34, 1), 3)), >(+(v33, 1), 1))

(13) PolynomialOrderProcessor (EQUIVALENT transformation)

Found the following polynomial interpretation:


[f18606_0_lastIndexOf_Load(x22, x24, x26, x28)] = x26

Therefore the following rule(s) have been dropped:


f18606_0_lastIndexOf_Load(x0, x1, x2, x3) → f18606_0_lastIndexOf_Load(x4, x5, -(x2, 1), x6) | &&(&&(&&(&&(&&(&&(>(x3, 0), >(x2, 0)), >(+(x5, 1), 1)), >(+(x4, 1), 1)), <=(x4, x0)), >(+(x1, 1), 2)), >(+(x0, 1), 1))
f18606_0_lastIndexOf_Load(x7, x8, x9, x10) → f18606_0_lastIndexOf_Load(x11, x12, -(x9, 1), x13) | &&(&&(&&(&&(&&(&&(>(x10, 0), >(x9, 0)), >(+(x12, 1), 1)), >(+(x11, 1), 1)), <=(x11, x7)), >(+(x8, 1), 3)), >(+(x7, 1), 1))
f18606_0_lastIndexOf_Load(x14, x15, x16, x17) → f18606_0_lastIndexOf_Load(x18, x19, -(x16, 1), x20) | &&(&&(&&(&&(&&(&&(&&(>(x17, 0), >(x16, 0)), >(+(x19, 1), 1)), >(+(x18, 1), 1)), <=(x18, x14)), <=(+(x18, 2), x15)), >(+(x15, 1), 3)), >(+(x14, 1), 1))

(14) YES

(15) Obligation:

SCC of termination graph based on JBC Program.
SCC contains nodes from the following methods: javaUtilEx.juLinkedListCreateLastIndexOf.main([Ljava/lang/String;)V
SCC calls the following helper methods:
Performed SCC analyses:
  • Used field analysis yielded the following read fields:
    • javaUtilEx.LinkedList: [header]
    • javaUtilEx.LinkedList$Entry: [element, previous]
  • Marker field analysis yielded the following relations that could be markers:

(16) SCCToIntTRSProof (SOUND transformation)

Transformed FIGraph SCCs to intTRSs. Log:

Generated rules. Obtained 16 IRules

P rules:
f18351_0_lastIndexOf_Load(EOS, java.lang.Object(o7686sub0), java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686) → f18354_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(o7686sub0), java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686)
f18354_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(o7686sub0), java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686) → f18356_0_lastIndexOf_EQ(EOS, java.lang.Object(o7686sub0), java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686)
f18356_0_lastIndexOf_EQ(EOS, java.lang.Object(o7686sub0), java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686) → f18357_0_lastIndexOf_EQ(EOS, java.lang.Object(o7686sub0), java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686) | &&(>(o7686[LinkedList$Entry.previous]o7685, 0), >(o7686[LinkedList$Entry.previous]o7686, 0))
f18357_0_lastIndexOf_EQ(EOS, java.lang.Object(o7686sub0), java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686) → f18360_0_lastIndexOf_Inc(EOS, java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686)
f18360_0_lastIndexOf_Inc(EOS, java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686) → f18364_0_lastIndexOf_Load(EOS, java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686)
f18364_0_lastIndexOf_Load(EOS, java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686) → f18374_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(o7686sub0), java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686)
f18374_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o8235-553452436, java.lang.Object(o8237sub-553452436))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o8235-553452436, java.lang.Object(o8237sub-553452436))), o8234[LinkedList$Entry.previous]o7685, o8234[LinkedList$Entry.previous]o8234) → f18387_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o8235-553452436, java.lang.Object(o8237sub-553452436))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o8235-553452436, java.lang.Object(o8237sub-553452436))), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8234) | &&(=(o8237[LinkedList$Entry.previous]o7685, +(o8234[LinkedList$Entry.previous]o7685, -1)), =(o8237[LinkedList$Entry.previous]o8234, +(o8234[LinkedList$Entry.previous]o8234, -1)))
f18387_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o8235-553452436, java.lang.Object(o8237sub-553452436))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o8235-553452436, java.lang.Object(o8237sub-553452436))), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8234) → f18410_0_lastIndexOf_NONNULL(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o8235-553452436, java.lang.Object(o8237sub-553452436))), o82350, o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8234)
f18410_0_lastIndexOf_NONNULL(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8676sub-553452436), java.lang.Object(o8237sub-553452436))), java.lang.Object(o8676sub0), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8234) → f18424_0_lastIndexOf_NONNULL(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8676sub-553452436), java.lang.Object(o8237sub-553452436))), java.lang.Object(o8676sub0), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8234)
f18424_0_lastIndexOf_NONNULL(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8676sub-553452436), java.lang.Object(o8237sub-553452436))), java.lang.Object(o8676sub0), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8234) → f18437_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8676sub-553452436), java.lang.Object(o8237sub-553452436))), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8234)
f18437_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8676sub-553452436), java.lang.Object(o8237sub-553452436))), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8234) → f18452_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8676sub-553452436), java.lang.Object(o8237sub-553452436))), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8234)
f18452_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o8676sub-553452436), java.lang.Object(o8237sub-553452436))), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8234) → f18464_0_lastIndexOf_Store(EOS, java.lang.Object(o8237sub0), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8237)
f18464_0_lastIndexOf_Store(EOS, java.lang.Object(o8237sub0), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8237) → f18476_0_lastIndexOf_JMP(EOS, java.lang.Object(o8237sub0), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8237)
f18476_0_lastIndexOf_JMP(EOS, java.lang.Object(o8237sub0), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8237) → f18482_0_lastIndexOf_Load(EOS, java.lang.Object(o8237sub0), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8237)
f18482_0_lastIndexOf_Load(EOS, java.lang.Object(o8237sub0), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8237) → f18348_0_lastIndexOf_Load(EOS, java.lang.Object(o8237sub0), o8237[LinkedList$Entry.previous]o7685, o8237[LinkedList$Entry.previous]o8237)
f18348_0_lastIndexOf_Load(EOS, java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686) → f18351_0_lastIndexOf_Load(EOS, java.lang.Object(o7686sub0), java.lang.Object(o7686sub0), o7686[LinkedList$Entry.previous]o7685, o7686[LinkedList$Entry.previous]o7686)

Combined rules. Obtained 1 IRules

P rules:
f18351_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x0), java.lang.Object(x1))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x0), java.lang.Object(x1))), x2, x3) → f18351_0_lastIndexOf_Load(EOS, java.lang.Object(x4), java.lang.Object(x4), -(x2, 1), x6) | &&(>(x2, 0), >(x3, 0))

Filtered ground terms:


f18351_0_lastIndexOf_Load(x1, x2, x3, x4, x5) → f18351_0_lastIndexOf_Load(x2, x3, x4, x5)
Cond_f18351_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6, x7, x8) → Cond_f18351_0_lastIndexOf_Load(x1, x3, x4, x5, x6, x7, x8)
javaUtilEx.LinkedList$Entry(x1, x2, x3) → javaUtilEx.LinkedList$Entry(x2, x3)

Filtered duplicate terms:


f18351_0_lastIndexOf_Load(x1, x2, x3, x4) → f18351_0_lastIndexOf_Load(x2, x3, x4)
Cond_f18351_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6, x7) → Cond_f18351_0_lastIndexOf_Load(x1, x3, x4, x5, x6, x7)

Filtered unneeded terms:


Cond_f18351_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6) → Cond_f18351_0_lastIndexOf_Load(x1, x3, x5, x6)

Prepared 1 rules for path length conversion:

P rules:
f18351_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x0), java.lang.Object(x1))), x2, x3) → f18351_0_lastIndexOf_Load(java.lang.Object(x4), -(x2, 1), x6) | &&(>(x2, 0), >(x3, 0))

Finished conversion. Obtained 1 rules.

P rules:
f18351_0_lastIndexOf_Load(v9, x2, x3) → f18351_0_lastIndexOf_Load(v10, -(x2, 1), x5) | &&(&&(&&(>(x3, 0), >(x2, 0)), >(+(v9, 1), 3)), >(+(v10, 1), 1))

(17) Obligation:

Rules:
f18351_0_lastIndexOf_Load(v9, x2, x3) → f18351_0_lastIndexOf_Load(v10, -(x2, 1), x5) | &&(&&(&&(>(x3, 0), >(x2, 0)), >(+(v9, 1), 3)), >(+(v10, 1), 1))

(18) PolynomialOrderProcessor (EQUIVALENT transformation)

Found the following polynomial interpretation:


[f18351_0_lastIndexOf_Load(x6, x8, x10)] = x8

Therefore the following rule(s) have been dropped:


f18351_0_lastIndexOf_Load(x0, x1, x2) → f18351_0_lastIndexOf_Load(x3, -(x1, 1), x4) | &&(&&(&&(>(x2, 0), >(x1, 0)), >(+(x0, 1), 3)), >(+(x3, 1), 1))

(19) YES

(20) Obligation:

SCC of termination graph based on JBC Program.
SCC contains nodes from the following methods: javaUtilEx.juLinkedListCreateLastIndexOf.main([Ljava/lang/String;)V
SCC calls the following helper methods:
Performed SCC analyses:
  • Used field analysis yielded the following read fields:
    • javaUtilEx.LinkedList$Entry: [next]
  • Marker field analysis yielded the following relations that could be markers:

(21) SCCToIntTRSProof (SOUND transformation)

Transformed FIGraph SCCs to intTRSs. Log:

Generated rules. Obtained 19 IRules

P rules:
f16500_0_entry_Load(EOS, i1377, i1377, i1377, i2503, i2503, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718) → f16514_0_entry_GT(EOS, i1377, i1377, i1377, i2503, i2503, i1377, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718)
f16514_0_entry_GT(EOS, i1377, i1377, i1377, i2503, i2503, i1377, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718) → f16530_0_entry_GT(EOS, i1377, i1377, i1377, i2503, i2503, i1377, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718)
f16530_0_entry_GT(EOS, i1377, i1377, i1377, i2503, i2503, i1377, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718) → f16535_0_entry_Load(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718) | <=(i2503, i1377)
f16535_0_entry_Load(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718) → f16539_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718)
f16539_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718) → f16544_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718) | &&(&&(&&(&&(>(o6718[LinkedList$Entry.next]o6716, 0), >(o6718[LinkedList$Entry.next]o6718, 0)), >(o6718[LinkedList$Entry.previous]o6718, 0)), >(o6716[LinkedList$Entry.next]o6716, 0)), >(o6716[LinkedList$Entry.next]o6718, 0))
f16539_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6716, o6759[LinkedList$Entry.next]o6759, o6759[LinkedList$Entry.previous]o6759, o6759[LinkedList$Entry.next]o6759, o6716[LinkedList$Entry.next]o6718) → f16545_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i2503, o6759[LinkedList$Entry.next]o6759, o6759[LinkedList$Entry.previous]o6759)
f16544_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6768, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6768[LinkedList$Entry.next]o6768, o6768[LinkedList$Entry.next]o6718) → f16549_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6718[LinkedList$Entry.next]o6768, o6770[LinkedList$Entry.next]o6768, o6770[LinkedList$Entry.next]o6718) | &&(=(o6770[LinkedList$Entry.next]o6768, +(o6768[LinkedList$Entry.next]o6768, -1)), =(o6770[LinkedList$Entry.next]o6718, +(o6768[LinkedList$Entry.next]o6718, -1)))
f16549_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6718[LinkedList$Entry.next]o6768, o6770[LinkedList$Entry.next]o6768, o6770[LinkedList$Entry.next]o6718) → f16554_0_entry_Store(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6770[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.next]o6770, o6770[LinkedList$Entry.next]o6770)
f16554_0_entry_Store(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6770[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.next]o6770, o6770[LinkedList$Entry.next]o6770) → f16561_0_entry_Inc(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6770[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.next]o6770, o6770[LinkedList$Entry.next]o6770)
f16561_0_entry_Inc(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6770[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.next]o6770, o6770[LinkedList$Entry.next]o6770) → f16568_0_entry_JMP(EOS, i1377, i1377, i1377, +(i2503, 1), o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6770[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.next]o6770, o6770[LinkedList$Entry.next]o6770) | >=(i2503, 0)
f16568_0_entry_JMP(EOS, i1377, i1377, i1377, i2505, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6770[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.next]o6770, o6770[LinkedList$Entry.next]o6770) → f16585_0_entry_Load(EOS, i1377, i1377, i1377, i2505, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6770[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.next]o6770, o6770[LinkedList$Entry.next]o6770)
f16585_0_entry_Load(EOS, i1377, i1377, i1377, i2505, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6770[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.next]o6770, o6770[LinkedList$Entry.next]o6770) → f16493_0_entry_Load(EOS, i1377, i1377, i1377, i2505, o6718[LinkedList$Entry.next]o6770, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6770[LinkedList$Entry.next]o6770, o6770[LinkedList$Entry.next]o6718)
f16493_0_entry_Load(EOS, i1377, i1377, i1377, i2503, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718) → f16500_0_entry_Load(EOS, i1377, i1377, i1377, i2503, i2503, o6718[LinkedList$Entry.next]o6716, o6718[LinkedList$Entry.next]o6718, o6718[LinkedList$Entry.previous]o6718, o6716[LinkedList$Entry.next]o6716, o6716[LinkedList$Entry.next]o6718)
f16545_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i2503, o6772[LinkedList$Entry.next]o6772, o6772[LinkedList$Entry.previous]o6772) → f16550_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i2503, o6774[LinkedList$Entry.next]o6772, o6775[LinkedList$Entry.previous]o6772) | &&(=(o6774[LinkedList$Entry.next]o6772, +(o6772[LinkedList$Entry.next]o6772, -1)), =(o6775[LinkedList$Entry.previous]o6772, +(o6772[LinkedList$Entry.previous]o6772, -1)))
f16550_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i2503, o6774[LinkedList$Entry.next]o6772, o6775[LinkedList$Entry.previous]o6772) → f16555_0_entry_Store(EOS, i1377, i1377, i1377, i2503, o6774[LinkedList$Entry.next]o6772, o6775[LinkedList$Entry.previous]o6772)
f16555_0_entry_Store(EOS, i1377, i1377, i1377, i2503, o6774[LinkedList$Entry.next]o6772, o6775[LinkedList$Entry.previous]o6772) → f16562_0_entry_Inc(EOS, i1377, i1377, i1377, i2503, o6774[LinkedList$Entry.next]o6772, o6775[LinkedList$Entry.previous]o6772)
f16562_0_entry_Inc(EOS, i1377, i1377, i1377, i2503, o6774[LinkedList$Entry.next]o6772, o6775[LinkedList$Entry.previous]o6772) → f16569_0_entry_JMP(EOS, i1377, i1377, i1377, +(i2503, 1), o6774[LinkedList$Entry.next]o6772, o6775[LinkedList$Entry.previous]o6772) | >=(i2503, 0)
f16569_0_entry_JMP(EOS, i1377, i1377, i1377, i2506, o6774[LinkedList$Entry.next]o6772, o6775[LinkedList$Entry.previous]o6772) → f16603_0_entry_Load(EOS, i1377, i1377, i1377, i2506, o6774[LinkedList$Entry.next]o6772, o6775[LinkedList$Entry.previous]o6772)
f16603_0_entry_Load(EOS, i1377, i1377, i1377, i2506, o6774[LinkedList$Entry.next]o6772, o6775[LinkedList$Entry.previous]o6772) → f16493_0_entry_Load(EOS, i1377, i1377, i1377, i2506, o6772[LinkedList$Entry.next]o6774, o6772[LinkedList$Entry.next]o6772, o6772[LinkedList$Entry.previous]o6772, o6774[LinkedList$Entry.next]o6774, o6774[LinkedList$Entry.next]o6772) | &&(&&(&&(=(o6772[LinkedList$Entry.next]o6774, 1), =(o6772[LinkedList$Entry.next]o6772, 0)), =(o6772[LinkedList$Entry.previous]o6772, 0)), =(o6774[LinkedList$Entry.next]o6774, 0))

Combined rules. Obtained 2 IRules

P rules:
f16500_0_entry_Load(EOS, x0, x0, x0, x1, x1, x2, x3, x4, x5, x6) → f16500_0_entry_Load(EOS, x0, x0, x0, +(x1, 1), +(x1, 1), x7, x3, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x2, 0)), <=(x1, x0)), >(+(x1, 1), 0))
f16500_0_entry_Load(EOS, x0, x0, x0, x1, x1, x2, x3, x4, x3, x5) → f16500_0_entry_Load(EOS, x0, x0, x0, +(x1, 1), +(x1, 1), 1, 0, 0, 0, -(x3, 1)) | &&(<=(x1, x0), >(+(x1, 1), 0))

Filtered ground terms:


f16500_0_entry_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) → f16500_0_entry_Load(x2, x3, x4, x5, x6, x7, x8, x9, x10, x11)
Cond_f16500_0_entry_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) → Cond_f16500_0_entry_Load(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14)
Cond_f16500_0_entry_Load1(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) → Cond_f16500_0_entry_Load1(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12)

Filtered duplicate terms:


f16500_0_entry_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) → f16500_0_entry_Load(x3, x5, x6, x7, x8, x9, x10)
Cond_f16500_0_entry_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) → Cond_f16500_0_entry_Load(x1, x4, x6, x7, x8, x9, x10, x11, x12, x13)
Cond_f16500_0_entry_Load1(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) → Cond_f16500_0_entry_Load1(x1, x4, x6, x7, x9, x10, x11)

Filtered unneeded terms:


Cond_f16500_0_entry_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) → Cond_f16500_0_entry_Load(x1, x2, x3, x5, x6, x8, x9, x10)
Cond_f16500_0_entry_Load1(x1, x2, x3, x4, x5, x6, x7) → Cond_f16500_0_entry_Load1(x1, x2, x3, x6)

Prepared 2 rules for path length conversion:

P rules:
f16500_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f16500_0_entry_Load(x0, +(x1, 1), x7, x3, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x2, 0)), <=(x1, x0)), >(+(x1, 1), 0))
f16500_0_entry_Load(x0, x1, x2, x3, x4, x3, x5) → f16500_0_entry_Load(x0, +(x1, 1), 1, 0, 0, 0, -(x3, 1)) | &&(<=(x1, x0), >(+(x1, 1), 0))

Finished conversion. Obtained 2 rules.

P rules:
f16500_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f16500_0_entry_Load(x0, +(x1, 1), x7, x3, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x2, 0)), <=(x1, x0)), >(x1, -1))
f16500_0_entry_Load(x9, x10, x11, x12, x13, x121, x14) → f16500_0_entry_Load(x9, +(x10, 1), 1, 0, 0, 0, -(x12, 1)) | &&(&&(>(x10, -1), >=(x9, x10)), =(x12, x121))

(22) Obligation:

Rules:
f16500_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f16500_0_entry_Load(x0, +(x1, 1), x7, x3, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x2, 0)), <=(x1, x0)), >(x1, -1))
f16500_0_entry_Load(x9, x10, x11, x12, x13, x121, x14) → f16500_0_entry_Load(x9, +(x10, 1), 1, 0, 0, 0, -(x12, 1)) | &&(&&(>(x10, -1), >=(x9, x10)), =(x12, x121))

(23) TerminationGraphProcessor (SOUND transformation)

Constructed the termination graph and obtained 2 non-trivial SCCs.


(24) Complex Obligation (AND)

(25) Obligation:

Rules:
f16500_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f16500_0_entry_Load(x0, +(x1, 1), x7, x3, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x2, 0)), <=(x1, x0)), >(x1, -1))

(26) PolynomialOrderProcessor (EQUIVALENT transformation)

Found the following polynomial interpretation:


[f16500_0_entry_Load(x10, x12, x14, x16, x18, x20, x22)] = x10 - x12

Therefore the following rule(s) have been dropped:


f16500_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f16500_0_entry_Load(x0, +(x1, 1), x7, x3, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x2, 0)), <=(x1, x0)), >(x1, -1))

(27) YES

(28) Obligation:

Rules:
f16500_0_entry_Load(x9, x10, x11, x12, x13, x14, x15) → f16500_0_entry_Load(x9, +(x10, 1), 1, 0, 0, 0, -(x12, 1)) | &&(&&(>(x10, -1), >=(x9, x10)), =(x12, x14))

(29) PolynomialOrderProcessor (EQUIVALENT transformation)

Found the following polynomial interpretation:


[f16500_0_entry_Load(x8, x10, x12, x14, x16, x18, x20)] = -x10 + x8

Therefore the following rule(s) have been dropped:


f16500_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f16500_0_entry_Load(x0, +(x1, 1), 1, 0, 0, 0, -(x3, 1)) | &&(&&(>(x1, -1), >=(x0, x1)), =(x3, x5))

(30) YES

(31) Obligation:

SCC of termination graph based on JBC Program.
SCC contains nodes from the following methods: javaUtilEx.juLinkedListCreateLastIndexOf.main([Ljava/lang/String;)V
SCC calls the following helper methods:
Performed SCC analyses:
  • Used field analysis yielded the following read fields:
    • javaUtilEx.LinkedList$Entry: [previous]
  • Marker field analysis yielded the following relations that could be markers:

(32) SCCToIntTRSProof (SOUND transformation)

Transformed FIGraph SCCs to intTRSs. Log:

Generated rules. Obtained 19 IRules

P rules:
f13991_0_entry_Load(EOS, i1377, i1377, i1377, i1771, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929) → f13998_0_entry_LE(EOS, i1377, i1377, i1377, i1771, i1771, i1377, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929)
f13998_0_entry_LE(EOS, i1377, i1377, i1377, i1771, i1771, i1377, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929) → f14003_0_entry_LE(EOS, i1377, i1377, i1377, i1771, i1771, i1377, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929)
f14003_0_entry_LE(EOS, i1377, i1377, i1377, i1771, i1771, i1377, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929) → f14046_0_entry_Load(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929) | >(i1771, i1377)
f14046_0_entry_Load(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929) → f14123_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929)
f14123_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929) → f14188_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929) | &&(&&(&&(&&(>(o4929[LinkedList$Entry.next]o4929, 0), >(o4929[LinkedList$Entry.previous]o4927, 0)), >(o4929[LinkedList$Entry.previous]o4929, 0)), >(o4927[LinkedList$Entry.previous]o4927, 0)), >(o4927[LinkedList$Entry.previous]o4929, 0))
f14123_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i1771, o5066[LinkedList$Entry.next]o5066, o4929[LinkedList$Entry.previous]o4927, o5066[LinkedList$Entry.previous]o5066, o5066[LinkedList$Entry.previous]o5066, o4927[LinkedList$Entry.previous]o4929) → f14189_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i1771, o5066[LinkedList$Entry.next]o5066, o5066[LinkedList$Entry.previous]o5066)
f14188_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o5173, o4929[LinkedList$Entry.previous]o4929, o5173[LinkedList$Entry.previous]o5173, o5173[LinkedList$Entry.previous]o4929) → f14404_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4929, o4929[LinkedList$Entry.previous]o5173, o5176[LinkedList$Entry.previous]o5173, o5176[LinkedList$Entry.previous]o4929) | &&(=(o5176[LinkedList$Entry.previous]o5173, +(o5173[LinkedList$Entry.previous]o5173, -1)), =(o5176[LinkedList$Entry.previous]o4929, +(o5173[LinkedList$Entry.previous]o4929, -1)))
f14404_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4929, o4929[LinkedList$Entry.previous]o5173, o5176[LinkedList$Entry.previous]o5173, o5176[LinkedList$Entry.previous]o4929) → f14704_0_entry_Store(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4929, o5176[LinkedList$Entry.previous]o4929, o4929[LinkedList$Entry.previous]o5176, o5176[LinkedList$Entry.previous]o5176)
f14704_0_entry_Store(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4929, o5176[LinkedList$Entry.previous]o4929, o4929[LinkedList$Entry.previous]o5176, o5176[LinkedList$Entry.previous]o5176) → f15445_0_entry_Inc(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4929, o5176[LinkedList$Entry.previous]o4929, o4929[LinkedList$Entry.previous]o5176, o5176[LinkedList$Entry.previous]o5176)
f15445_0_entry_Inc(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4929, o5176[LinkedList$Entry.previous]o4929, o4929[LinkedList$Entry.previous]o5176, o5176[LinkedList$Entry.previous]o5176) → f15826_0_entry_JMP(EOS, i1377, i1377, i1377, +(i1771, -1), o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4929, o5176[LinkedList$Entry.previous]o4929, o4929[LinkedList$Entry.previous]o5176, o5176[LinkedList$Entry.previous]o5176)
f15826_0_entry_JMP(EOS, i1377, i1377, i1377, i2079, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4929, o5176[LinkedList$Entry.previous]o4929, o4929[LinkedList$Entry.previous]o5176, o5176[LinkedList$Entry.previous]o5176) → f15961_0_entry_Load(EOS, i1377, i1377, i1377, i2079, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4929, o5176[LinkedList$Entry.previous]o4929, o4929[LinkedList$Entry.previous]o5176, o5176[LinkedList$Entry.previous]o5176)
f15961_0_entry_Load(EOS, i1377, i1377, i1377, i2079, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4929, o5176[LinkedList$Entry.previous]o4929, o4929[LinkedList$Entry.previous]o5176, o5176[LinkedList$Entry.previous]o5176) → f13916_0_entry_Load(EOS, i1377, i1377, i1377, i2079, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o5176, o4929[LinkedList$Entry.previous]o4929, o5176[LinkedList$Entry.previous]o5176, o5176[LinkedList$Entry.previous]o4929)
f13916_0_entry_Load(EOS, i1377, i1377, i1377, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929) → f13991_0_entry_Load(EOS, i1377, i1377, i1377, i1771, i1771, o4929[LinkedList$Entry.next]o4929, o4929[LinkedList$Entry.previous]o4927, o4929[LinkedList$Entry.previous]o4929, o4927[LinkedList$Entry.previous]o4927, o4927[LinkedList$Entry.previous]o4929)
f14189_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i1771, o5177[LinkedList$Entry.next]o5177, o5177[LinkedList$Entry.previous]o5177) → f14410_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i1771, o5179[LinkedList$Entry.next]o5177, o5180[LinkedList$Entry.previous]o5177) | &&(=(o5179[LinkedList$Entry.next]o5177, +(o5177[LinkedList$Entry.next]o5177, -1)), =(o5180[LinkedList$Entry.previous]o5177, +(o5177[LinkedList$Entry.previous]o5177, -1)))
f14410_0_entry_FieldAccess(EOS, i1377, i1377, i1377, i1771, o5179[LinkedList$Entry.next]o5177, o5180[LinkedList$Entry.previous]o5177) → f14710_0_entry_Store(EOS, i1377, i1377, i1377, i1771, o5179[LinkedList$Entry.next]o5177, o5180[LinkedList$Entry.previous]o5177)
f14710_0_entry_Store(EOS, i1377, i1377, i1377, i1771, o5179[LinkedList$Entry.next]o5177, o5180[LinkedList$Entry.previous]o5177) → f15448_0_entry_Inc(EOS, i1377, i1377, i1377, i1771, o5179[LinkedList$Entry.next]o5177, o5180[LinkedList$Entry.previous]o5177)
f15448_0_entry_Inc(EOS, i1377, i1377, i1377, i1771, o5179[LinkedList$Entry.next]o5177, o5180[LinkedList$Entry.previous]o5177) → f15829_0_entry_JMP(EOS, i1377, i1377, i1377, +(i1771, -1), o5179[LinkedList$Entry.next]o5177, o5180[LinkedList$Entry.previous]o5177)
f15829_0_entry_JMP(EOS, i1377, i1377, i1377, i2080, o5179[LinkedList$Entry.next]o5177, o5180[LinkedList$Entry.previous]o5177) → f15962_0_entry_Load(EOS, i1377, i1377, i1377, i2080, o5179[LinkedList$Entry.next]o5177, o5180[LinkedList$Entry.previous]o5177)
f15962_0_entry_Load(EOS, i1377, i1377, i1377, i2080, o5179[LinkedList$Entry.next]o5177, o5180[LinkedList$Entry.previous]o5177) → f13916_0_entry_Load(EOS, i1377, i1377, i1377, i2080, o5177[LinkedList$Entry.next]o5177, o5177[LinkedList$Entry.previous]o5180, o5177[LinkedList$Entry.previous]o5177, o5180[LinkedList$Entry.previous]o5180, o5180[LinkedList$Entry.previous]o5177) | &&(&&(&&(=(o5177[LinkedList$Entry.next]o5177, 0), =(o5177[LinkedList$Entry.previous]o5180, 1)), =(o5177[LinkedList$Entry.previous]o5177, 0)), =(o5180[LinkedList$Entry.previous]o5180, 0))

Combined rules. Obtained 2 IRules

P rules:
f13991_0_entry_Load(EOS, x0, x0, x0, x1, x1, x2, x3, x4, x5, x6) → f13991_0_entry_Load(EOS, x0, x0, x0, -(x1, 1), -(x1, 1), x2, x7, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x1, x0)), >(x2, 0))
f13991_0_entry_Load(EOS, x0, x0, x0, x1, x1, x2, x3, x4, x4, x5) → f13991_0_entry_Load(EOS, x0, x0, x0, -(x1, 1), -(x1, 1), 0, 1, 0, 0, -(x4, 1)) | >(x1, x0)

Filtered ground terms:


f13991_0_entry_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) → f13991_0_entry_Load(x2, x3, x4, x5, x6, x7, x8, x9, x10, x11)
Cond_f13991_0_entry_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) → Cond_f13991_0_entry_Load(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14)
Cond_f13991_0_entry_Load1(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) → Cond_f13991_0_entry_Load1(x1, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12)

Filtered duplicate terms:


f13991_0_entry_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) → f13991_0_entry_Load(x3, x5, x6, x7, x8, x9, x10)
Cond_f13991_0_entry_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) → Cond_f13991_0_entry_Load(x1, x4, x6, x7, x8, x9, x10, x11, x12, x13)
Cond_f13991_0_entry_Load1(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) → Cond_f13991_0_entry_Load1(x1, x4, x6, x7, x8, x10, x11)

Filtered unneeded terms:


Cond_f13991_0_entry_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) → Cond_f13991_0_entry_Load(x1, x2, x3, x4, x6, x8, x9, x10)
Cond_f13991_0_entry_Load1(x1, x2, x3, x4, x5, x6, x7) → Cond_f13991_0_entry_Load1(x1, x2, x3, x6)

Prepared 2 rules for path length conversion:

P rules:
f13991_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f13991_0_entry_Load(x0, -(x1, 1), x2, x7, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x1, x0)), >(x2, 0))
f13991_0_entry_Load(x0, x1, x2, x3, x4, x4, x5) → f13991_0_entry_Load(x0, -(x1, 1), 0, 1, 0, 0, -(x4, 1)) | >(x1, x0)

Finished conversion. Obtained 2 rules.

P rules:
f13991_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f13991_0_entry_Load(x0, -(x1, 1), x2, x7, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x1, x0)), >(x2, 0))
f13991_0_entry_Load(x9, x10, x11, x12, x13, x131, x14) → f13991_0_entry_Load(x9, -(x10, 1), 0, 1, 0, 0, -(x13, 1)) | &&(<(x9, x10), =(x13, x131))

(33) Obligation:

Rules:
f13991_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f13991_0_entry_Load(x0, -(x1, 1), x2, x7, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x1, x0)), >(x2, 0))
f13991_0_entry_Load(x9, x10, x11, x12, x13, x131, x14) → f13991_0_entry_Load(x9, -(x10, 1), 0, 1, 0, 0, -(x13, 1)) | &&(<(x9, x10), =(x13, x131))

(34) TerminationGraphProcessor (SOUND transformation)

Constructed the termination graph and obtained 2 non-trivial SCCs.


(35) Complex Obligation (AND)

(36) Obligation:

Rules:
f13991_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f13991_0_entry_Load(x0, -(x1, 1), x2, x7, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x1, x0)), >(x2, 0))

(37) PolynomialOrderProcessor (EQUIVALENT transformation)

Found the following polynomial interpretation:


[f13991_0_entry_Load(x10, x12, x14, x16, x18, x20, x22)] = x22

Therefore the following rule(s) have been dropped:


f13991_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f13991_0_entry_Load(x0, -(x1, 1), x2, x7, x4, x8, -(x6, 1)) | &&(&&(&&(&&(&&(>(x6, 0), >(x5, 0)), >(x4, 0)), >(x3, 0)), >(x1, x0)), >(x2, 0))

(38) YES

(39) Obligation:

Rules:
f13991_0_entry_Load(x9, x10, x11, x12, x13, x14, x15) → f13991_0_entry_Load(x9, -(x10, 1), 0, 1, 0, 0, -(x13, 1)) | &&(<(x9, x10), =(x13, x14))

(40) PolynomialOrderProcessor (EQUIVALENT transformation)

Found the following polynomial interpretation:


[f13991_0_entry_Load(x8, x10, x12, x14, x16, x18, x20)] = x10 - x8

Therefore the following rule(s) have been dropped:


f13991_0_entry_Load(x0, x1, x2, x3, x4, x5, x6) → f13991_0_entry_Load(x0, -(x1, 1), 0, 1, 0, 0, -(x4, 1)) | &&(<(x0, x1), =(x4, x5))

(41) YES

(42) Obligation:

SCC of termination graph based on JBC Program.
SCC contains nodes from the following methods: javaUtilEx.juLinkedListCreateLastIndexOf.main([Ljava/lang/String;)V
SCC calls the following helper methods: javaUtilEx.Content.equals(Ljava/lang/Object;)Z
Performed SCC analyses:
  • Used field analysis yielded the following read fields:
    • javaUtilEx.LinkedList: [header]
    • javaUtilEx.LinkedList$Entry: [element, previous]
  • Marker field analysis yielded the following relations that could be markers:

(43) SCCToIntTRSProof (SOUND transformation)

Transformed FIGraph SCCs to intTRSs. Log:

Generated rules. Obtained 150 IRules

P rules:
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) → f12616_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367)
f12616_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) → f12677_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-557113753))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367)
f12677_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-557113753))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) → f12712_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-557113753))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) | &&(>(o4371[LinkedList$Entry.previous]o4371, 0), >(o4371[LinkedList$Entry.previous]o4367, 0))
f12712_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-557113753))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) → f12752_0_lastIndexOf_Inc(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367)
f12752_0_lastIndexOf_Inc(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) → f12804_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367)
f12804_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) → f12862_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.Content(EOC)), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367)
f12862_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.Content(EOC)), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) → f12928_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367)
f12928_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) → f13008_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) | &&(&&(&&(>(o4368[LinkedList$Entry.next]o4368, 0), >(o4368[LinkedList$Entry.previous]o4368, 0)), >(o4368[LinkedList$Entry.previous]o4371, 0)), >(o4371[LinkedList$Entry.previous]o4371, 0))
f12928_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4533sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4533sub0), o4533[LinkedList$Entry.next]o4533, o4533[LinkedList$Entry.next]o4369, o4533[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4533, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4533[LinkedList$Entry.previous]o4533, o4533[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4533[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4533, o4533[LinkedList$Entry.previous]o4369, o4533[LinkedList$Entry.previous]o4533, o4369[LinkedList$Entry.previous]o4367, o4533[LinkedList$Entry.previous]o4367) → f13009_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4533sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4533sub0), o4533[LinkedList$Entry.next]o4533, o4533[LinkedList$Entry.next]o4369, o4533[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4533, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4533[LinkedList$Entry.previous]o4533, o4533[LinkedList$Entry.previous]o4369, o4533[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4533)
f13008_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) → f13124_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) | &&(&&(&&(&&(>(o4369[LinkedList$Entry.next]o4369, 0), >(o4369[LinkedList$Entry.previous]o4369, 0)), >(o4369[LinkedList$Entry.previous]o4371, 0)), >(o4371[LinkedList$Entry.previous]o4369, 0)), >(o4371[LinkedList$Entry.previous]o4371, 0))
f13008_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4557sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4557sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4557sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4557sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4557, o4368[LinkedList$Entry.next]o4367, o4557[LinkedList$Entry.next]o4368, o4557[LinkedList$Entry.next]o4557, o4557[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4557, o4368[LinkedList$Entry.previous]o4557, o4368[LinkedList$Entry.previous]o4367, o4557[LinkedList$Entry.previous]o4557, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4557[LinkedList$Entry.previous]o4557, o4557[LinkedList$Entry.previous]o4367, o4557[LinkedList$Entry.previous]o4367) → f13125_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4557sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4557sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4557sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4557sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4557, o4368[LinkedList$Entry.next]o4367, o4557[LinkedList$Entry.next]o4368, o4557[LinkedList$Entry.next]o4557, o4557[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4557, o4368[LinkedList$Entry.previous]o4367, o4557[LinkedList$Entry.previous]o4557, o4557[LinkedList$Entry.previous]o4367)
f13124_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4573, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4573, o4573[LinkedList$Entry.previous]o4369, o4573[LinkedList$Entry.previous]o4573, o4369[LinkedList$Entry.previous]o4367, o4573[LinkedList$Entry.previous]o4367) → f13184_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.previous]o4573, o4369[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4369, o4576[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4367) | &&(&&(=(o4576[LinkedList$Entry.previous]o4369, +(o4573[LinkedList$Entry.previous]o4369, -1)), =(o4576[LinkedList$Entry.previous]o4573, +(o4573[LinkedList$Entry.previous]o4573, -1))), =(o4576[LinkedList$Entry.previous]o4367, +(o4573[LinkedList$Entry.previous]o4367, -1)))
f13184_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.previous]o4573, o4369[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4369, o4576[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4367) → f13298_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), java.lang.Object(javaUtilEx.Content(EOC)), o45740, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.previous]o4573, o4369[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4369, o4576[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4367)
f13298_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), java.lang.Object(javaUtilEx.Content(EOC)), o45740, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.previous]o4573, o4369[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4369, o4576[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4367) → f13331_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45740, java.lang.Object(o4369sub0), java.lang.Object(o4368sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-557113753))), java.lang.Object(o4576sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45740, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.previous]o4573, o4369[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4369, o4576[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4367)
f13298_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), java.lang.Object(javaUtilEx.Content(EOC)), o45740, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.previous]o4573, o4369[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4369, o4576[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4367) → f13331_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), java.lang.Object(javaUtilEx.Content(EOC)), o45740, java.lang.Object(javaUtilEx.Content(EOC)), o45740, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.previous]o4573, o4369[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4369, o4576[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4367)
f13331_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45740, java.lang.Object(o4369sub0), java.lang.Object(o4368sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-557113753))), java.lang.Object(o4576sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45740, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.previous]o4573, o4369[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4369, o4576[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4367) → f13358_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45740, java.lang.Object(o4369sub0), java.lang.Object(o4368sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-557113753))), java.lang.Object(o4576sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4574-557053334, java.lang.Object(o4576sub-557053334))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45740, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.previous]o4573, o4369[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4369, o4576[LinkedList$Entry.previous]o4573, o4576[LinkedList$Entry.previous]o4367)
f18569_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10831sub-919051376)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10831sub-919051376)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10839sub1687958890))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, matching1, o10829[LinkedList$Entry.next]o10829, o10829[LinkedList$Entry.next]o10831, o10829[LinkedList$Entry.next]o10827, o10831[LinkedList$Entry.next]o10829, o10831[LinkedList$Entry.next]o10831, o10831[LinkedList$Entry.next]o10827, o10829[LinkedList$Entry.previous]o10829, o10829[LinkedList$Entry.previous]o10831, o10829[LinkedList$Entry.previous]o10827, o10829[LinkedList$Entry.previous]o10835, o10829[LinkedList$Entry.previous]o10839, o10831[LinkedList$Entry.previous]o10831, o10831[LinkedList$Entry.previous]o10827, o10831[LinkedList$Entry.previous]o10835, o10831[LinkedList$Entry.previous]o10839, o10839[LinkedList$Entry.previous]o10831, o10839[LinkedList$Entry.previous]o10827, o10839[LinkedList$Entry.previous]o10835, o10839[LinkedList$Entry.previous]o10839) → f14803_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10831sub-919051376)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10831sub-919051376)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10839sub1687958890))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, 0, o10829[LinkedList$Entry.next]o10829, o10829[LinkedList$Entry.next]o10831, o10829[LinkedList$Entry.next]o10827, o10831[LinkedList$Entry.next]o10829, o10831[LinkedList$Entry.next]o10831, o10831[LinkedList$Entry.next]o10827, o10829[LinkedList$Entry.previous]o10829, o10829[LinkedList$Entry.previous]o10831, o10829[LinkedList$Entry.previous]o10827, o10829[LinkedList$Entry.previous]o10835, o10829[LinkedList$Entry.previous]o10839, o10831[LinkedList$Entry.previous]o10831, o10831[LinkedList$Entry.previous]o10827, o10831[LinkedList$Entry.previous]o10835, o10831[LinkedList$Entry.previous]o10839, o10839[LinkedList$Entry.previous]o10831, o10839[LinkedList$Entry.previous]o10827, o10839[LinkedList$Entry.previous]o10835, o10839[LinkedList$Entry.previous]o10839) | =(matching1, 0)
f14803_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5323-556194231, java.lang.Object(o5325sub-556194231))), java.lang.Object(javaUtilEx.Content(EOC)), o53230, matching1, o5319[LinkedList$Entry.next]o5319, o5319[LinkedList$Entry.next]o5320, o5319[LinkedList$Entry.next]o5318, o5320[LinkedList$Entry.next]o5319, o5320[LinkedList$Entry.next]o5320, o5320[LinkedList$Entry.next]o5318, o5319[LinkedList$Entry.previous]o5319, o5319[LinkedList$Entry.previous]o5320, o5319[LinkedList$Entry.previous]o5318, o5319[LinkedList$Entry.previous]o5322, o5319[LinkedList$Entry.previous]o5325, o5320[LinkedList$Entry.previous]o5320, o5320[LinkedList$Entry.previous]o5318, o5320[LinkedList$Entry.previous]o5322, o5320[LinkedList$Entry.previous]o5325, o5325[LinkedList$Entry.previous]o5320, o5325[LinkedList$Entry.previous]o5318, o5325[LinkedList$Entry.previous]o5322, o5325[LinkedList$Entry.previous]o5325) → f15450_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5323-556194231, java.lang.Object(o5325sub-556194231))), 0, o5319[LinkedList$Entry.next]o5319, o5319[LinkedList$Entry.next]o5320, o5319[LinkedList$Entry.next]o5318, o5320[LinkedList$Entry.next]o5319, o5320[LinkedList$Entry.next]o5320, o5320[LinkedList$Entry.next]o5318, o5319[LinkedList$Entry.previous]o5319, o5319[LinkedList$Entry.previous]o5320, o5319[LinkedList$Entry.previous]o5318, o5319[LinkedList$Entry.previous]o5322, o5319[LinkedList$Entry.previous]o5325, o5320[LinkedList$Entry.previous]o5320, o5320[LinkedList$Entry.previous]o5318, o5320[LinkedList$Entry.previous]o5322, o5320[LinkedList$Entry.previous]o5325, o5325[LinkedList$Entry.previous]o5320, o5325[LinkedList$Entry.previous]o5318, o5325[LinkedList$Entry.previous]o5322, o5325[LinkedList$Entry.previous]o5325) | =(matching1, 0)
f15450_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5323-556194231, java.lang.Object(o5325sub-556194231))), matching1, o5319[LinkedList$Entry.next]o5319, o5319[LinkedList$Entry.next]o5320, o5319[LinkedList$Entry.next]o5318, o5320[LinkedList$Entry.next]o5319, o5320[LinkedList$Entry.next]o5320, o5320[LinkedList$Entry.next]o5318, o5319[LinkedList$Entry.previous]o5319, o5319[LinkedList$Entry.previous]o5320, o5319[LinkedList$Entry.previous]o5318, o5319[LinkedList$Entry.previous]o5322, o5319[LinkedList$Entry.previous]o5325, o5320[LinkedList$Entry.previous]o5320, o5320[LinkedList$Entry.previous]o5318, o5320[LinkedList$Entry.previous]o5322, o5320[LinkedList$Entry.previous]o5325, o5325[LinkedList$Entry.previous]o5320, o5325[LinkedList$Entry.previous]o5318, o5325[LinkedList$Entry.previous]o5322, o5325[LinkedList$Entry.previous]o5325) → f15832_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5323-556194231, java.lang.Object(o5325sub-556194231))), o5319[LinkedList$Entry.next]o5319, o5319[LinkedList$Entry.next]o5320, o5319[LinkedList$Entry.next]o5318, o5320[LinkedList$Entry.next]o5319, o5320[LinkedList$Entry.next]o5320, o5320[LinkedList$Entry.next]o5318, o5319[LinkedList$Entry.previous]o5319, o5319[LinkedList$Entry.previous]o5320, o5319[LinkedList$Entry.previous]o5318, o5319[LinkedList$Entry.previous]o5322, o5319[LinkedList$Entry.previous]o5325, o5320[LinkedList$Entry.previous]o5320, o5320[LinkedList$Entry.previous]o5318, o5320[LinkedList$Entry.previous]o5322, o5320[LinkedList$Entry.previous]o5325, o5325[LinkedList$Entry.previous]o5320, o5325[LinkedList$Entry.previous]o5318, o5325[LinkedList$Entry.previous]o5322, o5325[LinkedList$Entry.previous]o5325) | =(matching1, 0)
f15832_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5323-556194231, java.lang.Object(o5325sub-556194231))), o5319[LinkedList$Entry.next]o5319, o5319[LinkedList$Entry.next]o5320, o5319[LinkedList$Entry.next]o5318, o5320[LinkedList$Entry.next]o5319, o5320[LinkedList$Entry.next]o5320, o5320[LinkedList$Entry.next]o5318, o5319[LinkedList$Entry.previous]o5319, o5319[LinkedList$Entry.previous]o5320, o5319[LinkedList$Entry.previous]o5318, o5319[LinkedList$Entry.previous]o5322, o5319[LinkedList$Entry.previous]o5325, o5320[LinkedList$Entry.previous]o5320, o5320[LinkedList$Entry.previous]o5318, o5320[LinkedList$Entry.previous]o5322, o5320[LinkedList$Entry.previous]o5325, o5325[LinkedList$Entry.previous]o5320, o5325[LinkedList$Entry.previous]o5318, o5325[LinkedList$Entry.previous]o5322, o5325[LinkedList$Entry.previous]o5325) → f15963_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5323-556194231, java.lang.Object(o5325sub-556194231))), o5319[LinkedList$Entry.next]o5319, o5319[LinkedList$Entry.next]o5320, o5319[LinkedList$Entry.next]o5318, o5320[LinkedList$Entry.next]o5319, o5320[LinkedList$Entry.next]o5320, o5320[LinkedList$Entry.next]o5318, o5319[LinkedList$Entry.previous]o5319, o5319[LinkedList$Entry.previous]o5320, o5319[LinkedList$Entry.previous]o5318, o5319[LinkedList$Entry.previous]o5322, o5319[LinkedList$Entry.previous]o5325, o5320[LinkedList$Entry.previous]o5320, o5320[LinkedList$Entry.previous]o5318, o5320[LinkedList$Entry.previous]o5322, o5320[LinkedList$Entry.previous]o5325, o5325[LinkedList$Entry.previous]o5320, o5325[LinkedList$Entry.previous]o5318, o5325[LinkedList$Entry.previous]o5322, o5325[LinkedList$Entry.previous]o5325)
f15963_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5323-556194231, java.lang.Object(o5325sub-556194231))), o5319[LinkedList$Entry.next]o5319, o5319[LinkedList$Entry.next]o5320, o5319[LinkedList$Entry.next]o5318, o5320[LinkedList$Entry.next]o5319, o5320[LinkedList$Entry.next]o5320, o5320[LinkedList$Entry.next]o5318, o5319[LinkedList$Entry.previous]o5319, o5319[LinkedList$Entry.previous]o5320, o5319[LinkedList$Entry.previous]o5318, o5319[LinkedList$Entry.previous]o5322, o5319[LinkedList$Entry.previous]o5325, o5320[LinkedList$Entry.previous]o5320, o5320[LinkedList$Entry.previous]o5318, o5320[LinkedList$Entry.previous]o5322, o5320[LinkedList$Entry.previous]o5325, o5325[LinkedList$Entry.previous]o5320, o5325[LinkedList$Entry.previous]o5318, o5325[LinkedList$Entry.previous]o5322, o5325[LinkedList$Entry.previous]o5325) → f16014_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5325sub0), o5319[LinkedList$Entry.next]o5319, o5319[LinkedList$Entry.next]o5320, o5319[LinkedList$Entry.next]o5318, o5320[LinkedList$Entry.next]o5319, o5320[LinkedList$Entry.next]o5320, o5320[LinkedList$Entry.next]o5318, o5319[LinkedList$Entry.previous]o5319, o5319[LinkedList$Entry.previous]o5320, o5319[LinkedList$Entry.previous]o5318, o5319[LinkedList$Entry.previous]o5325, o5320[LinkedList$Entry.previous]o5320, o5320[LinkedList$Entry.previous]o5318, o5320[LinkedList$Entry.previous]o5325, o5325[LinkedList$Entry.previous]o5320, o5325[LinkedList$Entry.previous]o5318, o5325[LinkedList$Entry.previous]o5325)
f16014_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5325sub0), o5319[LinkedList$Entry.next]o5319, o5319[LinkedList$Entry.next]o5320, o5319[LinkedList$Entry.next]o5318, o5320[LinkedList$Entry.next]o5319, o5320[LinkedList$Entry.next]o5320, o5320[LinkedList$Entry.next]o5318, o5319[LinkedList$Entry.previous]o5319, o5319[LinkedList$Entry.previous]o5320, o5319[LinkedList$Entry.previous]o5318, o5319[LinkedList$Entry.previous]o5325, o5320[LinkedList$Entry.previous]o5320, o5320[LinkedList$Entry.previous]o5318, o5320[LinkedList$Entry.previous]o5325, o5325[LinkedList$Entry.previous]o5320, o5325[LinkedList$Entry.previous]o5318, o5325[LinkedList$Entry.previous]o5325) → f16258_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5320sub-1112390043)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5325sub0), o5319[LinkedList$Entry.next]o5319, o5319[LinkedList$Entry.next]o5320, o5319[LinkedList$Entry.next]o5318, o5320[LinkedList$Entry.next]o5319, o5320[LinkedList$Entry.next]o5320, o5320[LinkedList$Entry.next]o5318, o5319[LinkedList$Entry.previous]o5319, o5319[LinkedList$Entry.previous]o5320, o5319[LinkedList$Entry.previous]o5318, o5319[LinkedList$Entry.previous]o5325, o5320[LinkedList$Entry.previous]o5320, o5320[LinkedList$Entry.previous]o5318, o5320[LinkedList$Entry.previous]o5325, o5325[LinkedList$Entry.previous]o5320, o5325[LinkedList$Entry.previous]o5318, o5325[LinkedList$Entry.previous]o5325)
f16258_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub0), o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5703) → f16316_0_lastIndexOf_JMP(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub0), o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5703)
f16316_0_lastIndexOf_JMP(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub0), o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5703) → f16377_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub0), o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5703)
f16377_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub0), o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5703) → f12591_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub0), o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5703, o5697[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5696)
f12591_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4371sub0), java.lang.Object(o4371sub0), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4369, o4368[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4368, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4369, o4368[LinkedList$Entry.previous]o4371, o4368[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4371, o4371[LinkedList$Entry.previous]o4369, o4371[LinkedList$Entry.previous]o4371, o4369[LinkedList$Entry.previous]o4367, o4371[LinkedList$Entry.previous]o4367)
f18580_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10996sub-918978650)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10996sub-918978650)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11002sub1688641045), java.lang.Object(o11006sub1688641045))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11002sub0), matching1, o10994[LinkedList$Entry.next]o10994, o10994[LinkedList$Entry.next]o10996, o10994[LinkedList$Entry.next]o10992, o10996[LinkedList$Entry.next]o10994, o10996[LinkedList$Entry.next]o10996, o10996[LinkedList$Entry.next]o10992, o10994[LinkedList$Entry.previous]o10994, o10994[LinkedList$Entry.previous]o10996, o10994[LinkedList$Entry.previous]o10992, o10994[LinkedList$Entry.previous]o11000, o10994[LinkedList$Entry.previous]o11006, o10996[LinkedList$Entry.previous]o10996, o10996[LinkedList$Entry.previous]o10992, o10996[LinkedList$Entry.previous]o11000, o10996[LinkedList$Entry.previous]o11006, o11006[LinkedList$Entry.previous]o10996, o11006[LinkedList$Entry.previous]o10992, o11006[LinkedList$Entry.previous]o11000, o11006[LinkedList$Entry.previous]o11006) → f14803_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10996sub-918978650)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10996sub-918978650)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11002sub1688641045), java.lang.Object(o11006sub1688641045))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11002sub0), 0, o10994[LinkedList$Entry.next]o10994, o10994[LinkedList$Entry.next]o10996, o10994[LinkedList$Entry.next]o10992, o10996[LinkedList$Entry.next]o10994, o10996[LinkedList$Entry.next]o10996, o10996[LinkedList$Entry.next]o10992, o10994[LinkedList$Entry.previous]o10994, o10994[LinkedList$Entry.previous]o10996, o10994[LinkedList$Entry.previous]o10992, o10994[LinkedList$Entry.previous]o11000, o10994[LinkedList$Entry.previous]o11006, o10996[LinkedList$Entry.previous]o10996, o10996[LinkedList$Entry.previous]o10992, o10996[LinkedList$Entry.previous]o11000, o10996[LinkedList$Entry.previous]o11006, o11006[LinkedList$Entry.previous]o10996, o11006[LinkedList$Entry.previous]o10992, o11006[LinkedList$Entry.previous]o11000, o11006[LinkedList$Entry.previous]o11006) | =(matching1, 0)
f18702_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12608sub-915480486)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12608sub-915480486)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12618sub1689744335))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12606[LinkedList$Entry.next]o12606, o12606[LinkedList$Entry.next]o12608, o12606[LinkedList$Entry.next]o12604, o12608[LinkedList$Entry.next]o12606, o12608[LinkedList$Entry.next]o12608, o12608[LinkedList$Entry.next]o12604, o12606[LinkedList$Entry.previous]o12606, o12606[LinkedList$Entry.previous]o12608, o12606[LinkedList$Entry.previous]o12604, o12606[LinkedList$Entry.previous]o12612, o12606[LinkedList$Entry.previous]o12618, o12608[LinkedList$Entry.previous]o12608, o12608[LinkedList$Entry.previous]o12604, o12608[LinkedList$Entry.previous]o12612, o12608[LinkedList$Entry.previous]o12618, o12618[LinkedList$Entry.previous]o12608, o12618[LinkedList$Entry.previous]o12604, o12618[LinkedList$Entry.previous]o12612, o12618[LinkedList$Entry.previous]o12618) → f15551_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12608sub-915480486)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12608sub-915480486)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12618sub1689744335))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12606[LinkedList$Entry.next]o12606, o12606[LinkedList$Entry.next]o12608, o12606[LinkedList$Entry.next]o12604, o12608[LinkedList$Entry.next]o12606, o12608[LinkedList$Entry.next]o12608, o12608[LinkedList$Entry.next]o12604, o12606[LinkedList$Entry.previous]o12606, o12606[LinkedList$Entry.previous]o12608, o12606[LinkedList$Entry.previous]o12604, o12606[LinkedList$Entry.previous]o12612, o12606[LinkedList$Entry.previous]o12618, o12608[LinkedList$Entry.previous]o12608, o12608[LinkedList$Entry.previous]o12604, o12608[LinkedList$Entry.previous]o12612, o12608[LinkedList$Entry.previous]o12618, o12618[LinkedList$Entry.previous]o12608, o12618[LinkedList$Entry.previous]o12604, o12618[LinkedList$Entry.previous]o12612, o12618[LinkedList$Entry.previous]o12618) | =(matching1, 0)
f15551_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub-556077051))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i2027, o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5700, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5700, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5700, o5703[LinkedList$Entry.previous]o5703) → f15893_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub-556077051))), i2027, o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5700, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5700, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5700, o5703[LinkedList$Entry.previous]o5703)
f15893_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub-556077051))), matching1, o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5700, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5700, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5700, o5703[LinkedList$Entry.previous]o5703) → f15982_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub-556077051))), 0, o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5700, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5700, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5700, o5703[LinkedList$Entry.previous]o5703) | =(matching1, 0)
f15982_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub-556077051))), matching1, o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5700, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5700, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5700, o5703[LinkedList$Entry.previous]o5703) → f16045_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub-556077051))), o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5700, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5700, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5700, o5703[LinkedList$Entry.previous]o5703) | =(matching1, 0)
f16045_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub-556077051))), o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5700, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5700, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5700, o5703[LinkedList$Entry.previous]o5703) → f16083_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub-556077051))), o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5700, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5700, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5700, o5703[LinkedList$Entry.previous]o5703)
f16083_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub-556077051))), o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5700, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5700, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5700, o5703[LinkedList$Entry.previous]o5703) → f16258_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5698sub-1112196045)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5703sub0), o5697[LinkedList$Entry.next]o5697, o5697[LinkedList$Entry.next]o5698, o5697[LinkedList$Entry.next]o5696, o5698[LinkedList$Entry.next]o5697, o5698[LinkedList$Entry.next]o5698, o5698[LinkedList$Entry.next]o5696, o5697[LinkedList$Entry.previous]o5697, o5697[LinkedList$Entry.previous]o5698, o5697[LinkedList$Entry.previous]o5696, o5697[LinkedList$Entry.previous]o5703, o5698[LinkedList$Entry.previous]o5698, o5698[LinkedList$Entry.previous]o5696, o5698[LinkedList$Entry.previous]o5703, o5703[LinkedList$Entry.previous]o5698, o5703[LinkedList$Entry.previous]o5696, o5703[LinkedList$Entry.previous]o5703)
f18710_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12794sub-915404505)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12794sub-915404505)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12804sub1689782000))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12792[LinkedList$Entry.next]o12792, o12792[LinkedList$Entry.next]o12794, o12792[LinkedList$Entry.next]o12790, o12794[LinkedList$Entry.next]o12792, o12794[LinkedList$Entry.next]o12794, o12794[LinkedList$Entry.next]o12790, o12792[LinkedList$Entry.previous]o12792, o12792[LinkedList$Entry.previous]o12794, o12792[LinkedList$Entry.previous]o12790, o12792[LinkedList$Entry.previous]o12798, o12792[LinkedList$Entry.previous]o12804, o12794[LinkedList$Entry.previous]o12794, o12794[LinkedList$Entry.previous]o12790, o12794[LinkedList$Entry.previous]o12798, o12794[LinkedList$Entry.previous]o12804, o12804[LinkedList$Entry.previous]o12794, o12804[LinkedList$Entry.previous]o12790, o12804[LinkedList$Entry.previous]o12798, o12804[LinkedList$Entry.previous]o12804) → f15551_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12794sub-915404505)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12794sub-915404505)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12804sub1689782000))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12792[LinkedList$Entry.next]o12792, o12792[LinkedList$Entry.next]o12794, o12792[LinkedList$Entry.next]o12790, o12794[LinkedList$Entry.next]o12792, o12794[LinkedList$Entry.next]o12794, o12794[LinkedList$Entry.next]o12790, o12792[LinkedList$Entry.previous]o12792, o12792[LinkedList$Entry.previous]o12794, o12792[LinkedList$Entry.previous]o12790, o12792[LinkedList$Entry.previous]o12798, o12792[LinkedList$Entry.previous]o12804, o12794[LinkedList$Entry.previous]o12794, o12794[LinkedList$Entry.previous]o12790, o12794[LinkedList$Entry.previous]o12798, o12794[LinkedList$Entry.previous]o12804, o12804[LinkedList$Entry.previous]o12794, o12804[LinkedList$Entry.previous]o12790, o12804[LinkedList$Entry.previous]o12798, o12804[LinkedList$Entry.previous]o12804) | =(matching1, 0)
f18721_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12986sub-915286488)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12986sub-915286488)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12996sub1689841334))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12984[LinkedList$Entry.next]o12984, o12984[LinkedList$Entry.next]o12986, o12984[LinkedList$Entry.next]o12982, o12986[LinkedList$Entry.next]o12984, o12986[LinkedList$Entry.next]o12986, o12986[LinkedList$Entry.next]o12982, o12984[LinkedList$Entry.previous]o12984, o12984[LinkedList$Entry.previous]o12986, o12984[LinkedList$Entry.previous]o12982, o12984[LinkedList$Entry.previous]o12990, o12984[LinkedList$Entry.previous]o12996, o12986[LinkedList$Entry.previous]o12986, o12986[LinkedList$Entry.previous]o12982, o12986[LinkedList$Entry.previous]o12990, o12986[LinkedList$Entry.previous]o12996, o12996[LinkedList$Entry.previous]o12986, o12996[LinkedList$Entry.previous]o12982, o12996[LinkedList$Entry.previous]o12990, o12996[LinkedList$Entry.previous]o12996) → f15551_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12986sub-915286488)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12986sub-915286488)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12996sub1689841334))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12984[LinkedList$Entry.next]o12984, o12984[LinkedList$Entry.next]o12986, o12984[LinkedList$Entry.next]o12982, o12986[LinkedList$Entry.next]o12984, o12986[LinkedList$Entry.next]o12986, o12986[LinkedList$Entry.next]o12982, o12984[LinkedList$Entry.previous]o12984, o12984[LinkedList$Entry.previous]o12986, o12984[LinkedList$Entry.previous]o12982, o12984[LinkedList$Entry.previous]o12990, o12984[LinkedList$Entry.previous]o12996, o12986[LinkedList$Entry.previous]o12986, o12986[LinkedList$Entry.previous]o12982, o12986[LinkedList$Entry.previous]o12990, o12986[LinkedList$Entry.previous]o12996, o12996[LinkedList$Entry.previous]o12986, o12996[LinkedList$Entry.previous]o12982, o12996[LinkedList$Entry.previous]o12990, o12996[LinkedList$Entry.previous]o12996) | =(matching1, 0)
f18730_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13168sub-913919822)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13168sub-913919822)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13178sub1690524667))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13166[LinkedList$Entry.next]o13166, o13166[LinkedList$Entry.next]o13168, o13166[LinkedList$Entry.next]o13164, o13168[LinkedList$Entry.next]o13166, o13168[LinkedList$Entry.next]o13168, o13168[LinkedList$Entry.next]o13164, o13166[LinkedList$Entry.previous]o13166, o13166[LinkedList$Entry.previous]o13168, o13166[LinkedList$Entry.previous]o13164, o13166[LinkedList$Entry.previous]o13172, o13166[LinkedList$Entry.previous]o13178, o13168[LinkedList$Entry.previous]o13168, o13168[LinkedList$Entry.previous]o13164, o13168[LinkedList$Entry.previous]o13172, o13168[LinkedList$Entry.previous]o13178, o13178[LinkedList$Entry.previous]o13168, o13178[LinkedList$Entry.previous]o13164, o13178[LinkedList$Entry.previous]o13172, o13178[LinkedList$Entry.previous]o13178) → f15551_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13168sub-913919822)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13168sub-913919822)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13178sub1690524667))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13166[LinkedList$Entry.next]o13166, o13166[LinkedList$Entry.next]o13168, o13166[LinkedList$Entry.next]o13164, o13168[LinkedList$Entry.next]o13166, o13168[LinkedList$Entry.next]o13168, o13168[LinkedList$Entry.next]o13164, o13166[LinkedList$Entry.previous]o13166, o13166[LinkedList$Entry.previous]o13168, o13166[LinkedList$Entry.previous]o13164, o13166[LinkedList$Entry.previous]o13172, o13166[LinkedList$Entry.previous]o13178, o13168[LinkedList$Entry.previous]o13168, o13168[LinkedList$Entry.previous]o13164, o13168[LinkedList$Entry.previous]o13172, o13168[LinkedList$Entry.previous]o13178, o13178[LinkedList$Entry.previous]o13168, o13178[LinkedList$Entry.previous]o13164, o13178[LinkedList$Entry.previous]o13172, o13178[LinkedList$Entry.previous]o13178) | =(matching1, 1)
f18736_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13333sub-913808036)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13333sub-913808036)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13343sub1690580560))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13331[LinkedList$Entry.next]o13331, o13331[LinkedList$Entry.next]o13333, o13331[LinkedList$Entry.next]o13329, o13333[LinkedList$Entry.next]o13331, o13333[LinkedList$Entry.next]o13333, o13333[LinkedList$Entry.next]o13329, o13331[LinkedList$Entry.previous]o13331, o13331[LinkedList$Entry.previous]o13333, o13331[LinkedList$Entry.previous]o13329, o13331[LinkedList$Entry.previous]o13337, o13331[LinkedList$Entry.previous]o13343, o13333[LinkedList$Entry.previous]o13333, o13333[LinkedList$Entry.previous]o13329, o13333[LinkedList$Entry.previous]o13337, o13333[LinkedList$Entry.previous]o13343, o13343[LinkedList$Entry.previous]o13333, o13343[LinkedList$Entry.previous]o13329, o13343[LinkedList$Entry.previous]o13337, o13343[LinkedList$Entry.previous]o13343) → f15551_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13333sub-913808036)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13333sub-913808036)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13343sub1690580560))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13331[LinkedList$Entry.next]o13331, o13331[LinkedList$Entry.next]o13333, o13331[LinkedList$Entry.next]o13329, o13333[LinkedList$Entry.next]o13331, o13333[LinkedList$Entry.next]o13333, o13333[LinkedList$Entry.next]o13329, o13331[LinkedList$Entry.previous]o13331, o13331[LinkedList$Entry.previous]o13333, o13331[LinkedList$Entry.previous]o13329, o13331[LinkedList$Entry.previous]o13337, o13331[LinkedList$Entry.previous]o13343, o13333[LinkedList$Entry.previous]o13333, o13333[LinkedList$Entry.previous]o13329, o13333[LinkedList$Entry.previous]o13337, o13333[LinkedList$Entry.previous]o13343, o13343[LinkedList$Entry.previous]o13333, o13343[LinkedList$Entry.previous]o13329, o13343[LinkedList$Entry.previous]o13337, o13343[LinkedList$Entry.previous]o13343) | =(matching1, 1)
f18742_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13505sub-913714044)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13505sub-913714044)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13515sub1690637321))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13503[LinkedList$Entry.next]o13503, o13503[LinkedList$Entry.next]o13505, o13503[LinkedList$Entry.next]o13501, o13505[LinkedList$Entry.next]o13503, o13505[LinkedList$Entry.next]o13505, o13505[LinkedList$Entry.next]o13501, o13503[LinkedList$Entry.previous]o13503, o13503[LinkedList$Entry.previous]o13505, o13503[LinkedList$Entry.previous]o13501, o13503[LinkedList$Entry.previous]o13509, o13503[LinkedList$Entry.previous]o13515, o13505[LinkedList$Entry.previous]o13505, o13505[LinkedList$Entry.previous]o13501, o13505[LinkedList$Entry.previous]o13509, o13505[LinkedList$Entry.previous]o13515, o13515[LinkedList$Entry.previous]o13505, o13515[LinkedList$Entry.previous]o13501, o13515[LinkedList$Entry.previous]o13509, o13515[LinkedList$Entry.previous]o13515) → f15551_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13505sub-913714044)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13505sub-913714044)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13515sub1690637321))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13503[LinkedList$Entry.next]o13503, o13503[LinkedList$Entry.next]o13505, o13503[LinkedList$Entry.next]o13501, o13505[LinkedList$Entry.next]o13503, o13505[LinkedList$Entry.next]o13505, o13505[LinkedList$Entry.next]o13501, o13503[LinkedList$Entry.previous]o13503, o13503[LinkedList$Entry.previous]o13505, o13503[LinkedList$Entry.previous]o13501, o13503[LinkedList$Entry.previous]o13509, o13503[LinkedList$Entry.previous]o13515, o13505[LinkedList$Entry.previous]o13505, o13505[LinkedList$Entry.previous]o13501, o13505[LinkedList$Entry.previous]o13509, o13505[LinkedList$Entry.previous]o13515, o13515[LinkedList$Entry.previous]o13505, o13515[LinkedList$Entry.previous]o13501, o13515[LinkedList$Entry.previous]o13509, o13515[LinkedList$Entry.previous]o13515) | =(matching1, 1)
f13125_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4577, o4368[LinkedList$Entry.next]o4367, o4577[LinkedList$Entry.next]o4368, o4577[LinkedList$Entry.next]o4577, o4577[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4577, o4368[LinkedList$Entry.previous]o4367, o4577[LinkedList$Entry.previous]o4577, o4577[LinkedList$Entry.previous]o4367) → f13188_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.next]o4577, o4368[LinkedList$Entry.previous]o4577, o4579[LinkedList$Entry.next]o4368, o4579[LinkedList$Entry.next]o4577, o4579[LinkedList$Entry.next]o4367, o4580[LinkedList$Entry.previous]o4577, o4580[LinkedList$Entry.previous]o4367) | &&(&&(&&(&&(=(o4579[LinkedList$Entry.next]o4368, +(o4577[LinkedList$Entry.next]o4368, -1)), =(o4579[LinkedList$Entry.next]o4577, +(o4577[LinkedList$Entry.next]o4577, -1))), =(o4579[LinkedList$Entry.next]o4367, +(o4577[LinkedList$Entry.next]o4367, -1))), =(o4580[LinkedList$Entry.previous]o4577, +(o4577[LinkedList$Entry.previous]o4577, -1))), =(o4580[LinkedList$Entry.previous]o4367, +(o4577[LinkedList$Entry.previous]o4367, -1)))
f13188_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.next]o4577, o4368[LinkedList$Entry.previous]o4577, o4579[LinkedList$Entry.next]o4368, o4579[LinkedList$Entry.next]o4577, o4579[LinkedList$Entry.next]o4367, o4580[LinkedList$Entry.previous]o4577, o4580[LinkedList$Entry.previous]o4367) → f13303_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), java.lang.Object(javaUtilEx.Content(EOC)), o45780, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.next]o4577, o4368[LinkedList$Entry.previous]o4577, o4579[LinkedList$Entry.next]o4368, o4579[LinkedList$Entry.next]o4577, o4579[LinkedList$Entry.next]o4367, o4580[LinkedList$Entry.previous]o4577, o4580[LinkedList$Entry.previous]o4367)
f13303_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), java.lang.Object(javaUtilEx.Content(EOC)), o45780, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.next]o4577, o4368[LinkedList$Entry.previous]o4577, o4579[LinkedList$Entry.next]o4368, o4579[LinkedList$Entry.next]o4577, o4579[LinkedList$Entry.next]o4367, o4580[LinkedList$Entry.previous]o4577, o4580[LinkedList$Entry.previous]o4367) → f13335_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45780, java.lang.Object(o4368sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1114166963, java.lang.Object(o4580sub-1114166963))))), java.lang.Object(o4580sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45780, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.next]o4577, o4368[LinkedList$Entry.previous]o4577, o4579[LinkedList$Entry.next]o4368, o4579[LinkedList$Entry.next]o4577, o4579[LinkedList$Entry.next]o4367, o4580[LinkedList$Entry.previous]o4577, o4580[LinkedList$Entry.previous]o4367)
f13303_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), java.lang.Object(javaUtilEx.Content(EOC)), o45780, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.next]o4577, o4368[LinkedList$Entry.previous]o4577, o4579[LinkedList$Entry.next]o4368, o4579[LinkedList$Entry.next]o4577, o4579[LinkedList$Entry.next]o4367, o4580[LinkedList$Entry.previous]o4577, o4580[LinkedList$Entry.previous]o4367) → f13335_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), java.lang.Object(javaUtilEx.Content(EOC)), o45780, java.lang.Object(javaUtilEx.Content(EOC)), o45780, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.next]o4577, o4368[LinkedList$Entry.previous]o4577, o4579[LinkedList$Entry.next]o4368, o4579[LinkedList$Entry.next]o4577, o4579[LinkedList$Entry.next]o4367, o4580[LinkedList$Entry.previous]o4577, o4580[LinkedList$Entry.previous]o4367)
f13335_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45780, java.lang.Object(o4368sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1114166963, java.lang.Object(o4580sub-1114166963))))), java.lang.Object(o4580sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45780, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.next]o4577, o4368[LinkedList$Entry.previous]o4577, o4579[LinkedList$Entry.next]o4368, o4579[LinkedList$Entry.next]o4577, o4579[LinkedList$Entry.next]o4367, o4580[LinkedList$Entry.previous]o4577, o4580[LinkedList$Entry.previous]o4367) → f13368_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45780, java.lang.Object(o4368sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1114166963, java.lang.Object(o4580sub-1114166963))))), java.lang.Object(o4580sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-557053210, java.lang.Object(o4580sub-557053210))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4578-1671280747, java.lang.Object(o4580sub-1671280747)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45780, o4368[LinkedList$Entry.next]o4368, o4368[LinkedList$Entry.next]o4367, o4368[LinkedList$Entry.previous]o4368, o4368[LinkedList$Entry.previous]o4367, o4368[LinkedList$Entry.next]o4577, o4368[LinkedList$Entry.previous]o4577, o4579[LinkedList$Entry.next]o4368, o4579[LinkedList$Entry.next]o4577, o4579[LinkedList$Entry.next]o4367, o4580[LinkedList$Entry.previous]o4577, o4580[LinkedList$Entry.previous]o4367)
f18571_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub768924471)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub768924471)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub1687964501))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, matching1, o10886[LinkedList$Entry.next]o10886, o10886[LinkedList$Entry.next]o10884, o10886[LinkedList$Entry.next]o10890, o10886[LinkedList$Entry.next]o10892, o10886[LinkedList$Entry.previous]o10886, o10886[LinkedList$Entry.previous]o10884, o10886[LinkedList$Entry.previous]o10890, o10886[LinkedList$Entry.previous]o10894, o10892[LinkedList$Entry.next]o10886, o10892[LinkedList$Entry.next]o10884, o10892[LinkedList$Entry.next]o10890, o10892[LinkedList$Entry.next]o10892, o10894[LinkedList$Entry.previous]o10890, o10894[LinkedList$Entry.previous]o10894, o10894[LinkedList$Entry.previous]o10884) → f15101_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub768924471)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub768924471)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub1687964501))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, 0, o10886[LinkedList$Entry.next]o10886, o10886[LinkedList$Entry.next]o10884, o10886[LinkedList$Entry.next]o10890, o10886[LinkedList$Entry.next]o10892, o10886[LinkedList$Entry.previous]o10886, o10886[LinkedList$Entry.previous]o10884, o10886[LinkedList$Entry.previous]o10890, o10886[LinkedList$Entry.previous]o10894, o10892[LinkedList$Entry.next]o10886, o10892[LinkedList$Entry.next]o10884, o10892[LinkedList$Entry.next]o10890, o10892[LinkedList$Entry.next]o10892, o10894[LinkedList$Entry.previous]o10890, o10894[LinkedList$Entry.previous]o10894, o10894[LinkedList$Entry.previous]o10884) | =(matching1, 0)
f15101_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-556160658, java.lang.Object(o5463sub-556160658))), java.lang.Object(javaUtilEx.Content(EOC)), o54610, matching1, o5459[LinkedList$Entry.next]o5459, o5459[LinkedList$Entry.next]o5458, o5459[LinkedList$Entry.next]o5460, o5459[LinkedList$Entry.next]o5462, o5459[LinkedList$Entry.previous]o5459, o5459[LinkedList$Entry.previous]o5458, o5459[LinkedList$Entry.previous]o5460, o5459[LinkedList$Entry.previous]o5463, o5462[LinkedList$Entry.next]o5459, o5462[LinkedList$Entry.next]o5458, o5462[LinkedList$Entry.next]o5460, o5462[LinkedList$Entry.next]o5462, o5463[LinkedList$Entry.previous]o5460, o5463[LinkedList$Entry.previous]o5463, o5463[LinkedList$Entry.previous]o5458) → f15464_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-556160658, java.lang.Object(o5463sub-556160658))), 0, o5459[LinkedList$Entry.next]o5459, o5459[LinkedList$Entry.next]o5458, o5459[LinkedList$Entry.next]o5460, o5459[LinkedList$Entry.next]o5462, o5459[LinkedList$Entry.previous]o5459, o5459[LinkedList$Entry.previous]o5458, o5459[LinkedList$Entry.previous]o5460, o5459[LinkedList$Entry.previous]o5463, o5462[LinkedList$Entry.next]o5459, o5462[LinkedList$Entry.next]o5458, o5462[LinkedList$Entry.next]o5460, o5462[LinkedList$Entry.next]o5462, o5463[LinkedList$Entry.previous]o5460, o5463[LinkedList$Entry.previous]o5463, o5463[LinkedList$Entry.previous]o5458) | =(matching1, 0)
f15464_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-556160658, java.lang.Object(o5463sub-556160658))), matching1, o5459[LinkedList$Entry.next]o5459, o5459[LinkedList$Entry.next]o5458, o5459[LinkedList$Entry.next]o5460, o5459[LinkedList$Entry.next]o5462, o5459[LinkedList$Entry.previous]o5459, o5459[LinkedList$Entry.previous]o5458, o5459[LinkedList$Entry.previous]o5460, o5459[LinkedList$Entry.previous]o5463, o5462[LinkedList$Entry.next]o5459, o5462[LinkedList$Entry.next]o5458, o5462[LinkedList$Entry.next]o5460, o5462[LinkedList$Entry.next]o5462, o5463[LinkedList$Entry.previous]o5460, o5463[LinkedList$Entry.previous]o5463, o5463[LinkedList$Entry.previous]o5458) → f15862_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-556160658, java.lang.Object(o5463sub-556160658))), o5459[LinkedList$Entry.next]o5459, o5459[LinkedList$Entry.next]o5458, o5459[LinkedList$Entry.next]o5460, o5459[LinkedList$Entry.next]o5462, o5459[LinkedList$Entry.previous]o5459, o5459[LinkedList$Entry.previous]o5458, o5459[LinkedList$Entry.previous]o5460, o5459[LinkedList$Entry.previous]o5463, o5462[LinkedList$Entry.next]o5459, o5462[LinkedList$Entry.next]o5458, o5462[LinkedList$Entry.next]o5460, o5462[LinkedList$Entry.next]o5462, o5463[LinkedList$Entry.previous]o5460, o5463[LinkedList$Entry.previous]o5463, o5463[LinkedList$Entry.previous]o5458) | =(matching1, 0)
f15862_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-556160658, java.lang.Object(o5463sub-556160658))), o5459[LinkedList$Entry.next]o5459, o5459[LinkedList$Entry.next]o5458, o5459[LinkedList$Entry.next]o5460, o5459[LinkedList$Entry.next]o5462, o5459[LinkedList$Entry.previous]o5459, o5459[LinkedList$Entry.previous]o5458, o5459[LinkedList$Entry.previous]o5460, o5459[LinkedList$Entry.previous]o5463, o5462[LinkedList$Entry.next]o5459, o5462[LinkedList$Entry.next]o5458, o5462[LinkedList$Entry.next]o5460, o5462[LinkedList$Entry.next]o5462, o5463[LinkedList$Entry.previous]o5460, o5463[LinkedList$Entry.previous]o5463, o5463[LinkedList$Entry.previous]o5458) → f15970_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-556160658, java.lang.Object(o5463sub-556160658))), o5459[LinkedList$Entry.next]o5459, o5459[LinkedList$Entry.next]o5458, o5459[LinkedList$Entry.next]o5460, o5459[LinkedList$Entry.next]o5462, o5459[LinkedList$Entry.previous]o5459, o5459[LinkedList$Entry.previous]o5458, o5459[LinkedList$Entry.previous]o5460, o5459[LinkedList$Entry.previous]o5463, o5462[LinkedList$Entry.next]o5459, o5462[LinkedList$Entry.next]o5458, o5462[LinkedList$Entry.next]o5460, o5462[LinkedList$Entry.next]o5462, o5463[LinkedList$Entry.previous]o5460, o5463[LinkedList$Entry.previous]o5463, o5463[LinkedList$Entry.previous]o5458)
f15970_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-556160658, java.lang.Object(o5463sub-556160658))), o5459[LinkedList$Entry.next]o5459, o5459[LinkedList$Entry.next]o5458, o5459[LinkedList$Entry.next]o5460, o5459[LinkedList$Entry.next]o5462, o5459[LinkedList$Entry.previous]o5459, o5459[LinkedList$Entry.previous]o5458, o5459[LinkedList$Entry.previous]o5460, o5459[LinkedList$Entry.previous]o5463, o5462[LinkedList$Entry.next]o5459, o5462[LinkedList$Entry.next]o5458, o5462[LinkedList$Entry.next]o5460, o5462[LinkedList$Entry.next]o5462, o5463[LinkedList$Entry.previous]o5460, o5463[LinkedList$Entry.previous]o5463, o5463[LinkedList$Entry.previous]o5458) → f16023_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5463sub0), o5459[LinkedList$Entry.next]o5459, o5459[LinkedList$Entry.next]o5458, o5459[LinkedList$Entry.next]o5460, o5459[LinkedList$Entry.next]o5462, o5459[LinkedList$Entry.previous]o5459, o5459[LinkedList$Entry.previous]o5458, o5459[LinkedList$Entry.previous]o5460, o5459[LinkedList$Entry.previous]o5463, o5462[LinkedList$Entry.next]o5459, o5462[LinkedList$Entry.next]o5458, o5462[LinkedList$Entry.next]o5460, o5462[LinkedList$Entry.next]o5462, o5463[LinkedList$Entry.previous]o5460, o5463[LinkedList$Entry.previous]o5463, o5463[LinkedList$Entry.previous]o5458)
f16023_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5463sub0), o5459[LinkedList$Entry.next]o5459, o5459[LinkedList$Entry.next]o5458, o5459[LinkedList$Entry.next]o5460, o5459[LinkedList$Entry.next]o5462, o5459[LinkedList$Entry.previous]o5459, o5459[LinkedList$Entry.previous]o5458, o5459[LinkedList$Entry.previous]o5460, o5459[LinkedList$Entry.previous]o5463, o5462[LinkedList$Entry.next]o5459, o5462[LinkedList$Entry.next]o5458, o5462[LinkedList$Entry.next]o5460, o5462[LinkedList$Entry.next]o5462, o5463[LinkedList$Entry.previous]o5460, o5463[LinkedList$Entry.previous]o5463, o5463[LinkedList$Entry.previous]o5458) → f16258_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5461-1668483431, java.lang.Object(o5463sub-1668483431)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5463sub0), o5459[LinkedList$Entry.next]o5459, o5459[LinkedList$Entry.next]o5460, o5459[LinkedList$Entry.next]o5458, o5460[LinkedList$Entry.next]o5459, o5460[LinkedList$Entry.next]o5460, o5460[LinkedList$Entry.next]o5458, o5459[LinkedList$Entry.previous]o5459, o5459[LinkedList$Entry.previous]o5460, o5459[LinkedList$Entry.previous]o5458, o5459[LinkedList$Entry.previous]o5463, o5460[LinkedList$Entry.previous]o5460, o5460[LinkedList$Entry.previous]o5458, o5460[LinkedList$Entry.previous]o5463, o5463[LinkedList$Entry.previous]o5460, o5463[LinkedList$Entry.previous]o5458, o5463[LinkedList$Entry.previous]o5463) | &&(&&(=(o5460[LinkedList$Entry.next]o5460, 0), =(o5460[LinkedList$Entry.previous]o5460, 0)), =(o5460[LinkedList$Entry.previous]o5463, 1))
f18583_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub770973540), java.lang.Object(o11075sub770973540)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub770973540), java.lang.Object(o11075sub770973540)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub1688647090), java.lang.Object(o11075sub1688647090))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11071sub0), matching1, o11065[LinkedList$Entry.next]o11065, o11065[LinkedList$Entry.next]o11063, o11065[LinkedList$Entry.next]o11069, o11065[LinkedList$Entry.next]o11073, o11065[LinkedList$Entry.previous]o11065, o11065[LinkedList$Entry.previous]o11063, o11065[LinkedList$Entry.previous]o11069, o11065[LinkedList$Entry.previous]o11075, o11073[LinkedList$Entry.next]o11065, o11073[LinkedList$Entry.next]o11063, o11073[LinkedList$Entry.next]o11069, o11073[LinkedList$Entry.next]o11073, o11075[LinkedList$Entry.previous]o11069, o11075[LinkedList$Entry.previous]o11075, o11075[LinkedList$Entry.previous]o11063) → f15101_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub770973540), java.lang.Object(o11075sub770973540)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub770973540), java.lang.Object(o11075sub770973540)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub1688647090), java.lang.Object(o11075sub1688647090))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11071sub0), 0, o11065[LinkedList$Entry.next]o11065, o11065[LinkedList$Entry.next]o11063, o11065[LinkedList$Entry.next]o11069, o11065[LinkedList$Entry.next]o11073, o11065[LinkedList$Entry.previous]o11065, o11065[LinkedList$Entry.previous]o11063, o11065[LinkedList$Entry.previous]o11069, o11065[LinkedList$Entry.previous]o11075, o11073[LinkedList$Entry.next]o11065, o11073[LinkedList$Entry.next]o11063, o11073[LinkedList$Entry.next]o11069, o11073[LinkedList$Entry.next]o11073, o11075[LinkedList$Entry.previous]o11069, o11075[LinkedList$Entry.previous]o11075, o11075[LinkedList$Entry.previous]o11063) | =(matching1, 0)
f18704_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub774281364)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub774281364)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub1689750132))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12669[LinkedList$Entry.next]o12669, o12669[LinkedList$Entry.next]o12667, o12669[LinkedList$Entry.next]o12673, o12669[LinkedList$Entry.next]o12677, o12669[LinkedList$Entry.previous]o12669, o12669[LinkedList$Entry.previous]o12667, o12669[LinkedList$Entry.previous]o12673, o12669[LinkedList$Entry.previous]o12679, o12677[LinkedList$Entry.next]o12669, o12677[LinkedList$Entry.next]o12667, o12677[LinkedList$Entry.next]o12673, o12677[LinkedList$Entry.next]o12677, o12679[LinkedList$Entry.previous]o12673, o12679[LinkedList$Entry.previous]o12679, o12679[LinkedList$Entry.previous]o12667) → f15731_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub774281364)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub774281364)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub1689750132))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12669[LinkedList$Entry.next]o12669, o12669[LinkedList$Entry.next]o12667, o12669[LinkedList$Entry.next]o12673, o12669[LinkedList$Entry.next]o12677, o12669[LinkedList$Entry.previous]o12669, o12669[LinkedList$Entry.previous]o12667, o12669[LinkedList$Entry.previous]o12673, o12669[LinkedList$Entry.previous]o12679, o12677[LinkedList$Entry.next]o12669, o12677[LinkedList$Entry.next]o12667, o12677[LinkedList$Entry.next]o12673, o12677[LinkedList$Entry.next]o12677, o12679[LinkedList$Entry.previous]o12673, o12679[LinkedList$Entry.previous]o12679, o12679[LinkedList$Entry.previous]o12667) | =(matching1, 0)
f15731_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-556074044))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i2048, o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732) → f15936_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-556074044))), i2048, o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732)
f15936_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-556074044))), matching1, o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732) → f15993_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-556074044))), 0, o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732) | =(matching1, 0)
f15993_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-556074044))), matching1, o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732) → f16072_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-556074044))), o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732) | =(matching1, 0)
f16072_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-556074044))), o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732) → f16089_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-556074044))), o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732)
f16089_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-556074044))), o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732) → f16294_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub0), o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732)
f16294_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub0), o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732) → f16352_0_lastIndexOf_JMP(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub0), o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732)
f16352_0_lastIndexOf_JMP(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub0), o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732) → f16382_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub0), o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732)
f16382_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub0), o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5736, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5732, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5736[LinkedList$Entry.next]o5733, o5736[LinkedList$Entry.next]o5732, o5736[LinkedList$Entry.next]o5734, o5736[LinkedList$Entry.next]o5736, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5732) → f12591_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub-1668222287)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5737sub0), o5733[LinkedList$Entry.next]o5733, o5733[LinkedList$Entry.next]o5734, o5733[LinkedList$Entry.next]o5732, o5734[LinkedList$Entry.next]o5733, o5734[LinkedList$Entry.next]o5734, o5734[LinkedList$Entry.next]o5732, o5733[LinkedList$Entry.previous]o5733, o5733[LinkedList$Entry.previous]o5734, o5733[LinkedList$Entry.previous]o5737, o5733[LinkedList$Entry.previous]o5732, o5734[LinkedList$Entry.previous]o5734, o5734[LinkedList$Entry.previous]o5737, o5737[LinkedList$Entry.previous]o5734, o5737[LinkedList$Entry.previous]o5737, o5734[LinkedList$Entry.previous]o5732, o5737[LinkedList$Entry.previous]o5732) | &&(&&(=(o5734[LinkedList$Entry.next]o5734, 0), =(o5734[LinkedList$Entry.previous]o5734, 0)), =(o5734[LinkedList$Entry.previous]o5737, 1))
f18714_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub774465690)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub774465690)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub1689811574))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12887[LinkedList$Entry.next]o12887, o12887[LinkedList$Entry.next]o12885, o12887[LinkedList$Entry.next]o12891, o12887[LinkedList$Entry.next]o12895, o12887[LinkedList$Entry.previous]o12887, o12887[LinkedList$Entry.previous]o12885, o12887[LinkedList$Entry.previous]o12891, o12887[LinkedList$Entry.previous]o12897, o12895[LinkedList$Entry.next]o12887, o12895[LinkedList$Entry.next]o12885, o12895[LinkedList$Entry.next]o12891, o12895[LinkedList$Entry.next]o12895, o12897[LinkedList$Entry.previous]o12891, o12897[LinkedList$Entry.previous]o12897, o12897[LinkedList$Entry.previous]o12885) → f15731_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub774465690)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub774465690)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub1689811574))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12887[LinkedList$Entry.next]o12887, o12887[LinkedList$Entry.next]o12885, o12887[LinkedList$Entry.next]o12891, o12887[LinkedList$Entry.next]o12895, o12887[LinkedList$Entry.previous]o12887, o12887[LinkedList$Entry.previous]o12885, o12887[LinkedList$Entry.previous]o12891, o12887[LinkedList$Entry.previous]o12897, o12895[LinkedList$Entry.next]o12887, o12895[LinkedList$Entry.next]o12885, o12895[LinkedList$Entry.next]o12891, o12895[LinkedList$Entry.next]o12895, o12897[LinkedList$Entry.previous]o12891, o12897[LinkedList$Entry.previous]o12897, o12897[LinkedList$Entry.previous]o12885) | =(matching1, 0)
f18725_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub776512620)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub776512620)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub1690493884))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13057[LinkedList$Entry.next]o13057, o13057[LinkedList$Entry.next]o13055, o13057[LinkedList$Entry.next]o13061, o13057[LinkedList$Entry.next]o13065, o13057[LinkedList$Entry.previous]o13057, o13057[LinkedList$Entry.previous]o13055, o13057[LinkedList$Entry.previous]o13061, o13057[LinkedList$Entry.previous]o13067, o13065[LinkedList$Entry.next]o13057, o13065[LinkedList$Entry.next]o13055, o13065[LinkedList$Entry.next]o13061, o13065[LinkedList$Entry.next]o13065, o13067[LinkedList$Entry.previous]o13061, o13067[LinkedList$Entry.previous]o13067, o13067[LinkedList$Entry.previous]o13055) → f15731_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub776512620)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub776512620)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub1690493884))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o13057[LinkedList$Entry.next]o13057, o13057[LinkedList$Entry.next]o13055, o13057[LinkedList$Entry.next]o13061, o13057[LinkedList$Entry.next]o13065, o13057[LinkedList$Entry.previous]o13057, o13057[LinkedList$Entry.previous]o13055, o13057[LinkedList$Entry.previous]o13061, o13057[LinkedList$Entry.previous]o13067, o13065[LinkedList$Entry.next]o13057, o13065[LinkedList$Entry.next]o13055, o13065[LinkedList$Entry.next]o13061, o13065[LinkedList$Entry.next]o13065, o13067[LinkedList$Entry.previous]o13061, o13067[LinkedList$Entry.previous]o13067, o13067[LinkedList$Entry.previous]o13055) | =(matching1, 0)
f18732_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub776685507)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub776685507)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub1690551513))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13236[LinkedList$Entry.next]o13236, o13236[LinkedList$Entry.next]o13234, o13236[LinkedList$Entry.next]o13240, o13236[LinkedList$Entry.next]o13244, o13236[LinkedList$Entry.previous]o13236, o13236[LinkedList$Entry.previous]o13234, o13236[LinkedList$Entry.previous]o13240, o13236[LinkedList$Entry.previous]o13246, o13244[LinkedList$Entry.next]o13236, o13244[LinkedList$Entry.next]o13234, o13244[LinkedList$Entry.next]o13240, o13244[LinkedList$Entry.next]o13244, o13246[LinkedList$Entry.previous]o13240, o13246[LinkedList$Entry.previous]o13246, o13246[LinkedList$Entry.previous]o13234) → f15731_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub776685507)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub776685507)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub1690551513))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13236[LinkedList$Entry.next]o13236, o13236[LinkedList$Entry.next]o13234, o13236[LinkedList$Entry.next]o13240, o13236[LinkedList$Entry.next]o13244, o13236[LinkedList$Entry.previous]o13236, o13236[LinkedList$Entry.previous]o13234, o13236[LinkedList$Entry.previous]o13240, o13236[LinkedList$Entry.previous]o13246, o13244[LinkedList$Entry.next]o13236, o13244[LinkedList$Entry.next]o13234, o13244[LinkedList$Entry.next]o13240, o13244[LinkedList$Entry.next]o13244, o13246[LinkedList$Entry.previous]o13240, o13246[LinkedList$Entry.previous]o13246, o13246[LinkedList$Entry.previous]o13234) | =(matching1, 1)
f18739_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub776812824)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub776812824)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub1690607406))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13401[LinkedList$Entry.next]o13401, o13401[LinkedList$Entry.next]o13399, o13401[LinkedList$Entry.next]o13405, o13401[LinkedList$Entry.next]o13409, o13401[LinkedList$Entry.previous]o13401, o13401[LinkedList$Entry.previous]o13399, o13401[LinkedList$Entry.previous]o13405, o13401[LinkedList$Entry.previous]o13411, o13409[LinkedList$Entry.next]o13401, o13409[LinkedList$Entry.next]o13399, o13409[LinkedList$Entry.next]o13405, o13409[LinkedList$Entry.next]o13409, o13411[LinkedList$Entry.previous]o13405, o13411[LinkedList$Entry.previous]o13411, o13411[LinkedList$Entry.previous]o13399) → f15731_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub776812824)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub776812824)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub1690607406))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13401[LinkedList$Entry.next]o13401, o13401[LinkedList$Entry.next]o13399, o13401[LinkedList$Entry.next]o13405, o13401[LinkedList$Entry.next]o13409, o13401[LinkedList$Entry.previous]o13401, o13401[LinkedList$Entry.previous]o13399, o13401[LinkedList$Entry.previous]o13405, o13401[LinkedList$Entry.previous]o13411, o13409[LinkedList$Entry.next]o13401, o13409[LinkedList$Entry.next]o13399, o13409[LinkedList$Entry.next]o13405, o13409[LinkedList$Entry.next]o13409, o13411[LinkedList$Entry.previous]o13405, o13411[LinkedList$Entry.previous]o13411, o13411[LinkedList$Entry.previous]o13399) | =(matching1, 1)
f18745_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub776961531)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub776961531)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub1690643087))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13565[LinkedList$Entry.next]o13565, o13565[LinkedList$Entry.next]o13563, o13565[LinkedList$Entry.next]o13569, o13565[LinkedList$Entry.next]o13573, o13565[LinkedList$Entry.previous]o13565, o13565[LinkedList$Entry.previous]o13563, o13565[LinkedList$Entry.previous]o13569, o13565[LinkedList$Entry.previous]o13575, o13573[LinkedList$Entry.next]o13565, o13573[LinkedList$Entry.next]o13563, o13573[LinkedList$Entry.next]o13569, o13573[LinkedList$Entry.next]o13573, o13575[LinkedList$Entry.previous]o13569, o13575[LinkedList$Entry.previous]o13575, o13575[LinkedList$Entry.previous]o13563) → f15731_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub776961531)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub776961531)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub1690643087))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13565[LinkedList$Entry.next]o13565, o13565[LinkedList$Entry.next]o13563, o13565[LinkedList$Entry.next]o13569, o13565[LinkedList$Entry.next]o13573, o13565[LinkedList$Entry.previous]o13565, o13565[LinkedList$Entry.previous]o13563, o13565[LinkedList$Entry.previous]o13569, o13565[LinkedList$Entry.previous]o13575, o13573[LinkedList$Entry.next]o13565, o13573[LinkedList$Entry.next]o13563, o13573[LinkedList$Entry.next]o13569, o13573[LinkedList$Entry.next]o13573, o13575[LinkedList$Entry.previous]o13569, o13575[LinkedList$Entry.previous]o13575, o13575[LinkedList$Entry.previous]o13563) | =(matching1, 1)
f13009_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4533sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4533sub0), o4533[LinkedList$Entry.next]o4533, o4533[LinkedList$Entry.next]o4369, o4533[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4533, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4533[LinkedList$Entry.previous]o4533, o4533[LinkedList$Entry.previous]o4369, o4533[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4533) → f13157_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4533sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4533sub0), o4533[LinkedList$Entry.next]o4533, o4533[LinkedList$Entry.next]o4369, o4533[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4533, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4533[LinkedList$Entry.previous]o4533, o4533[LinkedList$Entry.previous]o4369, o4533[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4533) | &&(&&(&&(&&(&&(&&(&&(>(o4533[LinkedList$Entry.next]o4533, 0), >(o4533[LinkedList$Entry.next]o4369, 0)), >(o4369[LinkedList$Entry.next]o4533, 0)), >(o4369[LinkedList$Entry.next]o4369, 0)), >(o4533[LinkedList$Entry.previous]o4533, 0)), >(o4533[LinkedList$Entry.previous]o4369, 0)), >(o4369[LinkedList$Entry.previous]o4369, 0)), >(o4369[LinkedList$Entry.previous]o4533, 0))
f13009_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4560sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4560sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4560sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4560sub0), o4560[LinkedList$Entry.next]o4560, o4533[LinkedList$Entry.next]o4369, o4560[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4533, o4560[LinkedList$Entry.next]o4560, o4560[LinkedList$Entry.next]o4367, o4560[LinkedList$Entry.previous]o4560, o4533[LinkedList$Entry.previous]o4369, o4560[LinkedList$Entry.previous]o4367, o4560[LinkedList$Entry.previous]o4560, o4560[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4533) → f13158_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4560sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4560sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4560sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o4560sub0), o4560[LinkedList$Entry.next]o4560, o4560[LinkedList$Entry.next]o4367, o4560[LinkedList$Entry.previous]o4560, o4560[LinkedList$Entry.previous]o4367)
f13157_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), o4581[LinkedList$Entry.next]o4581, o4581[LinkedList$Entry.next]o4369, o4581[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.next]o4581, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4581[LinkedList$Entry.previous]o4581, o4581[LinkedList$Entry.previous]o4369, o4581[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.previous]o4581) → f13193_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.next]o4581, o4369[LinkedList$Entry.previous]o4581, o4583[LinkedList$Entry.next]o4581, o4583[LinkedList$Entry.next]o4369, o4583[LinkedList$Entry.next]o4367, o4584[LinkedList$Entry.previous]o4581, o4584[LinkedList$Entry.previous]o4369, o4584[LinkedList$Entry.previous]o4367) | &&(&&(&&(&&(&&(=(o4583[LinkedList$Entry.next]o4581, +(o4581[LinkedList$Entry.next]o4581, -1)), =(o4583[LinkedList$Entry.next]o4369, +(o4581[LinkedList$Entry.next]o4369, -1))), =(o4583[LinkedList$Entry.next]o4367, +(o4581[LinkedList$Entry.next]o4367, -1))), =(o4584[LinkedList$Entry.previous]o4581, +(o4581[LinkedList$Entry.previous]o4581, -1))), =(o4584[LinkedList$Entry.previous]o4369, +(o4581[LinkedList$Entry.previous]o4369, -1))), =(o4584[LinkedList$Entry.previous]o4367, +(o4581[LinkedList$Entry.previous]o4367, -1)))
f13193_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.next]o4581, o4369[LinkedList$Entry.previous]o4581, o4583[LinkedList$Entry.next]o4581, o4583[LinkedList$Entry.next]o4369, o4583[LinkedList$Entry.next]o4367, o4584[LinkedList$Entry.previous]o4581, o4584[LinkedList$Entry.previous]o4369, o4584[LinkedList$Entry.previous]o4367) → f13310_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), java.lang.Object(javaUtilEx.Content(EOC)), o45820, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.next]o4581, o4369[LinkedList$Entry.previous]o4581, o4583[LinkedList$Entry.next]o4581, o4583[LinkedList$Entry.next]o4369, o4583[LinkedList$Entry.next]o4367, o4584[LinkedList$Entry.previous]o4581, o4584[LinkedList$Entry.previous]o4369, o4584[LinkedList$Entry.previous]o4367)
f13310_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), java.lang.Object(javaUtilEx.Content(EOC)), o45820, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.next]o4581, o4369[LinkedList$Entry.previous]o4581, o4583[LinkedList$Entry.next]o4581, o4583[LinkedList$Entry.next]o4369, o4583[LinkedList$Entry.next]o4367, o4584[LinkedList$Entry.previous]o4581, o4584[LinkedList$Entry.previous]o4369, o4584[LinkedList$Entry.previous]o4367) → f13339_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45820, java.lang.Object(o4369sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-557113753))), java.lang.Object(o4584sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45820, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.next]o4581, o4369[LinkedList$Entry.previous]o4581, o4583[LinkedList$Entry.next]o4581, o4583[LinkedList$Entry.next]o4369, o4583[LinkedList$Entry.next]o4367, o4584[LinkedList$Entry.previous]o4581, o4584[LinkedList$Entry.previous]o4369, o4584[LinkedList$Entry.previous]o4367)
f13310_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), java.lang.Object(javaUtilEx.Content(EOC)), o45820, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.next]o4581, o4369[LinkedList$Entry.previous]o4581, o4583[LinkedList$Entry.next]o4581, o4583[LinkedList$Entry.next]o4369, o4583[LinkedList$Entry.next]o4367, o4584[LinkedList$Entry.previous]o4581, o4584[LinkedList$Entry.previous]o4369, o4584[LinkedList$Entry.previous]o4367) → f13339_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), java.lang.Object(javaUtilEx.Content(EOC)), o45820, java.lang.Object(javaUtilEx.Content(EOC)), o45820, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.next]o4581, o4369[LinkedList$Entry.previous]o4581, o4583[LinkedList$Entry.next]o4581, o4583[LinkedList$Entry.next]o4369, o4583[LinkedList$Entry.next]o4367, o4584[LinkedList$Entry.previous]o4581, o4584[LinkedList$Entry.previous]o4369, o4584[LinkedList$Entry.previous]o4367)
f13339_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45820, java.lang.Object(o4369sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-557113753))), java.lang.Object(o4584sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45820, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.next]o4581, o4369[LinkedList$Entry.previous]o4581, o4583[LinkedList$Entry.next]o4581, o4583[LinkedList$Entry.next]o4369, o4583[LinkedList$Entry.next]o4367, o4584[LinkedList$Entry.previous]o4581, o4584[LinkedList$Entry.previous]o4369, o4584[LinkedList$Entry.previous]o4367) → f13376_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45820, java.lang.Object(o4369sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-557113753))), java.lang.Object(o4584sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4582-557052435, java.lang.Object(o4584sub-557052435))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o4369sub-1114227537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45820, o4369[LinkedList$Entry.next]o4369, o4369[LinkedList$Entry.next]o4367, o4369[LinkedList$Entry.previous]o4369, o4369[LinkedList$Entry.previous]o4367, o4369[LinkedList$Entry.next]o4581, o4369[LinkedList$Entry.previous]o4581, o4583[LinkedList$Entry.next]o4581, o4583[LinkedList$Entry.next]o4369, o4583[LinkedList$Entry.next]o4367, o4584[LinkedList$Entry.previous]o4581, o4584[LinkedList$Entry.previous]o4369, o4584[LinkedList$Entry.previous]o4367)
f18572_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10918sub-918993778)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10918sub-918993778)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10926sub1687987627))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, matching1, o10918[LinkedList$Entry.next]o10918, o10918[LinkedList$Entry.next]o10916, o10918[LinkedList$Entry.next]o10922, o10918[LinkedList$Entry.next]o10924, o10918[LinkedList$Entry.previous]o10918, o10918[LinkedList$Entry.previous]o10916, o10918[LinkedList$Entry.previous]o10922, o10918[LinkedList$Entry.previous]o10926, o10924[LinkedList$Entry.next]o10922, o10924[LinkedList$Entry.next]o10924, o10924[LinkedList$Entry.next]o10918, o10924[LinkedList$Entry.next]o10916, o10926[LinkedList$Entry.previous]o10922, o10926[LinkedList$Entry.previous]o10926, o10926[LinkedList$Entry.previous]o10918, o10926[LinkedList$Entry.previous]o10916) → f15242_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10918sub-918993778)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10918sub-918993778)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10926sub1687987627))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, 0, o10918[LinkedList$Entry.next]o10918, o10918[LinkedList$Entry.next]o10916, o10918[LinkedList$Entry.next]o10922, o10918[LinkedList$Entry.next]o10924, o10918[LinkedList$Entry.previous]o10918, o10918[LinkedList$Entry.previous]o10916, o10918[LinkedList$Entry.previous]o10922, o10918[LinkedList$Entry.previous]o10926, o10924[LinkedList$Entry.next]o10922, o10924[LinkedList$Entry.next]o10924, o10924[LinkedList$Entry.next]o10918, o10924[LinkedList$Entry.next]o10916, o10926[LinkedList$Entry.previous]o10922, o10926[LinkedList$Entry.previous]o10926, o10926[LinkedList$Entry.previous]o10918, o10926[LinkedList$Entry.previous]o10916) | =(matching1, 0)
f15242_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5515-556135548, java.lang.Object(o5517sub-556135548))), java.lang.Object(javaUtilEx.Content(EOC)), o55150, matching1, o5518[LinkedList$Entry.next]o5518, o5518[LinkedList$Entry.next]o5513, o5518[LinkedList$Entry.next]o5514, o5518[LinkedList$Entry.next]o5516, o5518[LinkedList$Entry.previous]o5518, o5518[LinkedList$Entry.previous]o5513, o5518[LinkedList$Entry.previous]o5514, o5518[LinkedList$Entry.previous]o5517, o5516[LinkedList$Entry.next]o5514, o5516[LinkedList$Entry.next]o5516, o5516[LinkedList$Entry.next]o5518, o5516[LinkedList$Entry.next]o5513, o5517[LinkedList$Entry.previous]o5514, o5517[LinkedList$Entry.previous]o5517, o5517[LinkedList$Entry.previous]o5518, o5517[LinkedList$Entry.previous]o5513) → f15475_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5515-556135548, java.lang.Object(o5517sub-556135548))), 0, o5518[LinkedList$Entry.next]o5518, o5518[LinkedList$Entry.next]o5513, o5518[LinkedList$Entry.next]o5514, o5518[LinkedList$Entry.next]o5516, o5518[LinkedList$Entry.previous]o5518, o5518[LinkedList$Entry.previous]o5513, o5518[LinkedList$Entry.previous]o5514, o5518[LinkedList$Entry.previous]o5517, o5516[LinkedList$Entry.next]o5514, o5516[LinkedList$Entry.next]o5516, o5516[LinkedList$Entry.next]o5518, o5516[LinkedList$Entry.next]o5513, o5517[LinkedList$Entry.previous]o5514, o5517[LinkedList$Entry.previous]o5517, o5517[LinkedList$Entry.previous]o5518, o5517[LinkedList$Entry.previous]o5513) | =(matching1, 0)
f15475_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5515-556135548, java.lang.Object(o5517sub-556135548))), matching1, o5518[LinkedList$Entry.next]o5518, o5518[LinkedList$Entry.next]o5513, o5518[LinkedList$Entry.next]o5514, o5518[LinkedList$Entry.next]o5516, o5518[LinkedList$Entry.previous]o5518, o5518[LinkedList$Entry.previous]o5513, o5518[LinkedList$Entry.previous]o5514, o5518[LinkedList$Entry.previous]o5517, o5516[LinkedList$Entry.next]o5514, o5516[LinkedList$Entry.next]o5516, o5516[LinkedList$Entry.next]o5518, o5516[LinkedList$Entry.next]o5513, o5517[LinkedList$Entry.previous]o5514, o5517[LinkedList$Entry.previous]o5517, o5517[LinkedList$Entry.previous]o5518, o5517[LinkedList$Entry.previous]o5513) → f15877_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5515-556135548, java.lang.Object(o5517sub-556135548))), o5518[LinkedList$Entry.next]o5518, o5518[LinkedList$Entry.next]o5513, o5518[LinkedList$Entry.next]o5514, o5518[LinkedList$Entry.next]o5516, o5518[LinkedList$Entry.previous]o5518, o5518[LinkedList$Entry.previous]o5513, o5518[LinkedList$Entry.previous]o5514, o5518[LinkedList$Entry.previous]o5517, o5516[LinkedList$Entry.next]o5514, o5516[LinkedList$Entry.next]o5516, o5516[LinkedList$Entry.next]o5518, o5516[LinkedList$Entry.next]o5513, o5517[LinkedList$Entry.previous]o5514, o5517[LinkedList$Entry.previous]o5517, o5517[LinkedList$Entry.previous]o5518, o5517[LinkedList$Entry.previous]o5513) | =(matching1, 0)
f15877_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5515-556135548, java.lang.Object(o5517sub-556135548))), o5518[LinkedList$Entry.next]o5518, o5518[LinkedList$Entry.next]o5513, o5518[LinkedList$Entry.next]o5514, o5518[LinkedList$Entry.next]o5516, o5518[LinkedList$Entry.previous]o5518, o5518[LinkedList$Entry.previous]o5513, o5518[LinkedList$Entry.previous]o5514, o5518[LinkedList$Entry.previous]o5517, o5516[LinkedList$Entry.next]o5514, o5516[LinkedList$Entry.next]o5516, o5516[LinkedList$Entry.next]o5518, o5516[LinkedList$Entry.next]o5513, o5517[LinkedList$Entry.previous]o5514, o5517[LinkedList$Entry.previous]o5517, o5517[LinkedList$Entry.previous]o5518, o5517[LinkedList$Entry.previous]o5513) → f15977_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5515-556135548, java.lang.Object(o5517sub-556135548))), o5518[LinkedList$Entry.next]o5518, o5518[LinkedList$Entry.next]o5513, o5518[LinkedList$Entry.next]o5514, o5518[LinkedList$Entry.next]o5516, o5518[LinkedList$Entry.previous]o5518, o5518[LinkedList$Entry.previous]o5513, o5518[LinkedList$Entry.previous]o5514, o5518[LinkedList$Entry.previous]o5517, o5516[LinkedList$Entry.next]o5514, o5516[LinkedList$Entry.next]o5516, o5516[LinkedList$Entry.next]o5518, o5516[LinkedList$Entry.next]o5513, o5517[LinkedList$Entry.previous]o5514, o5517[LinkedList$Entry.previous]o5517, o5517[LinkedList$Entry.previous]o5518, o5517[LinkedList$Entry.previous]o5513)
f15977_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5515-556135548, java.lang.Object(o5517sub-556135548))), o5518[LinkedList$Entry.next]o5518, o5518[LinkedList$Entry.next]o5513, o5518[LinkedList$Entry.next]o5514, o5518[LinkedList$Entry.next]o5516, o5518[LinkedList$Entry.previous]o5518, o5518[LinkedList$Entry.previous]o5513, o5518[LinkedList$Entry.previous]o5514, o5518[LinkedList$Entry.previous]o5517, o5516[LinkedList$Entry.next]o5514, o5516[LinkedList$Entry.next]o5516, o5516[LinkedList$Entry.next]o5518, o5516[LinkedList$Entry.next]o5513, o5517[LinkedList$Entry.previous]o5514, o5517[LinkedList$Entry.previous]o5517, o5517[LinkedList$Entry.previous]o5518, o5517[LinkedList$Entry.previous]o5513) → f16033_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5517sub0), o5518[LinkedList$Entry.next]o5518, o5518[LinkedList$Entry.next]o5513, o5518[LinkedList$Entry.next]o5514, o5518[LinkedList$Entry.next]o5516, o5518[LinkedList$Entry.previous]o5518, o5518[LinkedList$Entry.previous]o5513, o5518[LinkedList$Entry.previous]o5514, o5518[LinkedList$Entry.previous]o5517, o5516[LinkedList$Entry.next]o5514, o5516[LinkedList$Entry.next]o5516, o5516[LinkedList$Entry.next]o5518, o5516[LinkedList$Entry.next]o5513, o5517[LinkedList$Entry.previous]o5514, o5517[LinkedList$Entry.previous]o5517, o5517[LinkedList$Entry.previous]o5518, o5517[LinkedList$Entry.previous]o5513)
f16033_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5517sub0), o5518[LinkedList$Entry.next]o5518, o5518[LinkedList$Entry.next]o5513, o5518[LinkedList$Entry.next]o5514, o5518[LinkedList$Entry.next]o5516, o5518[LinkedList$Entry.previous]o5518, o5518[LinkedList$Entry.previous]o5513, o5518[LinkedList$Entry.previous]o5514, o5518[LinkedList$Entry.previous]o5517, o5516[LinkedList$Entry.next]o5514, o5516[LinkedList$Entry.next]o5516, o5516[LinkedList$Entry.next]o5518, o5516[LinkedList$Entry.next]o5513, o5517[LinkedList$Entry.previous]o5514, o5517[LinkedList$Entry.previous]o5517, o5517[LinkedList$Entry.previous]o5518, o5517[LinkedList$Entry.previous]o5513) → f16258_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5518sub-1112271189)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5517sub0), o5514[LinkedList$Entry.next]o5514, o5514[LinkedList$Entry.next]o5518, o5514[LinkedList$Entry.next]o5513, o5518[LinkedList$Entry.next]o5514, o5518[LinkedList$Entry.next]o5518, o5518[LinkedList$Entry.next]o5513, o5514[LinkedList$Entry.previous]o5514, o5514[LinkedList$Entry.previous]o5518, o5514[LinkedList$Entry.previous]o5513, o5514[LinkedList$Entry.previous]o5517, o5518[LinkedList$Entry.previous]o5518, o5518[LinkedList$Entry.previous]o5513, o5518[LinkedList$Entry.previous]o5517, o5517[LinkedList$Entry.previous]o5518, o5517[LinkedList$Entry.previous]o5513, o5517[LinkedList$Entry.previous]o5517) | &&(&&(=(o5514[LinkedList$Entry.next]o5514, 0), =(o5514[LinkedList$Entry.previous]o5514, 0)), =(o5514[LinkedList$Entry.previous]o5517, 1))
f18587_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11100sub-917667474)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11100sub-917667474)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11106sub1688670960), java.lang.Object(o11110sub1688670960))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11106sub0), matching1, o11100[LinkedList$Entry.next]o11100, o11100[LinkedList$Entry.next]o11098, o11100[LinkedList$Entry.next]o11104, o11100[LinkedList$Entry.next]o11108, o11100[LinkedList$Entry.previous]o11100, o11100[LinkedList$Entry.previous]o11098, o11100[LinkedList$Entry.previous]o11104, o11100[LinkedList$Entry.previous]o11110, o11108[LinkedList$Entry.next]o11104, o11108[LinkedList$Entry.next]o11108, o11108[LinkedList$Entry.next]o11100, o11108[LinkedList$Entry.next]o11098, o11110[LinkedList$Entry.previous]o11104, o11110[LinkedList$Entry.previous]o11110, o11110[LinkedList$Entry.previous]o11100, o11110[LinkedList$Entry.previous]o11098) → f15242_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11100sub-917667474)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11100sub-917667474)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11106sub1688670960), java.lang.Object(o11110sub1688670960))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11106sub0), 0, o11100[LinkedList$Entry.next]o11100, o11100[LinkedList$Entry.next]o11098, o11100[LinkedList$Entry.next]o11104, o11100[LinkedList$Entry.next]o11108, o11100[LinkedList$Entry.previous]o11100, o11100[LinkedList$Entry.previous]o11098, o11100[LinkedList$Entry.previous]o11104, o11100[LinkedList$Entry.previous]o11110, o11108[LinkedList$Entry.next]o11104, o11108[LinkedList$Entry.next]o11108, o11108[LinkedList$Entry.next]o11100, o11108[LinkedList$Entry.next]o11098, o11110[LinkedList$Entry.previous]o11104, o11110[LinkedList$Entry.previous]o11110, o11110[LinkedList$Entry.previous]o11100, o11110[LinkedList$Entry.previous]o11098) | =(matching1, 0)
f18705_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12704sub-915421028)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12704sub-915421028)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12714sub1689773351))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12704[LinkedList$Entry.next]o12704, o12704[LinkedList$Entry.next]o12702, o12704[LinkedList$Entry.next]o12708, o12704[LinkedList$Entry.next]o12712, o12704[LinkedList$Entry.previous]o12704, o12704[LinkedList$Entry.previous]o12702, o12704[LinkedList$Entry.previous]o12708, o12704[LinkedList$Entry.previous]o12714, o12712[LinkedList$Entry.next]o12708, o12712[LinkedList$Entry.next]o12712, o12712[LinkedList$Entry.next]o12704, o12712[LinkedList$Entry.next]o12702, o12714[LinkedList$Entry.previous]o12708, o12714[LinkedList$Entry.previous]o12714, o12714[LinkedList$Entry.previous]o12704, o12714[LinkedList$Entry.previous]o12702) → f15810_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12704sub-915421028)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12704sub-915421028)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12714sub1689773351))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12704[LinkedList$Entry.next]o12704, o12704[LinkedList$Entry.next]o12702, o12704[LinkedList$Entry.next]o12708, o12704[LinkedList$Entry.next]o12712, o12704[LinkedList$Entry.previous]o12704, o12704[LinkedList$Entry.previous]o12702, o12704[LinkedList$Entry.previous]o12708, o12704[LinkedList$Entry.previous]o12714, o12712[LinkedList$Entry.next]o12708, o12712[LinkedList$Entry.next]o12712, o12712[LinkedList$Entry.next]o12704, o12712[LinkedList$Entry.next]o12702, o12714[LinkedList$Entry.previous]o12708, o12714[LinkedList$Entry.previous]o12714, o12714[LinkedList$Entry.previous]o12704, o12714[LinkedList$Entry.previous]o12702) | =(matching1, 0)
f15810_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub-556072184))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i2062, o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751) → f15958_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub-556072184))), i2062, o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751)
f15958_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub-556072184))), matching1, o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751) → f15998_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub-556072184))), 0, o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751) | =(matching1, 0)
f15998_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub-556072184))), matching1, o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751) → f16074_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub-556072184))), o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751) | =(matching1, 0)
f16074_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub-556072184))), o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751) → f16091_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub-556072184))), o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751)
f16091_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub-556072184))), o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751) → f16309_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub0), o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751)
f16309_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub0), o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751) → f16360_0_lastIndexOf_JMP(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub0), o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751)
f16360_0_lastIndexOf_JMP(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub0), o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751) → f16384_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub0), o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751)
f16384_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub0), o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5754, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5752, o5756[LinkedList$Entry.previous]o5755, o5754[LinkedList$Entry.next]o5752, o5754[LinkedList$Entry.next]o5754, o5754[LinkedList$Entry.next]o5756, o5754[LinkedList$Entry.next]o5751, o5755[LinkedList$Entry.previous]o5752, o5755[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5751) → f12591_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o5756sub-1112144461)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5755sub0), o5752[LinkedList$Entry.next]o5752, o5752[LinkedList$Entry.next]o5756, o5752[LinkedList$Entry.next]o5751, o5756[LinkedList$Entry.next]o5752, o5756[LinkedList$Entry.next]o5756, o5756[LinkedList$Entry.next]o5751, o5752[LinkedList$Entry.previous]o5752, o5752[LinkedList$Entry.previous]o5756, o5752[LinkedList$Entry.previous]o5755, o5752[LinkedList$Entry.previous]o5751, o5756[LinkedList$Entry.previous]o5756, o5756[LinkedList$Entry.previous]o5755, o5755[LinkedList$Entry.previous]o5756, o5755[LinkedList$Entry.previous]o5755, o5756[LinkedList$Entry.previous]o5751, o5755[LinkedList$Entry.previous]o5751) | &&(&&(=(o5752[LinkedList$Entry.next]o5752, 0), =(o5752[LinkedList$Entry.previous]o5752, 0)), =(o5752[LinkedList$Entry.previous]o5755, 1))
f18718_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12914sub-915299942)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12914sub-915299942)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12924sub1689833894))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12914[LinkedList$Entry.next]o12914, o12914[LinkedList$Entry.next]o12912, o12914[LinkedList$Entry.next]o12918, o12914[LinkedList$Entry.next]o12922, o12914[LinkedList$Entry.previous]o12914, o12914[LinkedList$Entry.previous]o12912, o12914[LinkedList$Entry.previous]o12918, o12914[LinkedList$Entry.previous]o12924, o12922[LinkedList$Entry.next]o12918, o12922[LinkedList$Entry.next]o12922, o12922[LinkedList$Entry.next]o12914, o12922[LinkedList$Entry.next]o12912, o12924[LinkedList$Entry.previous]o12918, o12924[LinkedList$Entry.previous]o12924, o12924[LinkedList$Entry.previous]o12914, o12924[LinkedList$Entry.previous]o12912) → f15810_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12914sub-915299942)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12914sub-915299942)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12924sub1689833894))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12914[LinkedList$Entry.next]o12914, o12914[LinkedList$Entry.next]o12912, o12914[LinkedList$Entry.next]o12918, o12914[LinkedList$Entry.next]o12922, o12914[LinkedList$Entry.previous]o12914, o12914[LinkedList$Entry.previous]o12912, o12914[LinkedList$Entry.previous]o12918, o12914[LinkedList$Entry.previous]o12924, o12922[LinkedList$Entry.next]o12918, o12922[LinkedList$Entry.next]o12922, o12922[LinkedList$Entry.next]o12914, o12922[LinkedList$Entry.next]o12912, o12924[LinkedList$Entry.previous]o12918, o12924[LinkedList$Entry.previous]o12924, o12924[LinkedList$Entry.previous]o12914, o12924[LinkedList$Entry.previous]o12912) | =(matching1, 0)
f18726_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13092sub-913974537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13092sub-913974537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13102sub1690496922))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13092[LinkedList$Entry.next]o13092, o13092[LinkedList$Entry.next]o13090, o13092[LinkedList$Entry.next]o13096, o13092[LinkedList$Entry.next]o13100, o13092[LinkedList$Entry.previous]o13092, o13092[LinkedList$Entry.previous]o13090, o13092[LinkedList$Entry.previous]o13096, o13092[LinkedList$Entry.previous]o13102, o13100[LinkedList$Entry.next]o13096, o13100[LinkedList$Entry.next]o13100, o13100[LinkedList$Entry.next]o13092, o13100[LinkedList$Entry.next]o13090, o13102[LinkedList$Entry.previous]o13096, o13102[LinkedList$Entry.previous]o13102, o13102[LinkedList$Entry.previous]o13092, o13102[LinkedList$Entry.previous]o13090) → f15810_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13092sub-913974537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13092sub-913974537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13102sub1690496922))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o13092[LinkedList$Entry.next]o13092, o13092[LinkedList$Entry.next]o13090, o13092[LinkedList$Entry.next]o13096, o13092[LinkedList$Entry.next]o13100, o13092[LinkedList$Entry.previous]o13092, o13092[LinkedList$Entry.previous]o13090, o13092[LinkedList$Entry.previous]o13096, o13092[LinkedList$Entry.previous]o13102, o13100[LinkedList$Entry.next]o13096, o13100[LinkedList$Entry.next]o13100, o13100[LinkedList$Entry.next]o13092, o13100[LinkedList$Entry.next]o13090, o13102[LinkedList$Entry.previous]o13096, o13102[LinkedList$Entry.previous]o13102, o13102[LinkedList$Entry.previous]o13092, o13102[LinkedList$Entry.previous]o13090) | =(matching1, 0)
f18733_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13272sub-913859217)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13272sub-913859217)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13282sub1690554582))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13272[LinkedList$Entry.next]o13272, o13272[LinkedList$Entry.next]o13270, o13272[LinkedList$Entry.next]o13276, o13272[LinkedList$Entry.next]o13280, o13272[LinkedList$Entry.previous]o13272, o13272[LinkedList$Entry.previous]o13270, o13272[LinkedList$Entry.previous]o13276, o13272[LinkedList$Entry.previous]o13282, o13280[LinkedList$Entry.next]o13276, o13280[LinkedList$Entry.next]o13280, o13280[LinkedList$Entry.next]o13272, o13280[LinkedList$Entry.next]o13270, o13282[LinkedList$Entry.previous]o13276, o13282[LinkedList$Entry.previous]o13282, o13282[LinkedList$Entry.previous]o13272, o13282[LinkedList$Entry.previous]o13270) → f15810_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13272sub-913859217)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13272sub-913859217)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13282sub1690554582))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13272[LinkedList$Entry.next]o13272, o13272[LinkedList$Entry.next]o13270, o13272[LinkedList$Entry.next]o13276, o13272[LinkedList$Entry.next]o13280, o13272[LinkedList$Entry.previous]o13272, o13272[LinkedList$Entry.previous]o13270, o13272[LinkedList$Entry.previous]o13276, o13272[LinkedList$Entry.previous]o13282, o13280[LinkedList$Entry.next]o13276, o13280[LinkedList$Entry.next]o13280, o13280[LinkedList$Entry.next]o13272, o13280[LinkedList$Entry.next]o13270, o13282[LinkedList$Entry.previous]o13276, o13282[LinkedList$Entry.previous]o13282, o13282[LinkedList$Entry.previous]o13272, o13282[LinkedList$Entry.previous]o13270) | =(matching1, 1)
f18740_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13436sub-913746842)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13436sub-913746842)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13446sub1690611095))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13436[LinkedList$Entry.next]o13436, o13436[LinkedList$Entry.next]o13434, o13436[LinkedList$Entry.next]o13440, o13436[LinkedList$Entry.next]o13444, o13436[LinkedList$Entry.previous]o13436, o13436[LinkedList$Entry.previous]o13434, o13436[LinkedList$Entry.previous]o13440, o13436[LinkedList$Entry.previous]o13446, o13444[LinkedList$Entry.next]o13440, o13444[LinkedList$Entry.next]o13444, o13444[LinkedList$Entry.next]o13436, o13444[LinkedList$Entry.next]o13434, o13446[LinkedList$Entry.previous]o13440, o13446[LinkedList$Entry.previous]o13446, o13446[LinkedList$Entry.previous]o13436, o13446[LinkedList$Entry.previous]o13434) → f15810_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13436sub-913746842)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13436sub-913746842)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13446sub1690611095))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13436[LinkedList$Entry.next]o13436, o13436[LinkedList$Entry.next]o13434, o13436[LinkedList$Entry.next]o13440, o13436[LinkedList$Entry.next]o13444, o13436[LinkedList$Entry.previous]o13436, o13436[LinkedList$Entry.previous]o13434, o13436[LinkedList$Entry.previous]o13440, o13436[LinkedList$Entry.previous]o13446, o13444[LinkedList$Entry.next]o13440, o13444[LinkedList$Entry.next]o13444, o13444[LinkedList$Entry.next]o13436, o13444[LinkedList$Entry.next]o13434, o13446[LinkedList$Entry.previous]o13440, o13446[LinkedList$Entry.previous]o13446, o13446[LinkedList$Entry.previous]o13436, o13446[LinkedList$Entry.previous]o13434) | =(matching1, 1)
f18746_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13602sub-913654524)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13602sub-913654524)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13612sub1690667019))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13602[LinkedList$Entry.next]o13602, o13602[LinkedList$Entry.next]o13600, o13602[LinkedList$Entry.next]o13606, o13602[LinkedList$Entry.next]o13610, o13602[LinkedList$Entry.previous]o13602, o13602[LinkedList$Entry.previous]o13600, o13602[LinkedList$Entry.previous]o13606, o13602[LinkedList$Entry.previous]o13612, o13610[LinkedList$Entry.next]o13606, o13610[LinkedList$Entry.next]o13610, o13610[LinkedList$Entry.next]o13602, o13610[LinkedList$Entry.next]o13600, o13612[LinkedList$Entry.previous]o13606, o13612[LinkedList$Entry.previous]o13612, o13612[LinkedList$Entry.previous]o13602, o13612[LinkedList$Entry.previous]o13600) → f15810_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13602sub-913654524)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13602sub-913654524)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13612sub1690667019))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13602[LinkedList$Entry.next]o13602, o13602[LinkedList$Entry.next]o13600, o13602[LinkedList$Entry.next]o13606, o13602[LinkedList$Entry.next]o13610, o13602[LinkedList$Entry.previous]o13602, o13602[LinkedList$Entry.previous]o13600, o13602[LinkedList$Entry.previous]o13606, o13602[LinkedList$Entry.previous]o13612, o13610[LinkedList$Entry.next]o13606, o13610[LinkedList$Entry.next]o13610, o13610[LinkedList$Entry.next]o13602, o13610[LinkedList$Entry.next]o13600, o13612[LinkedList$Entry.previous]o13606, o13612[LinkedList$Entry.previous]o13612, o13612[LinkedList$Entry.previous]o13602, o13612[LinkedList$Entry.previous]o13600) | =(matching1, 1)
f13158_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), o4585[LinkedList$Entry.next]o4585, o4585[LinkedList$Entry.next]o4367, o4585[LinkedList$Entry.previous]o4585, o4585[LinkedList$Entry.previous]o4367) → f13196_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), o4587[LinkedList$Entry.next]o4585, o4587[LinkedList$Entry.next]o4367, o4588[LinkedList$Entry.previous]o4585, o4588[LinkedList$Entry.previous]o4367) | &&(&&(&&(=(o4587[LinkedList$Entry.next]o4585, +(o4585[LinkedList$Entry.next]o4585, -1)), =(o4587[LinkedList$Entry.next]o4367, +(o4585[LinkedList$Entry.next]o4367, -1))), =(o4588[LinkedList$Entry.previous]o4585, +(o4585[LinkedList$Entry.previous]o4585, -1))), =(o4588[LinkedList$Entry.previous]o4367, +(o4585[LinkedList$Entry.previous]o4367, -1)))
f13196_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), o4587[LinkedList$Entry.next]o4585, o4587[LinkedList$Entry.next]o4367, o4588[LinkedList$Entry.previous]o4585, o4588[LinkedList$Entry.previous]o4367) → f13318_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), java.lang.Object(javaUtilEx.Content(EOC)), o45860, o4587[LinkedList$Entry.next]o4585, o4587[LinkedList$Entry.next]o4367, o4588[LinkedList$Entry.previous]o4585, o4588[LinkedList$Entry.previous]o4367)
f13318_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), java.lang.Object(javaUtilEx.Content(EOC)), o45860, o4587[LinkedList$Entry.next]o4585, o4587[LinkedList$Entry.next]o4367, o4588[LinkedList$Entry.previous]o4585, o4588[LinkedList$Entry.previous]o4367) → f13342_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45860, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1114166064, java.lang.Object(o4588sub-1114166064))))), java.lang.Object(o4588sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45860, o4587[LinkedList$Entry.next]o4585, o4587[LinkedList$Entry.next]o4367, o4588[LinkedList$Entry.previous]o4585, o4588[LinkedList$Entry.previous]o4367)
f13318_0_lastIndexOf_InvokeMethod(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), java.lang.Object(javaUtilEx.Content(EOC)), o45860, o4587[LinkedList$Entry.next]o4585, o4587[LinkedList$Entry.next]o4367, o4588[LinkedList$Entry.previous]o4585, o4588[LinkedList$Entry.previous]o4367) → f13342_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), java.lang.Object(javaUtilEx.Content(EOC)), o45860, java.lang.Object(javaUtilEx.Content(EOC)), o45860, o4587[LinkedList$Entry.next]o4585, o4587[LinkedList$Entry.next]o4367, o4588[LinkedList$Entry.previous]o4585, o4588[LinkedList$Entry.previous]o4367)
f13342_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45860, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1114166064, java.lang.Object(o4588sub-1114166064))))), java.lang.Object(o4588sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45860, o4587[LinkedList$Entry.next]o4585, o4587[LinkedList$Entry.next]o4367, o4588[LinkedList$Entry.previous]o4585, o4588[LinkedList$Entry.previous]o4367) → f13384_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), o45860, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1114166064, java.lang.Object(o4588sub-1114166064))))), java.lang.Object(o4588sub0), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-557052311, java.lang.Object(o4588sub-557052311))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o4586-1671279848, java.lang.Object(o4588sub-1671279848)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), o45860, o4587[LinkedList$Entry.next]o4585, o4587[LinkedList$Entry.next]o4367, o4588[LinkedList$Entry.previous]o4585, o4588[LinkedList$Entry.previous]o4367)
f18570_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub768914923)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub768914923)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub1687960843))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, matching1, o10858[LinkedList$Entry.next]o10856, o10858[LinkedList$Entry.next]o10858, o10858[LinkedList$Entry.next]o10852, o10860[LinkedList$Entry.previous]o10856, o10860[LinkedList$Entry.previous]o10860, o10860[LinkedList$Entry.previous]o10852) → f14934_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub768914923)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub768914923)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub1687960843))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, 0, o10858[LinkedList$Entry.next]o10856, o10858[LinkedList$Entry.next]o10858, o10858[LinkedList$Entry.next]o10852, o10860[LinkedList$Entry.previous]o10856, o10860[LinkedList$Entry.previous]o10860, o10860[LinkedList$Entry.previous]o10852) | =(matching1, 0)
f14934_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-556188372, java.lang.Object(o5388sub-556188372))), java.lang.Object(javaUtilEx.Content(EOC)), o53860, matching1, o5387[LinkedList$Entry.next]o5385, o5387[LinkedList$Entry.next]o5387, o5387[LinkedList$Entry.next]o5384, o5388[LinkedList$Entry.previous]o5385, o5388[LinkedList$Entry.previous]o5388, o5388[LinkedList$Entry.previous]o5384) → f15456_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-556188372, java.lang.Object(o5388sub-556188372))), 0, o5387[LinkedList$Entry.next]o5385, o5387[LinkedList$Entry.next]o5387, o5387[LinkedList$Entry.next]o5384, o5388[LinkedList$Entry.previous]o5385, o5388[LinkedList$Entry.previous]o5388, o5388[LinkedList$Entry.previous]o5384) | =(matching1, 0)
f15456_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-556188372, java.lang.Object(o5388sub-556188372))), matching1, o5387[LinkedList$Entry.next]o5385, o5387[LinkedList$Entry.next]o5387, o5387[LinkedList$Entry.next]o5384, o5388[LinkedList$Entry.previous]o5385, o5388[LinkedList$Entry.previous]o5388, o5388[LinkedList$Entry.previous]o5384) → f15846_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-556188372, java.lang.Object(o5388sub-556188372))), o5387[LinkedList$Entry.next]o5385, o5387[LinkedList$Entry.next]o5387, o5387[LinkedList$Entry.next]o5384, o5388[LinkedList$Entry.previous]o5385, o5388[LinkedList$Entry.previous]o5388, o5388[LinkedList$Entry.previous]o5384) | =(matching1, 0)
f15846_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-556188372, java.lang.Object(o5388sub-556188372))), o5387[LinkedList$Entry.next]o5385, o5387[LinkedList$Entry.next]o5387, o5387[LinkedList$Entry.next]o5384, o5388[LinkedList$Entry.previous]o5385, o5388[LinkedList$Entry.previous]o5388, o5388[LinkedList$Entry.previous]o5384) → f15966_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-556188372, java.lang.Object(o5388sub-556188372))), o5387[LinkedList$Entry.next]o5385, o5387[LinkedList$Entry.next]o5387, o5387[LinkedList$Entry.next]o5384, o5388[LinkedList$Entry.previous]o5385, o5388[LinkedList$Entry.previous]o5388, o5388[LinkedList$Entry.previous]o5384)
f15966_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-556188372, java.lang.Object(o5388sub-556188372))), o5387[LinkedList$Entry.next]o5385, o5387[LinkedList$Entry.next]o5387, o5387[LinkedList$Entry.next]o5384, o5388[LinkedList$Entry.previous]o5385, o5388[LinkedList$Entry.previous]o5388, o5388[LinkedList$Entry.previous]o5384) → f16017_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5388sub0), o5387[LinkedList$Entry.next]o5385, o5387[LinkedList$Entry.next]o5387, o5387[LinkedList$Entry.next]o5384, o5388[LinkedList$Entry.previous]o5385, o5388[LinkedList$Entry.previous]o5388, o5388[LinkedList$Entry.previous]o5384)
f16017_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5388sub0), o5387[LinkedList$Entry.next]o5385, o5387[LinkedList$Entry.next]o5387, o5387[LinkedList$Entry.next]o5384, o5388[LinkedList$Entry.previous]o5385, o5388[LinkedList$Entry.previous]o5388, o5388[LinkedList$Entry.previous]o5384) → f16258_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, o5386-1668565209, java.lang.Object(o5388sub-1668565209)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5388sub0), o5385[LinkedList$Entry.next]o5385, o5385[LinkedList$Entry.next]o5385, o5385[LinkedList$Entry.next]o5384, o5385[LinkedList$Entry.next]o5385, o5385[LinkedList$Entry.next]o5385, o5385[LinkedList$Entry.next]o5384, o5385[LinkedList$Entry.previous]o5385, o5385[LinkedList$Entry.previous]o5385, o5385[LinkedList$Entry.previous]o5384, o5385[LinkedList$Entry.previous]o5388, o5385[LinkedList$Entry.previous]o5385, o5385[LinkedList$Entry.previous]o5384, o5385[LinkedList$Entry.previous]o5388, o5388[LinkedList$Entry.previous]o5385, o5388[LinkedList$Entry.previous]o5384, o5388[LinkedList$Entry.previous]o5388) | &&(&&(&&(&&(&&(&&(&&(&&(=(o5385[LinkedList$Entry.next]o5385, 0), =(o5385[LinkedList$Entry.next]o5385, 0)), =(o5385[LinkedList$Entry.next]o5385, 0)), =(o5385[LinkedList$Entry.next]o5385, 0)), =(o5385[LinkedList$Entry.previous]o5385, 0)), =(o5385[LinkedList$Entry.previous]o5385, 0)), =(o5385[LinkedList$Entry.previous]o5388, 1)), =(o5385[LinkedList$Entry.previous]o5385, 0)), =(o5385[LinkedList$Entry.previous]o5388, 1))
f18582_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub770963062), java.lang.Object(o11038sub770963062)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub770963062), java.lang.Object(o11038sub770963062)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub1688643990), java.lang.Object(o11038sub1688643990))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11034sub0), matching1, o11036[LinkedList$Entry.next]o11032, o11036[LinkedList$Entry.next]o11036, o11036[LinkedList$Entry.next]o11028, o11038[LinkedList$Entry.previous]o11032, o11038[LinkedList$Entry.previous]o11038, o11038[LinkedList$Entry.previous]o11028) → f14934_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub770963062), java.lang.Object(o11038sub770963062)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub770963062), java.lang.Object(o11038sub770963062)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub1688643990), java.lang.Object(o11038sub1688643990))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11034sub0), 0, o11036[LinkedList$Entry.next]o11032, o11036[LinkedList$Entry.next]o11036, o11036[LinkedList$Entry.next]o11028, o11038[LinkedList$Entry.previous]o11032, o11038[LinkedList$Entry.previous]o11038, o11038[LinkedList$Entry.previous]o11028) | =(matching1, 0)
f18703_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub774271537)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub774271537)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub1689746381))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12640[LinkedList$Entry.next]o12636, o12640[LinkedList$Entry.next]o12640, o12640[LinkedList$Entry.next]o12632, o12642[LinkedList$Entry.previous]o12636, o12642[LinkedList$Entry.previous]o12642, o12642[LinkedList$Entry.previous]o12632) → f15653_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub774271537)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub774271537)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub1689746381))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12640[LinkedList$Entry.next]o12636, o12640[LinkedList$Entry.next]o12640, o12640[LinkedList$Entry.next]o12632, o12642[LinkedList$Entry.previous]o12636, o12642[LinkedList$Entry.previous]o12642, o12642[LinkedList$Entry.previous]o12632) | =(matching1, 0)
f15653_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-556075842))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i2037, o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717) → f15914_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-556075842))), i2037, o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717)
f15914_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-556075842))), matching1, o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717) → f15988_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-556075842))), 0, o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717) | =(matching1, 0)
f15988_0_lastIndexOf_EQ(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-556075842))), matching1, o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717) → f16059_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-556075842))), o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717) | =(matching1, 0)
f16059_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-556075842))), o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717) → f16087_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-556075842))), o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717)
f16087_0_lastIndexOf_FieldAccess(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-556075842))), o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717) → f16284_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub0), o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717)
f16284_0_lastIndexOf_Store(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub0), o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717) → f16348_0_lastIndexOf_JMP(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub0), o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717)
f16348_0_lastIndexOf_JMP(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub0), o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717) → f16381_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub0), o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717)
f16381_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub0), o5720[LinkedList$Entry.next]o5718, o5720[LinkedList$Entry.next]o5720, o5720[LinkedList$Entry.next]o5717, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5717) → f12591_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub-1668227619)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5721sub0), o5718[LinkedList$Entry.next]o5718, o5718[LinkedList$Entry.next]o5718, o5718[LinkedList$Entry.next]o5717, o5718[LinkedList$Entry.next]o5718, o5718[LinkedList$Entry.next]o5718, o5718[LinkedList$Entry.next]o5717, o5718[LinkedList$Entry.previous]o5718, o5718[LinkedList$Entry.previous]o5718, o5718[LinkedList$Entry.previous]o5721, o5718[LinkedList$Entry.previous]o5717, o5718[LinkedList$Entry.previous]o5718, o5718[LinkedList$Entry.previous]o5721, o5721[LinkedList$Entry.previous]o5718, o5721[LinkedList$Entry.previous]o5721, o5718[LinkedList$Entry.previous]o5717, o5721[LinkedList$Entry.previous]o5717) | &&(&&(&&(&&(&&(&&(&&(&&(=(o5718[LinkedList$Entry.next]o5718, 0), =(o5718[LinkedList$Entry.next]o5718, 0)), =(o5718[LinkedList$Entry.next]o5718, 0)), =(o5718[LinkedList$Entry.next]o5718, 0)), =(o5718[LinkedList$Entry.previous]o5718, 0)), =(o5718[LinkedList$Entry.previous]o5718, 0)), =(o5718[LinkedList$Entry.previous]o5721, 1)), =(o5718[LinkedList$Entry.previous]o5718, 0)), =(o5718[LinkedList$Entry.previous]o5721, 1))
f18713_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub774455212)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub774455212)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub1689807823))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o12858[LinkedList$Entry.next]o12854, o12858[LinkedList$Entry.next]o12858, o12858[LinkedList$Entry.next]o12850, o12860[LinkedList$Entry.previous]o12854, o12860[LinkedList$Entry.previous]o12860, o12860[LinkedList$Entry.previous]o12850) → f15653_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub774455212)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub774455212)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub1689807823))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12858[LinkedList$Entry.next]o12854, o12858[LinkedList$Entry.next]o12858, o12858[LinkedList$Entry.next]o12850, o12860[LinkedList$Entry.previous]o12854, o12860[LinkedList$Entry.previous]o12860, o12860[LinkedList$Entry.previous]o12850) | =(matching1, 0)
f18724_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub776502235)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub776502235)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub1690490164))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13029[LinkedList$Entry.next]o13025, o13029[LinkedList$Entry.next]o13029, o13029[LinkedList$Entry.next]o13021, o13031[LinkedList$Entry.previous]o13025, o13031[LinkedList$Entry.previous]o13031, o13031[LinkedList$Entry.previous]o13021) → f15653_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub776502235)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub776502235)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub1690490164))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o13029[LinkedList$Entry.next]o13025, o13029[LinkedList$Entry.next]o13029, o13029[LinkedList$Entry.next]o13021, o13031[LinkedList$Entry.previous]o13025, o13031[LinkedList$Entry.previous]o13031, o13031[LinkedList$Entry.previous]o13021) | =(matching1, 0)
f18731_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub776654941)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub776654941)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub1690547793))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13208[LinkedList$Entry.next]o13204, o13208[LinkedList$Entry.next]o13208, o13208[LinkedList$Entry.next]o13200, o13210[LinkedList$Entry.previous]o13204, o13210[LinkedList$Entry.previous]o13210, o13210[LinkedList$Entry.previous]o13200) → f15653_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub776654941)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub776654941)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub1690547793))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13208[LinkedList$Entry.next]o13204, o13208[LinkedList$Entry.next]o13208, o13208[LinkedList$Entry.next]o13200, o13210[LinkedList$Entry.previous]o13204, o13210[LinkedList$Entry.previous]o13210, o13210[LinkedList$Entry.previous]o13200) | =(matching1, 1)
f18738_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub776782816)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub776782816)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub1690583474))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13372[LinkedList$Entry.next]o13368, o13372[LinkedList$Entry.next]o13372, o13372[LinkedList$Entry.next]o13364, o13374[LinkedList$Entry.previous]o13368, o13374[LinkedList$Entry.previous]o13374, o13374[LinkedList$Entry.previous]o13364) → f15653_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub776782816)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub776782816)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub1690583474))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13372[LinkedList$Entry.next]o13368, o13372[LinkedList$Entry.next]o13372, o13372[LinkedList$Entry.next]o13364, o13374[LinkedList$Entry.previous]o13368, o13374[LinkedList$Entry.previous]o13374, o13374[LinkedList$Entry.previous]o13364) | =(matching1, 1)
f18744_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub776951890)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub776951890)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub1690640049))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), matching1, o13538[LinkedList$Entry.next]o13534, o13538[LinkedList$Entry.next]o13538, o13538[LinkedList$Entry.next]o13530, o13540[LinkedList$Entry.previous]o13534, o13540[LinkedList$Entry.previous]o13540, o13540[LinkedList$Entry.previous]o13530) → f15653_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub776951890)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub776951890)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub1690640049))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13538[LinkedList$Entry.next]o13534, o13538[LinkedList$Entry.next]o13538, o13538[LinkedList$Entry.next]o13530, o13540[LinkedList$Entry.previous]o13534, o13540[LinkedList$Entry.previous]o13540, o13540[LinkedList$Entry.previous]o13530) | =(matching1, 1)
f13331_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10831sub-919051376)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10831sub-919051376)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10839sub1687958890))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL, o10829[LinkedList$Entry.next]o10829, o10829[LinkedList$Entry.next]o10831, o10829[LinkedList$Entry.next]o10827, o10831[LinkedList$Entry.next]o10829, o10831[LinkedList$Entry.next]o10831, o10831[LinkedList$Entry.next]o10827, o10829[LinkedList$Entry.previous]o10829, o10829[LinkedList$Entry.previous]o10831, o10829[LinkedList$Entry.previous]o10827, o10831[LinkedList$Entry.previous]o10831, o10831[LinkedList$Entry.previous]o10827, o10829[LinkedList$Entry.previous]o10835, o10831[LinkedList$Entry.previous]o10835, o10839[LinkedList$Entry.previous]o10831, o10839[LinkedList$Entry.previous]o10835, o10839[LinkedList$Entry.previous]o10827) → f18569_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10831sub-919051376)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10831sub-919051376)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10839sub1687958890))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, 0, o10829[LinkedList$Entry.next]o10829, o10829[LinkedList$Entry.next]o10831, o10829[LinkedList$Entry.next]o10827, o10831[LinkedList$Entry.next]o10829, o10831[LinkedList$Entry.next]o10831, o10831[LinkedList$Entry.next]o10827, o10829[LinkedList$Entry.previous]o10829, o10829[LinkedList$Entry.previous]o10831, o10829[LinkedList$Entry.previous]o10827, o10829[LinkedList$Entry.previous]o10835, o10829[LinkedList$Entry.previous]o10839, o10831[LinkedList$Entry.previous]o10831, o10831[LinkedList$Entry.previous]o10827, o10831[LinkedList$Entry.previous]o10835, o10831[LinkedList$Entry.previous]o10839, o10839[LinkedList$Entry.previous]o10831, o10839[LinkedList$Entry.previous]o10827, o10839[LinkedList$Entry.previous]o10835, o10839[LinkedList$Entry.previous]o10839)
f13331_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10996sub-918978650)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10996sub-918978650)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11002sub1688641045), java.lang.Object(o11006sub1688641045))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11002sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11002sub0), o10994[LinkedList$Entry.next]o10994, o10994[LinkedList$Entry.next]o10996, o10994[LinkedList$Entry.next]o10992, o10996[LinkedList$Entry.next]o10994, o10996[LinkedList$Entry.next]o10996, o10996[LinkedList$Entry.next]o10992, o10994[LinkedList$Entry.previous]o10994, o10994[LinkedList$Entry.previous]o10996, o10994[LinkedList$Entry.previous]o10992, o10996[LinkedList$Entry.previous]o10996, o10996[LinkedList$Entry.previous]o10992, o10994[LinkedList$Entry.previous]o11000, o10996[LinkedList$Entry.previous]o11000, o11006[LinkedList$Entry.previous]o10996, o11006[LinkedList$Entry.previous]o11000, o11006[LinkedList$Entry.previous]o10992) → f18580_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10996sub-918978650)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10996sub-918978650)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11002sub1688641045), java.lang.Object(o11006sub1688641045))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11002sub0), 0, o10994[LinkedList$Entry.next]o10994, o10994[LinkedList$Entry.next]o10996, o10994[LinkedList$Entry.next]o10992, o10996[LinkedList$Entry.next]o10994, o10996[LinkedList$Entry.next]o10996, o10996[LinkedList$Entry.next]o10992, o10994[LinkedList$Entry.previous]o10994, o10994[LinkedList$Entry.previous]o10996, o10994[LinkedList$Entry.previous]o10992, o10994[LinkedList$Entry.previous]o11000, o10994[LinkedList$Entry.previous]o11006, o10996[LinkedList$Entry.previous]o10996, o10996[LinkedList$Entry.previous]o10992, o10996[LinkedList$Entry.previous]o11000, o10996[LinkedList$Entry.previous]o11006, o11006[LinkedList$Entry.previous]o10996, o11006[LinkedList$Entry.previous]o10992, o11006[LinkedList$Entry.previous]o11000, o11006[LinkedList$Entry.previous]o11006)
f13331_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12608sub-915480486)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12608sub-915480486)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12618sub1689744335))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12606[LinkedList$Entry.next]o12606, o12606[LinkedList$Entry.next]o12608, o12606[LinkedList$Entry.next]o12604, o12608[LinkedList$Entry.next]o12606, o12608[LinkedList$Entry.next]o12608, o12608[LinkedList$Entry.next]o12604, o12606[LinkedList$Entry.previous]o12606, o12606[LinkedList$Entry.previous]o12608, o12606[LinkedList$Entry.previous]o12604, o12608[LinkedList$Entry.previous]o12608, o12608[LinkedList$Entry.previous]o12604, o12606[LinkedList$Entry.previous]o12612, o12608[LinkedList$Entry.previous]o12612, o12618[LinkedList$Entry.previous]o12608, o12618[LinkedList$Entry.previous]o12612, o12618[LinkedList$Entry.previous]o12604) → f18702_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12608sub-915480486)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12608sub-915480486)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12618sub1689744335))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12606[LinkedList$Entry.next]o12606, o12606[LinkedList$Entry.next]o12608, o12606[LinkedList$Entry.next]o12604, o12608[LinkedList$Entry.next]o12606, o12608[LinkedList$Entry.next]o12608, o12608[LinkedList$Entry.next]o12604, o12606[LinkedList$Entry.previous]o12606, o12606[LinkedList$Entry.previous]o12608, o12606[LinkedList$Entry.previous]o12604, o12606[LinkedList$Entry.previous]o12612, o12606[LinkedList$Entry.previous]o12618, o12608[LinkedList$Entry.previous]o12608, o12608[LinkedList$Entry.previous]o12604, o12608[LinkedList$Entry.previous]o12612, o12608[LinkedList$Entry.previous]o12618, o12618[LinkedList$Entry.previous]o12608, o12618[LinkedList$Entry.previous]o12604, o12618[LinkedList$Entry.previous]o12612, o12618[LinkedList$Entry.previous]o12618)
f13331_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12794sub-915404505)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12794sub-915404505)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12804sub1689782000))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12792[LinkedList$Entry.next]o12792, o12792[LinkedList$Entry.next]o12794, o12792[LinkedList$Entry.next]o12790, o12794[LinkedList$Entry.next]o12792, o12794[LinkedList$Entry.next]o12794, o12794[LinkedList$Entry.next]o12790, o12792[LinkedList$Entry.previous]o12792, o12792[LinkedList$Entry.previous]o12794, o12792[LinkedList$Entry.previous]o12790, o12794[LinkedList$Entry.previous]o12794, o12794[LinkedList$Entry.previous]o12790, o12792[LinkedList$Entry.previous]o12798, o12794[LinkedList$Entry.previous]o12798, o12804[LinkedList$Entry.previous]o12794, o12804[LinkedList$Entry.previous]o12798, o12804[LinkedList$Entry.previous]o12790) → f18710_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12794sub-915404505)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12794sub-915404505)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12804sub1689782000))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12792[LinkedList$Entry.next]o12792, o12792[LinkedList$Entry.next]o12794, o12792[LinkedList$Entry.next]o12790, o12794[LinkedList$Entry.next]o12792, o12794[LinkedList$Entry.next]o12794, o12794[LinkedList$Entry.next]o12790, o12792[LinkedList$Entry.previous]o12792, o12792[LinkedList$Entry.previous]o12794, o12792[LinkedList$Entry.previous]o12790, o12792[LinkedList$Entry.previous]o12798, o12792[LinkedList$Entry.previous]o12804, o12794[LinkedList$Entry.previous]o12794, o12794[LinkedList$Entry.previous]o12790, o12794[LinkedList$Entry.previous]o12798, o12794[LinkedList$Entry.previous]o12804, o12804[LinkedList$Entry.previous]o12794, o12804[LinkedList$Entry.previous]o12790, o12804[LinkedList$Entry.previous]o12798, o12804[LinkedList$Entry.previous]o12804)
f13331_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12986sub-915286488)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12986sub-915286488)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12996sub1689841334))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12984[LinkedList$Entry.next]o12984, o12984[LinkedList$Entry.next]o12986, o12984[LinkedList$Entry.next]o12982, o12986[LinkedList$Entry.next]o12984, o12986[LinkedList$Entry.next]o12986, o12986[LinkedList$Entry.next]o12982, o12984[LinkedList$Entry.previous]o12984, o12984[LinkedList$Entry.previous]o12986, o12984[LinkedList$Entry.previous]o12982, o12986[LinkedList$Entry.previous]o12986, o12986[LinkedList$Entry.previous]o12982, o12984[LinkedList$Entry.previous]o12990, o12986[LinkedList$Entry.previous]o12990, o12996[LinkedList$Entry.previous]o12986, o12996[LinkedList$Entry.previous]o12990, o12996[LinkedList$Entry.previous]o12982) → f18721_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12986sub-915286488)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12986sub-915286488)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12996sub1689841334))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12984[LinkedList$Entry.next]o12984, o12984[LinkedList$Entry.next]o12986, o12984[LinkedList$Entry.next]o12982, o12986[LinkedList$Entry.next]o12984, o12986[LinkedList$Entry.next]o12986, o12986[LinkedList$Entry.next]o12982, o12984[LinkedList$Entry.previous]o12984, o12984[LinkedList$Entry.previous]o12986, o12984[LinkedList$Entry.previous]o12982, o12984[LinkedList$Entry.previous]o12990, o12984[LinkedList$Entry.previous]o12996, o12986[LinkedList$Entry.previous]o12986, o12986[LinkedList$Entry.previous]o12982, o12986[LinkedList$Entry.previous]o12990, o12986[LinkedList$Entry.previous]o12996, o12996[LinkedList$Entry.previous]o12986, o12996[LinkedList$Entry.previous]o12982, o12996[LinkedList$Entry.previous]o12990, o12996[LinkedList$Entry.previous]o12996)
f13331_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13168sub-913919822)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13168sub-913919822)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13178sub1690524667))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13166[LinkedList$Entry.next]o13166, o13166[LinkedList$Entry.next]o13168, o13166[LinkedList$Entry.next]o13164, o13168[LinkedList$Entry.next]o13166, o13168[LinkedList$Entry.next]o13168, o13168[LinkedList$Entry.next]o13164, o13166[LinkedList$Entry.previous]o13166, o13166[LinkedList$Entry.previous]o13168, o13166[LinkedList$Entry.previous]o13164, o13168[LinkedList$Entry.previous]o13168, o13168[LinkedList$Entry.previous]o13164, o13166[LinkedList$Entry.previous]o13172, o13168[LinkedList$Entry.previous]o13172, o13178[LinkedList$Entry.previous]o13168, o13178[LinkedList$Entry.previous]o13172, o13178[LinkedList$Entry.previous]o13164) → f18730_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13168sub-913919822)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13168sub-913919822)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13178sub1690524667))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13166[LinkedList$Entry.next]o13166, o13166[LinkedList$Entry.next]o13168, o13166[LinkedList$Entry.next]o13164, o13168[LinkedList$Entry.next]o13166, o13168[LinkedList$Entry.next]o13168, o13168[LinkedList$Entry.next]o13164, o13166[LinkedList$Entry.previous]o13166, o13166[LinkedList$Entry.previous]o13168, o13166[LinkedList$Entry.previous]o13164, o13166[LinkedList$Entry.previous]o13172, o13166[LinkedList$Entry.previous]o13178, o13168[LinkedList$Entry.previous]o13168, o13168[LinkedList$Entry.previous]o13164, o13168[LinkedList$Entry.previous]o13172, o13168[LinkedList$Entry.previous]o13178, o13178[LinkedList$Entry.previous]o13168, o13178[LinkedList$Entry.previous]o13164, o13178[LinkedList$Entry.previous]o13172, o13178[LinkedList$Entry.previous]o13178)
f13331_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13333sub-913808036)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13333sub-913808036)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13343sub1690580560))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13331[LinkedList$Entry.next]o13331, o13331[LinkedList$Entry.next]o13333, o13331[LinkedList$Entry.next]o13329, o13333[LinkedList$Entry.next]o13331, o13333[LinkedList$Entry.next]o13333, o13333[LinkedList$Entry.next]o13329, o13331[LinkedList$Entry.previous]o13331, o13331[LinkedList$Entry.previous]o13333, o13331[LinkedList$Entry.previous]o13329, o13333[LinkedList$Entry.previous]o13333, o13333[LinkedList$Entry.previous]o13329, o13331[LinkedList$Entry.previous]o13337, o13333[LinkedList$Entry.previous]o13337, o13343[LinkedList$Entry.previous]o13333, o13343[LinkedList$Entry.previous]o13337, o13343[LinkedList$Entry.previous]o13329) → f18736_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13333sub-913808036)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13333sub-913808036)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13343sub1690580560))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13331[LinkedList$Entry.next]o13331, o13331[LinkedList$Entry.next]o13333, o13331[LinkedList$Entry.next]o13329, o13333[LinkedList$Entry.next]o13331, o13333[LinkedList$Entry.next]o13333, o13333[LinkedList$Entry.next]o13329, o13331[LinkedList$Entry.previous]o13331, o13331[LinkedList$Entry.previous]o13333, o13331[LinkedList$Entry.previous]o13329, o13331[LinkedList$Entry.previous]o13337, o13331[LinkedList$Entry.previous]o13343, o13333[LinkedList$Entry.previous]o13333, o13333[LinkedList$Entry.previous]o13329, o13333[LinkedList$Entry.previous]o13337, o13333[LinkedList$Entry.previous]o13343, o13343[LinkedList$Entry.previous]o13333, o13343[LinkedList$Entry.previous]o13329, o13343[LinkedList$Entry.previous]o13337, o13343[LinkedList$Entry.previous]o13343)
f13331_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13505sub-913714044)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13505sub-913714044)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13515sub1690637321))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13503[LinkedList$Entry.next]o13503, o13503[LinkedList$Entry.next]o13505, o13503[LinkedList$Entry.next]o13501, o13505[LinkedList$Entry.next]o13503, o13505[LinkedList$Entry.next]o13505, o13505[LinkedList$Entry.next]o13501, o13503[LinkedList$Entry.previous]o13503, o13503[LinkedList$Entry.previous]o13505, o13503[LinkedList$Entry.previous]o13501, o13505[LinkedList$Entry.previous]o13505, o13505[LinkedList$Entry.previous]o13501, o13503[LinkedList$Entry.previous]o13509, o13505[LinkedList$Entry.previous]o13509, o13515[LinkedList$Entry.previous]o13505, o13515[LinkedList$Entry.previous]o13509, o13515[LinkedList$Entry.previous]o13501) → f18742_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13505sub-913714044)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13505sub-913714044)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13515sub1690637321))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13503[LinkedList$Entry.next]o13503, o13503[LinkedList$Entry.next]o13505, o13503[LinkedList$Entry.next]o13501, o13505[LinkedList$Entry.next]o13503, o13505[LinkedList$Entry.next]o13505, o13505[LinkedList$Entry.next]o13501, o13503[LinkedList$Entry.previous]o13503, o13503[LinkedList$Entry.previous]o13505, o13503[LinkedList$Entry.previous]o13501, o13503[LinkedList$Entry.previous]o13509, o13503[LinkedList$Entry.previous]o13515, o13505[LinkedList$Entry.previous]o13505, o13505[LinkedList$Entry.previous]o13501, o13505[LinkedList$Entry.previous]o13509, o13505[LinkedList$Entry.previous]o13515, o13515[LinkedList$Entry.previous]o13505, o13515[LinkedList$Entry.previous]o13501, o13515[LinkedList$Entry.previous]o13509, o13515[LinkedList$Entry.previous]o13515)
f13335_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub768924471)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub768924471)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub1687964501))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL, o10886[LinkedList$Entry.next]o10886, o10886[LinkedList$Entry.next]o10884, o10886[LinkedList$Entry.previous]o10886, o10886[LinkedList$Entry.previous]o10884, o10886[LinkedList$Entry.next]o10890, o10886[LinkedList$Entry.previous]o10890, o10892[LinkedList$Entry.next]o10886, o10892[LinkedList$Entry.next]o10890, o10892[LinkedList$Entry.next]o10884, o10894[LinkedList$Entry.previous]o10890, o10894[LinkedList$Entry.previous]o10884) → f18571_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub768924471)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub768924471)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10894sub1687964501))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, 0, o10886[LinkedList$Entry.next]o10886, o10886[LinkedList$Entry.next]o10884, o10886[LinkedList$Entry.next]o10890, o10886[LinkedList$Entry.next]o10892, o10886[LinkedList$Entry.previous]o10886, o10886[LinkedList$Entry.previous]o10884, o10886[LinkedList$Entry.previous]o10890, o10886[LinkedList$Entry.previous]o10894, o10892[LinkedList$Entry.next]o10886, o10892[LinkedList$Entry.next]o10884, o10892[LinkedList$Entry.next]o10890, o10892[LinkedList$Entry.next]o10892, o10894[LinkedList$Entry.previous]o10890, o10894[LinkedList$Entry.previous]o10894, o10894[LinkedList$Entry.previous]o10884)
f13335_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub770973540), java.lang.Object(o11075sub770973540)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub770973540), java.lang.Object(o11075sub770973540)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub1688647090), java.lang.Object(o11075sub1688647090))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11071sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11071sub0), o11065[LinkedList$Entry.next]o11065, o11065[LinkedList$Entry.next]o11063, o11065[LinkedList$Entry.previous]o11065, o11065[LinkedList$Entry.previous]o11063, o11065[LinkedList$Entry.next]o11069, o11065[LinkedList$Entry.previous]o11069, o11073[LinkedList$Entry.next]o11065, o11073[LinkedList$Entry.next]o11069, o11073[LinkedList$Entry.next]o11063, o11075[LinkedList$Entry.previous]o11069, o11075[LinkedList$Entry.previous]o11063) → f18583_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub770973540), java.lang.Object(o11075sub770973540)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub770973540), java.lang.Object(o11075sub770973540)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11071sub1688647090), java.lang.Object(o11075sub1688647090))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11071sub0), 0, o11065[LinkedList$Entry.next]o11065, o11065[LinkedList$Entry.next]o11063, o11065[LinkedList$Entry.next]o11069, o11065[LinkedList$Entry.next]o11073, o11065[LinkedList$Entry.previous]o11065, o11065[LinkedList$Entry.previous]o11063, o11065[LinkedList$Entry.previous]o11069, o11065[LinkedList$Entry.previous]o11075, o11073[LinkedList$Entry.next]o11065, o11073[LinkedList$Entry.next]o11063, o11073[LinkedList$Entry.next]o11069, o11073[LinkedList$Entry.next]o11073, o11075[LinkedList$Entry.previous]o11069, o11075[LinkedList$Entry.previous]o11075, o11075[LinkedList$Entry.previous]o11063)
f13335_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub774281364)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub774281364)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub1689750132))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12669[LinkedList$Entry.next]o12669, o12669[LinkedList$Entry.next]o12667, o12669[LinkedList$Entry.previous]o12669, o12669[LinkedList$Entry.previous]o12667, o12669[LinkedList$Entry.next]o12673, o12669[LinkedList$Entry.previous]o12673, o12677[LinkedList$Entry.next]o12669, o12677[LinkedList$Entry.next]o12673, o12677[LinkedList$Entry.next]o12667, o12679[LinkedList$Entry.previous]o12673, o12679[LinkedList$Entry.previous]o12667) → f18704_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub774281364)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub774281364)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12679sub1689750132))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12669[LinkedList$Entry.next]o12669, o12669[LinkedList$Entry.next]o12667, o12669[LinkedList$Entry.next]o12673, o12669[LinkedList$Entry.next]o12677, o12669[LinkedList$Entry.previous]o12669, o12669[LinkedList$Entry.previous]o12667, o12669[LinkedList$Entry.previous]o12673, o12669[LinkedList$Entry.previous]o12679, o12677[LinkedList$Entry.next]o12669, o12677[LinkedList$Entry.next]o12667, o12677[LinkedList$Entry.next]o12673, o12677[LinkedList$Entry.next]o12677, o12679[LinkedList$Entry.previous]o12673, o12679[LinkedList$Entry.previous]o12679, o12679[LinkedList$Entry.previous]o12667)
f13335_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub774465690)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub774465690)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub1689811574))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12887[LinkedList$Entry.next]o12887, o12887[LinkedList$Entry.next]o12885, o12887[LinkedList$Entry.previous]o12887, o12887[LinkedList$Entry.previous]o12885, o12887[LinkedList$Entry.next]o12891, o12887[LinkedList$Entry.previous]o12891, o12895[LinkedList$Entry.next]o12887, o12895[LinkedList$Entry.next]o12891, o12895[LinkedList$Entry.next]o12885, o12897[LinkedList$Entry.previous]o12891, o12897[LinkedList$Entry.previous]o12885) → f18714_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub774465690)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub774465690)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12897sub1689811574))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12887[LinkedList$Entry.next]o12887, o12887[LinkedList$Entry.next]o12885, o12887[LinkedList$Entry.next]o12891, o12887[LinkedList$Entry.next]o12895, o12887[LinkedList$Entry.previous]o12887, o12887[LinkedList$Entry.previous]o12885, o12887[LinkedList$Entry.previous]o12891, o12887[LinkedList$Entry.previous]o12897, o12895[LinkedList$Entry.next]o12887, o12895[LinkedList$Entry.next]o12885, o12895[LinkedList$Entry.next]o12891, o12895[LinkedList$Entry.next]o12895, o12897[LinkedList$Entry.previous]o12891, o12897[LinkedList$Entry.previous]o12897, o12897[LinkedList$Entry.previous]o12885)
f13335_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub776512620)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub776512620)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub1690493884))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13057[LinkedList$Entry.next]o13057, o13057[LinkedList$Entry.next]o13055, o13057[LinkedList$Entry.previous]o13057, o13057[LinkedList$Entry.previous]o13055, o13057[LinkedList$Entry.next]o13061, o13057[LinkedList$Entry.previous]o13061, o13065[LinkedList$Entry.next]o13057, o13065[LinkedList$Entry.next]o13061, o13065[LinkedList$Entry.next]o13055, o13067[LinkedList$Entry.previous]o13061, o13067[LinkedList$Entry.previous]o13055) → f18725_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub776512620)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub776512620)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13067sub1690493884))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o13057[LinkedList$Entry.next]o13057, o13057[LinkedList$Entry.next]o13055, o13057[LinkedList$Entry.next]o13061, o13057[LinkedList$Entry.next]o13065, o13057[LinkedList$Entry.previous]o13057, o13057[LinkedList$Entry.previous]o13055, o13057[LinkedList$Entry.previous]o13061, o13057[LinkedList$Entry.previous]o13067, o13065[LinkedList$Entry.next]o13057, o13065[LinkedList$Entry.next]o13055, o13065[LinkedList$Entry.next]o13061, o13065[LinkedList$Entry.next]o13065, o13067[LinkedList$Entry.previous]o13061, o13067[LinkedList$Entry.previous]o13067, o13067[LinkedList$Entry.previous]o13055)
f13335_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub776685507)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub776685507)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub1690551513))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13236[LinkedList$Entry.next]o13236, o13236[LinkedList$Entry.next]o13234, o13236[LinkedList$Entry.previous]o13236, o13236[LinkedList$Entry.previous]o13234, o13236[LinkedList$Entry.next]o13240, o13236[LinkedList$Entry.previous]o13240, o13244[LinkedList$Entry.next]o13236, o13244[LinkedList$Entry.next]o13240, o13244[LinkedList$Entry.next]o13234, o13246[LinkedList$Entry.previous]o13240, o13246[LinkedList$Entry.previous]o13234) → f18732_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub776685507)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub776685507)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13246sub1690551513))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13236[LinkedList$Entry.next]o13236, o13236[LinkedList$Entry.next]o13234, o13236[LinkedList$Entry.next]o13240, o13236[LinkedList$Entry.next]o13244, o13236[LinkedList$Entry.previous]o13236, o13236[LinkedList$Entry.previous]o13234, o13236[LinkedList$Entry.previous]o13240, o13236[LinkedList$Entry.previous]o13246, o13244[LinkedList$Entry.next]o13236, o13244[LinkedList$Entry.next]o13234, o13244[LinkedList$Entry.next]o13240, o13244[LinkedList$Entry.next]o13244, o13246[LinkedList$Entry.previous]o13240, o13246[LinkedList$Entry.previous]o13246, o13246[LinkedList$Entry.previous]o13234)
f13335_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub776812824)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub776812824)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub1690607406))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13401[LinkedList$Entry.next]o13401, o13401[LinkedList$Entry.next]o13399, o13401[LinkedList$Entry.previous]o13401, o13401[LinkedList$Entry.previous]o13399, o13401[LinkedList$Entry.next]o13405, o13401[LinkedList$Entry.previous]o13405, o13409[LinkedList$Entry.next]o13401, o13409[LinkedList$Entry.next]o13405, o13409[LinkedList$Entry.next]o13399, o13411[LinkedList$Entry.previous]o13405, o13411[LinkedList$Entry.previous]o13399) → f18739_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub776812824)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub776812824)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13411sub1690607406))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13401[LinkedList$Entry.next]o13401, o13401[LinkedList$Entry.next]o13399, o13401[LinkedList$Entry.next]o13405, o13401[LinkedList$Entry.next]o13409, o13401[LinkedList$Entry.previous]o13401, o13401[LinkedList$Entry.previous]o13399, o13401[LinkedList$Entry.previous]o13405, o13401[LinkedList$Entry.previous]o13411, o13409[LinkedList$Entry.next]o13401, o13409[LinkedList$Entry.next]o13399, o13409[LinkedList$Entry.next]o13405, o13409[LinkedList$Entry.next]o13409, o13411[LinkedList$Entry.previous]o13405, o13411[LinkedList$Entry.previous]o13411, o13411[LinkedList$Entry.previous]o13399)
f13335_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub776961531)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub776961531)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub1690643087))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13565[LinkedList$Entry.next]o13565, o13565[LinkedList$Entry.next]o13563, o13565[LinkedList$Entry.previous]o13565, o13565[LinkedList$Entry.previous]o13563, o13565[LinkedList$Entry.next]o13569, o13565[LinkedList$Entry.previous]o13569, o13573[LinkedList$Entry.next]o13565, o13573[LinkedList$Entry.next]o13569, o13573[LinkedList$Entry.next]o13563, o13575[LinkedList$Entry.previous]o13569, o13575[LinkedList$Entry.previous]o13563) → f18745_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub776961531)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub776961531)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13575sub1690643087))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13565[LinkedList$Entry.next]o13565, o13565[LinkedList$Entry.next]o13563, o13565[LinkedList$Entry.next]o13569, o13565[LinkedList$Entry.next]o13573, o13565[LinkedList$Entry.previous]o13565, o13565[LinkedList$Entry.previous]o13563, o13565[LinkedList$Entry.previous]o13569, o13565[LinkedList$Entry.previous]o13575, o13573[LinkedList$Entry.next]o13565, o13573[LinkedList$Entry.next]o13563, o13573[LinkedList$Entry.next]o13569, o13573[LinkedList$Entry.next]o13573, o13575[LinkedList$Entry.previous]o13569, o13575[LinkedList$Entry.previous]o13575, o13575[LinkedList$Entry.previous]o13563)
f13339_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10918sub-918993778)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10918sub-918993778)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10926sub1687987627))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL, o10918[LinkedList$Entry.next]o10918, o10918[LinkedList$Entry.next]o10916, o10918[LinkedList$Entry.previous]o10918, o10918[LinkedList$Entry.previous]o10916, o10918[LinkedList$Entry.next]o10922, o10918[LinkedList$Entry.previous]o10922, o10924[LinkedList$Entry.next]o10922, o10924[LinkedList$Entry.next]o10918, o10924[LinkedList$Entry.next]o10916, o10926[LinkedList$Entry.previous]o10922, o10926[LinkedList$Entry.previous]o10918, o10926[LinkedList$Entry.previous]o10916) → f18572_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10918sub-918993778)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10918sub-918993778)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10926sub1687987627))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, 0, o10918[LinkedList$Entry.next]o10918, o10918[LinkedList$Entry.next]o10916, o10918[LinkedList$Entry.next]o10922, o10918[LinkedList$Entry.next]o10924, o10918[LinkedList$Entry.previous]o10918, o10918[LinkedList$Entry.previous]o10916, o10918[LinkedList$Entry.previous]o10922, o10918[LinkedList$Entry.previous]o10926, o10924[LinkedList$Entry.next]o10922, o10924[LinkedList$Entry.next]o10924, o10924[LinkedList$Entry.next]o10918, o10924[LinkedList$Entry.next]o10916, o10926[LinkedList$Entry.previous]o10922, o10926[LinkedList$Entry.previous]o10926, o10926[LinkedList$Entry.previous]o10918, o10926[LinkedList$Entry.previous]o10916)
f13339_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11100sub-917667474)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11100sub-917667474)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11106sub1688670960), java.lang.Object(o11110sub1688670960))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11106sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11106sub0), o11100[LinkedList$Entry.next]o11100, o11100[LinkedList$Entry.next]o11098, o11100[LinkedList$Entry.previous]o11100, o11100[LinkedList$Entry.previous]o11098, o11100[LinkedList$Entry.next]o11104, o11100[LinkedList$Entry.previous]o11104, o11108[LinkedList$Entry.next]o11104, o11108[LinkedList$Entry.next]o11100, o11108[LinkedList$Entry.next]o11098, o11110[LinkedList$Entry.previous]o11104, o11110[LinkedList$Entry.previous]o11100, o11110[LinkedList$Entry.previous]o11098) → f18587_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11100sub-917667474)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o11100sub-917667474)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11106sub1688670960), java.lang.Object(o11110sub1688670960))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11106sub0), 0, o11100[LinkedList$Entry.next]o11100, o11100[LinkedList$Entry.next]o11098, o11100[LinkedList$Entry.next]o11104, o11100[LinkedList$Entry.next]o11108, o11100[LinkedList$Entry.previous]o11100, o11100[LinkedList$Entry.previous]o11098, o11100[LinkedList$Entry.previous]o11104, o11100[LinkedList$Entry.previous]o11110, o11108[LinkedList$Entry.next]o11104, o11108[LinkedList$Entry.next]o11108, o11108[LinkedList$Entry.next]o11100, o11108[LinkedList$Entry.next]o11098, o11110[LinkedList$Entry.previous]o11104, o11110[LinkedList$Entry.previous]o11110, o11110[LinkedList$Entry.previous]o11100, o11110[LinkedList$Entry.previous]o11098)
f13339_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12704sub-915421028)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12704sub-915421028)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12714sub1689773351))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12704[LinkedList$Entry.next]o12704, o12704[LinkedList$Entry.next]o12702, o12704[LinkedList$Entry.previous]o12704, o12704[LinkedList$Entry.previous]o12702, o12704[LinkedList$Entry.next]o12708, o12704[LinkedList$Entry.previous]o12708, o12712[LinkedList$Entry.next]o12708, o12712[LinkedList$Entry.next]o12704, o12712[LinkedList$Entry.next]o12702, o12714[LinkedList$Entry.previous]o12708, o12714[LinkedList$Entry.previous]o12704, o12714[LinkedList$Entry.previous]o12702) → f18705_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12704sub-915421028)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12704sub-915421028)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12714sub1689773351))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12704[LinkedList$Entry.next]o12704, o12704[LinkedList$Entry.next]o12702, o12704[LinkedList$Entry.next]o12708, o12704[LinkedList$Entry.next]o12712, o12704[LinkedList$Entry.previous]o12704, o12704[LinkedList$Entry.previous]o12702, o12704[LinkedList$Entry.previous]o12708, o12704[LinkedList$Entry.previous]o12714, o12712[LinkedList$Entry.next]o12708, o12712[LinkedList$Entry.next]o12712, o12712[LinkedList$Entry.next]o12704, o12712[LinkedList$Entry.next]o12702, o12714[LinkedList$Entry.previous]o12708, o12714[LinkedList$Entry.previous]o12714, o12714[LinkedList$Entry.previous]o12704, o12714[LinkedList$Entry.previous]o12702)
f13339_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12914sub-915299942)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12914sub-915299942)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12924sub1689833894))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12914[LinkedList$Entry.next]o12914, o12914[LinkedList$Entry.next]o12912, o12914[LinkedList$Entry.previous]o12914, o12914[LinkedList$Entry.previous]o12912, o12914[LinkedList$Entry.next]o12918, o12914[LinkedList$Entry.previous]o12918, o12922[LinkedList$Entry.next]o12918, o12922[LinkedList$Entry.next]o12914, o12922[LinkedList$Entry.next]o12912, o12924[LinkedList$Entry.previous]o12918, o12924[LinkedList$Entry.previous]o12914, o12924[LinkedList$Entry.previous]o12912) → f18718_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12914sub-915299942)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o12914sub-915299942)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12924sub1689833894))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12914[LinkedList$Entry.next]o12914, o12914[LinkedList$Entry.next]o12912, o12914[LinkedList$Entry.next]o12918, o12914[LinkedList$Entry.next]o12922, o12914[LinkedList$Entry.previous]o12914, o12914[LinkedList$Entry.previous]o12912, o12914[LinkedList$Entry.previous]o12918, o12914[LinkedList$Entry.previous]o12924, o12922[LinkedList$Entry.next]o12918, o12922[LinkedList$Entry.next]o12922, o12922[LinkedList$Entry.next]o12914, o12922[LinkedList$Entry.next]o12912, o12924[LinkedList$Entry.previous]o12918, o12924[LinkedList$Entry.previous]o12924, o12924[LinkedList$Entry.previous]o12914, o12924[LinkedList$Entry.previous]o12912)
f13339_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13092sub-913974537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13092sub-913974537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13102sub1690496922))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13092[LinkedList$Entry.next]o13092, o13092[LinkedList$Entry.next]o13090, o13092[LinkedList$Entry.previous]o13092, o13092[LinkedList$Entry.previous]o13090, o13092[LinkedList$Entry.next]o13096, o13092[LinkedList$Entry.previous]o13096, o13100[LinkedList$Entry.next]o13096, o13100[LinkedList$Entry.next]o13092, o13100[LinkedList$Entry.next]o13090, o13102[LinkedList$Entry.previous]o13096, o13102[LinkedList$Entry.previous]o13092, o13102[LinkedList$Entry.previous]o13090) → f18726_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13092sub-913974537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13092sub-913974537)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13102sub1690496922))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o13092[LinkedList$Entry.next]o13092, o13092[LinkedList$Entry.next]o13090, o13092[LinkedList$Entry.next]o13096, o13092[LinkedList$Entry.next]o13100, o13092[LinkedList$Entry.previous]o13092, o13092[LinkedList$Entry.previous]o13090, o13092[LinkedList$Entry.previous]o13096, o13092[LinkedList$Entry.previous]o13102, o13100[LinkedList$Entry.next]o13096, o13100[LinkedList$Entry.next]o13100, o13100[LinkedList$Entry.next]o13092, o13100[LinkedList$Entry.next]o13090, o13102[LinkedList$Entry.previous]o13096, o13102[LinkedList$Entry.previous]o13102, o13102[LinkedList$Entry.previous]o13092, o13102[LinkedList$Entry.previous]o13090)
f13339_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13272sub-913859217)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13272sub-913859217)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13282sub1690554582))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13272[LinkedList$Entry.next]o13272, o13272[LinkedList$Entry.next]o13270, o13272[LinkedList$Entry.previous]o13272, o13272[LinkedList$Entry.previous]o13270, o13272[LinkedList$Entry.next]o13276, o13272[LinkedList$Entry.previous]o13276, o13280[LinkedList$Entry.next]o13276, o13280[LinkedList$Entry.next]o13272, o13280[LinkedList$Entry.next]o13270, o13282[LinkedList$Entry.previous]o13276, o13282[LinkedList$Entry.previous]o13272, o13282[LinkedList$Entry.previous]o13270) → f18733_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13272sub-913859217)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13272sub-913859217)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13282sub1690554582))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13272[LinkedList$Entry.next]o13272, o13272[LinkedList$Entry.next]o13270, o13272[LinkedList$Entry.next]o13276, o13272[LinkedList$Entry.next]o13280, o13272[LinkedList$Entry.previous]o13272, o13272[LinkedList$Entry.previous]o13270, o13272[LinkedList$Entry.previous]o13276, o13272[LinkedList$Entry.previous]o13282, o13280[LinkedList$Entry.next]o13276, o13280[LinkedList$Entry.next]o13280, o13280[LinkedList$Entry.next]o13272, o13280[LinkedList$Entry.next]o13270, o13282[LinkedList$Entry.previous]o13276, o13282[LinkedList$Entry.previous]o13282, o13282[LinkedList$Entry.previous]o13272, o13282[LinkedList$Entry.previous]o13270)
f13339_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13436sub-913746842)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13436sub-913746842)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13446sub1690611095))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13436[LinkedList$Entry.next]o13436, o13436[LinkedList$Entry.next]o13434, o13436[LinkedList$Entry.previous]o13436, o13436[LinkedList$Entry.previous]o13434, o13436[LinkedList$Entry.next]o13440, o13436[LinkedList$Entry.previous]o13440, o13444[LinkedList$Entry.next]o13440, o13444[LinkedList$Entry.next]o13436, o13444[LinkedList$Entry.next]o13434, o13446[LinkedList$Entry.previous]o13440, o13446[LinkedList$Entry.previous]o13436, o13446[LinkedList$Entry.previous]o13434) → f18740_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13436sub-913746842)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13436sub-913746842)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13446sub1690611095))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13436[LinkedList$Entry.next]o13436, o13436[LinkedList$Entry.next]o13434, o13436[LinkedList$Entry.next]o13440, o13436[LinkedList$Entry.next]o13444, o13436[LinkedList$Entry.previous]o13436, o13436[LinkedList$Entry.previous]o13434, o13436[LinkedList$Entry.previous]o13440, o13436[LinkedList$Entry.previous]o13446, o13444[LinkedList$Entry.next]o13440, o13444[LinkedList$Entry.next]o13444, o13444[LinkedList$Entry.next]o13436, o13444[LinkedList$Entry.next]o13434, o13446[LinkedList$Entry.previous]o13440, o13446[LinkedList$Entry.previous]o13446, o13446[LinkedList$Entry.previous]o13436, o13446[LinkedList$Entry.previous]o13434)
f13339_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13602sub-913654524)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13602sub-913654524)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13612sub1690667019))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13602[LinkedList$Entry.next]o13602, o13602[LinkedList$Entry.next]o13600, o13602[LinkedList$Entry.previous]o13602, o13602[LinkedList$Entry.previous]o13600, o13602[LinkedList$Entry.next]o13606, o13602[LinkedList$Entry.previous]o13606, o13610[LinkedList$Entry.next]o13606, o13610[LinkedList$Entry.next]o13602, o13610[LinkedList$Entry.next]o13600, o13612[LinkedList$Entry.previous]o13606, o13612[LinkedList$Entry.previous]o13602, o13612[LinkedList$Entry.previous]o13600) → f18746_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13602sub-913654524)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o13602sub-913654524)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13612sub1690667019))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13602[LinkedList$Entry.next]o13602, o13602[LinkedList$Entry.next]o13600, o13602[LinkedList$Entry.next]o13606, o13602[LinkedList$Entry.next]o13610, o13602[LinkedList$Entry.previous]o13602, o13602[LinkedList$Entry.previous]o13600, o13602[LinkedList$Entry.previous]o13606, o13602[LinkedList$Entry.previous]o13612, o13610[LinkedList$Entry.next]o13606, o13610[LinkedList$Entry.next]o13610, o13610[LinkedList$Entry.next]o13602, o13610[LinkedList$Entry.next]o13600, o13612[LinkedList$Entry.previous]o13606, o13612[LinkedList$Entry.previous]o13612, o13612[LinkedList$Entry.previous]o13602, o13612[LinkedList$Entry.previous]o13600)
f13342_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub768914923)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub768914923)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub1687960843))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL, o10858[LinkedList$Entry.next]o10856, o10858[LinkedList$Entry.next]o10852, o10860[LinkedList$Entry.previous]o10856, o10860[LinkedList$Entry.previous]o10852) → f18570_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub768914923)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub768914923)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(o10860sub1687960843))), java.lang.Object(javaUtilEx.Content(EOC)), NULL, 0, o10858[LinkedList$Entry.next]o10856, o10858[LinkedList$Entry.next]o10858, o10858[LinkedList$Entry.next]o10852, o10860[LinkedList$Entry.previous]o10856, o10860[LinkedList$Entry.previous]o10860, o10860[LinkedList$Entry.previous]o10852)
f13342_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub770963062), java.lang.Object(o11038sub770963062)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub770963062), java.lang.Object(o11038sub770963062)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub1688643990), java.lang.Object(o11038sub1688643990))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11034sub0), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11034sub0), o11036[LinkedList$Entry.next]o11032, o11036[LinkedList$Entry.next]o11028, o11038[LinkedList$Entry.previous]o11032, o11038[LinkedList$Entry.previous]o11028) → f18582_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub770963062), java.lang.Object(o11038sub770963062)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub770963062), java.lang.Object(o11038sub770963062)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(o11034sub1688643990), java.lang.Object(o11038sub1688643990))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o11034sub0), 0, o11036[LinkedList$Entry.next]o11032, o11036[LinkedList$Entry.next]o11036, o11036[LinkedList$Entry.next]o11028, o11038[LinkedList$Entry.previous]o11032, o11038[LinkedList$Entry.previous]o11038, o11038[LinkedList$Entry.previous]o11028)
f13342_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub774271537)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub774271537)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub1689746381))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12640[LinkedList$Entry.next]o12636, o12640[LinkedList$Entry.next]o12632, o12642[LinkedList$Entry.previous]o12636, o12642[LinkedList$Entry.previous]o12632) → f18703_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub774271537)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub774271537)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12642sub1689746381))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12640[LinkedList$Entry.next]o12636, o12640[LinkedList$Entry.next]o12640, o12640[LinkedList$Entry.next]o12632, o12642[LinkedList$Entry.previous]o12636, o12642[LinkedList$Entry.previous]o12642, o12642[LinkedList$Entry.previous]o12632)
f13342_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub774455212)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub774455212)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub1689807823))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o12858[LinkedList$Entry.next]o12854, o12858[LinkedList$Entry.next]o12850, o12860[LinkedList$Entry.previous]o12854, o12860[LinkedList$Entry.previous]o12850) → f18713_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub774455212)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub774455212)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o12860sub1689807823))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o12858[LinkedList$Entry.next]o12854, o12858[LinkedList$Entry.next]o12858, o12858[LinkedList$Entry.next]o12850, o12860[LinkedList$Entry.previous]o12854, o12860[LinkedList$Entry.previous]o12860, o12860[LinkedList$Entry.previous]o12850)
f13342_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub776502235)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub776502235)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub1690490164))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13029[LinkedList$Entry.next]o13025, o13029[LinkedList$Entry.next]o13021, o13031[LinkedList$Entry.previous]o13025, o13031[LinkedList$Entry.previous]o13021) → f18724_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub776502235)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub776502235)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13031sub1690490164))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 0, o13029[LinkedList$Entry.next]o13025, o13029[LinkedList$Entry.next]o13029, o13029[LinkedList$Entry.next]o13021, o13031[LinkedList$Entry.previous]o13025, o13031[LinkedList$Entry.previous]o13031, o13031[LinkedList$Entry.previous]o13021)
f13342_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub776654941)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub776654941)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub1690547793))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13208[LinkedList$Entry.next]o13204, o13208[LinkedList$Entry.next]o13200, o13210[LinkedList$Entry.previous]o13204, o13210[LinkedList$Entry.previous]o13200) → f18731_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub776654941)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub776654941)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13210sub1690547793))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13208[LinkedList$Entry.next]o13204, o13208[LinkedList$Entry.next]o13208, o13208[LinkedList$Entry.next]o13200, o13210[LinkedList$Entry.previous]o13204, o13210[LinkedList$Entry.previous]o13210, o13210[LinkedList$Entry.previous]o13200)
f13342_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub776782816)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub776782816)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub1690583474))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13372[LinkedList$Entry.next]o13368, o13372[LinkedList$Entry.next]o13364, o13374[LinkedList$Entry.previous]o13368, o13374[LinkedList$Entry.previous]o13364) → f18738_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub776782816)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub776782816)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13374sub1690583474))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13372[LinkedList$Entry.next]o13368, o13372[LinkedList$Entry.next]o13372, o13372[LinkedList$Entry.next]o13364, o13374[LinkedList$Entry.previous]o13368, o13374[LinkedList$Entry.previous]o13374, o13374[LinkedList$Entry.previous]o13364)
f13342_1_equals_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub776951890)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub776951890)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub1690640049))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o13538[LinkedList$Entry.next]o13534, o13538[LinkedList$Entry.next]o13530, o13540[LinkedList$Entry.previous]o13534, o13540[LinkedList$Entry.previous]o13530) → f18744_0_equals_Return(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub776951890)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub776951890)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o13540sub1690640049))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), 1, o13538[LinkedList$Entry.next]o13534, o13538[LinkedList$Entry.next]o13538, o13538[LinkedList$Entry.next]o13530, o13540[LinkedList$Entry.previous]o13534, o13540[LinkedList$Entry.previous]o13540, o13540[LinkedList$Entry.previous]o13530)

Combined rules. Obtained 16 IRules

P rules:
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x1, java.lang.Object(x2))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x1, java.lang.Object(x2))), x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18) → f13358_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), x19, java.lang.Object(x20), java.lang.Object(x21), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x22))), java.lang.Object(x23), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x1, java.lang.Object(x2))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), x19, x3, x4, x5, x6, x7, x8, x9, x10, x12, x13, x17, x11, x14, -(x15, 1), -(x16, 1), -(x18, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x7, 0)), >(x3, 0)), >(x18, 0)), >(x16, 0)), >(x15, 0)), >(x14, 0)), >(x11, 0)), >(x13, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x0, java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x0, java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x2, java.lang.Object(x3))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x2, java.lang.Object(x3))), x4, x5, x6, x7, x8, x9, x10, x11, x11, x12, x13, x14, x15, x13, x16, x16) → f13368_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), x17, java.lang.Object(x18), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x19, java.lang.Object(x20))))), java.lang.Object(x21), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x2, java.lang.Object(x3))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x0, java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), x17, x4, x6, x10, x12, x5, x11, -(x7, 1), -(x8, 1), -(x9, 1), -(x13, 1), -(x16, 1)) | &&(&&(&&(&&(>(x4, 0), >(x16, 0)), >(x13, 0)), >(x10, 0)), >(x11, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x1, java.lang.Object(x2))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x1, java.lang.Object(x2))), x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x10, x9, x15, x12) → f13376_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), x16, java.lang.Object(x17), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x18))), java.lang.Object(x19), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x1, java.lang.Object(x2))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), x16, x7, x8, x13, x15, x6, x14, -(x3, 1), -(x4, 1), -(x5, 1), -(x9, 1), -(x10, 1), -(x12, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x7, 0)), >(x6, 0)), >(x4, 0)), >(x3, 0)), >(x14, 0)), >(x13, 0)), >(x10, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x0, java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x0, java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x2, java.lang.Object(x3))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x2, java.lang.Object(x3))), x4, x5, x6, x7, x4, x6, x8, x9, x10, x11, x8, x12, x9, x8, x11, x11) → f13384_0_equals_Load(EOS, java.lang.Object(javaUtilEx.Content(EOC)), x13, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x14, java.lang.Object(x15))))), java.lang.Object(x16), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x2, java.lang.Object(x3))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, x0, java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), x13, -(x4, 1), -(x6, 1), -(x8, 1), -(x11, 1)) | &&(>(x11, 0), >(x8, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x1))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x18), java.lang.Object(x18), x2, x3, x4, x5, x6, x7, x8, x9, x19, x11, x12, x20, -(x14, 1), x22, x16, -(x17, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x8, 0), >(x6, 0)), >(x2, 0)), >(x17, 0)), >(x15, 0)), >(x14, 0)), >(x13, 0)), >(x10, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x1), java.lang.Object(x2))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x1), java.lang.Object(x2))), x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x19), java.lang.Object(x19), x3, x4, x5, x6, x7, x8, x9, x10, x20, x12, x13, x21, -(x15, 1), x23, x17, -(x18, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x7, 0)), >(x3, 0)), >(x18, 0)), >(x16, 0)), >(x15, 0)), >(x14, 0)), >(x11, 0)), >(x13, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x1))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x18), java.lang.Object(x18), x2, x3, x4, x5, x6, x7, x8, x9, x19, x11, x12, x20, -(x14, 1), x22, x16, -(x17, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x8, 0), >(x6, 0)), >(x2, 0)), >(x17, 0)), >(x15, 0)), >(x14, 0)), >(x13, 0)), >(x10, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x1))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x9, x10, x11, x12, x13, x11, x14, x14) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x15), java.lang.Object(x15), x2, x3, x4, x16, 0, x18, x8, x9, x19, x10, 0, 1, -(x11, 1), x23, x24, -(x14, 1)) | &&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x2, 0)), >(x14, 0)), >(x11, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x2), java.lang.Object(x3))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x2), java.lang.Object(x3))), x4, x5, x6, x7, x8, x9, x10, x11, x11, x12, x13, x14, x15, x13, x16, x16) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x17), java.lang.Object(x17), x4, x5, x6, x18, 0, x20, x10, x11, x21, x12, 0, 1, -(x13, 1), x25, x26, -(x16, 1)) | &&(&&(&&(&&(>(x4, 0), >(x16, 0)), >(x13, 0)), >(x10, 0)), >(x11, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x1))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x9, x10, x11, x12, x13, x11, x14, x14) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x15), java.lang.Object(x15), x2, x3, x4, x16, 0, x18, x8, x9, x19, x10, 0, 1, -(x11, 1), x23, x24, -(x14, 1)) | &&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x2, 0)), >(x14, 0)), >(x11, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x1))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x9, x8, x14, x11) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x15), java.lang.Object(x15), 0, x17, x18, x5, x6, x7, 0, x20, 1, x22, x12, x23, -(x9, 1), x25, x14, -(x11, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x6, 0)), >(x5, 0)), >(x3, 0)), >(x2, 0)), >(x13, 0)), >(x11, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x1), java.lang.Object(x2))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x1), java.lang.Object(x2))), x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x10, x9, x15, x12) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x16), java.lang.Object(x16), 0, x18, x19, x6, x7, x8, 0, x21, 1, x23, x13, x24, -(x10, 1), x26, x15, -(x12, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x7, 0)), >(x6, 0)), >(x4, 0)), >(x3, 0)), >(x14, 0)), >(x13, 0)), >(x10, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x1))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x9, x8, x14, x11) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x15), java.lang.Object(x15), 0, x17, x18, x5, x6, x7, 0, x20, 1, x22, x12, x23, -(x9, 1), x25, x14, -(x11, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x6, 0)), >(x5, 0)), >(x3, 0)), >(x2, 0)), >(x13, 0)), >(x11, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x1))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x1))), x2, x3, x4, x5, x2, x4, x6, x7, x8, x9, x6, x10, x7, x6, x9, x9) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x11), java.lang.Object(x11), 0, 0, x13, 0, 0, x13, 0, 0, 1, x16, 0, 1, -(x6, 1), x18, x16, -(x9, 1)) | &&(>(x6, 0), >(x9, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x2), java.lang.Object(x3))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x2), java.lang.Object(x3))), x4, x5, x6, x7, x4, x6, x8, x9, x10, x11, x8, x12, x9, x8, x11, x11) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x13), java.lang.Object(x13), 0, 0, x15, 0, 0, x15, 0, 0, 1, x18, 0, 1, -(x8, 1), x20, x18, -(x11, 1)) | &&(>(x11, 0), >(x8, 0))
f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x1))), java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x1))), x2, x3, x4, x5, x2, x4, x6, x7, x8, x9, x6, x10, x7, x6, x9, x9) → f12606_0_lastIndexOf_Load(EOS, java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(EOC, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(EOC, java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(x11), java.lang.Object(x11), 0, 0, x13, 0, 0, x13, 0, 0, 1, x16, 0, 1, -(x6, 1), x18, x16, -(x9, 1)) | &&(>(x6, 0), >(x9, 0))

Filtered ground terms:


f12606_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23) → f12606_0_lastIndexOf_Load(x2, x4, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23)
Cond_f12606_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29) → Cond_f12606_0_lastIndexOf_Load(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29)
f13358_0_equals_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27) → f13358_0_equals_Load(x3, x4, x5, x6, x7, x8, x9, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27)
Cond_f12606_0_lastIndexOf_Load1(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29) → Cond_f12606_0_lastIndexOf_Load1(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29)
f13368_0_equals_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21) → f13368_0_equals_Load(x3, x4, x5, x6, x7, x8, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21)
Cond_f12606_0_lastIndexOf_Load2(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28) → Cond_f12606_0_lastIndexOf_Load2(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28)
f13376_0_equals_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22) → f13376_0_equals_Load(x3, x4, x5, x6, x7, x8, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22)
Cond_f12606_0_lastIndexOf_Load3(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28) → Cond_f12606_0_lastIndexOf_Load3(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28)
f13384_0_equals_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13) → f13384_0_equals_Load(x3, x4, x5, x6, x7, x9, x10, x11, x12, x13)
Cond_f12606_0_lastIndexOf_Load4(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28) → Cond_f12606_0_lastIndexOf_Load4(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28)
Cond_f12606_0_lastIndexOf_Load5(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28) → Cond_f12606_0_lastIndexOf_Load5(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28)
Cond_f12606_0_lastIndexOf_Load6(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28) → Cond_f12606_0_lastIndexOf_Load6(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28)
Cond_f12606_0_lastIndexOf_Load7(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30) → Cond_f12606_0_lastIndexOf_Load7(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30)
Cond_f12606_0_lastIndexOf_Load8(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30) → Cond_f12606_0_lastIndexOf_Load8(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30)
Cond_f12606_0_lastIndexOf_Load9(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30) → Cond_f12606_0_lastIndexOf_Load9(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30)
Cond_f12606_0_lastIndexOf_Load10(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31) → Cond_f12606_0_lastIndexOf_Load10(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31)
Cond_f12606_0_lastIndexOf_Load11(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31) → Cond_f12606_0_lastIndexOf_Load11(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31)
Cond_f12606_0_lastIndexOf_Load12(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31) → Cond_f12606_0_lastIndexOf_Load12(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31)
Cond_f12606_0_lastIndexOf_Load13(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28) → Cond_f12606_0_lastIndexOf_Load13(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28)
Cond_f12606_0_lastIndexOf_Load14(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28) → Cond_f12606_0_lastIndexOf_Load14(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28)
Cond_f12606_0_lastIndexOf_Load15(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28) → Cond_f12606_0_lastIndexOf_Load15(x1, x3, x5, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28)
javaUtilEx.LinkedList(x1, x2) → javaUtilEx.LinkedList(x2)
javaUtilEx.LinkedList$Entry(x1, x2, x3) → javaUtilEx.LinkedList$Entry(x2, x3)
javaUtilEx.Content(x1) → javaUtilEx.Content

Filtered duplicate terms:


f12606_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20) → f12606_0_lastIndexOf_Load(x2, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20)
Cond_f12606_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26) → Cond_f12606_0_lastIndexOf_Load(x1, x3, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26)
f13358_0_equals_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24) → f13358_0_equals_Load(x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24)
Cond_f12606_0_lastIndexOf_Load1(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26) → Cond_f12606_0_lastIndexOf_Load1(x1, x3, x5, x6, x7, x8, x9, x10, x11, x12, x14, x15, x17, x18, x19, x21, x22, x23, x24, x25, x26)
f13368_0_equals_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18) → f13368_0_equals_Load(x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18)
Cond_f12606_0_lastIndexOf_Load2(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25) → Cond_f12606_0_lastIndexOf_Load2(x1, x3, x5, x6, x7, x8, x9, x10, x11, x14, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25)
f13376_0_equals_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19) → f13376_0_equals_Load(x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19)
Cond_f12606_0_lastIndexOf_Load3(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25) → Cond_f12606_0_lastIndexOf_Load3(x1, x3, x5, x7, x9, x10, x11, x14, x17, x18, x19, x21, x22, x23, x24, x25)
f13384_0_equals_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) → f13384_0_equals_Load(x2, x3, x4, x5, x6, x7, x8, x9, x10)
Cond_f12606_0_lastIndexOf_Load4(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25) → Cond_f12606_0_lastIndexOf_Load4(x1, x3, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25)
Cond_f12606_0_lastIndexOf_Load5(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25) → Cond_f12606_0_lastIndexOf_Load5(x1, x3, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25)
Cond_f12606_0_lastIndexOf_Load6(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25) → Cond_f12606_0_lastIndexOf_Load6(x1, x3, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25)
Cond_f12606_0_lastIndexOf_Load7(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27) → Cond_f12606_0_lastIndexOf_Load7(x1, x3, x5, x6, x7, x8, x9, x10, x11, x12, x14, x15, x17, x18, x19, x21, x22, x23, x24, x25, x26, x27)
Cond_f12606_0_lastIndexOf_Load8(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27) → Cond_f12606_0_lastIndexOf_Load8(x1, x3, x5, x6, x7, x8, x9, x10, x11, x12, x14, x15, x17, x18, x19, x21, x22, x23, x24, x25, x26, x27)
Cond_f12606_0_lastIndexOf_Load9(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27) → Cond_f12606_0_lastIndexOf_Load9(x1, x3, x5, x6, x7, x8, x9, x10, x11, x12, x14, x15, x17, x18, x19, x21, x22, x23, x24, x25, x26, x27)
Cond_f12606_0_lastIndexOf_Load10(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28) → Cond_f12606_0_lastIndexOf_Load10(x1, x3, x5, x6, x7, x8, x9, x10, x11, x14, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28)
Cond_f12606_0_lastIndexOf_Load11(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28) → Cond_f12606_0_lastIndexOf_Load11(x1, x3, x5, x6, x7, x8, x9, x10, x11, x14, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28)
Cond_f12606_0_lastIndexOf_Load12(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28) → Cond_f12606_0_lastIndexOf_Load12(x1, x3, x5, x6, x7, x8, x9, x10, x11, x14, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28)
Cond_f12606_0_lastIndexOf_Load13(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25) → Cond_f12606_0_lastIndexOf_Load13(x1, x3, x5, x7, x9, x10, x11, x14, x17, x18, x19, x21, x22, x23, x24, x25)
Cond_f12606_0_lastIndexOf_Load14(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25) → Cond_f12606_0_lastIndexOf_Load14(x1, x3, x5, x7, x9, x10, x11, x14, x17, x18, x19, x21, x22, x23, x24, x25)
Cond_f12606_0_lastIndexOf_Load15(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24, x25) → Cond_f12606_0_lastIndexOf_Load15(x1, x3, x5, x7, x9, x10, x11, x14, x17, x18, x19, x21, x22, x23, x24, x25)

Filtered unneeded terms:


Cond_f12606_0_lastIndexOf_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23, x24) → Cond_f12606_0_lastIndexOf_Load(x1)
Cond_f12606_0_lastIndexOf_Load1(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21) → Cond_f12606_0_lastIndexOf_Load1(x1)
Cond_f12606_0_lastIndexOf_Load2(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20) → Cond_f12606_0_lastIndexOf_Load2(x1)
Cond_f12606_0_lastIndexOf_Load3(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16) → Cond_f12606_0_lastIndexOf_Load3(x1)
Cond_f12606_0_lastIndexOf_Load4(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23) → Cond_f12606_0_lastIndexOf_Load4(x1, x2, x4, x5, x6, x7, x8, x9, x10, x11, x13, x14, x16, x18, x19, x20, x21, x22, x23)
Cond_f12606_0_lastIndexOf_Load5(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23) → Cond_f12606_0_lastIndexOf_Load5(x1, x2, x4, x5, x6, x7, x8, x9, x10, x11, x13, x14, x16, x18, x19, x20, x21, x22, x23)
Cond_f12606_0_lastIndexOf_Load6(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23) → Cond_f12606_0_lastIndexOf_Load6(x1, x2, x4, x5, x6, x7, x8, x9, x10, x11, x13, x14, x16, x18, x19, x20, x21, x22, x23)
Cond_f12606_0_lastIndexOf_Load7(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22) → Cond_f12606_0_lastIndexOf_Load7(x1, x2, x4, x5, x6, x10, x11, x12, x15, x16, x17, x18, x19, x20, x21, x22)
Cond_f12606_0_lastIndexOf_Load8(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22) → Cond_f12606_0_lastIndexOf_Load8(x1, x2, x4, x5, x6, x10, x11, x12, x15, x16, x17, x18, x19, x20, x21, x22)
Cond_f12606_0_lastIndexOf_Load9(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22) → Cond_f12606_0_lastIndexOf_Load9(x1, x2, x4, x5, x6, x10, x11, x12, x15, x16, x17, x18, x19, x20, x21, x22)
Cond_f12606_0_lastIndexOf_Load10(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23) → Cond_f12606_0_lastIndexOf_Load10(x1, x2, x7, x8, x9, x11, x13, x15, x16, x17, x18, x19, x20, x21, x22, x23)
Cond_f12606_0_lastIndexOf_Load11(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23) → Cond_f12606_0_lastIndexOf_Load11(x1, x2, x7, x8, x9, x11, x13, x15, x16, x17, x18, x19, x20, x21, x22, x23)
Cond_f12606_0_lastIndexOf_Load12(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18, x19, x20, x21, x22, x23) → Cond_f12606_0_lastIndexOf_Load12(x1, x2, x7, x8, x9, x11, x13, x15, x16, x17, x18, x19, x20, x21, x22, x23)
Cond_f12606_0_lastIndexOf_Load13(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16) → Cond_f12606_0_lastIndexOf_Load13(x1, x2, x11, x12, x13, x14, x15, x16)
Cond_f12606_0_lastIndexOf_Load14(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16) → Cond_f12606_0_lastIndexOf_Load14(x1, x2, x11, x12, x13, x14, x15, x16)
Cond_f12606_0_lastIndexOf_Load15(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16) → Cond_f12606_0_lastIndexOf_Load15(x1, x2, x11, x12, x13, x14, x15, x16)

Prepared 16 rules for path length conversion:

P rules:
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(x1, java.lang.Object(x2))), x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18) → f13358_0_equals_Load(java.lang.Object(x20), java.lang.Object(x21), java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x22))), java.lang.Object(x23), java.lang.Object(javaUtilEx.LinkedList$Entry(x1, java.lang.Object(x2))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), x19, x3, x4, x5, x6, x7, x8, x9, x10, x12, x13, x17, x11, x14, -(x15, 1), -(x16, 1), -(x18, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x7, 0)), >(x3, 0)), >(x18, 0)), >(x16, 0)), >(x15, 0)), >(x14, 0)), >(x11, 0)), >(x13, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(x0, java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(x2, java.lang.Object(x3))), x4, x5, x6, x7, x8, x9, x10, x11, x11, x12, x13, x14, x15, x13, x16, x16) → f13368_0_equals_Load(java.lang.Object(x18), java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(x19, java.lang.Object(x20))))), java.lang.Object(x21), java.lang.Object(javaUtilEx.LinkedList$Entry(x2, java.lang.Object(x3))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(x0, java.lang.Object(x1)))))))))), x17, x4, x6, x10, x12, x5, x11, -(x7, 1), -(x8, 1), -(x9, 1), -(x13, 1), -(x16, 1)) | &&(&&(&&(&&(>(x4, 0), >(x16, 0)), >(x13, 0)), >(x10, 0)), >(x11, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(x1, java.lang.Object(x2))), x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x10, x9, x15, x12) → f13376_0_equals_Load(java.lang.Object(x17), java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x18))), java.lang.Object(x19), java.lang.Object(javaUtilEx.LinkedList$Entry(x1, java.lang.Object(x2))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), x16, x7, x8, x13, x15, x6, x14, -(x3, 1), -(x4, 1), -(x5, 1), -(x9, 1), -(x10, 1), -(x12, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x7, 0)), >(x6, 0)), >(x4, 0)), >(x3, 0)), >(x14, 0)), >(x13, 0)), >(x10, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(x0, java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(x2, java.lang.Object(x3))), x4, x5, x6, x7, x4, x6, x8, x9, x10, x11, x8, x12, x9, x8, x11, x11) → f13384_0_equals_Load(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(x14, java.lang.Object(x15))))), java.lang.Object(x16), java.lang.Object(javaUtilEx.LinkedList$Entry(x2, java.lang.Object(x3))), java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(x0, java.lang.Object(x1)))))))))), x13, -(x4, 1), -(x6, 1), -(x8, 1), -(x11, 1)) | &&(>(x11, 0), >(x8, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(x18), x2, x3, x4, x5, x6, x7, x8, x9, x19, x11, x12, x20, -(x14, 1), x22, x16, -(x17, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x8, 0), >(x6, 0)), >(x2, 0)), >(x17, 0)), >(x15, 0)), >(x14, 0)), >(x13, 0)), >(x10, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x1), java.lang.Object(x2))), x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17, x18) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(x19), x3, x4, x5, x6, x7, x8, x9, x10, x20, x12, x13, x21, -(x15, 1), x23, x17, -(x18, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x7, 0)), >(x3, 0)), >(x18, 0)), >(x16, 0)), >(x15, 0)), >(x14, 0)), >(x11, 0)), >(x13, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(javaUtilEx.Content), java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(x18), x2, x3, x4, x5, x6, x7, x8, x9, x19, x11, x12, x20, -(x14, 1), x22, x16, -(x17, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x8, 0), >(x6, 0)), >(x2, 0)), >(x17, 0)), >(x15, 0)), >(x14, 0)), >(x13, 0)), >(x10, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x9, x10, x11, x12, x13, x11, x14, x14) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))))), java.lang.Object(x15), x2, x3, x4, x16, 0, x18, x8, x9, x19, x10, 0, 1, -(x11, 1), x23, x24, -(x14, 1)) | &&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x2, 0)), >(x14, 0)), >(x11, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x2), java.lang.Object(x3))), x4, x5, x6, x7, x8, x9, x10, x11, x11, x12, x13, x14, x15, x13, x16, x16) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(x17), x4, x5, x6, x18, 0, x20, x10, x11, x21, x12, 0, 1, -(x13, 1), x25, x26, -(x16, 1)) | &&(&&(&&(&&(>(x4, 0), >(x16, 0)), >(x13, 0)), >(x10, 0)), >(x11, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(javaUtilEx.Content), java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(javaUtilEx.Content), java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x9, x10, x11, x12, x13, x11, x14, x14) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(javaUtilEx.Content), java.lang.Object(x0)))))))))), java.lang.Object(x15), x2, x3, x4, x16, 0, x18, x8, x9, x19, x10, 0, 1, -(x11, 1), x23, x24, -(x14, 1)) | &&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x2, 0)), >(x14, 0)), >(x11, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x9, x8, x14, x11) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(x15), 0, x17, x18, x5, x6, x7, 0, x20, 1, x22, x12, x23, -(x9, 1), x25, x14, -(x11, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x6, 0)), >(x5, 0)), >(x3, 0)), >(x2, 0)), >(x13, 0)), >(x11, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x1), java.lang.Object(x2))), x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x10, x9, x15, x12) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(x16), 0, x18, x19, x6, x7, x8, 0, x21, 1, x23, x13, x24, -(x10, 1), x26, x15, -(x12, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x7, 0)), >(x6, 0)), >(x4, 0)), >(x3, 0)), >(x14, 0)), >(x13, 0)), >(x10, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(javaUtilEx.Content), java.lang.Object(x1))), x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x9, x8, x14, x11) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))), java.lang.Object(x15), 0, x17, x18, x5, x6, x7, 0, x20, 1, x22, x12, x23, -(x9, 1), x25, x14, -(x11, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(>(x9, 0), >(x8, 0)), >(x6, 0)), >(x5, 0)), >(x3, 0)), >(x2, 0)), >(x13, 0)), >(x11, 0)), >(x12, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x1))), x2, x3, x4, x5, x2, x4, x6, x7, x8, x9, x6, x10, x7, x6, x9, x9) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(x0)))))))))), java.lang.Object(x11), 0, 0, x13, 0, 0, x13, 0, 0, 1, x16, 0, 1, -(x6, 1), x18, x16, -(x9, 1)) | &&(>(x6, 0), >(x9, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x2), java.lang.Object(x3))), x4, x5, x6, x7, x4, x6, x8, x9, x10, x11, x8, x12, x9, x8, x11, x11) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(x0), java.lang.Object(x1)))))))))), java.lang.Object(x13), 0, 0, x15, 0, 0, x15, 0, 0, 1, x18, 0, 1, -(x8, 1), x20, x18, -(x11, 1)) | &&(>(x11, 0), >(x8, 0))
f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(javaUtilEx.Content), java.lang.Object(x0)))))))))), java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(javaUtilEx.Content), java.lang.Object(x1))), x2, x3, x4, x5, x2, x4, x6, x7, x8, x9, x6, x10, x7, x6, x9, x9) → f12606_0_lastIndexOf_Load(java.lang.Object(javaUtilEx.AbstractCollection(javaUtilEx.AbstractList(javaUtilEx.AbstractSequentialList(javaUtilEx.LinkedList(java.lang.Object(javaUtilEx.LinkedList$Entry(NULL, java.lang.Object(javaUtilEx.LinkedList$Entry(java.lang.Object(javaUtilEx.Content), java.lang.Object(x0)))))))))), java.lang.Object(x11), 0, 0, x13, 0, 0, x13, 0, 0, 1, x16, 0, 1, -(x6, 1), x18, x16, -(x9, 1)) | &&(>(x6, 0), >(x9, 0))

Finished conversion. Obtained 12 rules.

P rules:
f12606_0_lastIndexOf_Load(v347, v348, x85, x86, x87, x88, x89, x90, x91, x92, x93, x94, x95, x96, x97, x98, x99, x100) → f12606_0_lastIndexOf_Load(v349, v350, x85, x86, x87, x88, x89, x90, x91, x92, x102, x94, x95, x103, -(x97, 1), x104, x99, -(x100, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x98, 0), >(x97, 0)), >(x96, 0)), >(x95, 0)), >(x93, 0)), >(x91, 0)), >(x89, 0)), >(x85, 0)), >(x100, 0)), >(+(v350, 1), 1)), >(+(v349, 1), 8)), <=(v349, v347)), >(+(v348, 1), 3)), >(+(v347, 1), 8))
f12606_0_lastIndexOf_Load(v351, v352, x108, x109, x110, x111, x112, x113, x114, x115, x116, x117, x118, x119, x120, x121, x122, x123) → f12606_0_lastIndexOf_Load(v353, v354, x108, x109, x110, x111, x112, x113, x114, x115, x125, x117, x118, x126, -(x120, 1), x127, x122, -(x123, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x123, 0), >(x121, 0)), >(x120, 0)), >(x119, 0)), >(x118, 0)), >(x116, 0)), >(x114, 0)), >(x112, 0)), >(x108, 0)), >(+(v354, 1), 1)), >(+(v353, 1), 8)), <=(v353, v351)), >(+(v352, 1), 3)), >(+(v351, 1), 8))
f12606_0_lastIndexOf_Load(v355, v356, x130, x131, x132, x133, x134, x135, x136, x137, x138, x139, x140, x141, x142, x143, x144, x145) → f12606_0_lastIndexOf_Load(v357, v358, x130, x131, x132, x133, x134, x135, x136, x137, x147, x139, x140, x148, -(x142, 1), x149, x144, -(x145, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x145, 0), >(x143, 0)), >(x142, 0)), >(x141, 0)), >(x140, 0)), >(x138, 0)), >(x136, 0)), >(x134, 0)), >(x130, 0)), >(+(v358, 1), 1)), >(+(v357, 1), 8)), <=(v357, v355)), >(+(v356, 1), 3)), >(+(v355, 1), 8))
f12606_0_lastIndexOf_Load(v359, v360, x152, x153, x154, x155, x156, x157, x158, x159, x1591, x160, x161, x162, x163, x1611, x164, x1641) → f12606_0_lastIndexOf_Load(v361, v362, x152, x153, x154, x166, 0, x167, x158, x159, x168, x160, 0, 1, -(x161, 1), x169, x170, -(x164, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x164, 0), >(x161, 0)), >(x159, 0)), >(x158, 0)), >(x152, 0)), >(+(v362, 1), 1)), >(+(v361, 1), 10)), <=(v361, v359)), >(+(v360, 1), 3)), >(+(v359, 1), 10)), =(x159, x1591)), =(x161, x1611)), =(x164, x1641))
f12606_0_lastIndexOf_Load(v363, v364, x175, x176, x177, x178, x179, x180, x181, x182, x1821, x183, x184, x185, x186, x1841, x187, x1871) → f12606_0_lastIndexOf_Load(v365, v366, x175, x176, x177, x189, 0, x190, x181, x182, x191, x183, 0, 1, -(x184, 1), x192, x193, -(x187, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x187, 0), >(x184, 0)), >(x182, 0)), >(x181, 0)), >(x175, 0)), >(+(v366, 1), 1)), >(+(v365, 1), 10)), <=(v365, v363)), >(+(v364, 1), 3)), >(+(v363, 1), 10)), =(x182, x1821)), =(x184, x1841)), =(x187, x1871))
f12606_0_lastIndexOf_Load(v367, v368, x196, x197, x198, x199, x200, x201, x202, x203, x2031, x204, x205, x206, x207, x2051, x208, x2081) → f12606_0_lastIndexOf_Load(v369, v370, x196, x197, x198, x210, 0, x211, x202, x203, x212, x204, 0, 1, -(x205, 1), x213, x214, -(x208, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x208, 0), >(x205, 0)), >(x203, 0)), >(x202, 0)), >(x196, 0)), >(+(v370, 1), 1)), >(+(v369, 1), 10)), <=(v369, v367)), >(+(v368, 1), 3)), >(+(v367, 1), 10)), =(x203, x2031)), =(x205, x2051)), =(x208, x2081))
f12606_0_lastIndexOf_Load(v371, v372, x217, x218, x219, x220, x221, x222, x223, x224, x225, x226, x227, x228, x2241, x2231, x229, x2261) → f12606_0_lastIndexOf_Load(v373, v374, 0, x231, x232, x220, x221, x222, 0, x233, 1, x234, x227, x235, -(x224, 1), x236, x229, -(x226, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x228, 0), >(x227, 0)), >(x226, 0)), >(x224, 0)), >(x223, 0)), >(x221, 0)), >(x220, 0)), >(x218, 0)), >(x217, 0)), >(+(v374, 1), 1)), >(+(v373, 1), 8)), <=(v373, v371)), >(+(v372, 1), 3)), >(+(v371, 1), 8)), =(x224, x2241)), =(x223, x2231)), =(x226, x2261))
f12606_0_lastIndexOf_Load(v375, v376, x240, x241, x242, x243, x244, x245, x246, x247, x248, x249, x250, x251, x2471, x2461, x252, x2491) → f12606_0_lastIndexOf_Load(v377, v378, 0, x254, x255, x243, x244, x245, 0, x256, 1, x257, x250, x258, -(x247, 1), x259, x252, -(x249, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x251, 0), >(x250, 0)), >(x249, 0)), >(x247, 0)), >(x246, 0)), >(x244, 0)), >(x243, 0)), >(x241, 0)), >(x240, 0)), >(+(v378, 1), 1)), >(+(v377, 1), 8)), <=(v377, v375)), >(+(v376, 1), 3)), >(+(v375, 1), 8)), =(x247, x2471)), =(x246, x2461)), =(x249, x2491))
f12606_0_lastIndexOf_Load(v379, v380, x262, x263, x264, x265, x266, x267, x268, x269, x270, x271, x272, x273, x2691, x2681, x274, x2711) → f12606_0_lastIndexOf_Load(v381, v382, 0, x276, x277, x265, x266, x267, 0, x278, 1, x279, x272, x280, -(x269, 1), x281, x274, -(x271, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x273, 0), >(x272, 0)), >(x271, 0)), >(x269, 0)), >(x268, 0)), >(x266, 0)), >(x265, 0)), >(x263, 0)), >(x262, 0)), >(+(v382, 1), 1)), >(+(v381, 1), 8)), <=(v381, v379)), >(+(v380, 1), 3)), >(+(v379, 1), 8)), =(x269, x2691)), =(x268, x2681)), =(x271, x2711))
f12606_0_lastIndexOf_Load(v383, v384, x284, x285, x286, x287, x2841, x2861, x288, x289, x290, x291, x2881, x292, x2891, x2882, x2911, x2912) → f12606_0_lastIndexOf_Load(v385, v386, 0, 0, x294, 0, 0, x294, 0, 0, 1, x295, 0, 1, -(x288, 1), x296, x295, -(x291, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x291, 0), >(x288, 0)), >(+(v386, 1), 1)), >(+(v385, 1), 10)), <=(v385, v383)), >(+(v384, 1), 3)), >(+(v383, 1), 10)), =(x284, x2841)), =(x286, x2861)), =(x288, x2881)), =(x289, x2891)), =(x288, x2882)), =(x291, x2911)), =(x291, x2912))
f12606_0_lastIndexOf_Load(v387, v388, x301, x302, x303, x304, x3011, x3031, x305, x306, x307, x308, x3051, x309, x3061, x3052, x3081, x3082) → f12606_0_lastIndexOf_Load(v389, v390, 0, 0, x311, 0, 0, x311, 0, 0, 1, x312, 0, 1, -(x305, 1), x313, x312, -(x308, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x308, 0), >(x305, 0)), >(+(v390, 1), 1)), >(+(v389, 1), 10)), <=(v389, v387)), >(+(v388, 1), 3)), >(+(v387, 1), 10)), =(x301, x3011)), =(x303, x3031)), =(x305, x3051)), =(x306, x3061)), =(x305, x3052)), =(x308, x3081)), =(x308, x3082))
f12606_0_lastIndexOf_Load(v391, v392, x316, x317, x318, x319, x3161, x3181, x320, x321, x322, x323, x3201, x324, x3211, x3202, x3231, x3232) → f12606_0_lastIndexOf_Load(v393, v394, 0, 0, x326, 0, 0, x326, 0, 0, 1, x327, 0, 1, -(x320, 1), x328, x327, -(x323, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x323, 0), >(x320, 0)), >(+(v394, 1), 1)), >(+(v393, 1), 10)), <=(v393, v391)), >(+(v392, 1), 3)), >(+(v391, 1), 10)), =(x316, x3161)), =(x318, x3181)), =(x320, x3201)), =(x321, x3211)), =(x320, x3202)), =(x323, x3231)), =(x323, x3232))

(44) Obligation:

Rules:
f12606_0_lastIndexOf_Load(v347, v348, x85, x86, x87, x88, x89, x90, x91, x92, x93, x94, x95, x96, x97, x98, x99, x100) → f12606_0_lastIndexOf_Load(v349, v350, x85, x86, x87, x88, x89, x90, x91, x92, x102, x94, x95, x103, -(x97, 1), x104, x99, -(x100, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x98, 0), >(x97, 0)), >(x96, 0)), >(x95, 0)), >(x93, 0)), >(x91, 0)), >(x89, 0)), >(x85, 0)), >(x100, 0)), >(+(v350, 1), 1)), >(+(v349, 1), 8)), <=(v349, v347)), >(+(v348, 1), 3)), >(+(v347, 1), 8))
f12606_0_lastIndexOf_Load(v351, v352, x108, x109, x110, x111, x112, x113, x114, x115, x116, x117, x118, x119, x120, x121, x122, x123) → f12606_0_lastIndexOf_Load(v353, v354, x108, x109, x110, x111, x112, x113, x114, x115, x125, x117, x118, x126, -(x120, 1), x127, x122, -(x123, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x123, 0), >(x121, 0)), >(x120, 0)), >(x119, 0)), >(x118, 0)), >(x116, 0)), >(x114, 0)), >(x112, 0)), >(x108, 0)), >(+(v354, 1), 1)), >(+(v353, 1), 8)), <=(v353, v351)), >(+(v352, 1), 3)), >(+(v351, 1), 8))
f12606_0_lastIndexOf_Load(v355, v356, x130, x131, x132, x133, x134, x135, x136, x137, x138, x139, x140, x141, x142, x143, x144, x145) → f12606_0_lastIndexOf_Load(v357, v358, x130, x131, x132, x133, x134, x135, x136, x137, x147, x139, x140, x148, -(x142, 1), x149, x144, -(x145, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x145, 0), >(x143, 0)), >(x142, 0)), >(x141, 0)), >(x140, 0)), >(x138, 0)), >(x136, 0)), >(x134, 0)), >(x130, 0)), >(+(v358, 1), 1)), >(+(v357, 1), 8)), <=(v357, v355)), >(+(v356, 1), 3)), >(+(v355, 1), 8))
f12606_0_lastIndexOf_Load(v359, v360, x152, x153, x154, x155, x156, x157, x158, x159, x1591, x160, x161, x162, x163, x1611, x164, x1641) → f12606_0_lastIndexOf_Load(v361, v362, x152, x153, x154, x166, 0, x167, x158, x159, x168, x160, 0, 1, -(x161, 1), x169, x170, -(x164, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x164, 0), >(x161, 0)), >(x159, 0)), >(x158, 0)), >(x152, 0)), >(+(v362, 1), 1)), >(+(v361, 1), 10)), <=(v361, v359)), >(+(v360, 1), 3)), >(+(v359, 1), 10)), =(x159, x1591)), =(x161, x1611)), =(x164, x1641))
f12606_0_lastIndexOf_Load(v363, v364, x175, x176, x177, x178, x179, x180, x181, x182, x1821, x183, x184, x185, x186, x1841, x187, x1871) → f12606_0_lastIndexOf_Load(v365, v366, x175, x176, x177, x189, 0, x190, x181, x182, x191, x183, 0, 1, -(x184, 1), x192, x193, -(x187, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x187, 0), >(x184, 0)), >(x182, 0)), >(x181, 0)), >(x175, 0)), >(+(v366, 1), 1)), >(+(v365, 1), 10)), <=(v365, v363)), >(+(v364, 1), 3)), >(+(v363, 1), 10)), =(x182, x1821)), =(x184, x1841)), =(x187, x1871))
f12606_0_lastIndexOf_Load(v367, v368, x196, x197, x198, x199, x200, x201, x202, x203, x2031, x204, x205, x206, x207, x2051, x208, x2081) → f12606_0_lastIndexOf_Load(v369, v370, x196, x197, x198, x210, 0, x211, x202, x203, x212, x204, 0, 1, -(x205, 1), x213, x214, -(x208, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x208, 0), >(x205, 0)), >(x203, 0)), >(x202, 0)), >(x196, 0)), >(+(v370, 1), 1)), >(+(v369, 1), 10)), <=(v369, v367)), >(+(v368, 1), 3)), >(+(v367, 1), 10)), =(x203, x2031)), =(x205, x2051)), =(x208, x2081))
f12606_0_lastIndexOf_Load(v371, v372, x217, x218, x219, x220, x221, x222, x223, x224, x225, x226, x227, x228, x2241, x2231, x229, x2261) → f12606_0_lastIndexOf_Load(v373, v374, 0, x231, x232, x220, x221, x222, 0, x233, 1, x234, x227, x235, -(x224, 1), x236, x229, -(x226, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x228, 0), >(x227, 0)), >(x226, 0)), >(x224, 0)), >(x223, 0)), >(x221, 0)), >(x220, 0)), >(x218, 0)), >(x217, 0)), >(+(v374, 1), 1)), >(+(v373, 1), 8)), <=(v373, v371)), >(+(v372, 1), 3)), >(+(v371, 1), 8)), =(x224, x2241)), =(x223, x2231)), =(x226, x2261))
f12606_0_lastIndexOf_Load(v375, v376, x240, x241, x242, x243, x244, x245, x246, x247, x248, x249, x250, x251, x2471, x2461, x252, x2491) → f12606_0_lastIndexOf_Load(v377, v378, 0, x254, x255, x243, x244, x245, 0, x256, 1, x257, x250, x258, -(x247, 1), x259, x252, -(x249, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x251, 0), >(x250, 0)), >(x249, 0)), >(x247, 0)), >(x246, 0)), >(x244, 0)), >(x243, 0)), >(x241, 0)), >(x240, 0)), >(+(v378, 1), 1)), >(+(v377, 1), 8)), <=(v377, v375)), >(+(v376, 1), 3)), >(+(v375, 1), 8)), =(x247, x2471)), =(x246, x2461)), =(x249, x2491))
f12606_0_lastIndexOf_Load(v379, v380, x262, x263, x264, x265, x266, x267, x268, x269, x270, x271, x272, x273, x2691, x2681, x274, x2711) → f12606_0_lastIndexOf_Load(v381, v382, 0, x276, x277, x265, x266, x267, 0, x278, 1, x279, x272, x280, -(x269, 1), x281, x274, -(x271, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x273, 0), >(x272, 0)), >(x271, 0)), >(x269, 0)), >(x268, 0)), >(x266, 0)), >(x265, 0)), >(x263, 0)), >(x262, 0)), >(+(v382, 1), 1)), >(+(v381, 1), 8)), <=(v381, v379)), >(+(v380, 1), 3)), >(+(v379, 1), 8)), =(x269, x2691)), =(x268, x2681)), =(x271, x2711))
f12606_0_lastIndexOf_Load(v383, v384, x284, x285, x286, x287, x2841, x2861, x288, x289, x290, x291, x2881, x292, x2891, x2882, x2911, x2912) → f12606_0_lastIndexOf_Load(v385, v386, 0, 0, x294, 0, 0, x294, 0, 0, 1, x295, 0, 1, -(x288, 1), x296, x295, -(x291, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x291, 0), >(x288, 0)), >(+(v386, 1), 1)), >(+(v385, 1), 10)), <=(v385, v383)), >(+(v384, 1), 3)), >(+(v383, 1), 10)), =(x284, x2841)), =(x286, x2861)), =(x288, x2881)), =(x289, x2891)), =(x288, x2882)), =(x291, x2911)), =(x291, x2912))
f12606_0_lastIndexOf_Load(v387, v388, x301, x302, x303, x304, x3011, x3031, x305, x306, x307, x308, x3051, x309, x3061, x3052, x3081, x3082) → f12606_0_lastIndexOf_Load(v389, v390, 0, 0, x311, 0, 0, x311, 0, 0, 1, x312, 0, 1, -(x305, 1), x313, x312, -(x308, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x308, 0), >(x305, 0)), >(+(v390, 1), 1)), >(+(v389, 1), 10)), <=(v389, v387)), >(+(v388, 1), 3)), >(+(v387, 1), 10)), =(x301, x3011)), =(x303, x3031)), =(x305, x3051)), =(x306, x3061)), =(x305, x3052)), =(x308, x3081)), =(x308, x3082))
f12606_0_lastIndexOf_Load(v391, v392, x316, x317, x318, x319, x3161, x3181, x320, x321, x322, x323, x3201, x324, x3211, x3202, x3231, x3232) → f12606_0_lastIndexOf_Load(v393, v394, 0, 0, x326, 0, 0, x326, 0, 0, 1, x327, 0, 1, -(x320, 1), x328, x327, -(x323, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x323, 0), >(x320, 0)), >(+(v394, 1), 1)), >(+(v393, 1), 10)), <=(v393, v391)), >(+(v392, 1), 3)), >(+(v391, 1), 10)), =(x316, x3161)), =(x318, x3181)), =(x320, x3201)), =(x321, x3211)), =(x320, x3202)), =(x323, x3231)), =(x323, x3232))

(45) TerminationGraphProcessor (SOUND transformation)

Constructed the termination graph and obtained one non-trivial SCC.


(46) Obligation:

Rules:
f12606_0_lastIndexOf_Load(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) → f12606_0_lastIndexOf_Load(x18, x19, x2, x3, x4, x5, x6, x7, x8, x9, x20, x11, x12, x21, -(x14, 1), x22, x16, -(x17, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x15, 0), >(x14, 0)), >(x13, 0)), >(x12, 0)), >(x10, 0)), >(x8, 0)), >(x6, 0)), >(x2, 0)), >(x17, 0)), >(+(x19, 1), 1)), >(+(x18, 1), 8)), <=(x18, x0)), >(+(x1, 1), 3)), >(+(x0, 1), 8))
f12606_0_lastIndexOf_Load(x23, x24, x25, x26, x27, x28, x29, x30, x31, x32, x33, x34, x35, x36, x37, x38, x39, x40) → f12606_0_lastIndexOf_Load(x41, x42, x25, x26, x27, x28, x29, x30, x31, x32, x43, x34, x35, x44, -(x37, 1), x45, x39, -(x40, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x40, 0), >(x38, 0)), >(x37, 0)), >(x36, 0)), >(x35, 0)), >(x33, 0)), >(x31, 0)), >(x29, 0)), >(x25, 0)), >(+(x42, 1), 1)), >(+(x41, 1), 8)), <=(x41, x23)), >(+(x24, 1), 3)), >(+(x23, 1), 8))
f12606_0_lastIndexOf_Load(x46, x47, x48, x49, x50, x51, x52, x53, x54, x55, x56, x57, x58, x59, x60, x61, x62, x63) → f12606_0_lastIndexOf_Load(x64, x65, x48, x49, x50, x51, x52, x53, x54, x55, x66, x57, x58, x67, -(x60, 1), x68, x62, -(x63, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x63, 0), >(x61, 0)), >(x60, 0)), >(x59, 0)), >(x58, 0)), >(x56, 0)), >(x54, 0)), >(x52, 0)), >(x48, 0)), >(+(x65, 1), 1)), >(+(x64, 1), 8)), <=(x64, x46)), >(+(x47, 1), 3)), >(+(x46, 1), 8))

(47) PolynomialOrderProcessor (EQUIVALENT transformation)

Found the following polynomial interpretation:


[f12606_0_lastIndexOf_Load(x70, x72, x74, x76, x78, x80, x82, x84, x86, x88, x90, x92, x94, x96, x98, x100, x102, x104)] = x104

Therefore the following rule(s) have been dropped:


f12606_0_lastIndexOf_Load(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) → f12606_0_lastIndexOf_Load(x18, x19, x2, x3, x4, x5, x6, x7, x8, x9, x20, x11, x12, x21, -(x14, 1), x22, x16, -(x17, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x15, 0), >(x14, 0)), >(x13, 0)), >(x12, 0)), >(x10, 0)), >(x8, 0)), >(x6, 0)), >(x2, 0)), >(x17, 0)), >(+(x19, 1), 1)), >(+(x18, 1), 8)), <=(x18, x0)), >(+(x1, 1), 3)), >(+(x0, 1), 8))
f12606_0_lastIndexOf_Load(x23, x24, x25, x26, x27, x28, x29, x30, x31, x32, x33, x34, x35, x36, x37, x38, x39, x40) → f12606_0_lastIndexOf_Load(x41, x42, x25, x26, x27, x28, x29, x30, x31, x32, x43, x34, x35, x44, -(x37, 1), x45, x39, -(x40, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x40, 0), >(x38, 0)), >(x37, 0)), >(x36, 0)), >(x35, 0)), >(x33, 0)), >(x31, 0)), >(x29, 0)), >(x25, 0)), >(+(x42, 1), 1)), >(+(x41, 1), 8)), <=(x41, x23)), >(+(x24, 1), 3)), >(+(x23, 1), 8))
f12606_0_lastIndexOf_Load(x46, x47, x48, x49, x50, x51, x52, x53, x54, x55, x56, x57, x58, x59, x60, x61, x62, x63) → f12606_0_lastIndexOf_Load(x64, x65, x48, x49, x50, x51, x52, x53, x54, x55, x66, x57, x58, x67, -(x60, 1), x68, x62, -(x63, 1)) | &&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(&&(>(x63, 0), >(x61, 0)), >(x60, 0)), >(x59, 0)), >(x58, 0)), >(x56, 0)), >(x54, 0)), >(x52, 0)), >(x48, 0)), >(+(x65, 1), 1)), >(+(x64, 1), 8)), <=(x64, x46)), >(+(x47, 1), 3)), >(+(x46, 1), 8))

(48) YES