/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.jar /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.jar # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty termination of the given Bare JBC problem could be proven: (0) Bare JBC problem (1) BareJBCToJBCProof [EQUIVALENT, 96 ms] (2) JBC problem (3) JBCToGraph [EQUIVALENT, 3395 ms] (4) JBCTerminationGraph (5) TerminationGraphToSCCProof [SOUND, 0 ms] (6) AND (7) JBCTerminationSCC (8) SCCToIRSProof [SOUND, 288 ms] (9) IRSwT (10) IRSFormatTransformerProof [EQUIVALENT, 0 ms] (11) IRSwT (12) IRSwTTerminationDigraphProof [EQUIVALENT, 36 ms] (13) IRSwT (14) IntTRSCompressionProof [EQUIVALENT, 0 ms] (15) IRSwT (16) TempFilterProof [SOUND, 2181 ms] (17) IRSwT (18) IRSwTTerminationDigraphProof [EQUIVALENT, 0 ms] (19) IRSwT (20) IntTRSUnneededArgumentFilterProof [EQUIVALENT, 0 ms] (21) IRSwT (22) TempFilterProof [SOUND, 1 ms] (23) IRSwT (24) IRSwTToQDPProof [SOUND, 0 ms] (25) QDP (26) QDPSizeChangeProof [EQUIVALENT, 0 ms] (27) YES (28) JBCTerminationSCC (29) SCCToIRSProof [SOUND, 190 ms] (30) IRSwT (31) IRSFormatTransformerProof [EQUIVALENT, 0 ms] (32) IRSwT (33) IRSwTTerminationDigraphProof [EQUIVALENT, 48 ms] (34) IRSwT (35) IntTRSCompressionProof [EQUIVALENT, 3 ms] (36) IRSwT (37) TempFilterProof [SOUND, 29 ms] (38) IRSwT (39) IRSwTToQDPProof [SOUND, 1 ms] (40) QDP (41) QDPSizeChangeProof [EQUIVALENT, 0 ms] (42) YES (43) JBCTerminationSCC (44) SCCToIRSProof [SOUND, 783 ms] (45) IRSwT (46) IRSFormatTransformerProof [EQUIVALENT, 0 ms] (47) IRSwT (48) IRSwTTerminationDigraphProof [EQUIVALENT, 14 ms] (49) IRSwT (50) IntTRSCompressionProof [EQUIVALENT, 2 ms] (51) IRSwT (52) TempFilterProof [SOUND, 15 ms] (53) IntTRS (54) RankingReductionPairProof [EQUIVALENT, 7 ms] (55) YES (56) JBCTerminationSCC (57) SCCToIRSProof [SOUND, 309 ms] (58) IRSwT (59) IRSFormatTransformerProof [EQUIVALENT, 0 ms] (60) IRSwT (61) IRSwTTerminationDigraphProof [EQUIVALENT, 47 ms] (62) IRSwT (63) IntTRSCompressionProof [EQUIVALENT, 0 ms] (64) IRSwT (65) TempFilterProof [SOUND, 741 ms] (66) IRSwT (67) IRSwTTerminationDigraphProof [EQUIVALENT, 0 ms] (68) IRSwT (69) IntTRSUnneededArgumentFilterProof [EQUIVALENT, 0 ms] (70) IRSwT (71) TempFilterProof [SOUND, 1 ms] (72) IRSwT (73) IRSwTToQDPProof [SOUND, 0 ms] (74) QDP (75) QDPSizeChangeProof [EQUIVALENT, 0 ms] (76) YES (77) JBCTerminationSCC (78) SCCToIRSProof [SOUND, 65 ms] (79) IRSwT (80) IRSFormatTransformerProof [EQUIVALENT, 0 ms] (81) IRSwT (82) IRSwTTerminationDigraphProof [EQUIVALENT, 30 ms] (83) IRSwT (84) IntTRSCompressionProof [EQUIVALENT, 1 ms] (85) IRSwT (86) TempFilterProof [SOUND, 54 ms] (87) IntTRS (88) RankingReductionPairProof [EQUIVALENT, 28 ms] (89) YES ---------------------------------------- (0) Obligation: need to prove termination of the following 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 Collection * interface, to minimize the effort required to implement this interface.

* * To implement an unmodifiable collection, the programmer needs only to * extend this class and provide implementations for the iterator and * size methods. (The iterator returned by the iterator * method must implement hasNext and next.)

* * To implement a modifiable collection, the programmer must additionally * override this class's add method (which otherwise throws an * UnsupportedOperationException), and the iterator returned by the * iterator method must additionally implement its remove * method.

* * The programmer should generally provide a void (no argument) and * Collection constructor, as per the recommendation in the * Collection interface specification.

* * 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.

* * This class is a member of the * * Java Collections Framework. * * @author Josh Bloch * @author Neal Gafter * @see Collection * @since 1.2 */ public abstract class AbstractCollection implements Collection { /** * 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 iterator(); public abstract int size(); /** * {@inheritDoc} * *

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

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 = 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} * *

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

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. * *

Note that this implementation throws an * UnsupportedOperationException if the iterator returned by this * collection's iterator method does not implement the remove * method and this collection contains the specified object. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean remove(Object o) { Iterator 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} * *

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 true is returned, otherwise false. * * @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} * *

This implementation iterates over the specified collection, and adds * each object returned by the iterator to this collection, in turn. * *

Note that this implementation will throw an * UnsupportedOperationException unless add 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 c) { boolean modified = false; Iterator e = c.iterator(); while (e.hasNext()) { if (add(e.next())) modified = true; } return modified; } /** * {@inheritDoc} * *

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 remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove 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} * *

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 remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove 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 = iterator(); while (e.hasNext()) { if (!c.contains(e.next())) { e.remove(); modified = true; } } return modified; } /** * {@inheritDoc} * *

This implementation iterates over this collection, removing each * element using the Iterator.remove operation. Most * implementations will probably choose to override this method for * efficiency. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by this * collection's iterator method does not implement the * remove method and this collection is non-empty. * * @throws UnsupportedOperationException {@inheritDoc} */ public void clear() { Iterator 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 * ("[]"). Adjacent elements are separated by the characters * ", " (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 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; import javaUtilEx.Map.Entry; /** * This class provides a skeletal implementation of the Map * interface, to minimize the effort required to implement this interface. * *

To implement an unmodifiable map, the programmer needs only to extend this * class and provide an implementation for the entrySet method, which * returns a set-view of the map's mappings. Typically, the returned set * will, in turn, be implemented atop AbstractSet. This set should * not support the add or remove methods, and its iterator * should not support the remove method. * *

To implement a modifiable map, the programmer must additionally override * this class's put method (which otherwise throws an * UnsupportedOperationException), and the iterator returned by * entrySet().iterator() must additionally implement its * remove method. * *

The programmer should generally provide a void (no argument) and map * constructor, as per the recommendation in the Map interface * specification. * *

The documentation for each non-abstract method in this class describes its * implementation in detail. Each of these methods may be overridden if the * map being implemented admits a more efficient implementation. * *

This class is a member of the * * Java Collections Framework. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Josh Bloch * @author Neal Gafter * @see Map * @see Collection * @since 1.2 */ public abstract class AbstractMap implements Map { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected AbstractMap() { } // Query Operations /** * {@inheritDoc} * *

This implementation returns entrySet().size(). */ public int size() { return entrySet().size(); } /** * {@inheritDoc} * *

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

This implementation iterates over entrySet() searching * for an entry with the specified value. If such an entry is found, * true is returned. If the iteration terminates without * finding such an entry, false is returned. Note that this * implementation requires linear time in the size of the map. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean containsValue(Object value) { Iterator> i = entrySet().iterator(); if (value==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getValue()==null) return true; } } else { while (i.hasNext()) { Entry e = i.next(); if (value.equals(e.getValue())) return true; } } return false; } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching * for an entry with the specified key. If such an entry is found, * true is returned. If the iteration terminates without * finding such an entry, false is returned. Note that this * implementation requires linear time in the size of the map; many * implementations will override this method. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean containsKey(Object key) { Iterator> i = entrySet().iterator(); if (key==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) return true; } } else { while (i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) return true; } } return false; } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching * for an entry with the specified key. If such an entry is found, * the entry's value is returned. If the iteration terminates without * finding such an entry, null is returned. Note that this * implementation requires linear time in the size of the map; many * implementations will override this method. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public V get(Object key) { Iterator> i = entrySet().iterator(); if (key==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) return e.getValue(); } } else { while (i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) return e.getValue(); } } return null; } // Modification Operations /** * {@inheritDoc} * *

This implementation always throws an * UnsupportedOperationException. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} */ public V put(K key, V value) { throw new UnsupportedOperationException(); } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching for an * entry with the specified key. If such an entry is found, its value is * obtained with its getValue operation, the entry is removed * from the collection (and the backing map) with the iterator's * remove operation, and the saved value is returned. If the * iteration terminates without finding such an entry, null is * returned. Note that this implementation requires linear time in the * size of the map; many implementations will override this method. * *

Note that this implementation throws an * UnsupportedOperationException if the entrySet * iterator does not support the remove method and this map * contains a mapping for the specified key. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public V remove(Object key) { Iterator> i = entrySet().iterator(); Entry correctEntry = null; if (key==null) { while (correctEntry==null && i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) correctEntry = e; } } else { while (correctEntry==null && i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) correctEntry = e; } } V oldValue = null; if (correctEntry !=null) { oldValue = correctEntry.getValue(); i.remove(); } return oldValue; } // Bulk Operations /** * {@inheritDoc} * *

This implementation iterates over the specified map's * entrySet() collection, and calls this map's put * operation once for each entry returned by the iteration. * *

Note that this implementation throws an * UnsupportedOperationException if this map does not support * the put operation and the specified map is nonempty. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} */ public void putAll(Map m) { Iterator it = m.entrySet().iterator(); while (it.hasNext()) { Map.Entry e = (Map.Entry) it.next(); put((K) e.getKey(), (V) e.getValue()); } } /** * {@inheritDoc} * *

This implementation calls entrySet().clear(). * *

Note that this implementation throws an * UnsupportedOperationException if the entrySet * does not support the clear operation. * * @throws UnsupportedOperationException {@inheritDoc} */ public void clear() { entrySet().clear(); } // Views /** * Each of these fields are initialized to contain an instance of the * appropriate view the first time this view is requested. The views are * stateless, so there's no reason to create more than one of each. */ transient volatile Set keySet = null; transient volatile Collection values = null; /** * {@inheritDoc} * *

This implementation returns a set that subclasses {@link AbstractSet}. * The subclass's iterator method returns a "wrapper object" over this * map's entrySet() iterator. The size method * delegates to this map's size method and the * contains method delegates to this map's * containsKey method. * *

The set is created the first time this method is called, * and returned in response to all subsequent calls. No synchronization * is performed, so there is a slight chance that multiple calls to this * method will not all return the same set. */ public Set keySet() { if (keySet == null) { keySet = new AbstractSet() { public Iterator iterator() { return new Iterator() { private Iterator> i = entrySet().iterator(); public boolean hasNext() { return i.hasNext(); } public K next() { return i.next().getKey(); } public void remove() { i.remove(); } }; } public int size() { return AbstractMap.this.size(); } public boolean isEmpty() { return AbstractMap.this.isEmpty(); } public void clear() { AbstractMap.this.clear(); } public boolean contains(Object k) { return AbstractMap.this.containsKey(k); } public Object[] toArray() { Object[] res = new Object[AbstractMap.this.size()]; Iterator> it = entrySet().iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next().getKey(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), AbstractMap.this.size()); Object[] res = a; Iterator> it = entrySet().iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next().getKey(); return a; } }; } return keySet; } /** * {@inheritDoc} * *

This implementation returns a collection that subclasses {@link * AbstractCollection}. The subclass's iterator method returns a * "wrapper object" over this map's entrySet() iterator. * The size method delegates to this map's size * method and the contains method delegates to this map's * containsValue method. * *

The collection is created the first time this method is called, and * returned in response to all subsequent calls. No synchronization is * performed, so there is a slight chance that multiple calls to this * method will not all return the same collection. */ public Collection values() { if (values == null) { values = new AbstractCollection() { public Iterator iterator() { return new Iterator() { private Iterator> i = entrySet().iterator(); public boolean hasNext() { return i.hasNext(); } public V next() { return i.next().getValue(); } public void remove() { i.remove(); } }; } public int size() { return AbstractMap.this.size(); } public boolean isEmpty() { return AbstractMap.this.isEmpty(); } public void clear() { AbstractMap.this.clear(); } public boolean contains(Object v) { return AbstractMap.this.containsValue(v); } }; } return values; } public abstract Set> entrySet(); // Comparison and hashing /** * Compares the specified object with this map for equality. Returns * true if the given object is also a map and the two maps * represent the same mappings. More formally, two maps m1 and * m2 represent the same mappings if * m1.entrySet().equals(m2.entrySet()). This ensures that the * equals method works properly across different implementations * of the Map interface. * *

This implementation first checks if the specified object is this map; * if so it returns true. Then, it checks if the specified * object is a map whose size is identical to the size of this map; if * not, it returns false. If so, it iterates over this map's * entrySet collection, and checks that the specified map * contains each mapping that this map contains. If the specified map * fails to contain such a mapping, false is returned. If the * iteration completes, true is returned. * * @param o object to be compared for equality with this map * @return true if the specified object is equal to this map */ public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Map)) return false; Map m = (Map) o; if (m.size() != size()) return false; try { Iterator> i = entrySet().iterator(); while (i.hasNext()) { Entry e = i.next(); K key = e.getKey(); V value = e.getValue(); if (value == null) { if (!(m.get(key)==null && m.containsKey(key))) return false; } else { if (!value.equals(m.get(key))) return false; } } } catch (ClassCastException unused) { return false; } catch (NullPointerException unused) { return false; } return true; } /** * Returns the hash code value for this map. The hash code of a map is * defined to be the sum of the hash codes of each entry in the map's * entrySet() view. This ensures that m1.equals(m2) * implies that m1.hashCode()==m2.hashCode() for any two maps * m1 and m2, as required by the general contract of * {@link Object#hashCode}. * *

This implementation iterates over entrySet(), calling * {@link Map.Entry#hashCode hashCode()} on each element (entry) in the * set, and adding up the results. * * @return the hash code value for this map * @see Map.Entry#hashCode() * @see Object#equals(Object) * @see Set#equals(Object) */ public int hashCode() { int h = 0; Iterator> i = entrySet().iterator(); while (i.hasNext()) h += i.next().hashCode(); return h; } /** * Returns a string representation of this map. The string representation * consists of a list of key-value mappings in the order returned by the * map's entrySet view's iterator, enclosed in braces * ("{}"). Adjacent mappings are separated by the characters * ", " (comma and space). Each key-value mapping is rendered as * the key followed by an equals sign ("=") followed by the * associated value. Keys and values are converted to strings as by * {@link String#valueOf(Object)}. * * @return a string representation of this map */ public String toString() { Iterator> i = entrySet().iterator(); if (! i.hasNext()) return "{}"; StringBuilder sb = new StringBuilder(); sb.append('{'); for (;;) { Entry e = i.next(); K key = e.getKey(); V value = e.getValue(); sb.append(key == this ? "(this Map)" : key); sb.append('='); sb.append(value == this ? "(this Map)" : value); if (! i.hasNext()) return sb.append('}').toString(); sb.append(", "); } } /** * Returns a shallow copy of this AbstractMap instance: the keys * and values themselves are not cloned. * * @return a shallow copy of this map */ protected Object clone() throws CloneNotSupportedException { AbstractMap result = (AbstractMap)super.clone(); result.keySet = null; result.values = null; return result; } /** * Utility method for SimpleEntry and SimpleImmutableEntry. * Test for equality, checking for nulls. */ private static boolean eq(Object o1, Object o2) { return o1 == null ? o2 == null : o1.equals(o2); } // Implementation Note: SimpleEntry and SimpleImmutableEntry // are distinct unrelated classes, even though they share // some code. Since you can't add or subtract final-ness // of a field in a subclass, they can't share representations, // and the amount of duplicated code is too small to warrant // exposing a common abstract class. /** * An Entry maintaining a key and a value. The value may be * changed using the setValue method. This class * facilitates the process of building custom map * implementations. For example, it may be convenient to return * arrays of SimpleEntry instances in method * Map.entrySet().toArray. * * @since 1.6 */ public static class SimpleEntry implements Entry, java.io.Serializable { private static final long serialVersionUID = -8499721149061103585L; private final K key; private V value; /** * Creates an entry representing a mapping from the specified * key to the specified value. * * @param key the key represented by this entry * @param value the value represented by this entry */ public SimpleEntry(K key, V value) { this.key = key; this.value = value; } /** * Creates an entry representing the same mapping as the * specified entry. * * @param entry the entry to copy */ public SimpleEntry(Entry entry) { this.key = entry.getKey(); this.value = entry.getValue(); } /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry */ public K getKey() { return key; } /** * Returns the value corresponding to this entry. * * @return the value corresponding to this entry */ public V getValue() { return value; } /** * Replaces the value corresponding to this entry with the specified * value. * * @param value new value to be stored in this entry * @return the old value corresponding to the entry */ public V setValue(V value) { V oldValue = this.value; this.value = value; return oldValue; } /** * Compares the specified object with this entry for equality. * Returns {@code true} if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries {@code e1} and {@code e2} represent the same mapping * if

         *   (e1.getKey()==null ?
         *    e2.getKey()==null :
         *    e1.getKey().equals(e2.getKey()))
         *   &&
         *   (e1.getValue()==null ?
         *    e2.getValue()==null :
         *    e1.getValue().equals(e2.getValue()))
* This ensures that the {@code equals} method works properly across * different implementations of the {@code Map.Entry} interface. * * @param o object to be compared for equality with this map entry * @return {@code true} if the specified object is equal to this map * entry * @see #hashCode */ public boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; return eq(key, e.getKey()) && eq(value, e.getValue()); } /** * Returns the hash code value for this map entry. The hash code * of a map entry {@code e} is defined to be:
         *   (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *   (e.getValue()==null ? 0 : e.getValue().hashCode())
* This ensures that {@code e1.equals(e2)} implies that * {@code e1.hashCode()==e2.hashCode()} for any two Entries * {@code e1} and {@code e2}, as required by the general * contract of {@link Object#hashCode}. * * @return the hash code value for this map entry * @see #equals */ public int hashCode() { return (key == null ? 0 : key.hashCode()) ^ (value == null ? 0 : value.hashCode()); } /** * Returns a String representation of this map entry. This * implementation returns the string representation of this * entry's key followed by the equals character ("=") * followed by the string representation of this entry's value. * * @return a String representation of this map entry */ public String toString() { return key + "=" + value; } } /** * An Entry maintaining an immutable key and value. This class * does not support method setValue. This class may be * convenient in methods that return thread-safe snapshots of * key-value mappings. * * @since 1.6 */ public static class SimpleImmutableEntry implements Entry, java.io.Serializable { private static final long serialVersionUID = 7138329143949025153L; private final K key; private final V value; /** * Creates an entry representing a mapping from the specified * key to the specified value. * * @param key the key represented by this entry * @param value the value represented by this entry */ public SimpleImmutableEntry(K key, V value) { this.key = key; this.value = value; } /** * Creates an entry representing the same mapping as the * specified entry. * * @param entry the entry to copy */ public SimpleImmutableEntry(Entry entry) { this.key = entry.getKey(); this.value = entry.getValue(); } /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry */ public K getKey() { return key; } /** * Returns the value corresponding to this entry. * * @return the value corresponding to this entry */ public V getValue() { return value; } /** * Replaces the value corresponding to this entry with the specified * value (optional operation). This implementation simply throws * UnsupportedOperationException, as this class implements * an immutable map entry. * * @param value new value to be stored in this entry * @return (Does not return) * @throws UnsupportedOperationException always */ public V setValue(V value) { throw new UnsupportedOperationException(); } /** * Compares the specified object with this entry for equality. * Returns {@code true} if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries {@code e1} and {@code e2} represent the same mapping * if
         *   (e1.getKey()==null ?
         *    e2.getKey()==null :
         *    e1.getKey().equals(e2.getKey()))
         *   &&
         *   (e1.getValue()==null ?
         *    e2.getValue()==null :
         *    e1.getValue().equals(e2.getValue()))
* This ensures that the {@code equals} method works properly across * different implementations of the {@code Map.Entry} interface. * * @param o object to be compared for equality with this map entry * @return {@code true} if the specified object is equal to this map * entry * @see #hashCode */ public boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; return eq(key, e.getKey()) && eq(value, e.getValue()); } /** * Returns the hash code value for this map entry. The hash code * of a map entry {@code e} is defined to be:
         *   (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *   (e.getValue()==null ? 0 : e.getValue().hashCode())
* This ensures that {@code e1.equals(e2)} implies that * {@code e1.hashCode()==e2.hashCode()} for any two Entries * {@code e1} and {@code e2}, as required by the general * contract of {@link Object#hashCode}. * * @return the hash code value for this map entry * @see #equals */ public int hashCode() { return (key == null ? 0 : key.hashCode()) ^ (value == null ? 0 : value.hashCode()); } /** * Returns a String representation of this map entry. This * implementation returns the string representation of this * entry's key followed by the equals character ("=") * followed by the string representation of this entry's value. * * @return a String representation of this map entry */ public String toString() { return key + "=" + value; } } } /* * 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 Set * interface to minimize the effort required to implement this * interface.

* * The process of implementing a set by extending this class is identical * to that of implementing a Collection by extending AbstractCollection, * except that all of the methods and constructors in subclasses of this * class must obey the additional constraints imposed by the Set * interface (for instance, the add method must not permit addition of * multiple instances of an object to a set).

* * Note that this class does not override any of the implementations from * the AbstractCollection class. It merely adds implementations * for equals and hashCode.

* * This class is a member of the * * Java Collections Framework. * * @param the type of elements maintained by this set * * @author Josh Bloch * @author Neal Gafter * @see Collection * @see AbstractCollection * @see Set * @since 1.2 */ public abstract class AbstractSet extends AbstractCollection implements Set { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected AbstractSet() { } // Comparison and hashing /** * Compares the specified object with this set for equality. Returns * true if the given object is also a set, the two sets have * the same size, and every member of the given set is contained in * this set. This ensures that the equals method works * properly across different implementations of the Set * interface.

* * This implementation first checks if the specified object is this * set; if so it returns true. Then, it checks if the * specified object is a set whose size is identical to the size of * this set; if not, it returns false. If so, it returns * containsAll((Collection) o). * * @param o object to be compared for equality with this set * @return true if the specified object is equal to this set */ public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Set)) return false; Collection c = (Collection) o; if (c.size() != size()) return false; try { return containsAll(c); } catch (ClassCastException unused) { return false; } catch (NullPointerException unused) { return false; } } /** * Returns the hash code value for this set. The hash code of a set is * defined to be the sum of the hash codes of the elements in the set, * where the hash code of a null element is defined to be zero. * This ensures that s1.equals(s2) implies that * s1.hashCode()==s2.hashCode() for any two sets s1 * and s2, as required by the general contract of * {@link Object#hashCode}. * *

This implementation iterates over the set, calling the * hashCode method on each element in the set, and adding up * the results. * * @return the hash code value for this set * @see Object#equals(Object) * @see Set#equals(Object) */ public int hashCode() { int h = 0; Iterator i = iterator(); while (i.hasNext()) { E obj = i.next(); if (obj != null) h += obj.hashCode(); } return h; } /** * Removes from this set all of its elements that are contained in the * specified collection (optional operation). If the specified * collection is also a set, this operation effectively modifies this * set so that its value is the asymmetric set difference of * the two sets. * *

This implementation determines which is the smaller of this set * and the specified collection, by invoking the size * method on each. If this set has fewer elements, then the * implementation iterates over this set, checking each element * returned by the iterator in turn to see if it is contained in * the specified collection. If it is so contained, it is removed * from this set with the iterator's remove method. If * the specified collection has fewer elements, then the * implementation iterates over the specified collection, removing * from this set each element returned by the iterator, using this * set's remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove method. * * @param c collection containing elements to be removed from this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the removeAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set 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) */ public boolean removeAll(Collection c) { boolean modified = false; if (size() > c.size()) { for (Iterator i = c.iterator(); i.hasNext(); ) modified |= remove(i.next()); } else { for (Iterator i = iterator(); i.hasNext(); ) { if (c.contains(i.next())) { i.remove(); modified = true; } } } return modified; } } /* * 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 collection hierarchy. A collection * represents a group of objects, known as its elements. Some * collections allow duplicate elements and others do not. Some are ordered * and others unordered. The JDK does not provide any direct * implementations of this interface: it provides implementations of more * specific subinterfaces like Set and List. This interface * is typically used to pass collections around and manipulate them where * maximum generality is desired. * *

Bags or multisets (unordered collections that may contain * duplicate elements) should implement this interface directly. * *

All general-purpose Collection implementation classes (which * typically implement Collection 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 Collection, 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 Collection * implementations in the Java platform libraries comply. * *

The "destructive" methods contained in this interface, that is, the * methods that modify the collection on which they operate, are specified to * throw UnsupportedOperationException if this collection does not * support the operation. If this is the case, these methods may, but are not * required to, throw an UnsupportedOperationException 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. * *

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 * NullPointerException or ClassCastException. 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. * *

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. * *

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 true if and only if this collection * contains at least one element e such that * (o==null ? e==null : o.equals(e))." This specification should * not be construed to imply that invoking Collection.contains * with a non-null argument o will cause o.equals(e) to be * invoked for any element e. Implementations are free to implement * optimizations whereby the equals 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. * *

This interface is a member of the * * Java Collections Framework. * * @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 { // Query Operations /** * Returns the number of elements in this collection. If this collection * contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of elements in this collection */ int size(); /** * Returns true if this collection contains no elements. * * @return true if this collection contains no elements */ boolean isEmpty(); /** * Returns true if this collection contains the specified element. * More formally, returns true if and only if this collection * contains at least one element e such that * (o==null ? e==null : o.equals(e)). * * @param o element whose presence in this collection is to be tested * @return true 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 Iterator over the elements in this collection */ Iterator iterator(); // Modification Operations /** * Ensures that this collection contains the specified element (optional * operation). Returns true if this collection changed as a * result of the call. (Returns false if this collection does * not permit duplicates and already contains the specified element.)

* * 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 null 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.

* * If a collection refuses to add a particular element for any reason * other than that it already contains the element, it must throw * an exception (rather than returning false). 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 true if this collection changed as a result of the * call * @throws UnsupportedOperationException if the add 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 e such that * (o==null ? e==null : o.equals(e)), if * this collection contains one or more such elements. Returns * true 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 true 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 remove operation * is not supported by this collection */ boolean remove(Object o); // Bulk Operations /** * Returns true if this collection contains all of the elements * in the specified collection. * * @param c collection to be checked for containment in this collection * @return true 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 true if this collection changed as a result of the call * @throws UnsupportedOperationException if the addAll 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 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 true if this collection changed as a result of the * call * @throws UnsupportedOperationException if the removeAll 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 true if this collection changed as a result of the call * @throws UnsupportedOperationException if the retainAll 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 clear operation * is not supported by this collection */ void clear(); // Comparison and hashing /** * Compares the specified object with this collection for equality.

* * While the Collection interface adds no stipulations to the * general contract for the Object.equals, programmers who * implement the Collection interface "directly" (in other words, * create a class that is a Collection but is not a Set * or a List) must exercise care if they choose to override the * Object.equals. It is not necessary to do so, and the simplest * course of action is to rely on Object's implementation, but * the implementor may wish to implement a "value comparison" in place of * the default "reference comparison." (The List and * Set interfaces mandate such value comparisons.)

* * The general contract for the Object.equals method states that * equals must be symmetric (in other words, a.equals(b) if and * only if b.equals(a)). The contracts for List.equals * and Set.equals state that lists are only equal to other lists, * and sets to other sets. Thus, a custom equals method for a * collection class that implements neither the List nor * Set interface must return false 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 Set and * List interfaces.) * * @param o object to be compared for equality with this collection * @return true 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 * Collection interface adds no stipulations to the general * contract for the Object.hashCode method, programmers should * take note that any class that overrides the Object.equals * method must also override the Object.hashCode method in order * to satisfy the general contract for the Object.hashCodemethod. * In particular, c1.equals(c2) implies that * c1.hashCode()==c2.hashCode(). * * @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. *

* 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 fail-fast iterators, * as they fail quickly and cleanly, rather that risking arbitrary, * non-deterministic behavior at an undetermined time in the future. *

* Note that this exception does not always indicate that an object has * been concurrently modified by a different 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. * *

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 ConcurrentModificationException on a best-effort basis. * Therefore, it would be wrong to write a program that depended on this * exception for its correctness: ConcurrentModificationException * should be used only to detect bugs. * * @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 ConcurrentModificationException with the * specified detail message. * * @param message the detail message pertaining to this exception. */ public ConcurrentModificationException(String message) { super(message); } } /* * 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; /** * Hash table based implementation of the Map interface. This * implementation provides all of the optional map operations, and permits * null values and the null key. (The HashMap * class is roughly equivalent to Hashtable, except that it is * unsynchronized and permits nulls.) This class makes no guarantees as to * the order of the map; in particular, it does not guarantee that the order * will remain constant over time. * *

This implementation provides constant-time performance for the basic * operations (get and put), assuming the hash function * disperses the elements properly among the buckets. Iteration over * collection views requires time proportional to the "capacity" of the * HashMap instance (the number of buckets) plus its size (the number * of key-value mappings). Thus, it's very important not to set the initial * capacity too high (or the load factor too low) if iteration performance is * important. * *

An instance of HashMap has two parameters that affect its * performance: initial capacity and load factor. The * capacity is the number of buckets in the hash table, and the initial * capacity is simply the capacity at the time the hash table is created. The * load factor is a measure of how full the hash table is allowed to * get before its capacity is automatically increased. When the number of * entries in the hash table exceeds the product of the load factor and the * current capacity, the hash table is rehashed (that is, internal data * structures are rebuilt) so that the hash table has approximately twice the * number of buckets. * *

As a general rule, the default load factor (.75) offers a good tradeoff * between time and space costs. Higher values decrease the space overhead * but increase the lookup cost (reflected in most of the operations of the * HashMap class, including get and put). The * expected number of entries in the map and its load factor should be taken * into account when setting its initial capacity, so as to minimize the * number of rehash operations. If the initial capacity is greater * than the maximum number of entries divided by the load factor, no * rehash operations will ever occur. * *

If many mappings are to be stored in a HashMap instance, * creating it with a sufficiently large capacity will allow the mappings to * be stored more efficiently than letting it perform automatic rehashing as * needed to grow the table. * *

Note that this implementation is not synchronized. * If multiple threads access a hash map concurrently, and at least one of * the threads modifies the map structurally, it must be * synchronized externally. (A structural modification is any operation * that adds or deletes one or more mappings; merely changing the value * associated with a key that an instance already contains is not a * structural modification.) This is typically accomplished by * synchronizing on some object that naturally encapsulates the map. * * If no such object exists, the map should be "wrapped" using the * {@link Collections#synchronizedMap Collections.synchronizedMap} * method. This is best done at creation time, to prevent accidental * unsynchronized access to the map:

 *   Map m = Collections.synchronizedMap(new HashMap(...));
* *

The iterators returned by all of this class's "collection view methods" * are fail-fast: if the map is structurally modified at any time after * the iterator is created, in any way except through the iterator's own * remove method, 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. * *

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 ConcurrentModificationException on a best-effort basis. * Therefore, it would be wrong to write a program that depended on this * exception for its correctness: the fail-fast behavior of iterators * should be used only to detect bugs. * *

This class is a member of the * * Java Collections Framework. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Doug Lea * @author Josh Bloch * @author Arthur van Hoff * @author Neal Gafter * @see Object#hashCode() * @see Collection * @see Map * @see TreeMap * @see Hashtable * @since 1.2 */ public class HashMap extends AbstractMap implements Map, Cloneable { /** * The default initial capacity - MUST be a power of two. */ static final int DEFAULT_INITIAL_CAPACITY = 16; /** * The maximum capacity, used if a higher value is implicitly specified * by either of the constructors with arguments. * MUST be a power of two <= 1<<30. */ static final int MAXIMUM_CAPACITY = 1 << 30; /** * The load factor used when none specified in constructor. */ static final float DEFAULT_LOAD_FACTOR = 0.75f; /** * The table, resized as necessary. Length MUST Always be a power of two. */ transient Entry[] table; /** * The number of key-value mappings contained in this map. */ transient int size; /** * The next size value at which to resize (capacity * load factor). * @serial */ int threshold; /** * The load factor for the hash table. * * @serial */ final float loadFactor; /** * The number of times this HashMap has been structurally modified * Structural modifications are those that change the number of mappings in * the HashMap or otherwise modify its internal structure (e.g., * rehash). This field is used to make iterators on Collection-views of * the HashMap fail-fast. (See ConcurrentModificationException). */ transient volatile int modCount; /** * Constructs an empty HashMap with the specified initial * capacity and load factor. * * @param initialCapacity the initial capacity * @param loadFactor the load factor * @throws IllegalArgumentException if the initial capacity is negative * or the load factor is nonpositive */ public HashMap(int initialCapacity, float loadFactor) { if (initialCapacity < 0) throw new IllegalArgumentException("Illegal initial capacity: " + initialCapacity); if (initialCapacity > MAXIMUM_CAPACITY) initialCapacity = MAXIMUM_CAPACITY; if (loadFactor <= 0 || Float.isNaN(loadFactor)) throw new IllegalArgumentException("Illegal load factor: " + loadFactor); // Find a power of 2 >= initialCapacity int capacity = 1; while (capacity < initialCapacity) capacity <<= 1; this.loadFactor = loadFactor; threshold = (int)(capacity * loadFactor); table = new Entry[capacity]; init(); } /** * Constructs an empty HashMap with the specified initial * capacity and the default load factor (0.75). * * @param initialCapacity the initial capacity. * @throws IllegalArgumentException if the initial capacity is negative. */ public HashMap(int initialCapacity) { this(initialCapacity, DEFAULT_LOAD_FACTOR); } /** * Constructs an empty HashMap with the default initial capacity * (16) and the default load factor (0.75). */ public HashMap() { this.loadFactor = DEFAULT_LOAD_FACTOR; threshold = (int)(DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR); table = new Entry[DEFAULT_INITIAL_CAPACITY]; init(); } /** * Constructs a new HashMap with the same mappings as the * specified Map. The HashMap is created with * default load factor (0.75) and an initial capacity sufficient to * hold the mappings in the specified Map. * * @param m the map whose mappings are to be placed in this map * @throws NullPointerException if the specified map is null */ public HashMap(Map m) { this(Math.max((int) (m.size() / DEFAULT_LOAD_FACTOR) + 1, DEFAULT_INITIAL_CAPACITY), DEFAULT_LOAD_FACTOR); putAllForCreate(m); } // internal utilities /** * Initialization hook for subclasses. This method is called * in all constructors and pseudo-constructors (clone, readObject) * after HashMap has been initialized but before any entries have * been inserted. (In the absence of this method, readObject would * require explicit knowledge of subclasses.) */ void init() { } /** * Applies a supplemental hash function to a given hashCode, which * defends against poor quality hash functions. This is critical * because HashMap uses power-of-two length hash tables, that * otherwise encounter collisions for hashCodes that do not differ * in lower bits. Note: Null keys always map to hash 0, thus index 0. */ static int hash(int h) { // This function ensures that hashCodes that differ only by // constant multiples at each bit position have a bounded // number of collisions (approximately 8 at default load factor). h ^= (h >>> 20) ^ (h >>> 12); return h ^ (h >>> 7) ^ (h >>> 4); } /** * Returns index for hash code h. */ static int indexFor(int h, int length) { return h & (length-1); } /** * Returns the number of key-value mappings in this map. * * @return the number of key-value mappings in this map */ public int size() { return size; } /** * Returns true if this map contains no key-value mappings. * * @return true if this map contains no key-value mappings */ public boolean isEmpty() { return size == 0; } /** * Returns the value to which the specified key is mapped, * or {@code null} if this map contains no mapping for the key. * *

More formally, if this map contains a mapping from a key * {@code k} to a value {@code v} such that {@code (key==null ? k==null : * key.equals(k))}, then this method returns {@code v}; otherwise * it returns {@code null}. (There can be at most one such mapping.) * *

A return value of {@code null} does not necessarily * indicate that the map contains no mapping for the key; it's also * possible that the map explicitly maps the key to {@code null}. * The {@link #containsKey containsKey} operation may be used to * distinguish these two cases. * * @see #put(Object, Object) */ public V get(Object key) { if (key == null) return getForNullKey(); int hash = hash(key.hashCode()); for (Entry e = table[indexFor(hash, table.length)]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || key.equals(k))) return e.value; } return null; } /** * Offloaded version of get() to look up null keys. Null keys map * to index 0. This null case is split out into separate methods * for the sake of performance in the two most commonly used * operations (get and put), but incorporated with conditionals in * others. */ private V getForNullKey() { for (Entry e = table[0]; e != null; e = e.next) { if (e.key == null) return e.value; } return null; } /** * Returns true if this map contains a mapping for the * specified key. * * @param key The key whose presence in this map is to be tested * @return true if this map contains a mapping for the specified * key. */ public boolean containsKey(Object key) { return getEntry(key) != null; } /** * Returns the entry associated with the specified key in the * HashMap. Returns null if the HashMap contains no mapping * for the key. */ final Entry getEntry(Object key) { int hash = (key == null) ? 0 : hash(key.hashCode()); for (Entry e = table[indexFor(hash, table.length)]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) return e; } return null; } /** * Associates the specified value with the specified key in this map. * If the map previously contained a mapping for the key, the old * value is replaced. * * @param key key with which the specified value is to be associated * @param value value to be associated with the specified key * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key.) */ public V put(K key, V value) { if (key == null) return putForNullKey(value); int hash = hash(key.hashCode()); int i = indexFor(hash, table.length); for (Entry e = table[i]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || key.equals(k))) { V oldValue = e.value; e.value = value; e.recordAccess(this); return oldValue; } } modCount++; addEntry(hash, key, value, i); return null; } /** * Offloaded version of put for null keys */ private V putForNullKey(V value) { for (Entry e = table[0]; e != null; e = e.next) { if (e.key == null) { V oldValue = e.value; e.value = value; e.recordAccess(this); return oldValue; } } modCount++; addEntry(0, null, value, 0); return null; } /** * This method is used instead of put by constructors and * pseudoconstructors (clone, readObject). It does not resize the table, * check for comodification, etc. It calls createEntry rather than * addEntry. */ private void putForCreate(K key, V value) { int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); /** * Look for preexisting entry for key. This will never happen for * clone or deserialize. It will only happen for construction if the * input Map is a sorted map whose ordering is inconsistent w/ equals. */ for (Entry e = table[i]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) { e.value = value; return; } } createEntry(hash, key, value, i); } private void putAllForCreate(Map m) { for (Iterator> i = m.entrySet().iterator(); i.hasNext(); ) { Map.Entry e = i.next(); putForCreate(e.getKey(), e.getValue()); } } /** * Rehashes the contents of this map into a new array with a * larger capacity. This method is called automatically when the * number of keys in this map reaches its threshold. * * If current capacity is MAXIMUM_CAPACITY, this method does not * resize the map, but sets threshold to Integer.MAX_VALUE. * This has the effect of preventing future calls. * * @param newCapacity the new capacity, MUST be a power of two; * must be greater than current capacity unless current * capacity is MAXIMUM_CAPACITY (in which case value * is irrelevant). */ void resize(int newCapacity) { Entry[] oldTable = table; int oldCapacity = oldTable.length; if (oldCapacity == MAXIMUM_CAPACITY) { threshold = Integer.MAX_VALUE; return; } Entry[] newTable = new Entry[newCapacity]; transfer(newTable); table = newTable; threshold = (int)(newCapacity * loadFactor); } /** * Transfers all entries from current table to newTable. */ void transfer(Entry[] newTable) { Entry[] src = table; int newCapacity = newTable.length; for (int j = 0; j < src.length; j++) { Entry e = src[j]; if (e != null) { src[j] = null; do { Entry next = e.next; int i = indexFor(e.hash, newCapacity); e.next = newTable[i]; newTable[i] = e; e = next; } while (e != null); } } } /** * Copies all of the mappings from the specified map to this map. * These mappings will replace any mappings that this map had for * any of the keys currently in the specified map. * * @param m mappings to be stored in this map * @throws NullPointerException if the specified map is null */ public void putAll(Map m) { int numKeysToBeAdded = m.size(); if (numKeysToBeAdded == 0) return; /* * Expand the map if the map if the number of mappings to be added * is greater than or equal to threshold. This is conservative; the * obvious condition is (m.size() + size) >= threshold, but this * condition could result in a map with twice the appropriate capacity, * if the keys to be added overlap with the keys already in this map. * By using the conservative calculation, we subject ourself * to at most one extra resize. */ if (numKeysToBeAdded > threshold) { int targetCapacity = (int)(numKeysToBeAdded / loadFactor + 1); if (targetCapacity > MAXIMUM_CAPACITY) targetCapacity = MAXIMUM_CAPACITY; int newCapacity = table.length; while (newCapacity < targetCapacity) newCapacity <<= 1; if (newCapacity > table.length) resize(newCapacity); } for (Iterator> i = m.entrySet().iterator(); i.hasNext(); ) { Map.Entry e = i.next(); put(e.getKey(), e.getValue()); } } /** * Removes the mapping for the specified key from this map if present. * * @param key key whose mapping is to be removed from the map * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key.) */ public V remove(Object key) { Entry e = removeEntryForKey(key); return (e == null ? null : e.value); } /** * Removes and returns the entry associated with the specified key * in the HashMap. Returns null if the HashMap contains no mapping * for this key. */ final Entry removeEntryForKey(Object key) { int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); Entry prev = table[i]; Entry e = prev; while (e != null) { Entry next = e.next; Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) { modCount++; size--; if (prev == e) table[i] = next; else prev.next = next; e.recordRemoval(this); return e; } prev = e; e = next; } return e; } /** * Special version of remove for EntrySet. */ final Entry removeMapping(Object o) { if (!(o instanceof Map.Entry)) return null; Map.Entry entry = (Map.Entry) o; Object key = entry.getKey(); int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); Entry prev = table[i]; Entry e = prev; while (e != null) { Entry next = e.next; if (e.hash == hash && e.equals(entry)) { modCount++; size--; if (prev == e) table[i] = next; else prev.next = next; e.recordRemoval(this); return e; } prev = e; e = next; } return e; } /** * Removes all of the mappings from this map. * The map will be empty after this call returns. */ public void clear() { modCount++; Entry[] tab = table; for (int i = 0; i < tab.length; i++) tab[i] = null; size = 0; } /** * Returns true if this map maps one or more keys to the * specified value. * * @param value value whose presence in this map is to be tested * @return true if this map maps one or more keys to the * specified value */ public boolean containsValue(Object value) { if (value == null) return containsNullValue(); Entry[] tab = table; for (int i = 0; i < tab.length ; i++) for (Entry e = tab[i] ; e != null ; e = e.next) if (value.equals(e.value)) return true; return false; } /** * Special-case code for containsValue with null argument */ private boolean containsNullValue() { Entry[] tab = table; for (int i = 0; i < tab.length ; i++) for (Entry e = tab[i] ; e != null ; e = e.next) if (e.value == null) return true; return false; } /** * Returns a shallow copy of this HashMap instance: the keys and * values themselves are not cloned. * * @return a shallow copy of this map */ public Object clone() { HashMap result = null; try { result = (HashMap)super.clone(); } catch (CloneNotSupportedException e) { // assert false; } result.table = new Entry[table.length]; result.entrySet = null; result.modCount = 0; result.size = 0; result.init(); result.putAllForCreate(this); return result; } static class Entry implements Map.Entry { final K key; V value; Entry next; final int hash; /** * Creates new entry. */ Entry(int h, K k, V v, Entry n) { value = v; next = n; key = k; hash = h; } public final K getKey() { return key; } public final V getValue() { return value; } public final V setValue(V newValue) { V oldValue = value; value = newValue; return oldValue; } public final boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; Object k1 = getKey(); Object k2 = e.getKey(); if (k1 == k2 || (k1 != null && k1.equals(k2))) { Object v1 = getValue(); Object v2 = e.getValue(); if (v1 == v2 || (v1 != null && v1.equals(v2))) return true; } return false; } public final int hashCode() { return (key==null ? 0 : key.hashCode()) ^ (value==null ? 0 : value.hashCode()); } public final String toString() { return getKey() + "=" + getValue(); } /** * This method is invoked whenever the value in an entry is * overwritten by an invocation of put(k,v) for a key k that's already * in the HashMap. */ void recordAccess(HashMap m) { } /** * This method is invoked whenever the entry is * removed from the table. */ void recordRemoval(HashMap m) { } } /** * Adds a new entry with the specified key, value and hash code to * the specified bucket. It is the responsibility of this * method to resize the table if appropriate. * * Subclass overrides this to alter the behavior of put method. */ void addEntry(int hash, K key, V value, int bucketIndex) { Entry e = table[bucketIndex]; table[bucketIndex] = new Entry(hash, key, value, e); if (size++ >= threshold) resize(2 * table.length); } /** * Like addEntry except that this version is used when creating entries * as part of Map construction or "pseudo-construction" (cloning, * deserialization). This version needn't worry about resizing the table. * * Subclass overrides this to alter the behavior of HashMap(Map), * clone, and readObject. */ void createEntry(int hash, K key, V value, int bucketIndex) { Entry e = table[bucketIndex]; table[bucketIndex] = new Entry(hash, key, value, e); size++; } private abstract class HashIterator implements Iterator { Entry next; // next entry to return int expectedModCount; // For fast-fail int index; // current slot Entry current; // current entry HashIterator() { expectedModCount = modCount; if (size > 0) { // advance to first entry Entry[] t = table; while (index < t.length && (next = t[index++]) == null) ; } } public final boolean hasNext() { return next != null; } final Entry nextEntry() { if (modCount != expectedModCount) throw new ConcurrentModificationException(); Entry e = next; if (e == null) throw new NoSuchElementException(); if ((next = e.next) == null) { Entry[] t = table; while (index < t.length && (next = t[index++]) == null) ; } current = e; return e; } public void remove() { if (current == null) throw new IllegalStateException(); if (modCount != expectedModCount) throw new ConcurrentModificationException(); Object k = current.key; current = null; HashMap.this.removeEntryForKey(k); expectedModCount = modCount; } } private final class ValueIterator extends HashIterator { public V next() { return nextEntry().value; } } private final class KeyIterator extends HashIterator { public K next() { return nextEntry().getKey(); } } private final class EntryIterator extends HashIterator> { public Map.Entry next() { return nextEntry(); } } // Subclass overrides these to alter behavior of views' iterator() method Iterator newKeyIterator() { return new KeyIterator(); } Iterator newValueIterator() { return new ValueIterator(); } Iterator> newEntryIterator() { return new EntryIterator(); } // Views private transient Set> entrySet = null; /** * Returns a {@link Set} view of the keys contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation), the results of * the iteration are undefined. The set supports element removal, * which removes the corresponding mapping from the map, via the * Iterator.remove, Set.remove, * removeAll, retainAll, and clear * operations. It does not support the add or addAll * operations. */ public Set keySet() { Set ks = keySet; return (ks != null ? ks : (keySet = new KeySet())); } private final class KeySet extends AbstractSet { public Iterator iterator() { return newKeyIterator(); } public int size() { return size; } public boolean contains(Object o) { return containsKey(o); } public boolean remove(Object o) { return HashMap.this.removeEntryForKey(o) != null; } public void clear() { HashMap.this.clear(); } public Object[] toArray() { Object[] res = new Object[size]; Iterator it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), size); Object[] res = a; Iterator it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return a; } } /** * Returns a {@link Collection} view of the values contained in this map. * The collection is backed by the map, so changes to the map are * reflected in the collection, and vice-versa. If the map is * modified while an iteration over the collection is in progress * (except through the iterator's own remove operation), * the results of the iteration are undefined. The collection * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Collection.remove, removeAll, * retainAll and clear operations. It does not * support the add or addAll operations. */ public Collection values() { Collection vs = values; return (vs != null ? vs : (values = new Values())); } private final class Values extends AbstractCollection { public Iterator iterator() { return newValueIterator(); } public int size() { return size; } public boolean contains(Object o) { return containsValue(o); } public void clear() { HashMap.this.clear(); } } /** * Returns a {@link Set} view of the mappings contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation, or through the * setValue operation on a map entry returned by the * iterator) the results of the iteration are undefined. The set * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Set.remove, removeAll, retainAll and * clear operations. It does not support the * add or addAll operations. * * @return a set view of the mappings contained in this map */ public Set> entrySet() { return entrySet0(); } private Set> entrySet0() { Set> es = entrySet; return es != null ? es : (entrySet = new EntrySet()); } private final class EntrySet extends AbstractSet> { public Iterator> iterator() { return newEntryIterator(); } public boolean contains(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry) o; Entry candidate = getEntry(e.getKey()); return candidate != null && candidate.equals(e); } public boolean remove(Object o) { return removeMapping(o) != null; } public int size() { return size; } public void clear() { HashMap.this.clear(); } public Object[] toArray() { Object[] res = new Object[size]; Iterator> it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), size); Object[] res = a; Iterator> it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return a; } } private static final long serialVersionUID = 362498820763181265L; } /* * 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 IllegalArgumentException with no * detail message. */ public IllegalArgumentException() { super(); } /** * Constructs an IllegalArgumentException 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. * *

Note that the detail message associated with cause is * not 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 null 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 (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * 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 null 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. * *

Note that the detail message associated with cause is * not 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 null 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 (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * 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 null 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: * *

* *

This interface is a member of the * * Java Collections Framework. * * @author Josh Bloch * @see Collection * @see ListIterator * @see Iterable * @since 1.2 */ public interface Iterator { /** * 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 juHashMapCreateIteratorValueLoop { public static void main(String[] args) { Random.args = args; HashMap m = createMap(Random.random()); Iterator it = m.values().iterator(); while (it.hasNext()) { it.next(); } } public static HashMap createMap(int n) { HashMap m = new HashMap(); while (n > 0) { Content key = new Content(Random.random()); Content val = new Content(Random.random()); m.put(key, val); n--; } return m; } } 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; /** * An object that maps keys to values. A map cannot contain duplicate keys; * each key can map to at most one value. * *

This interface takes the place of the Dictionary class, which * was a totally abstract class rather than an interface. * *

The Map interface provides three collection views, which * allow a map's contents to be viewed as a set of keys, collection of values, * or set of key-value mappings. The order of a map is defined as * the order in which the iterators on the map's collection views return their * elements. Some map implementations, like the TreeMap class, make * specific guarantees as to their order; others, like the HashMap * class, do not. * *

Note: great care must be exercised if mutable objects are used as map * keys. The behavior of a map is not specified if the value of an object is * changed in a manner that affects equals comparisons while the * object is a key in the map. A special case of this prohibition is that it * is not permissible for a map to contain itself as a key. While it is * permissible for a map to contain itself as a value, extreme caution is * advised: the equals and hashCode methods are no longer * well defined on such a map. * *

All general-purpose map implementation classes should provide two * "standard" constructors: a void (no arguments) constructor which creates an * empty map, and a constructor with a single argument of type Map, * which creates a new map with the same key-value mappings as its argument. * In effect, the latter constructor allows the user to copy any map, * producing an equivalent map of the desired class. There is no way to * enforce this recommendation (as interfaces cannot contain constructors) but * all of the general-purpose map implementations in the JDK comply. * *

The "destructive" methods contained in this interface, that is, the * methods that modify the map on which they operate, are specified to throw * UnsupportedOperationException if this map does not support the * operation. If this is the case, these methods may, but are not required * to, throw an UnsupportedOperationException if the invocation would * have no effect on the map. For example, invoking the {@link #putAll(Map)} * method on an unmodifiable map may, but is not required to, throw the * exception if the map whose mappings are to be "superimposed" is empty. * *

Some map implementations have restrictions on the keys and values they * may contain. For example, some implementations prohibit null keys and * values, and some have restrictions on the types of their keys. Attempting * to insert an ineligible key or value throws an unchecked exception, * typically NullPointerException or ClassCastException. * Attempting to query the presence of an ineligible key or value 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 key or value whose completion * would not result in the insertion of an ineligible element into the map 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. * *

This interface is a member of the * * Java Collections Framework. * *

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 #containsKey(Object) * containsKey(Object key)} method says: "returns true if and * only if this map contains a mapping for a key k such that * (key==null ? k==null : key.equals(k))." This specification should * not be construed to imply that invoking Map.containsKey * with a non-null argument key will cause key.equals(k) to * be invoked for any key k. Implementations are free to * implement optimizations whereby the equals invocation is avoided, * for example, by first comparing the hash codes of the two keys. (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. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Josh Bloch * @see HashMap * @see TreeMap * @see Hashtable * @see SortedMap * @see Collection * @see Set * @since 1.2 */ public interface Map { // Query Operations /** * Returns the number of key-value mappings in this map. If the * map contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of key-value mappings in this map */ int size(); /** * Returns true if this map contains no key-value mappings. * * @return true if this map contains no key-value mappings */ boolean isEmpty(); /** * Returns true if this map contains a mapping for the specified * key. More formally, returns true if and only if * this map contains a mapping for a key k such that * (key==null ? k==null : key.equals(k)). (There can be * at most one such mapping.) * * @param key key whose presence in this map is to be tested * @return true if this map contains a mapping for the specified * key * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this map * does not permit null keys (optional) */ boolean containsKey(Object key); /** * Returns true if this map maps one or more keys to the * specified value. More formally, returns true if and only if * this map contains at least one mapping to a value v such that * (value==null ? v==null : value.equals(v)). This operation * will probably require time linear in the map size for most * implementations of the Map interface. * * @param value value whose presence in this map is to be tested * @return true if this map maps one or more keys to the * specified value * @throws ClassCastException if the value is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified value is null and this * map does not permit null values (optional) */ boolean containsValue(Object value); /** * Returns the value to which the specified key is mapped, * or {@code null} if this map contains no mapping for the key. * *

More formally, if this map contains a mapping from a key * {@code k} to a value {@code v} such that {@code (key==null ? k==null : * key.equals(k))}, then this method returns {@code v}; otherwise * it returns {@code null}. (There can be at most one such mapping.) * *

If this map permits null values, then a return value of * {@code null} does not necessarily indicate that the map * contains no mapping for the key; it's also possible that the map * explicitly maps the key to {@code null}. The {@link #containsKey * containsKey} operation may be used to distinguish these two cases. * * @param key the key whose associated value is to be returned * @return the value to which the specified key is mapped, or * {@code null} if this map contains no mapping for the key * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this map * does not permit null keys (optional) */ V get(Object key); // Modification Operations /** * Associates the specified value with the specified key in this map * (optional operation). If the map previously contained a mapping for * the key, the old value is replaced by the specified value. (A map * m is said to contain a mapping for a key k if and only * if {@link #containsKey(Object) m.containsKey(k)} would return * true.) * * @param key key with which the specified value is to be associated * @param value value to be associated with the specified key * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key, * if the implementation supports null values.) * @throws UnsupportedOperationException if the put operation * is not supported by this map * @throws ClassCastException if the class of the specified key or value * prevents it from being stored in this map * @throws NullPointerException if the specified key or value is null * and this map does not permit null keys or values * @throws IllegalArgumentException if some property of the specified key * or value prevents it from being stored in this map */ V put(K key, V value); /** * Removes the mapping for a key from this map if it is present * (optional operation). More formally, if this map contains a mapping * from key k to value v such that * (key==null ? k==null : key.equals(k)), that mapping * is removed. (The map can contain at most one such mapping.) * *

Returns the value to which this map previously associated the key, * or null if the map contained no mapping for the key. * *

If this map permits null values, then a return value of * null does not necessarily indicate that the map * contained no mapping for the key; it's also possible that the map * explicitly mapped the key to null. * *

The map will not contain a mapping for the specified key once the * call returns. * * @param key key whose mapping is to be removed from the map * @return the previous value associated with key, or * null if there was no mapping for key. * @throws UnsupportedOperationException if the remove operation * is not supported by this map * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this * map does not permit null keys (optional) */ V remove(Object key); // Bulk Operations /** * Copies all of the mappings from the specified map to this map * (optional operation). The effect of this call is equivalent to that * of calling {@link #put(Object,Object) put(k, v)} on this map once * for each mapping from key k to value v in the * specified map. The behavior of this operation is undefined if the * specified map is modified while the operation is in progress. * * @param m mappings to be stored in this map * @throws UnsupportedOperationException if the putAll operation * is not supported by this map * @throws ClassCastException if the class of a key or value in the * specified map prevents it from being stored in this map * @throws NullPointerException if the specified map is null, or if * this map does not permit null keys or values, and the * specified map contains null keys or values * @throws IllegalArgumentException if some property of a key or value in * the specified map prevents it from being stored in this map */ void putAll(Map m); /** * Removes all of the mappings from this map (optional operation). * The map will be empty after this call returns. * * @throws UnsupportedOperationException if the clear operation * is not supported by this map */ void clear(); // Views /** * Returns a {@link Set} view of the keys contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation), the results of * the iteration are undefined. The set supports element removal, * which removes the corresponding mapping from the map, via the * Iterator.remove, Set.remove, * removeAll, retainAll, and clear * operations. It does not support the add or addAll * operations. * * @return a set view of the keys contained in this map */ Set keySet(); /** * Returns a {@link Collection} view of the values contained in this map. * The collection is backed by the map, so changes to the map are * reflected in the collection, and vice-versa. If the map is * modified while an iteration over the collection is in progress * (except through the iterator's own remove operation), * the results of the iteration are undefined. The collection * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Collection.remove, removeAll, * retainAll and clear operations. It does not * support the add or addAll operations. * * @return a collection view of the values contained in this map */ Collection values(); /** * Returns a {@link Set} view of the mappings contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation, or through the * setValue operation on a map entry returned by the * iterator) the results of the iteration are undefined. The set * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Set.remove, removeAll, retainAll and * clear operations. It does not support the * add or addAll operations. * * @return a set view of the mappings contained in this map */ Set> entrySet(); /** * A map entry (key-value pair). The Map.entrySet method returns * a collection-view of the map, whose elements are of this class. The * only way to obtain a reference to a map entry is from the * iterator of this collection-view. These Map.Entry objects are * valid only for the duration of the iteration; more formally, * the behavior of a map entry is undefined if the backing map has been * modified after the entry was returned by the iterator, except through * the setValue operation on the map entry. * * @see Map#entrySet() * @since 1.2 */ interface Entry { /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ K getKey(); /** * Returns the value corresponding to this entry. If the mapping * has been removed from the backing map (by the iterator's * remove operation), the results of this call are undefined. * * @return the value corresponding to this entry * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ V getValue(); /** * Replaces the value corresponding to this entry with the specified * value (optional operation). (Writes through to the map.) The * behavior of this call is undefined if the mapping has already been * removed from the map (by the iterator's remove operation). * * @param value new value to be stored in this entry * @return old value corresponding to the entry * @throws UnsupportedOperationException if the put operation * is not supported by the backing map * @throws ClassCastException if the class of the specified value * prevents it from being stored in the backing map * @throws NullPointerException if the backing map does not permit * null values, and the specified value is null * @throws IllegalArgumentException if some property of this value * prevents it from being stored in the backing map * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ V setValue(V value); /** * Compares the specified object with this entry for equality. * Returns true if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries e1 and e2 represent the same mapping * if

         *     (e1.getKey()==null ?
         *      e2.getKey()==null : e1.getKey().equals(e2.getKey()))  &&
         *     (e1.getValue()==null ?
         *      e2.getValue()==null : e1.getValue().equals(e2.getValue()))
         * 
* This ensures that the equals method works properly across * different implementations of the Map.Entry interface. * * @param o object to be compared for equality with this map entry * @return true if the specified object is equal to this map * entry */ boolean equals(Object o); /** * Returns the hash code value for this map entry. The hash code * of a map entry e is defined to be:
         *     (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *     (e.getValue()==null ? 0 : e.getValue().hashCode())
         * 
* This ensures that e1.equals(e2) implies that * e1.hashCode()==e2.hashCode() for any two Entries * e1 and e2, as required by the general * contract of Object.hashCode. * * @return the hash code value for this map entry * @see Object#hashCode() * @see Object#equals(Object) * @see #equals(Object) */ int hashCode(); } // Comparison and hashing /** * Compares the specified object with this map for equality. Returns * true if the given object is also a map and the two maps * represent the same mappings. More formally, two maps m1 and * m2 represent the same mappings if * m1.entrySet().equals(m2.entrySet()). This ensures that the * equals method works properly across different implementations * of the Map interface. * * @param o object to be compared for equality with this map * @return true if the specified object is equal to this map */ boolean equals(Object o); /** * Returns the hash code value for this map. The hash code of a map is * defined to be the sum of the hash codes of each entry in the map's * entrySet() view. This ensures that m1.equals(m2) * implies that m1.hashCode()==m2.hashCode() for any two maps * m1 and m2, as required by the general contract of * {@link Object#hashCode}. * * @return the hash code value for this map * @see Map.Entry#hashCode() * @see Object#equals(Object) * @see #equals(Object) */ int hashCode(); } /* * 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 nextElement method of an * Enumeration 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 NoSuchElementException with null * as its error message string. */ public NoSuchElementException() { super(); } /** * Constructs a NoSuchElementException, saving a reference * to the error message string s for later retrieval by the * getMessage method. * * @param s the detail message. */ public NoSuchElementException(String s) { super(s); } } 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; /** * A collection that contains no duplicate elements. More formally, sets * contain no pair of elements e1 and e2 such that * e1.equals(e2), and at most one null element. As implied by * its name, this interface models the mathematical set abstraction. * *

The Set interface places additional stipulations, beyond those * inherited from the Collection interface, on the contracts of all * constructors and on the contracts of the add, equals and * hashCode methods. Declarations for other inherited methods are * also included here for convenience. (The specifications accompanying these * declarations have been tailored to the Set interface, but they do * not contain any additional stipulations.) * *

The additional stipulation on constructors is, not surprisingly, * that all constructors must create a set that contains no duplicate elements * (as defined above). * *

Note: Great care must be exercised if mutable objects are used as set * elements. The behavior of a set is not specified if the value of an object * is changed in a manner that affects equals comparisons while the * object is an element in the set. A special case of this prohibition is * that it is not permissible for a set to contain itself as an element. * *

Some set 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 * NullPointerException or ClassCastException. 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 set 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. * *

This interface is a member of the * * Java Collections Framework. * * @param the type of elements maintained by this set * * @author Josh Bloch * @author Neal Gafter * @see Collection * @see List * @see SortedSet * @see HashSet * @see TreeSet * @see AbstractSet * @see Collections#singleton(java.lang.Object) * @see Collections#EMPTY_SET * @since 1.2 */ public interface Set extends Collection { // Query Operations /** * Returns the number of elements in this set (its cardinality). If this * set contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of elements in this set (its cardinality) */ int size(); /** * Returns true if this set contains no elements. * * @return true if this set contains no elements */ boolean isEmpty(); /** * Returns true if this set contains the specified element. * More formally, returns true if and only if this set * contains an element e such that * (o==null ? e==null : o.equals(e)). * * @param o element whose presence in this set is to be tested * @return true if this set contains the specified element * @throws ClassCastException if the type of the specified element * is incompatible with this set (optional) * @throws NullPointerException if the specified element is null and this * set does not permit null elements (optional) */ boolean contains(Object o); /** * Returns an iterator over the elements in this set. The elements are * returned in no particular order (unless this set is an instance of some * class that provides a guarantee). * * @return an iterator over the elements in this set */ Iterator iterator(); /** * Returns an array containing all of the elements in this set. * If this set makes any guarantees as to what order its elements * are returned by its iterator, this method must return the * elements in the same order. * *

The returned array will be "safe" in that no references to it * are maintained by this set. (In other words, this method must * allocate a new array even if this set is backed by an array). * The caller is thus free to modify the returned array. * *

This method acts as bridge between array-based and collection-based * APIs. * * @return an array containing all the elements in this set */ Object[] toArray(); /** * Returns an array containing all of the elements in this set; the * runtime type of the returned array is that of the specified array. * If the set fits in the specified array, it is returned therein. * Otherwise, a new array is allocated with the runtime type of the * specified array and the size of this set. * *

If this set fits in the specified array with room to spare * (i.e., the array has more elements than this set), the element in * the array immediately following the end of the set is set to * null. (This is useful in determining the length of this * set only if the caller knows that this set does not contain * any null elements.) * *

If this set makes any guarantees as to what order its elements * are returned by its iterator, this method must return the elements * in the same order. * *

Like the {@link #toArray()} method, this method acts as bridge between * array-based and collection-based APIs. Further, this method allows * precise control over the runtime type of the output array, and may, * under certain circumstances, be used to save allocation costs. * *

Suppose x is a set known to contain only strings. * The following code can be used to dump the set into a newly allocated * array of String: * *

     *     String[] y = x.toArray(new String[0]);
* * Note that toArray(new Object[0]) is identical in function to * toArray(). * * @param a the array into which the elements of this set are to be * stored, if it is big enough; otherwise, a new array of the same * runtime type is allocated for this purpose. * @return an array containing all the elements in this set * @throws ArrayStoreException if the runtime type of the specified array * is not a supertype of the runtime type of every element in this * set * @throws NullPointerException if the specified array is null */ T[] toArray(T[] a); // Modification Operations /** * Adds the specified element to this set if it is not already present * (optional operation). More formally, adds the specified element * e to this set if the set contains no element e2 * such that * (e==null ? e2==null : e.equals(e2)). * If this set already contains the element, the call leaves the set * unchanged and returns false. In combination with the * restriction on constructors, this ensures that sets never contain * duplicate elements. * *

The stipulation above does not imply that sets must accept all * elements; sets may refuse to add any particular element, including * null, and throw an exception, as described in the * specification for {@link Collection#add Collection.add}. * Individual set implementations should clearly document any * restrictions on the elements that they may contain. * * @param e element to be added to this set * @return true if this set did not already contain the specified * element * @throws UnsupportedOperationException if the add operation * is not supported by this set * @throws ClassCastException if the class of the specified element * prevents it from being added to this set * @throws NullPointerException if the specified element is null and this * set does not permit null elements * @throws IllegalArgumentException if some property of the specified element * prevents it from being added to this set */ boolean add(E e); /** * Removes the specified element from this set if it is present * (optional operation). More formally, removes an element e * such that * (o==null ? e==null : o.equals(e)), if * this set contains such an element. Returns true if this set * contained the element (or equivalently, if this set changed as a * result of the call). (This set will not contain the element once the * call returns.) * * @param o object to be removed from this set, if present * @return true if this set contained the specified element * @throws ClassCastException if the type of the specified element * is incompatible with this set (optional) * @throws NullPointerException if the specified element is null and this * set does not permit null elements (optional) * @throws UnsupportedOperationException if the remove operation * is not supported by this set */ boolean remove(Object o); // Bulk Operations /** * Returns true if this set contains all of the elements of the * specified collection. If the specified collection is also a set, this * method returns true if it is a subset of this set. * * @param c collection to be checked for containment in this set * @return true if this set 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 * set (optional) * @throws NullPointerException if the specified collection contains one * or more null elements and this set 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 set if * they're not already present (optional operation). If the specified * collection is also a set, the addAll operation effectively * modifies this set so that its value is the union of the two * sets. The behavior of this operation is undefined if the specified * collection is modified while the operation is in progress. * * @param c collection containing elements to be added to this set * @return true if this set changed as a result of the call * * @throws UnsupportedOperationException if the addAll operation * is not supported by this set * @throws ClassCastException if the class of an element of the * specified collection prevents it from being added to this set * @throws NullPointerException if the specified collection contains one * or more null elements and this set 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 set * @see #add(Object) */ boolean addAll(Collection c); /** * Retains only the elements in this set that are contained in the * specified collection (optional operation). In other words, removes * from this set all of its elements that are not contained in the * specified collection. If the specified collection is also a set, this * operation effectively modifies this set so that its value is the * intersection of the two sets. * * @param c collection containing elements to be retained in this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the retainAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set contains a null element and the * specified collection does not permit null elements (optional), * or if the specified collection is null * @see #remove(Object) */ boolean retainAll(Collection c); /** * Removes from this set all of its elements that are contained in the * specified collection (optional operation). If the specified * collection is also a set, this operation effectively modifies this * set so that its value is the asymmetric set difference of * the two sets. * * @param c collection containing elements to be removed from this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the removeAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set 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); /** * Removes all of the elements from this set (optional operation). * The set will be empty after this call returns. * * @throws UnsupportedOperationException if the clear method * is not supported by this set */ void clear(); // Comparison and hashing /** * Compares the specified object with this set for equality. Returns * true if the specified object is also a set, the two sets * have the same size, and every member of the specified set is * contained in this set (or equivalently, every member of this set is * contained in the specified set). This definition ensures that the * equals method works properly across different implementations of the * set interface. * * @param o object to be compared for equality with this set * @return true if the specified object is equal to this set */ boolean equals(Object o); /** * Returns the hash code value for this set. The hash code of a set is * defined to be the sum of the hash codes of the elements in the set, * where the hash code of a null element is defined to be zero. * This ensures that s1.equals(s2) implies that * s1.hashCode()==s2.hashCode() for any two sets s1 * and s2, as required by the general contract of * {@link Object#hashCode}. * * @return the hash code value for this set * @see Object#equals(Object) * @see Set#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; /** * Thrown to indicate that the requested operation is not supported.

* * This class is a member of the * * Java Collections Framework. * * @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. * *

Note that the detail message associated with cause is * not 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 null 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 (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * 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 null 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) BareJBCToJBCProof (EQUIVALENT) initialized classpath ---------------------------------------- (2) Obligation: need to prove termination of the following 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 Collection * interface, to minimize the effort required to implement this interface.

* * To implement an unmodifiable collection, the programmer needs only to * extend this class and provide implementations for the iterator and * size methods. (The iterator returned by the iterator * method must implement hasNext and next.)

* * To implement a modifiable collection, the programmer must additionally * override this class's add method (which otherwise throws an * UnsupportedOperationException), and the iterator returned by the * iterator method must additionally implement its remove * method.

* * The programmer should generally provide a void (no argument) and * Collection constructor, as per the recommendation in the * Collection interface specification.

* * 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.

* * This class is a member of the * * Java Collections Framework. * * @author Josh Bloch * @author Neal Gafter * @see Collection * @since 1.2 */ public abstract class AbstractCollection implements Collection { /** * 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 iterator(); public abstract int size(); /** * {@inheritDoc} * *

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

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 = 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} * *

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

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. * *

Note that this implementation throws an * UnsupportedOperationException if the iterator returned by this * collection's iterator method does not implement the remove * method and this collection contains the specified object. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean remove(Object o) { Iterator 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} * *

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 true is returned, otherwise false. * * @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} * *

This implementation iterates over the specified collection, and adds * each object returned by the iterator to this collection, in turn. * *

Note that this implementation will throw an * UnsupportedOperationException unless add 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 c) { boolean modified = false; Iterator e = c.iterator(); while (e.hasNext()) { if (add(e.next())) modified = true; } return modified; } /** * {@inheritDoc} * *

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 remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove 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} * *

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 remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove 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 = iterator(); while (e.hasNext()) { if (!c.contains(e.next())) { e.remove(); modified = true; } } return modified; } /** * {@inheritDoc} * *

This implementation iterates over this collection, removing each * element using the Iterator.remove operation. Most * implementations will probably choose to override this method for * efficiency. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by this * collection's iterator method does not implement the * remove method and this collection is non-empty. * * @throws UnsupportedOperationException {@inheritDoc} */ public void clear() { Iterator 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 * ("[]"). Adjacent elements are separated by the characters * ", " (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 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; import javaUtilEx.Map.Entry; /** * This class provides a skeletal implementation of the Map * interface, to minimize the effort required to implement this interface. * *

To implement an unmodifiable map, the programmer needs only to extend this * class and provide an implementation for the entrySet method, which * returns a set-view of the map's mappings. Typically, the returned set * will, in turn, be implemented atop AbstractSet. This set should * not support the add or remove methods, and its iterator * should not support the remove method. * *

To implement a modifiable map, the programmer must additionally override * this class's put method (which otherwise throws an * UnsupportedOperationException), and the iterator returned by * entrySet().iterator() must additionally implement its * remove method. * *

The programmer should generally provide a void (no argument) and map * constructor, as per the recommendation in the Map interface * specification. * *

The documentation for each non-abstract method in this class describes its * implementation in detail. Each of these methods may be overridden if the * map being implemented admits a more efficient implementation. * *

This class is a member of the * * Java Collections Framework. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Josh Bloch * @author Neal Gafter * @see Map * @see Collection * @since 1.2 */ public abstract class AbstractMap implements Map { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected AbstractMap() { } // Query Operations /** * {@inheritDoc} * *

This implementation returns entrySet().size(). */ public int size() { return entrySet().size(); } /** * {@inheritDoc} * *

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

This implementation iterates over entrySet() searching * for an entry with the specified value. If such an entry is found, * true is returned. If the iteration terminates without * finding such an entry, false is returned. Note that this * implementation requires linear time in the size of the map. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean containsValue(Object value) { Iterator> i = entrySet().iterator(); if (value==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getValue()==null) return true; } } else { while (i.hasNext()) { Entry e = i.next(); if (value.equals(e.getValue())) return true; } } return false; } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching * for an entry with the specified key. If such an entry is found, * true is returned. If the iteration terminates without * finding such an entry, false is returned. Note that this * implementation requires linear time in the size of the map; many * implementations will override this method. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public boolean containsKey(Object key) { Iterator> i = entrySet().iterator(); if (key==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) return true; } } else { while (i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) return true; } } return false; } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching * for an entry with the specified key. If such an entry is found, * the entry's value is returned. If the iteration terminates without * finding such an entry, null is returned. Note that this * implementation requires linear time in the size of the map; many * implementations will override this method. * * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public V get(Object key) { Iterator> i = entrySet().iterator(); if (key==null) { while (i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) return e.getValue(); } } else { while (i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) return e.getValue(); } } return null; } // Modification Operations /** * {@inheritDoc} * *

This implementation always throws an * UnsupportedOperationException. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} */ public V put(K key, V value) { throw new UnsupportedOperationException(); } /** * {@inheritDoc} * *

This implementation iterates over entrySet() searching for an * entry with the specified key. If such an entry is found, its value is * obtained with its getValue operation, the entry is removed * from the collection (and the backing map) with the iterator's * remove operation, and the saved value is returned. If the * iteration terminates without finding such an entry, null is * returned. Note that this implementation requires linear time in the * size of the map; many implementations will override this method. * *

Note that this implementation throws an * UnsupportedOperationException if the entrySet * iterator does not support the remove method and this map * contains a mapping for the specified key. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} */ public V remove(Object key) { Iterator> i = entrySet().iterator(); Entry correctEntry = null; if (key==null) { while (correctEntry==null && i.hasNext()) { Entry e = i.next(); if (e.getKey()==null) correctEntry = e; } } else { while (correctEntry==null && i.hasNext()) { Entry e = i.next(); if (key.equals(e.getKey())) correctEntry = e; } } V oldValue = null; if (correctEntry !=null) { oldValue = correctEntry.getValue(); i.remove(); } return oldValue; } // Bulk Operations /** * {@inheritDoc} * *

This implementation iterates over the specified map's * entrySet() collection, and calls this map's put * operation once for each entry returned by the iteration. * *

Note that this implementation throws an * UnsupportedOperationException if this map does not support * the put operation and the specified map is nonempty. * * @throws UnsupportedOperationException {@inheritDoc} * @throws ClassCastException {@inheritDoc} * @throws NullPointerException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc} */ public void putAll(Map m) { Iterator it = m.entrySet().iterator(); while (it.hasNext()) { Map.Entry e = (Map.Entry) it.next(); put((K) e.getKey(), (V) e.getValue()); } } /** * {@inheritDoc} * *

This implementation calls entrySet().clear(). * *

Note that this implementation throws an * UnsupportedOperationException if the entrySet * does not support the clear operation. * * @throws UnsupportedOperationException {@inheritDoc} */ public void clear() { entrySet().clear(); } // Views /** * Each of these fields are initialized to contain an instance of the * appropriate view the first time this view is requested. The views are * stateless, so there's no reason to create more than one of each. */ transient volatile Set keySet = null; transient volatile Collection values = null; /** * {@inheritDoc} * *

This implementation returns a set that subclasses {@link AbstractSet}. * The subclass's iterator method returns a "wrapper object" over this * map's entrySet() iterator. The size method * delegates to this map's size method and the * contains method delegates to this map's * containsKey method. * *

The set is created the first time this method is called, * and returned in response to all subsequent calls. No synchronization * is performed, so there is a slight chance that multiple calls to this * method will not all return the same set. */ public Set keySet() { if (keySet == null) { keySet = new AbstractSet() { public Iterator iterator() { return new Iterator() { private Iterator> i = entrySet().iterator(); public boolean hasNext() { return i.hasNext(); } public K next() { return i.next().getKey(); } public void remove() { i.remove(); } }; } public int size() { return AbstractMap.this.size(); } public boolean isEmpty() { return AbstractMap.this.isEmpty(); } public void clear() { AbstractMap.this.clear(); } public boolean contains(Object k) { return AbstractMap.this.containsKey(k); } public Object[] toArray() { Object[] res = new Object[AbstractMap.this.size()]; Iterator> it = entrySet().iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next().getKey(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), AbstractMap.this.size()); Object[] res = a; Iterator> it = entrySet().iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next().getKey(); return a; } }; } return keySet; } /** * {@inheritDoc} * *

This implementation returns a collection that subclasses {@link * AbstractCollection}. The subclass's iterator method returns a * "wrapper object" over this map's entrySet() iterator. * The size method delegates to this map's size * method and the contains method delegates to this map's * containsValue method. * *

The collection is created the first time this method is called, and * returned in response to all subsequent calls. No synchronization is * performed, so there is a slight chance that multiple calls to this * method will not all return the same collection. */ public Collection values() { if (values == null) { values = new AbstractCollection() { public Iterator iterator() { return new Iterator() { private Iterator> i = entrySet().iterator(); public boolean hasNext() { return i.hasNext(); } public V next() { return i.next().getValue(); } public void remove() { i.remove(); } }; } public int size() { return AbstractMap.this.size(); } public boolean isEmpty() { return AbstractMap.this.isEmpty(); } public void clear() { AbstractMap.this.clear(); } public boolean contains(Object v) { return AbstractMap.this.containsValue(v); } }; } return values; } public abstract Set> entrySet(); // Comparison and hashing /** * Compares the specified object with this map for equality. Returns * true if the given object is also a map and the two maps * represent the same mappings. More formally, two maps m1 and * m2 represent the same mappings if * m1.entrySet().equals(m2.entrySet()). This ensures that the * equals method works properly across different implementations * of the Map interface. * *

This implementation first checks if the specified object is this map; * if so it returns true. Then, it checks if the specified * object is a map whose size is identical to the size of this map; if * not, it returns false. If so, it iterates over this map's * entrySet collection, and checks that the specified map * contains each mapping that this map contains. If the specified map * fails to contain such a mapping, false is returned. If the * iteration completes, true is returned. * * @param o object to be compared for equality with this map * @return true if the specified object is equal to this map */ public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Map)) return false; Map m = (Map) o; if (m.size() != size()) return false; try { Iterator> i = entrySet().iterator(); while (i.hasNext()) { Entry e = i.next(); K key = e.getKey(); V value = e.getValue(); if (value == null) { if (!(m.get(key)==null && m.containsKey(key))) return false; } else { if (!value.equals(m.get(key))) return false; } } } catch (ClassCastException unused) { return false; } catch (NullPointerException unused) { return false; } return true; } /** * Returns the hash code value for this map. The hash code of a map is * defined to be the sum of the hash codes of each entry in the map's * entrySet() view. This ensures that m1.equals(m2) * implies that m1.hashCode()==m2.hashCode() for any two maps * m1 and m2, as required by the general contract of * {@link Object#hashCode}. * *

This implementation iterates over entrySet(), calling * {@link Map.Entry#hashCode hashCode()} on each element (entry) in the * set, and adding up the results. * * @return the hash code value for this map * @see Map.Entry#hashCode() * @see Object#equals(Object) * @see Set#equals(Object) */ public int hashCode() { int h = 0; Iterator> i = entrySet().iterator(); while (i.hasNext()) h += i.next().hashCode(); return h; } /** * Returns a string representation of this map. The string representation * consists of a list of key-value mappings in the order returned by the * map's entrySet view's iterator, enclosed in braces * ("{}"). Adjacent mappings are separated by the characters * ", " (comma and space). Each key-value mapping is rendered as * the key followed by an equals sign ("=") followed by the * associated value. Keys and values are converted to strings as by * {@link String#valueOf(Object)}. * * @return a string representation of this map */ public String toString() { Iterator> i = entrySet().iterator(); if (! i.hasNext()) return "{}"; StringBuilder sb = new StringBuilder(); sb.append('{'); for (;;) { Entry e = i.next(); K key = e.getKey(); V value = e.getValue(); sb.append(key == this ? "(this Map)" : key); sb.append('='); sb.append(value == this ? "(this Map)" : value); if (! i.hasNext()) return sb.append('}').toString(); sb.append(", "); } } /** * Returns a shallow copy of this AbstractMap instance: the keys * and values themselves are not cloned. * * @return a shallow copy of this map */ protected Object clone() throws CloneNotSupportedException { AbstractMap result = (AbstractMap)super.clone(); result.keySet = null; result.values = null; return result; } /** * Utility method for SimpleEntry and SimpleImmutableEntry. * Test for equality, checking for nulls. */ private static boolean eq(Object o1, Object o2) { return o1 == null ? o2 == null : o1.equals(o2); } // Implementation Note: SimpleEntry and SimpleImmutableEntry // are distinct unrelated classes, even though they share // some code. Since you can't add or subtract final-ness // of a field in a subclass, they can't share representations, // and the amount of duplicated code is too small to warrant // exposing a common abstract class. /** * An Entry maintaining a key and a value. The value may be * changed using the setValue method. This class * facilitates the process of building custom map * implementations. For example, it may be convenient to return * arrays of SimpleEntry instances in method * Map.entrySet().toArray. * * @since 1.6 */ public static class SimpleEntry implements Entry, java.io.Serializable { private static final long serialVersionUID = -8499721149061103585L; private final K key; private V value; /** * Creates an entry representing a mapping from the specified * key to the specified value. * * @param key the key represented by this entry * @param value the value represented by this entry */ public SimpleEntry(K key, V value) { this.key = key; this.value = value; } /** * Creates an entry representing the same mapping as the * specified entry. * * @param entry the entry to copy */ public SimpleEntry(Entry entry) { this.key = entry.getKey(); this.value = entry.getValue(); } /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry */ public K getKey() { return key; } /** * Returns the value corresponding to this entry. * * @return the value corresponding to this entry */ public V getValue() { return value; } /** * Replaces the value corresponding to this entry with the specified * value. * * @param value new value to be stored in this entry * @return the old value corresponding to the entry */ public V setValue(V value) { V oldValue = this.value; this.value = value; return oldValue; } /** * Compares the specified object with this entry for equality. * Returns {@code true} if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries {@code e1} and {@code e2} represent the same mapping * if

         *   (e1.getKey()==null ?
         *    e2.getKey()==null :
         *    e1.getKey().equals(e2.getKey()))
         *   &&
         *   (e1.getValue()==null ?
         *    e2.getValue()==null :
         *    e1.getValue().equals(e2.getValue()))
* This ensures that the {@code equals} method works properly across * different implementations of the {@code Map.Entry} interface. * * @param o object to be compared for equality with this map entry * @return {@code true} if the specified object is equal to this map * entry * @see #hashCode */ public boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; return eq(key, e.getKey()) && eq(value, e.getValue()); } /** * Returns the hash code value for this map entry. The hash code * of a map entry {@code e} is defined to be:
         *   (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *   (e.getValue()==null ? 0 : e.getValue().hashCode())
* This ensures that {@code e1.equals(e2)} implies that * {@code e1.hashCode()==e2.hashCode()} for any two Entries * {@code e1} and {@code e2}, as required by the general * contract of {@link Object#hashCode}. * * @return the hash code value for this map entry * @see #equals */ public int hashCode() { return (key == null ? 0 : key.hashCode()) ^ (value == null ? 0 : value.hashCode()); } /** * Returns a String representation of this map entry. This * implementation returns the string representation of this * entry's key followed by the equals character ("=") * followed by the string representation of this entry's value. * * @return a String representation of this map entry */ public String toString() { return key + "=" + value; } } /** * An Entry maintaining an immutable key and value. This class * does not support method setValue. This class may be * convenient in methods that return thread-safe snapshots of * key-value mappings. * * @since 1.6 */ public static class SimpleImmutableEntry implements Entry, java.io.Serializable { private static final long serialVersionUID = 7138329143949025153L; private final K key; private final V value; /** * Creates an entry representing a mapping from the specified * key to the specified value. * * @param key the key represented by this entry * @param value the value represented by this entry */ public SimpleImmutableEntry(K key, V value) { this.key = key; this.value = value; } /** * Creates an entry representing the same mapping as the * specified entry. * * @param entry the entry to copy */ public SimpleImmutableEntry(Entry entry) { this.key = entry.getKey(); this.value = entry.getValue(); } /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry */ public K getKey() { return key; } /** * Returns the value corresponding to this entry. * * @return the value corresponding to this entry */ public V getValue() { return value; } /** * Replaces the value corresponding to this entry with the specified * value (optional operation). This implementation simply throws * UnsupportedOperationException, as this class implements * an immutable map entry. * * @param value new value to be stored in this entry * @return (Does not return) * @throws UnsupportedOperationException always */ public V setValue(V value) { throw new UnsupportedOperationException(); } /** * Compares the specified object with this entry for equality. * Returns {@code true} if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries {@code e1} and {@code e2} represent the same mapping * if
         *   (e1.getKey()==null ?
         *    e2.getKey()==null :
         *    e1.getKey().equals(e2.getKey()))
         *   &&
         *   (e1.getValue()==null ?
         *    e2.getValue()==null :
         *    e1.getValue().equals(e2.getValue()))
* This ensures that the {@code equals} method works properly across * different implementations of the {@code Map.Entry} interface. * * @param o object to be compared for equality with this map entry * @return {@code true} if the specified object is equal to this map * entry * @see #hashCode */ public boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; return eq(key, e.getKey()) && eq(value, e.getValue()); } /** * Returns the hash code value for this map entry. The hash code * of a map entry {@code e} is defined to be:
         *   (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *   (e.getValue()==null ? 0 : e.getValue().hashCode())
* This ensures that {@code e1.equals(e2)} implies that * {@code e1.hashCode()==e2.hashCode()} for any two Entries * {@code e1} and {@code e2}, as required by the general * contract of {@link Object#hashCode}. * * @return the hash code value for this map entry * @see #equals */ public int hashCode() { return (key == null ? 0 : key.hashCode()) ^ (value == null ? 0 : value.hashCode()); } /** * Returns a String representation of this map entry. This * implementation returns the string representation of this * entry's key followed by the equals character ("=") * followed by the string representation of this entry's value. * * @return a String representation of this map entry */ public String toString() { return key + "=" + value; } } } /* * 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 Set * interface to minimize the effort required to implement this * interface.

* * The process of implementing a set by extending this class is identical * to that of implementing a Collection by extending AbstractCollection, * except that all of the methods and constructors in subclasses of this * class must obey the additional constraints imposed by the Set * interface (for instance, the add method must not permit addition of * multiple instances of an object to a set).

* * Note that this class does not override any of the implementations from * the AbstractCollection class. It merely adds implementations * for equals and hashCode.

* * This class is a member of the * * Java Collections Framework. * * @param the type of elements maintained by this set * * @author Josh Bloch * @author Neal Gafter * @see Collection * @see AbstractCollection * @see Set * @since 1.2 */ public abstract class AbstractSet extends AbstractCollection implements Set { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected AbstractSet() { } // Comparison and hashing /** * Compares the specified object with this set for equality. Returns * true if the given object is also a set, the two sets have * the same size, and every member of the given set is contained in * this set. This ensures that the equals method works * properly across different implementations of the Set * interface.

* * This implementation first checks if the specified object is this * set; if so it returns true. Then, it checks if the * specified object is a set whose size is identical to the size of * this set; if not, it returns false. If so, it returns * containsAll((Collection) o). * * @param o object to be compared for equality with this set * @return true if the specified object is equal to this set */ public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Set)) return false; Collection c = (Collection) o; if (c.size() != size()) return false; try { return containsAll(c); } catch (ClassCastException unused) { return false; } catch (NullPointerException unused) { return false; } } /** * Returns the hash code value for this set. The hash code of a set is * defined to be the sum of the hash codes of the elements in the set, * where the hash code of a null element is defined to be zero. * This ensures that s1.equals(s2) implies that * s1.hashCode()==s2.hashCode() for any two sets s1 * and s2, as required by the general contract of * {@link Object#hashCode}. * *

This implementation iterates over the set, calling the * hashCode method on each element in the set, and adding up * the results. * * @return the hash code value for this set * @see Object#equals(Object) * @see Set#equals(Object) */ public int hashCode() { int h = 0; Iterator i = iterator(); while (i.hasNext()) { E obj = i.next(); if (obj != null) h += obj.hashCode(); } return h; } /** * Removes from this set all of its elements that are contained in the * specified collection (optional operation). If the specified * collection is also a set, this operation effectively modifies this * set so that its value is the asymmetric set difference of * the two sets. * *

This implementation determines which is the smaller of this set * and the specified collection, by invoking the size * method on each. If this set has fewer elements, then the * implementation iterates over this set, checking each element * returned by the iterator in turn to see if it is contained in * the specified collection. If it is so contained, it is removed * from this set with the iterator's remove method. If * the specified collection has fewer elements, then the * implementation iterates over the specified collection, removing * from this set each element returned by the iterator, using this * set's remove method. * *

Note that this implementation will throw an * UnsupportedOperationException if the iterator returned by the * iterator method does not implement the remove method. * * @param c collection containing elements to be removed from this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the removeAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set 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) */ public boolean removeAll(Collection c) { boolean modified = false; if (size() > c.size()) { for (Iterator i = c.iterator(); i.hasNext(); ) modified |= remove(i.next()); } else { for (Iterator i = iterator(); i.hasNext(); ) { if (c.contains(i.next())) { i.remove(); modified = true; } } } return modified; } } /* * 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 collection hierarchy. A collection * represents a group of objects, known as its elements. Some * collections allow duplicate elements and others do not. Some are ordered * and others unordered. The JDK does not provide any direct * implementations of this interface: it provides implementations of more * specific subinterfaces like Set and List. This interface * is typically used to pass collections around and manipulate them where * maximum generality is desired. * *

Bags or multisets (unordered collections that may contain * duplicate elements) should implement this interface directly. * *

All general-purpose Collection implementation classes (which * typically implement Collection 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 Collection, 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 Collection * implementations in the Java platform libraries comply. * *

The "destructive" methods contained in this interface, that is, the * methods that modify the collection on which they operate, are specified to * throw UnsupportedOperationException if this collection does not * support the operation. If this is the case, these methods may, but are not * required to, throw an UnsupportedOperationException 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. * *

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 * NullPointerException or ClassCastException. 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. * *

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. * *

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 true if and only if this collection * contains at least one element e such that * (o==null ? e==null : o.equals(e))." This specification should * not be construed to imply that invoking Collection.contains * with a non-null argument o will cause o.equals(e) to be * invoked for any element e. Implementations are free to implement * optimizations whereby the equals 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. * *

This interface is a member of the * * Java Collections Framework. * * @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 { // Query Operations /** * Returns the number of elements in this collection. If this collection * contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of elements in this collection */ int size(); /** * Returns true if this collection contains no elements. * * @return true if this collection contains no elements */ boolean isEmpty(); /** * Returns true if this collection contains the specified element. * More formally, returns true if and only if this collection * contains at least one element e such that * (o==null ? e==null : o.equals(e)). * * @param o element whose presence in this collection is to be tested * @return true 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 Iterator over the elements in this collection */ Iterator iterator(); // Modification Operations /** * Ensures that this collection contains the specified element (optional * operation). Returns true if this collection changed as a * result of the call. (Returns false if this collection does * not permit duplicates and already contains the specified element.)

* * 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 null 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.

* * If a collection refuses to add a particular element for any reason * other than that it already contains the element, it must throw * an exception (rather than returning false). 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 true if this collection changed as a result of the * call * @throws UnsupportedOperationException if the add 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 e such that * (o==null ? e==null : o.equals(e)), if * this collection contains one or more such elements. Returns * true 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 true 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 remove operation * is not supported by this collection */ boolean remove(Object o); // Bulk Operations /** * Returns true if this collection contains all of the elements * in the specified collection. * * @param c collection to be checked for containment in this collection * @return true 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 true if this collection changed as a result of the call * @throws UnsupportedOperationException if the addAll 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 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 true if this collection changed as a result of the * call * @throws UnsupportedOperationException if the removeAll 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 true if this collection changed as a result of the call * @throws UnsupportedOperationException if the retainAll 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 clear operation * is not supported by this collection */ void clear(); // Comparison and hashing /** * Compares the specified object with this collection for equality.

* * While the Collection interface adds no stipulations to the * general contract for the Object.equals, programmers who * implement the Collection interface "directly" (in other words, * create a class that is a Collection but is not a Set * or a List) must exercise care if they choose to override the * Object.equals. It is not necessary to do so, and the simplest * course of action is to rely on Object's implementation, but * the implementor may wish to implement a "value comparison" in place of * the default "reference comparison." (The List and * Set interfaces mandate such value comparisons.)

* * The general contract for the Object.equals method states that * equals must be symmetric (in other words, a.equals(b) if and * only if b.equals(a)). The contracts for List.equals * and Set.equals state that lists are only equal to other lists, * and sets to other sets. Thus, a custom equals method for a * collection class that implements neither the List nor * Set interface must return false 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 Set and * List interfaces.) * * @param o object to be compared for equality with this collection * @return true 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 * Collection interface adds no stipulations to the general * contract for the Object.hashCode method, programmers should * take note that any class that overrides the Object.equals * method must also override the Object.hashCode method in order * to satisfy the general contract for the Object.hashCodemethod. * In particular, c1.equals(c2) implies that * c1.hashCode()==c2.hashCode(). * * @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. *

* 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 fail-fast iterators, * as they fail quickly and cleanly, rather that risking arbitrary, * non-deterministic behavior at an undetermined time in the future. *

* Note that this exception does not always indicate that an object has * been concurrently modified by a different 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. * *

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 ConcurrentModificationException on a best-effort basis. * Therefore, it would be wrong to write a program that depended on this * exception for its correctness: ConcurrentModificationException * should be used only to detect bugs. * * @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 ConcurrentModificationException with the * specified detail message. * * @param message the detail message pertaining to this exception. */ public ConcurrentModificationException(String message) { super(message); } } /* * 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; /** * Hash table based implementation of the Map interface. This * implementation provides all of the optional map operations, and permits * null values and the null key. (The HashMap * class is roughly equivalent to Hashtable, except that it is * unsynchronized and permits nulls.) This class makes no guarantees as to * the order of the map; in particular, it does not guarantee that the order * will remain constant over time. * *

This implementation provides constant-time performance for the basic * operations (get and put), assuming the hash function * disperses the elements properly among the buckets. Iteration over * collection views requires time proportional to the "capacity" of the * HashMap instance (the number of buckets) plus its size (the number * of key-value mappings). Thus, it's very important not to set the initial * capacity too high (or the load factor too low) if iteration performance is * important. * *

An instance of HashMap has two parameters that affect its * performance: initial capacity and load factor. The * capacity is the number of buckets in the hash table, and the initial * capacity is simply the capacity at the time the hash table is created. The * load factor is a measure of how full the hash table is allowed to * get before its capacity is automatically increased. When the number of * entries in the hash table exceeds the product of the load factor and the * current capacity, the hash table is rehashed (that is, internal data * structures are rebuilt) so that the hash table has approximately twice the * number of buckets. * *

As a general rule, the default load factor (.75) offers a good tradeoff * between time and space costs. Higher values decrease the space overhead * but increase the lookup cost (reflected in most of the operations of the * HashMap class, including get and put). The * expected number of entries in the map and its load factor should be taken * into account when setting its initial capacity, so as to minimize the * number of rehash operations. If the initial capacity is greater * than the maximum number of entries divided by the load factor, no * rehash operations will ever occur. * *

If many mappings are to be stored in a HashMap instance, * creating it with a sufficiently large capacity will allow the mappings to * be stored more efficiently than letting it perform automatic rehashing as * needed to grow the table. * *

Note that this implementation is not synchronized. * If multiple threads access a hash map concurrently, and at least one of * the threads modifies the map structurally, it must be * synchronized externally. (A structural modification is any operation * that adds or deletes one or more mappings; merely changing the value * associated with a key that an instance already contains is not a * structural modification.) This is typically accomplished by * synchronizing on some object that naturally encapsulates the map. * * If no such object exists, the map should be "wrapped" using the * {@link Collections#synchronizedMap Collections.synchronizedMap} * method. This is best done at creation time, to prevent accidental * unsynchronized access to the map:

 *   Map m = Collections.synchronizedMap(new HashMap(...));
* *

The iterators returned by all of this class's "collection view methods" * are fail-fast: if the map is structurally modified at any time after * the iterator is created, in any way except through the iterator's own * remove method, 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. * *

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 ConcurrentModificationException on a best-effort basis. * Therefore, it would be wrong to write a program that depended on this * exception for its correctness: the fail-fast behavior of iterators * should be used only to detect bugs. * *

This class is a member of the * * Java Collections Framework. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Doug Lea * @author Josh Bloch * @author Arthur van Hoff * @author Neal Gafter * @see Object#hashCode() * @see Collection * @see Map * @see TreeMap * @see Hashtable * @since 1.2 */ public class HashMap extends AbstractMap implements Map, Cloneable { /** * The default initial capacity - MUST be a power of two. */ static final int DEFAULT_INITIAL_CAPACITY = 16; /** * The maximum capacity, used if a higher value is implicitly specified * by either of the constructors with arguments. * MUST be a power of two <= 1<<30. */ static final int MAXIMUM_CAPACITY = 1 << 30; /** * The load factor used when none specified in constructor. */ static final float DEFAULT_LOAD_FACTOR = 0.75f; /** * The table, resized as necessary. Length MUST Always be a power of two. */ transient Entry[] table; /** * The number of key-value mappings contained in this map. */ transient int size; /** * The next size value at which to resize (capacity * load factor). * @serial */ int threshold; /** * The load factor for the hash table. * * @serial */ final float loadFactor; /** * The number of times this HashMap has been structurally modified * Structural modifications are those that change the number of mappings in * the HashMap or otherwise modify its internal structure (e.g., * rehash). This field is used to make iterators on Collection-views of * the HashMap fail-fast. (See ConcurrentModificationException). */ transient volatile int modCount; /** * Constructs an empty HashMap with the specified initial * capacity and load factor. * * @param initialCapacity the initial capacity * @param loadFactor the load factor * @throws IllegalArgumentException if the initial capacity is negative * or the load factor is nonpositive */ public HashMap(int initialCapacity, float loadFactor) { if (initialCapacity < 0) throw new IllegalArgumentException("Illegal initial capacity: " + initialCapacity); if (initialCapacity > MAXIMUM_CAPACITY) initialCapacity = MAXIMUM_CAPACITY; if (loadFactor <= 0 || Float.isNaN(loadFactor)) throw new IllegalArgumentException("Illegal load factor: " + loadFactor); // Find a power of 2 >= initialCapacity int capacity = 1; while (capacity < initialCapacity) capacity <<= 1; this.loadFactor = loadFactor; threshold = (int)(capacity * loadFactor); table = new Entry[capacity]; init(); } /** * Constructs an empty HashMap with the specified initial * capacity and the default load factor (0.75). * * @param initialCapacity the initial capacity. * @throws IllegalArgumentException if the initial capacity is negative. */ public HashMap(int initialCapacity) { this(initialCapacity, DEFAULT_LOAD_FACTOR); } /** * Constructs an empty HashMap with the default initial capacity * (16) and the default load factor (0.75). */ public HashMap() { this.loadFactor = DEFAULT_LOAD_FACTOR; threshold = (int)(DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR); table = new Entry[DEFAULT_INITIAL_CAPACITY]; init(); } /** * Constructs a new HashMap with the same mappings as the * specified Map. The HashMap is created with * default load factor (0.75) and an initial capacity sufficient to * hold the mappings in the specified Map. * * @param m the map whose mappings are to be placed in this map * @throws NullPointerException if the specified map is null */ public HashMap(Map m) { this(Math.max((int) (m.size() / DEFAULT_LOAD_FACTOR) + 1, DEFAULT_INITIAL_CAPACITY), DEFAULT_LOAD_FACTOR); putAllForCreate(m); } // internal utilities /** * Initialization hook for subclasses. This method is called * in all constructors and pseudo-constructors (clone, readObject) * after HashMap has been initialized but before any entries have * been inserted. (In the absence of this method, readObject would * require explicit knowledge of subclasses.) */ void init() { } /** * Applies a supplemental hash function to a given hashCode, which * defends against poor quality hash functions. This is critical * because HashMap uses power-of-two length hash tables, that * otherwise encounter collisions for hashCodes that do not differ * in lower bits. Note: Null keys always map to hash 0, thus index 0. */ static int hash(int h) { // This function ensures that hashCodes that differ only by // constant multiples at each bit position have a bounded // number of collisions (approximately 8 at default load factor). h ^= (h >>> 20) ^ (h >>> 12); return h ^ (h >>> 7) ^ (h >>> 4); } /** * Returns index for hash code h. */ static int indexFor(int h, int length) { return h & (length-1); } /** * Returns the number of key-value mappings in this map. * * @return the number of key-value mappings in this map */ public int size() { return size; } /** * Returns true if this map contains no key-value mappings. * * @return true if this map contains no key-value mappings */ public boolean isEmpty() { return size == 0; } /** * Returns the value to which the specified key is mapped, * or {@code null} if this map contains no mapping for the key. * *

More formally, if this map contains a mapping from a key * {@code k} to a value {@code v} such that {@code (key==null ? k==null : * key.equals(k))}, then this method returns {@code v}; otherwise * it returns {@code null}. (There can be at most one such mapping.) * *

A return value of {@code null} does not necessarily * indicate that the map contains no mapping for the key; it's also * possible that the map explicitly maps the key to {@code null}. * The {@link #containsKey containsKey} operation may be used to * distinguish these two cases. * * @see #put(Object, Object) */ public V get(Object key) { if (key == null) return getForNullKey(); int hash = hash(key.hashCode()); for (Entry e = table[indexFor(hash, table.length)]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || key.equals(k))) return e.value; } return null; } /** * Offloaded version of get() to look up null keys. Null keys map * to index 0. This null case is split out into separate methods * for the sake of performance in the two most commonly used * operations (get and put), but incorporated with conditionals in * others. */ private V getForNullKey() { for (Entry e = table[0]; e != null; e = e.next) { if (e.key == null) return e.value; } return null; } /** * Returns true if this map contains a mapping for the * specified key. * * @param key The key whose presence in this map is to be tested * @return true if this map contains a mapping for the specified * key. */ public boolean containsKey(Object key) { return getEntry(key) != null; } /** * Returns the entry associated with the specified key in the * HashMap. Returns null if the HashMap contains no mapping * for the key. */ final Entry getEntry(Object key) { int hash = (key == null) ? 0 : hash(key.hashCode()); for (Entry e = table[indexFor(hash, table.length)]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) return e; } return null; } /** * Associates the specified value with the specified key in this map. * If the map previously contained a mapping for the key, the old * value is replaced. * * @param key key with which the specified value is to be associated * @param value value to be associated with the specified key * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key.) */ public V put(K key, V value) { if (key == null) return putForNullKey(value); int hash = hash(key.hashCode()); int i = indexFor(hash, table.length); for (Entry e = table[i]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || key.equals(k))) { V oldValue = e.value; e.value = value; e.recordAccess(this); return oldValue; } } modCount++; addEntry(hash, key, value, i); return null; } /** * Offloaded version of put for null keys */ private V putForNullKey(V value) { for (Entry e = table[0]; e != null; e = e.next) { if (e.key == null) { V oldValue = e.value; e.value = value; e.recordAccess(this); return oldValue; } } modCount++; addEntry(0, null, value, 0); return null; } /** * This method is used instead of put by constructors and * pseudoconstructors (clone, readObject). It does not resize the table, * check for comodification, etc. It calls createEntry rather than * addEntry. */ private void putForCreate(K key, V value) { int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); /** * Look for preexisting entry for key. This will never happen for * clone or deserialize. It will only happen for construction if the * input Map is a sorted map whose ordering is inconsistent w/ equals. */ for (Entry e = table[i]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) { e.value = value; return; } } createEntry(hash, key, value, i); } private void putAllForCreate(Map m) { for (Iterator> i = m.entrySet().iterator(); i.hasNext(); ) { Map.Entry e = i.next(); putForCreate(e.getKey(), e.getValue()); } } /** * Rehashes the contents of this map into a new array with a * larger capacity. This method is called automatically when the * number of keys in this map reaches its threshold. * * If current capacity is MAXIMUM_CAPACITY, this method does not * resize the map, but sets threshold to Integer.MAX_VALUE. * This has the effect of preventing future calls. * * @param newCapacity the new capacity, MUST be a power of two; * must be greater than current capacity unless current * capacity is MAXIMUM_CAPACITY (in which case value * is irrelevant). */ void resize(int newCapacity) { Entry[] oldTable = table; int oldCapacity = oldTable.length; if (oldCapacity == MAXIMUM_CAPACITY) { threshold = Integer.MAX_VALUE; return; } Entry[] newTable = new Entry[newCapacity]; transfer(newTable); table = newTable; threshold = (int)(newCapacity * loadFactor); } /** * Transfers all entries from current table to newTable. */ void transfer(Entry[] newTable) { Entry[] src = table; int newCapacity = newTable.length; for (int j = 0; j < src.length; j++) { Entry e = src[j]; if (e != null) { src[j] = null; do { Entry next = e.next; int i = indexFor(e.hash, newCapacity); e.next = newTable[i]; newTable[i] = e; e = next; } while (e != null); } } } /** * Copies all of the mappings from the specified map to this map. * These mappings will replace any mappings that this map had for * any of the keys currently in the specified map. * * @param m mappings to be stored in this map * @throws NullPointerException if the specified map is null */ public void putAll(Map m) { int numKeysToBeAdded = m.size(); if (numKeysToBeAdded == 0) return; /* * Expand the map if the map if the number of mappings to be added * is greater than or equal to threshold. This is conservative; the * obvious condition is (m.size() + size) >= threshold, but this * condition could result in a map with twice the appropriate capacity, * if the keys to be added overlap with the keys already in this map. * By using the conservative calculation, we subject ourself * to at most one extra resize. */ if (numKeysToBeAdded > threshold) { int targetCapacity = (int)(numKeysToBeAdded / loadFactor + 1); if (targetCapacity > MAXIMUM_CAPACITY) targetCapacity = MAXIMUM_CAPACITY; int newCapacity = table.length; while (newCapacity < targetCapacity) newCapacity <<= 1; if (newCapacity > table.length) resize(newCapacity); } for (Iterator> i = m.entrySet().iterator(); i.hasNext(); ) { Map.Entry e = i.next(); put(e.getKey(), e.getValue()); } } /** * Removes the mapping for the specified key from this map if present. * * @param key key whose mapping is to be removed from the map * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key.) */ public V remove(Object key) { Entry e = removeEntryForKey(key); return (e == null ? null : e.value); } /** * Removes and returns the entry associated with the specified key * in the HashMap. Returns null if the HashMap contains no mapping * for this key. */ final Entry removeEntryForKey(Object key) { int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); Entry prev = table[i]; Entry e = prev; while (e != null) { Entry next = e.next; Object k; if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) { modCount++; size--; if (prev == e) table[i] = next; else prev.next = next; e.recordRemoval(this); return e; } prev = e; e = next; } return e; } /** * Special version of remove for EntrySet. */ final Entry removeMapping(Object o) { if (!(o instanceof Map.Entry)) return null; Map.Entry entry = (Map.Entry) o; Object key = entry.getKey(); int hash = (key == null) ? 0 : hash(key.hashCode()); int i = indexFor(hash, table.length); Entry prev = table[i]; Entry e = prev; while (e != null) { Entry next = e.next; if (e.hash == hash && e.equals(entry)) { modCount++; size--; if (prev == e) table[i] = next; else prev.next = next; e.recordRemoval(this); return e; } prev = e; e = next; } return e; } /** * Removes all of the mappings from this map. * The map will be empty after this call returns. */ public void clear() { modCount++; Entry[] tab = table; for (int i = 0; i < tab.length; i++) tab[i] = null; size = 0; } /** * Returns true if this map maps one or more keys to the * specified value. * * @param value value whose presence in this map is to be tested * @return true if this map maps one or more keys to the * specified value */ public boolean containsValue(Object value) { if (value == null) return containsNullValue(); Entry[] tab = table; for (int i = 0; i < tab.length ; i++) for (Entry e = tab[i] ; e != null ; e = e.next) if (value.equals(e.value)) return true; return false; } /** * Special-case code for containsValue with null argument */ private boolean containsNullValue() { Entry[] tab = table; for (int i = 0; i < tab.length ; i++) for (Entry e = tab[i] ; e != null ; e = e.next) if (e.value == null) return true; return false; } /** * Returns a shallow copy of this HashMap instance: the keys and * values themselves are not cloned. * * @return a shallow copy of this map */ public Object clone() { HashMap result = null; try { result = (HashMap)super.clone(); } catch (CloneNotSupportedException e) { // assert false; } result.table = new Entry[table.length]; result.entrySet = null; result.modCount = 0; result.size = 0; result.init(); result.putAllForCreate(this); return result; } static class Entry implements Map.Entry { final K key; V value; Entry next; final int hash; /** * Creates new entry. */ Entry(int h, K k, V v, Entry n) { value = v; next = n; key = k; hash = h; } public final K getKey() { return key; } public final V getValue() { return value; } public final V setValue(V newValue) { V oldValue = value; value = newValue; return oldValue; } public final boolean equals(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry)o; Object k1 = getKey(); Object k2 = e.getKey(); if (k1 == k2 || (k1 != null && k1.equals(k2))) { Object v1 = getValue(); Object v2 = e.getValue(); if (v1 == v2 || (v1 != null && v1.equals(v2))) return true; } return false; } public final int hashCode() { return (key==null ? 0 : key.hashCode()) ^ (value==null ? 0 : value.hashCode()); } public final String toString() { return getKey() + "=" + getValue(); } /** * This method is invoked whenever the value in an entry is * overwritten by an invocation of put(k,v) for a key k that's already * in the HashMap. */ void recordAccess(HashMap m) { } /** * This method is invoked whenever the entry is * removed from the table. */ void recordRemoval(HashMap m) { } } /** * Adds a new entry with the specified key, value and hash code to * the specified bucket. It is the responsibility of this * method to resize the table if appropriate. * * Subclass overrides this to alter the behavior of put method. */ void addEntry(int hash, K key, V value, int bucketIndex) { Entry e = table[bucketIndex]; table[bucketIndex] = new Entry(hash, key, value, e); if (size++ >= threshold) resize(2 * table.length); } /** * Like addEntry except that this version is used when creating entries * as part of Map construction or "pseudo-construction" (cloning, * deserialization). This version needn't worry about resizing the table. * * Subclass overrides this to alter the behavior of HashMap(Map), * clone, and readObject. */ void createEntry(int hash, K key, V value, int bucketIndex) { Entry e = table[bucketIndex]; table[bucketIndex] = new Entry(hash, key, value, e); size++; } private abstract class HashIterator implements Iterator { Entry next; // next entry to return int expectedModCount; // For fast-fail int index; // current slot Entry current; // current entry HashIterator() { expectedModCount = modCount; if (size > 0) { // advance to first entry Entry[] t = table; while (index < t.length && (next = t[index++]) == null) ; } } public final boolean hasNext() { return next != null; } final Entry nextEntry() { if (modCount != expectedModCount) throw new ConcurrentModificationException(); Entry e = next; if (e == null) throw new NoSuchElementException(); if ((next = e.next) == null) { Entry[] t = table; while (index < t.length && (next = t[index++]) == null) ; } current = e; return e; } public void remove() { if (current == null) throw new IllegalStateException(); if (modCount != expectedModCount) throw new ConcurrentModificationException(); Object k = current.key; current = null; HashMap.this.removeEntryForKey(k); expectedModCount = modCount; } } private final class ValueIterator extends HashIterator { public V next() { return nextEntry().value; } } private final class KeyIterator extends HashIterator { public K next() { return nextEntry().getKey(); } } private final class EntryIterator extends HashIterator> { public Map.Entry next() { return nextEntry(); } } // Subclass overrides these to alter behavior of views' iterator() method Iterator newKeyIterator() { return new KeyIterator(); } Iterator newValueIterator() { return new ValueIterator(); } Iterator> newEntryIterator() { return new EntryIterator(); } // Views private transient Set> entrySet = null; /** * Returns a {@link Set} view of the keys contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation), the results of * the iteration are undefined. The set supports element removal, * which removes the corresponding mapping from the map, via the * Iterator.remove, Set.remove, * removeAll, retainAll, and clear * operations. It does not support the add or addAll * operations. */ public Set keySet() { Set ks = keySet; return (ks != null ? ks : (keySet = new KeySet())); } private final class KeySet extends AbstractSet { public Iterator iterator() { return newKeyIterator(); } public int size() { return size; } public boolean contains(Object o) { return containsKey(o); } public boolean remove(Object o) { return HashMap.this.removeEntryForKey(o) != null; } public void clear() { HashMap.this.clear(); } public Object[] toArray() { Object[] res = new Object[size]; Iterator it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), size); Object[] res = a; Iterator it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return a; } } /** * Returns a {@link Collection} view of the values contained in this map. * The collection is backed by the map, so changes to the map are * reflected in the collection, and vice-versa. If the map is * modified while an iteration over the collection is in progress * (except through the iterator's own remove operation), * the results of the iteration are undefined. The collection * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Collection.remove, removeAll, * retainAll and clear operations. It does not * support the add or addAll operations. */ public Collection values() { Collection vs = values; return (vs != null ? vs : (values = new Values())); } private final class Values extends AbstractCollection { public Iterator iterator() { return newValueIterator(); } public int size() { return size; } public boolean contains(Object o) { return containsValue(o); } public void clear() { HashMap.this.clear(); } } /** * Returns a {@link Set} view of the mappings contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation, or through the * setValue operation on a map entry returned by the * iterator) the results of the iteration are undefined. The set * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Set.remove, removeAll, retainAll and * clear operations. It does not support the * add or addAll operations. * * @return a set view of the mappings contained in this map */ public Set> entrySet() { return entrySet0(); } private Set> entrySet0() { Set> es = entrySet; return es != null ? es : (entrySet = new EntrySet()); } private final class EntrySet extends AbstractSet> { public Iterator> iterator() { return newEntryIterator(); } public boolean contains(Object o) { if (!(o instanceof Map.Entry)) return false; Map.Entry e = (Map.Entry) o; Entry candidate = getEntry(e.getKey()); return candidate != null && candidate.equals(e); } public boolean remove(Object o) { return removeMapping(o) != null; } public int size() { return size; } public void clear() { HashMap.this.clear(); } public Object[] toArray() { Object[] res = new Object[size]; Iterator> it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return res; } public T[] toArray(T[] a) { a = (T[])java.lang.reflect.Array.newInstance( a.getClass().getComponentType(), size); Object[] res = a; Iterator> it = iterator(); int i = 0; while (it.hasNext()) res[i++] = it.next(); return a; } } private static final long serialVersionUID = 362498820763181265L; } /* * 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 IllegalArgumentException with no * detail message. */ public IllegalArgumentException() { super(); } /** * Constructs an IllegalArgumentException 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. * *

Note that the detail message associated with cause is * not 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 null 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 (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * 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 null 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. * *

Note that the detail message associated with cause is * not 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 null 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 (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * 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 null 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: * *

    *
  • Iterators allow the caller to remove elements from the * underlying collection during the iteration with well-defined * semantics. *
  • Method names have been improved. *
* *

This interface is a member of the * * Java Collections Framework. * * @author Josh Bloch * @see Collection * @see ListIterator * @see Iterable * @since 1.2 */ public interface Iterator { /** * 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 juHashMapCreateIteratorValueLoop { public static void main(String[] args) { Random.args = args; HashMap m = createMap(Random.random()); Iterator it = m.values().iterator(); while (it.hasNext()) { it.next(); } } public static HashMap createMap(int n) { HashMap m = new HashMap(); while (n > 0) { Content key = new Content(Random.random()); Content val = new Content(Random.random()); m.put(key, val); n--; } return m; } } 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; /** * An object that maps keys to values. A map cannot contain duplicate keys; * each key can map to at most one value. * *

This interface takes the place of the Dictionary class, which * was a totally abstract class rather than an interface. * *

The Map interface provides three collection views, which * allow a map's contents to be viewed as a set of keys, collection of values, * or set of key-value mappings. The order of a map is defined as * the order in which the iterators on the map's collection views return their * elements. Some map implementations, like the TreeMap class, make * specific guarantees as to their order; others, like the HashMap * class, do not. * *

Note: great care must be exercised if mutable objects are used as map * keys. The behavior of a map is not specified if the value of an object is * changed in a manner that affects equals comparisons while the * object is a key in the map. A special case of this prohibition is that it * is not permissible for a map to contain itself as a key. While it is * permissible for a map to contain itself as a value, extreme caution is * advised: the equals and hashCode methods are no longer * well defined on such a map. * *

All general-purpose map implementation classes should provide two * "standard" constructors: a void (no arguments) constructor which creates an * empty map, and a constructor with a single argument of type Map, * which creates a new map with the same key-value mappings as its argument. * In effect, the latter constructor allows the user to copy any map, * producing an equivalent map of the desired class. There is no way to * enforce this recommendation (as interfaces cannot contain constructors) but * all of the general-purpose map implementations in the JDK comply. * *

The "destructive" methods contained in this interface, that is, the * methods that modify the map on which they operate, are specified to throw * UnsupportedOperationException if this map does not support the * operation. If this is the case, these methods may, but are not required * to, throw an UnsupportedOperationException if the invocation would * have no effect on the map. For example, invoking the {@link #putAll(Map)} * method on an unmodifiable map may, but is not required to, throw the * exception if the map whose mappings are to be "superimposed" is empty. * *

Some map implementations have restrictions on the keys and values they * may contain. For example, some implementations prohibit null keys and * values, and some have restrictions on the types of their keys. Attempting * to insert an ineligible key or value throws an unchecked exception, * typically NullPointerException or ClassCastException. * Attempting to query the presence of an ineligible key or value 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 key or value whose completion * would not result in the insertion of an ineligible element into the map 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. * *

This interface is a member of the * * Java Collections Framework. * *

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 #containsKey(Object) * containsKey(Object key)} method says: "returns true if and * only if this map contains a mapping for a key k such that * (key==null ? k==null : key.equals(k))." This specification should * not be construed to imply that invoking Map.containsKey * with a non-null argument key will cause key.equals(k) to * be invoked for any key k. Implementations are free to * implement optimizations whereby the equals invocation is avoided, * for example, by first comparing the hash codes of the two keys. (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. * * @param the type of keys maintained by this map * @param the type of mapped values * * @author Josh Bloch * @see HashMap * @see TreeMap * @see Hashtable * @see SortedMap * @see Collection * @see Set * @since 1.2 */ public interface Map { // Query Operations /** * Returns the number of key-value mappings in this map. If the * map contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of key-value mappings in this map */ int size(); /** * Returns true if this map contains no key-value mappings. * * @return true if this map contains no key-value mappings */ boolean isEmpty(); /** * Returns true if this map contains a mapping for the specified * key. More formally, returns true if and only if * this map contains a mapping for a key k such that * (key==null ? k==null : key.equals(k)). (There can be * at most one such mapping.) * * @param key key whose presence in this map is to be tested * @return true if this map contains a mapping for the specified * key * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this map * does not permit null keys (optional) */ boolean containsKey(Object key); /** * Returns true if this map maps one or more keys to the * specified value. More formally, returns true if and only if * this map contains at least one mapping to a value v such that * (value==null ? v==null : value.equals(v)). This operation * will probably require time linear in the map size for most * implementations of the Map interface. * * @param value value whose presence in this map is to be tested * @return true if this map maps one or more keys to the * specified value * @throws ClassCastException if the value is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified value is null and this * map does not permit null values (optional) */ boolean containsValue(Object value); /** * Returns the value to which the specified key is mapped, * or {@code null} if this map contains no mapping for the key. * *

More formally, if this map contains a mapping from a key * {@code k} to a value {@code v} such that {@code (key==null ? k==null : * key.equals(k))}, then this method returns {@code v}; otherwise * it returns {@code null}. (There can be at most one such mapping.) * *

If this map permits null values, then a return value of * {@code null} does not necessarily indicate that the map * contains no mapping for the key; it's also possible that the map * explicitly maps the key to {@code null}. The {@link #containsKey * containsKey} operation may be used to distinguish these two cases. * * @param key the key whose associated value is to be returned * @return the value to which the specified key is mapped, or * {@code null} if this map contains no mapping for the key * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this map * does not permit null keys (optional) */ V get(Object key); // Modification Operations /** * Associates the specified value with the specified key in this map * (optional operation). If the map previously contained a mapping for * the key, the old value is replaced by the specified value. (A map * m is said to contain a mapping for a key k if and only * if {@link #containsKey(Object) m.containsKey(k)} would return * true.) * * @param key key with which the specified value is to be associated * @param value value to be associated with the specified key * @return the previous value associated with key, or * null if there was no mapping for key. * (A null return can also indicate that the map * previously associated null with key, * if the implementation supports null values.) * @throws UnsupportedOperationException if the put operation * is not supported by this map * @throws ClassCastException if the class of the specified key or value * prevents it from being stored in this map * @throws NullPointerException if the specified key or value is null * and this map does not permit null keys or values * @throws IllegalArgumentException if some property of the specified key * or value prevents it from being stored in this map */ V put(K key, V value); /** * Removes the mapping for a key from this map if it is present * (optional operation). More formally, if this map contains a mapping * from key k to value v such that * (key==null ? k==null : key.equals(k)), that mapping * is removed. (The map can contain at most one such mapping.) * *

Returns the value to which this map previously associated the key, * or null if the map contained no mapping for the key. * *

If this map permits null values, then a return value of * null does not necessarily indicate that the map * contained no mapping for the key; it's also possible that the map * explicitly mapped the key to null. * *

The map will not contain a mapping for the specified key once the * call returns. * * @param key key whose mapping is to be removed from the map * @return the previous value associated with key, or * null if there was no mapping for key. * @throws UnsupportedOperationException if the remove operation * is not supported by this map * @throws ClassCastException if the key is of an inappropriate type for * this map (optional) * @throws NullPointerException if the specified key is null and this * map does not permit null keys (optional) */ V remove(Object key); // Bulk Operations /** * Copies all of the mappings from the specified map to this map * (optional operation). The effect of this call is equivalent to that * of calling {@link #put(Object,Object) put(k, v)} on this map once * for each mapping from key k to value v in the * specified map. The behavior of this operation is undefined if the * specified map is modified while the operation is in progress. * * @param m mappings to be stored in this map * @throws UnsupportedOperationException if the putAll operation * is not supported by this map * @throws ClassCastException if the class of a key or value in the * specified map prevents it from being stored in this map * @throws NullPointerException if the specified map is null, or if * this map does not permit null keys or values, and the * specified map contains null keys or values * @throws IllegalArgumentException if some property of a key or value in * the specified map prevents it from being stored in this map */ void putAll(Map m); /** * Removes all of the mappings from this map (optional operation). * The map will be empty after this call returns. * * @throws UnsupportedOperationException if the clear operation * is not supported by this map */ void clear(); // Views /** * Returns a {@link Set} view of the keys contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation), the results of * the iteration are undefined. The set supports element removal, * which removes the corresponding mapping from the map, via the * Iterator.remove, Set.remove, * removeAll, retainAll, and clear * operations. It does not support the add or addAll * operations. * * @return a set view of the keys contained in this map */ Set keySet(); /** * Returns a {@link Collection} view of the values contained in this map. * The collection is backed by the map, so changes to the map are * reflected in the collection, and vice-versa. If the map is * modified while an iteration over the collection is in progress * (except through the iterator's own remove operation), * the results of the iteration are undefined. The collection * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Collection.remove, removeAll, * retainAll and clear operations. It does not * support the add or addAll operations. * * @return a collection view of the values contained in this map */ Collection values(); /** * Returns a {@link Set} view of the mappings contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own remove operation, or through the * setValue operation on a map entry returned by the * iterator) the results of the iteration are undefined. The set * supports element removal, which removes the corresponding * mapping from the map, via the Iterator.remove, * Set.remove, removeAll, retainAll and * clear operations. It does not support the * add or addAll operations. * * @return a set view of the mappings contained in this map */ Set> entrySet(); /** * A map entry (key-value pair). The Map.entrySet method returns * a collection-view of the map, whose elements are of this class. The * only way to obtain a reference to a map entry is from the * iterator of this collection-view. These Map.Entry objects are * valid only for the duration of the iteration; more formally, * the behavior of a map entry is undefined if the backing map has been * modified after the entry was returned by the iterator, except through * the setValue operation on the map entry. * * @see Map#entrySet() * @since 1.2 */ interface Entry { /** * Returns the key corresponding to this entry. * * @return the key corresponding to this entry * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ K getKey(); /** * Returns the value corresponding to this entry. If the mapping * has been removed from the backing map (by the iterator's * remove operation), the results of this call are undefined. * * @return the value corresponding to this entry * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ V getValue(); /** * Replaces the value corresponding to this entry with the specified * value (optional operation). (Writes through to the map.) The * behavior of this call is undefined if the mapping has already been * removed from the map (by the iterator's remove operation). * * @param value new value to be stored in this entry * @return old value corresponding to the entry * @throws UnsupportedOperationException if the put operation * is not supported by the backing map * @throws ClassCastException if the class of the specified value * prevents it from being stored in the backing map * @throws NullPointerException if the backing map does not permit * null values, and the specified value is null * @throws IllegalArgumentException if some property of this value * prevents it from being stored in the backing map * @throws IllegalStateException implementations may, but are not * required to, throw this exception if the entry has been * removed from the backing map. */ V setValue(V value); /** * Compares the specified object with this entry for equality. * Returns true if the given object is also a map entry and * the two entries represent the same mapping. More formally, two * entries e1 and e2 represent the same mapping * if

         *     (e1.getKey()==null ?
         *      e2.getKey()==null : e1.getKey().equals(e2.getKey()))  &&
         *     (e1.getValue()==null ?
         *      e2.getValue()==null : e1.getValue().equals(e2.getValue()))
         * 
* This ensures that the equals method works properly across * different implementations of the Map.Entry interface. * * @param o object to be compared for equality with this map entry * @return true if the specified object is equal to this map * entry */ boolean equals(Object o); /** * Returns the hash code value for this map entry. The hash code * of a map entry e is defined to be:
         *     (e.getKey()==null   ? 0 : e.getKey().hashCode()) ^
         *     (e.getValue()==null ? 0 : e.getValue().hashCode())
         * 
* This ensures that e1.equals(e2) implies that * e1.hashCode()==e2.hashCode() for any two Entries * e1 and e2, as required by the general * contract of Object.hashCode. * * @return the hash code value for this map entry * @see Object#hashCode() * @see Object#equals(Object) * @see #equals(Object) */ int hashCode(); } // Comparison and hashing /** * Compares the specified object with this map for equality. Returns * true if the given object is also a map and the two maps * represent the same mappings. More formally, two maps m1 and * m2 represent the same mappings if * m1.entrySet().equals(m2.entrySet()). This ensures that the * equals method works properly across different implementations * of the Map interface. * * @param o object to be compared for equality with this map * @return true if the specified object is equal to this map */ boolean equals(Object o); /** * Returns the hash code value for this map. The hash code of a map is * defined to be the sum of the hash codes of each entry in the map's * entrySet() view. This ensures that m1.equals(m2) * implies that m1.hashCode()==m2.hashCode() for any two maps * m1 and m2, as required by the general contract of * {@link Object#hashCode}. * * @return the hash code value for this map * @see Map.Entry#hashCode() * @see Object#equals(Object) * @see #equals(Object) */ int hashCode(); } /* * 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 nextElement method of an * Enumeration 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 NoSuchElementException with null * as its error message string. */ public NoSuchElementException() { super(); } /** * Constructs a NoSuchElementException, saving a reference * to the error message string s for later retrieval by the * getMessage method. * * @param s the detail message. */ public NoSuchElementException(String s) { super(s); } } 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; /** * A collection that contains no duplicate elements. More formally, sets * contain no pair of elements e1 and e2 such that * e1.equals(e2), and at most one null element. As implied by * its name, this interface models the mathematical set abstraction. * *

The Set interface places additional stipulations, beyond those * inherited from the Collection interface, on the contracts of all * constructors and on the contracts of the add, equals and * hashCode methods. Declarations for other inherited methods are * also included here for convenience. (The specifications accompanying these * declarations have been tailored to the Set interface, but they do * not contain any additional stipulations.) * *

The additional stipulation on constructors is, not surprisingly, * that all constructors must create a set that contains no duplicate elements * (as defined above). * *

Note: Great care must be exercised if mutable objects are used as set * elements. The behavior of a set is not specified if the value of an object * is changed in a manner that affects equals comparisons while the * object is an element in the set. A special case of this prohibition is * that it is not permissible for a set to contain itself as an element. * *

Some set 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 * NullPointerException or ClassCastException. 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 set 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. * *

This interface is a member of the * * Java Collections Framework. * * @param the type of elements maintained by this set * * @author Josh Bloch * @author Neal Gafter * @see Collection * @see List * @see SortedSet * @see HashSet * @see TreeSet * @see AbstractSet * @see Collections#singleton(java.lang.Object) * @see Collections#EMPTY_SET * @since 1.2 */ public interface Set extends Collection { // Query Operations /** * Returns the number of elements in this set (its cardinality). If this * set contains more than Integer.MAX_VALUE elements, returns * Integer.MAX_VALUE. * * @return the number of elements in this set (its cardinality) */ int size(); /** * Returns true if this set contains no elements. * * @return true if this set contains no elements */ boolean isEmpty(); /** * Returns true if this set contains the specified element. * More formally, returns true if and only if this set * contains an element e such that * (o==null ? e==null : o.equals(e)). * * @param o element whose presence in this set is to be tested * @return true if this set contains the specified element * @throws ClassCastException if the type of the specified element * is incompatible with this set (optional) * @throws NullPointerException if the specified element is null and this * set does not permit null elements (optional) */ boolean contains(Object o); /** * Returns an iterator over the elements in this set. The elements are * returned in no particular order (unless this set is an instance of some * class that provides a guarantee). * * @return an iterator over the elements in this set */ Iterator iterator(); /** * Returns an array containing all of the elements in this set. * If this set makes any guarantees as to what order its elements * are returned by its iterator, this method must return the * elements in the same order. * *

The returned array will be "safe" in that no references to it * are maintained by this set. (In other words, this method must * allocate a new array even if this set is backed by an array). * The caller is thus free to modify the returned array. * *

This method acts as bridge between array-based and collection-based * APIs. * * @return an array containing all the elements in this set */ Object[] toArray(); /** * Returns an array containing all of the elements in this set; the * runtime type of the returned array is that of the specified array. * If the set fits in the specified array, it is returned therein. * Otherwise, a new array is allocated with the runtime type of the * specified array and the size of this set. * *

If this set fits in the specified array with room to spare * (i.e., the array has more elements than this set), the element in * the array immediately following the end of the set is set to * null. (This is useful in determining the length of this * set only if the caller knows that this set does not contain * any null elements.) * *

If this set makes any guarantees as to what order its elements * are returned by its iterator, this method must return the elements * in the same order. * *

Like the {@link #toArray()} method, this method acts as bridge between * array-based and collection-based APIs. Further, this method allows * precise control over the runtime type of the output array, and may, * under certain circumstances, be used to save allocation costs. * *

Suppose x is a set known to contain only strings. * The following code can be used to dump the set into a newly allocated * array of String: * *

     *     String[] y = x.toArray(new String[0]);
* * Note that toArray(new Object[0]) is identical in function to * toArray(). * * @param a the array into which the elements of this set are to be * stored, if it is big enough; otherwise, a new array of the same * runtime type is allocated for this purpose. * @return an array containing all the elements in this set * @throws ArrayStoreException if the runtime type of the specified array * is not a supertype of the runtime type of every element in this * set * @throws NullPointerException if the specified array is null */ T[] toArray(T[] a); // Modification Operations /** * Adds the specified element to this set if it is not already present * (optional operation). More formally, adds the specified element * e to this set if the set contains no element e2 * such that * (e==null ? e2==null : e.equals(e2)). * If this set already contains the element, the call leaves the set * unchanged and returns false. In combination with the * restriction on constructors, this ensures that sets never contain * duplicate elements. * *

The stipulation above does not imply that sets must accept all * elements; sets may refuse to add any particular element, including * null, and throw an exception, as described in the * specification for {@link Collection#add Collection.add}. * Individual set implementations should clearly document any * restrictions on the elements that they may contain. * * @param e element to be added to this set * @return true if this set did not already contain the specified * element * @throws UnsupportedOperationException if the add operation * is not supported by this set * @throws ClassCastException if the class of the specified element * prevents it from being added to this set * @throws NullPointerException if the specified element is null and this * set does not permit null elements * @throws IllegalArgumentException if some property of the specified element * prevents it from being added to this set */ boolean add(E e); /** * Removes the specified element from this set if it is present * (optional operation). More formally, removes an element e * such that * (o==null ? e==null : o.equals(e)), if * this set contains such an element. Returns true if this set * contained the element (or equivalently, if this set changed as a * result of the call). (This set will not contain the element once the * call returns.) * * @param o object to be removed from this set, if present * @return true if this set contained the specified element * @throws ClassCastException if the type of the specified element * is incompatible with this set (optional) * @throws NullPointerException if the specified element is null and this * set does not permit null elements (optional) * @throws UnsupportedOperationException if the remove operation * is not supported by this set */ boolean remove(Object o); // Bulk Operations /** * Returns true if this set contains all of the elements of the * specified collection. If the specified collection is also a set, this * method returns true if it is a subset of this set. * * @param c collection to be checked for containment in this set * @return true if this set 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 * set (optional) * @throws NullPointerException if the specified collection contains one * or more null elements and this set 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 set if * they're not already present (optional operation). If the specified * collection is also a set, the addAll operation effectively * modifies this set so that its value is the union of the two * sets. The behavior of this operation is undefined if the specified * collection is modified while the operation is in progress. * * @param c collection containing elements to be added to this set * @return true if this set changed as a result of the call * * @throws UnsupportedOperationException if the addAll operation * is not supported by this set * @throws ClassCastException if the class of an element of the * specified collection prevents it from being added to this set * @throws NullPointerException if the specified collection contains one * or more null elements and this set 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 set * @see #add(Object) */ boolean addAll(Collection c); /** * Retains only the elements in this set that are contained in the * specified collection (optional operation). In other words, removes * from this set all of its elements that are not contained in the * specified collection. If the specified collection is also a set, this * operation effectively modifies this set so that its value is the * intersection of the two sets. * * @param c collection containing elements to be retained in this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the retainAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set contains a null element and the * specified collection does not permit null elements (optional), * or if the specified collection is null * @see #remove(Object) */ boolean retainAll(Collection c); /** * Removes from this set all of its elements that are contained in the * specified collection (optional operation). If the specified * collection is also a set, this operation effectively modifies this * set so that its value is the asymmetric set difference of * the two sets. * * @param c collection containing elements to be removed from this set * @return true if this set changed as a result of the call * @throws UnsupportedOperationException if the removeAll operation * is not supported by this set * @throws ClassCastException if the class of an element of this set * is incompatible with the specified collection (optional) * @throws NullPointerException if this set 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); /** * Removes all of the elements from this set (optional operation). * The set will be empty after this call returns. * * @throws UnsupportedOperationException if the clear method * is not supported by this set */ void clear(); // Comparison and hashing /** * Compares the specified object with this set for equality. Returns * true if the specified object is also a set, the two sets * have the same size, and every member of the specified set is * contained in this set (or equivalently, every member of this set is * contained in the specified set). This definition ensures that the * equals method works properly across different implementations of the * set interface. * * @param o object to be compared for equality with this set * @return true if the specified object is equal to this set */ boolean equals(Object o); /** * Returns the hash code value for this set. The hash code of a set is * defined to be the sum of the hash codes of the elements in the set, * where the hash code of a null element is defined to be zero. * This ensures that s1.equals(s2) implies that * s1.hashCode()==s2.hashCode() for any two sets s1 * and s2, as required by the general contract of * {@link Object#hashCode}. * * @return the hash code value for this set * @see Object#equals(Object) * @see Set#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; /** * Thrown to indicate that the requested operation is not supported.

* * This class is a member of the * * Java Collections Framework. * * @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. * *

Note that the detail message associated with cause is * not 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 null 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 (cause==null ? null : cause.toString()) (which * typically contains the class and detail message of cause). * 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 null 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; } ---------------------------------------- (3) JBCToGraph (EQUIVALENT) Constructed TerminationGraph. ---------------------------------------- (4) Obligation: Termination Graph based on JBC Program: javaUtilEx.juHashMapCreateIteratorValueLoop.main([Ljava/lang/String;)V: Graph of 405 nodes with 2 SCCs. javaUtilEx.juHashMapCreateIteratorValueLoop.createMap(I)LjavaUtilEx/HashMap;: Graph of 248 nodes with 1 SCC. javaUtilEx.HashMap.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;: Graph of 493 nodes with 2 SCCs. javaUtilEx.Content.hashCode()I: Graph of 6 nodes with 0 SCCs. javaUtilEx.Content.equals(Ljava/lang/Object;)Z: Graph of 31 nodes with 0 SCCs. ---------------------------------------- (5) TerminationGraphToSCCProof (SOUND) Splitted TerminationGraph to 5 SCCss. ---------------------------------------- (6) Complex Obligation (AND) ---------------------------------------- (7) Obligation: SCC of termination graph based on JBC Program. SCC contains nodes from the following methods: javaUtilEx.HashMap.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; SCC calls the following helper methods: Performed SCC analyses: *Used field analysis yielded the following read fields: *javaUtilEx.HashMap$Entry: [next, hash] *Marker field analysis yielded the following relations that could be markers: ---------------------------------------- (8) SCCToIRSProof (SOUND) Transformed FIGraph SCCs to intTRSs. Log: Generated rules. Obtained 58 IRulesP rules: f11823_0_transfer_Load(EOS(STATIC_11823), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, i4566) -> f11825_0_transfer_ArrayLength(EOS(STATIC_11825), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, i4566, java.lang.Object(ARRAY(i4565))) :|: TRUE f11825_0_transfer_ArrayLength(EOS(STATIC_11825), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, i4566, java.lang.Object(ARRAY(i4565))) -> f11827_0_transfer_GE(EOS(STATIC_11827), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, i4566, i4565) :|: i4565 >= 0 f11827_0_transfer_GE(EOS(STATIC_11827), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, i4566, i4565) -> f11830_0_transfer_GE(EOS(STATIC_11830), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, i4566, i4565) :|: i4566 < i4565 f11830_0_transfer_GE(EOS(STATIC_11830), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, i4566, i4565) -> f11833_0_transfer_Load(EOS(STATIC_11833), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566) :|: i4566 < i4565 f11833_0_transfer_Load(EOS(STATIC_11833), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566) -> f11836_0_transfer_Load(EOS(STATIC_11836), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(ARRAY(i4565))) :|: TRUE f11836_0_transfer_Load(EOS(STATIC_11836), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(ARRAY(i4565))) -> f11838_0_transfer_ArrayAccess(EOS(STATIC_11838), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(ARRAY(i4565)), i4566) :|: TRUE f11838_0_transfer_ArrayAccess(EOS(STATIC_11838), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(ARRAY(i4565)), i4566) -> f11840_0_transfer_ArrayAccess(EOS(STATIC_11840), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(ARRAY(i4565)), i4566) :|: TRUE f11840_0_transfer_ArrayAccess(EOS(STATIC_11840), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(ARRAY(i4565)), i4566) -> f11843_0_transfer_Store(EOS(STATIC_11843), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7345) :|: i4566 < i4565 f11843_0_transfer_Store(EOS(STATIC_11843), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7345) -> f11846_0_transfer_Load(EOS(STATIC_11846), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7345) :|: TRUE f11846_0_transfer_Load(EOS(STATIC_11846), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7345) -> f11848_0_transfer_NULL(EOS(STATIC_11848), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7345, o7345) :|: TRUE f11848_0_transfer_NULL(EOS(STATIC_11848), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(o7347sub)) -> f11851_0_transfer_NULL(EOS(STATIC_11851), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(o7347sub)) :|: TRUE f11848_0_transfer_NULL(EOS(STATIC_11848), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, NULL, NULL) -> f11852_0_transfer_NULL(EOS(STATIC_11852), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, NULL, NULL) :|: TRUE f11851_0_transfer_NULL(EOS(STATIC_11851), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(o7347sub)) -> f11855_0_transfer_Load(EOS(STATIC_11855), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub)) :|: TRUE f11855_0_transfer_Load(EOS(STATIC_11855), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub)) -> f11858_0_transfer_Load(EOS(STATIC_11858), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(ARRAY(i4565))) :|: TRUE f11858_0_transfer_Load(EOS(STATIC_11858), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(ARRAY(i4565))) -> f11862_0_transfer_ConstantStackPush(EOS(STATIC_11862), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(ARRAY(i4565)), i4566) :|: TRUE f11862_0_transfer_ConstantStackPush(EOS(STATIC_11862), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(ARRAY(i4565)), i4566) -> f11866_0_transfer_ArrayAccess(EOS(STATIC_11866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(ARRAY(i4565)), i4566, NULL) :|: TRUE f11866_0_transfer_ArrayAccess(EOS(STATIC_11866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(ARRAY(i4565)), i4566, NULL) -> f11868_0_transfer_ArrayAccess(EOS(STATIC_11868), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(ARRAY(i4565)), i4566, NULL) :|: TRUE f11868_0_transfer_ArrayAccess(EOS(STATIC_11868), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(ARRAY(i4565)), i4566, NULL) -> f11872_0_transfer_Load(EOS(STATIC_11872), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347put)) :|: i4566 < i4565 f11872_0_transfer_Load(EOS(STATIC_11872), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub)) -> f11876_0_transfer_FieldAccess(EOS(STATIC_11876), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7347sub), java.lang.Object(o7347sub)) :|: TRUE f11876_0_transfer_FieldAccess(EOS(STATIC_11876), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581))) -> f11878_0_transfer_FieldAccess(EOS(STATIC_11878), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581))) :|: TRUE f11878_0_transfer_FieldAccess(EOS(STATIC_11878), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581))) -> f11882_0_transfer_Store(EOS(STATIC_11882), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359) :|: TRUE f11882_0_transfer_Store(EOS(STATIC_11882), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359) -> f11885_0_transfer_Load(EOS(STATIC_11885), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359) :|: TRUE f11885_0_transfer_Load(EOS(STATIC_11885), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359) -> f11887_0_transfer_FieldAccess(EOS(STATIC_11887), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581))) :|: TRUE f11887_0_transfer_FieldAccess(EOS(STATIC_11887), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581))) -> f11890_0_transfer_Load(EOS(STATIC_11890), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581) :|: TRUE f11890_0_transfer_Load(EOS(STATIC_11890), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581) -> f11893_0_transfer_InvokeMethod(EOS(STATIC_11893), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581, i4279) :|: TRUE f11893_0_transfer_InvokeMethod(EOS(STATIC_11893), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581, i4279) -> f11895_0_indexFor_Load(EOS(STATIC_11895), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581, i4279) :|: TRUE f11895_0_indexFor_Load(EOS(STATIC_11895), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581, i4279) -> f11900_0_indexFor_Load(EOS(STATIC_11900), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4279, i4581) :|: TRUE f11900_0_indexFor_Load(EOS(STATIC_11900), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4279, i4581) -> f11902_0_indexFor_ConstantStackPush(EOS(STATIC_11902), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581, i4279) :|: TRUE f11902_0_indexFor_ConstantStackPush(EOS(STATIC_11902), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581, i4279) -> f11905_0_indexFor_IntArithmetic(EOS(STATIC_11905), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581, i4279, 1) :|: TRUE f11905_0_indexFor_IntArithmetic(EOS(STATIC_11905), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581, i4279, matching1) -> f11908_0_indexFor_IntArithmetic(EOS(STATIC_11908), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581, i4279 - 1) :|: i4279 >= 0 && matching1 = 1 f11908_0_indexFor_IntArithmetic(EOS(STATIC_11908), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4581, i4598) -> f11910_0_indexFor_Return(EOS(STATIC_11910), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599) :|: TRUE f11910_0_indexFor_Return(EOS(STATIC_11910), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599) -> f11913_0_transfer_Store(EOS(STATIC_11913), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599) :|: TRUE f11913_0_transfer_Store(EOS(STATIC_11913), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599) -> f11916_0_transfer_Load(EOS(STATIC_11916), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599) :|: TRUE f11916_0_transfer_Load(EOS(STATIC_11916), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599) -> f11919_0_transfer_Load(EOS(STATIC_11919), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581))) :|: TRUE f11919_0_transfer_Load(EOS(STATIC_11919), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581))) -> f11922_0_transfer_Load(EOS(STATIC_11922), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), java.lang.Object(ARRAY(i4279))) :|: TRUE f11922_0_transfer_Load(EOS(STATIC_11922), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), java.lang.Object(ARRAY(i4279))) -> f11925_0_transfer_ArrayAccess(EOS(STATIC_11925), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), java.lang.Object(ARRAY(i4279)), i4599) :|: TRUE f11925_0_transfer_ArrayAccess(EOS(STATIC_11925), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), java.lang.Object(ARRAY(i4279)), i4599) -> f11928_0_transfer_ArrayAccess(EOS(STATIC_11928), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), java.lang.Object(ARRAY(i4279)), i4599) :|: TRUE f11928_0_transfer_ArrayAccess(EOS(STATIC_11928), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), java.lang.Object(ARRAY(i4279)), i4599) -> f11932_0_transfer_FieldAccess(EOS(STATIC_11932), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7379) :|: i4599 < i4279 f11932_0_transfer_FieldAccess(EOS(STATIC_11932), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7359, i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359, i4581)), o7379) -> f11936_0_transfer_Load(EOS(STATIC_11936), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7379, i4581)), o7359, i4599) :|: TRUE f11936_0_transfer_Load(EOS(STATIC_11936), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7379, i4581)), o7359, i4599) -> f11938_0_transfer_Load(EOS(STATIC_11938), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7379, i4581)), o7359, i4599, java.lang.Object(ARRAY(i4279))) :|: TRUE f11938_0_transfer_Load(EOS(STATIC_11938), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7379, i4581)), o7359, i4599, java.lang.Object(ARRAY(i4279))) -> f11942_0_transfer_Load(EOS(STATIC_11942), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7379, i4581)), o7359, java.lang.Object(ARRAY(i4279)), i4599) :|: TRUE f11942_0_transfer_Load(EOS(STATIC_11942), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7379, i4581)), o7359, java.lang.Object(ARRAY(i4279)), i4599) -> f11945_0_transfer_ArrayAccess(EOS(STATIC_11945), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7359, java.lang.Object(ARRAY(i4279)), i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7379, i4581))) :|: TRUE f11945_0_transfer_ArrayAccess(EOS(STATIC_11945), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7359, java.lang.Object(ARRAY(i4279)), i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7379, i4581))) -> f11947_0_transfer_ArrayAccess(EOS(STATIC_11947), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7359, java.lang.Object(ARRAY(i4279)), i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7379, i4581))) :|: TRUE f11947_0_transfer_ArrayAccess(EOS(STATIC_11947), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7359, java.lang.Object(ARRAY(i4279)), i4599, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7379, i4581))) -> f11951_0_transfer_Load(EOS(STATIC_11951), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7359) :|: i4599 < i4279 f11951_0_transfer_Load(EOS(STATIC_11951), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7359) -> f11955_0_transfer_Store(EOS(STATIC_11955), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7359) :|: TRUE f11955_0_transfer_Store(EOS(STATIC_11955), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7359) -> f11956_0_transfer_Load(EOS(STATIC_11956), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7359) :|: TRUE f11956_0_transfer_Load(EOS(STATIC_11956), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7359) -> f11959_0_transfer_NONNULL(EOS(STATIC_11959), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, o7359, o7359) :|: TRUE f11959_0_transfer_NONNULL(EOS(STATIC_11959), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7402sub), java.lang.Object(o7402sub)) -> f11962_0_transfer_NONNULL(EOS(STATIC_11962), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7402sub), java.lang.Object(o7402sub)) :|: TRUE f11959_0_transfer_NONNULL(EOS(STATIC_11959), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, NULL, NULL) -> f11963_0_transfer_NONNULL(EOS(STATIC_11963), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, NULL, NULL) :|: TRUE f11962_0_transfer_NONNULL(EOS(STATIC_11962), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7402sub), java.lang.Object(o7402sub)) -> f11964_0_transfer_Load(EOS(STATIC_11964), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7402sub)) :|: TRUE f11964_0_transfer_Load(EOS(STATIC_11964), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7402sub)) -> f11872_0_transfer_Load(EOS(STATIC_11872), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, java.lang.Object(o7402sub)) :|: TRUE f11963_0_transfer_NONNULL(EOS(STATIC_11963), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, NULL, NULL) -> f11965_0_transfer_Inc(EOS(STATIC_11965), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566) :|: TRUE f11965_0_transfer_Inc(EOS(STATIC_11965), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566) -> f11968_0_transfer_JMP(EOS(STATIC_11968), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566 + 1) :|: TRUE f11968_0_transfer_JMP(EOS(STATIC_11968), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4617) -> f11971_0_transfer_Load(EOS(STATIC_11971), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4617) :|: TRUE f11971_0_transfer_Load(EOS(STATIC_11971), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4617) -> f11821_0_transfer_Load(EOS(STATIC_11821), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4617) :|: TRUE f11821_0_transfer_Load(EOS(STATIC_11821), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566) -> f11823_0_transfer_Load(EOS(STATIC_11823), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, i4566) :|: TRUE f11852_0_transfer_NULL(EOS(STATIC_11852), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566, NULL, NULL) -> f11856_0_transfer_Inc(EOS(STATIC_11856), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566) :|: TRUE f11856_0_transfer_Inc(EOS(STATIC_11856), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566) -> f11965_0_transfer_Inc(EOS(STATIC_11965), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279, java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4279)), java.lang.Object(ARRAY(i4565)), i4279, i4566) :|: TRUE Combined rules. Obtained 4 IRulesP rules: f11823_0_transfer_Load(EOS(STATIC_11823), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279:0, java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4279:0, i4566:0, i4566:0) -> f11823_0_transfer_Load(EOS(STATIC_11823), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279:0, java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4279:0, i4566:0 + 1, i4566:0 + 1) :|: i4565:0 > -1 && i4566:0 < i4565:0 f11959_0_transfer_NONNULL(EOS(STATIC_11959), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279:0, java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4279:0, i4566:0, NULL, NULL) -> f11823_0_transfer_Load(EOS(STATIC_11823), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279:0, java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4279:0, i4566:0 + 1, i4566:0 + 1) :|: TRUE f11959_0_transfer_NONNULL(EOS(STATIC_11959), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279:0, java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4279:0, i4566:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359:0, i4581:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7359:0, i4581:0))) -> f11959_0_transfer_NONNULL(EOS(STATIC_11959), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279:0, java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4279:0, i4566:0, o7359:0, o7359:0) :|: i4279:0 > -1 && i4599:0 < i4279:0 f11823_0_transfer_Load(EOS(STATIC_11823), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279:0, java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4279:0, i4566:0, i4566:0) -> f11959_0_transfer_NONNULL(EOS(STATIC_11959), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i4279:0, java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4279:0, i4566:0, o7359:0, o7359:0) :|: i4565:0 > -1 && i4566:0 < i4565:0 && i4279:0 > -1 && i4599:0 < i4279:0 Filtered constant ground arguments: f11823_0_transfer_Load(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) -> f11823_0_transfer_Load(x4, x5, x6, x7, x8, x9, x10) f11959_0_transfer_NONNULL(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) -> f11959_0_transfer_NONNULL(x4, x5, x6, x7, x8, x9, x10, x11) javaUtilEx.AbstractMap(x1) -> javaUtilEx.AbstractMap javaUtilEx.HashMap$Entry(x1, x2, x3) -> javaUtilEx.HashMap$Entry(x2, x3) javaUtilEx.HashMap(x1) -> javaUtilEx.HashMap Filtered duplicate arguments: f11823_0_transfer_Load(x1, x2, x3, x4, x5, x6, x7) -> f11823_0_transfer_Load(x3, x4, x7) f11959_0_transfer_NONNULL(x1, x2, x3, x4, x5, x6, x7, x8) -> f11959_0_transfer_NONNULL(x3, x4, x6, x8) Filtered unneeded arguments: javaUtilEx.HashMap$Entry(x1, x2) -> javaUtilEx.HashMap$Entry(x1) Finished conversion. Obtained 4 rules.P rules: f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0, i4279:0, i4565:0) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0 + 1, i4279:0, i4565:0) :|: i4565:0 > -1 && i4566:0 < i4565:0 f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0, NULL, i4279:0, i4565:0) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0 + 1, i4279:0, i4565:0) :|: TRUE f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7359:0)), i4279:0, i4565:0) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0, o7359:0, i4279:0, i4565:0) :|: i4279:0 > -1 && i4599:0 < i4279:0 f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0, i4279:0, i4565:0) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0, o7359:0, i4279:0, i4565:0) :|: i4566:0 < i4565:0 && i4565:0 > -1 && i4599:0 < i4279:0 && i4279:0 > -1 ---------------------------------------- (9) Obligation: Rules: f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0, i4279:0, i4565:0) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0 + 1, i4279:0, i4565:0) :|: i4565:0 > -1 && i4566:0 < i4565:0 f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x)), java.lang.Object(ARRAY(x1)), x2, NULL, x, x1) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(x)), java.lang.Object(ARRAY(x1)), x2 + 1, x, x1) :|: TRUE f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, java.lang.Object(javaUtilEx.HashMap$Entry(x6)), x3, x4) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, x6, x3, x4) :|: x3 > -1 && x7 < x3 f11823_0_transfer_Load(java.lang.Object(ARRAY(x8)), java.lang.Object(ARRAY(x9)), x10, x8, x9) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x8)), java.lang.Object(ARRAY(x9)), x10, x11, x8, x9) :|: x10 < x9 && x9 > -1 && x12 < x8 && x8 > -1 ---------------------------------------- (10) IRSFormatTransformerProof (EQUIVALENT) Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). ---------------------------------------- (11) Obligation: Rules: f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0, i4279:0, i4565:0) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), arith, i4279:0, i4565:0) :|: i4565:0 > -1 && i4566:0 < i4565:0 && arith = i4566:0 + 1 f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x13)), java.lang.Object(ARRAY(x14)), x15, NULL, x13, x14) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(x13)), java.lang.Object(ARRAY(x14)), x16, x13, x14) :|: TRUE && x16 = x15 + 1 f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, java.lang.Object(javaUtilEx.HashMap$Entry(x6)), x3, x4) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, x6, x3, x4) :|: x3 > -1 && x7 < x3 f11823_0_transfer_Load(java.lang.Object(ARRAY(x8)), java.lang.Object(ARRAY(x9)), x10, x8, x9) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x8)), java.lang.Object(ARRAY(x9)), x10, x11, x8, x9) :|: x10 < x9 && x9 > -1 && x12 < x8 && x8 > -1 ---------------------------------------- (12) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0, i4279:0, i4565:0) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), arith, i4279:0, i4565:0) :|: i4565:0 > -1 && i4566:0 < i4565:0 && arith = i4566:0 + 1 (2) f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x13)), java.lang.Object(ARRAY(x14)), x15, NULL, x13, x14) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(x13)), java.lang.Object(ARRAY(x14)), x16, x13, x14) :|: TRUE && x16 = x15 + 1 (3) f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, java.lang.Object(javaUtilEx.HashMap$Entry(x6)), x3, x4) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, x6, x3, x4) :|: x3 > -1 && x7 < x3 (4) f11823_0_transfer_Load(java.lang.Object(ARRAY(x8)), java.lang.Object(ARRAY(x9)), x10, x8, x9) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x8)), java.lang.Object(ARRAY(x9)), x10, x11, x8, x9) :|: x10 < x9 && x9 > -1 && x12 < x8 && x8 > -1 Arcs: (1) -> (1), (4) (2) -> (1), (4) (3) -> (2), (3) (4) -> (2), (3) This digraph is fully evaluated! ---------------------------------------- (13) Obligation: Termination digraph: Nodes: (1) f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), i4566:0, i4279:0, i4565:0) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0)), java.lang.Object(ARRAY(i4565:0)), arith, i4279:0, i4565:0) :|: i4565:0 > -1 && i4566:0 < i4565:0 && arith = i4566:0 + 1 (2) f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x13)), java.lang.Object(ARRAY(x14)), x15, NULL, x13, x14) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(x13)), java.lang.Object(ARRAY(x14)), x16, x13, x14) :|: TRUE && x16 = x15 + 1 (3) f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, java.lang.Object(javaUtilEx.HashMap$Entry(x6)), x3, x4) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3)), java.lang.Object(ARRAY(x4)), x5, x6, x3, x4) :|: x3 > -1 && x7 < x3 (4) f11823_0_transfer_Load(java.lang.Object(ARRAY(x8)), java.lang.Object(ARRAY(x9)), x10, x8, x9) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x8)), java.lang.Object(ARRAY(x9)), x10, x11, x8, x9) :|: x10 < x9 && x9 > -1 && x12 < x8 && x8 > -1 Arcs: (1) -> (1), (4) (2) -> (1), (4) (3) -> (2), (3) (4) -> (2), (3) This digraph is fully evaluated! ---------------------------------------- (14) IntTRSCompressionProof (EQUIVALENT) Compressed rules. ---------------------------------------- (15) Obligation: Rules: f11823_0_transfer_Load(java.lang.Object(ARRAY(x8:0)), java.lang.Object(ARRAY(x9:0)), x10:0, x8:0, x9:0) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x8:0)), java.lang.Object(ARRAY(x9:0)), x10:0, x11:0, x8:0, x9:0) :|: x8:0 > x12:0 && x8:0 > -1 && x9:0 > -1 && x9:0 > x10:0 f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x13:0)), java.lang.Object(ARRAY(x14:0)), x15:0, NULL, x13:0, x14:0) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(x13:0)), java.lang.Object(ARRAY(x14:0)), x15:0 + 1, x13:0, x14:0) :|: TRUE f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x3:0, x4:0) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, x6:0, x3:0, x4:0) :|: x3:0 > -1 && x7:0 < x3:0 f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0:0)), java.lang.Object(ARRAY(i4565:0:0)), i4566:0:0, i4279:0:0, i4565:0:0) -> f11823_0_transfer_Load(java.lang.Object(ARRAY(i4279:0:0)), java.lang.Object(ARRAY(i4565:0:0)), i4566:0:0 + 1, i4279:0:0, i4565:0:0) :|: i4565:0:0 > -1 && i4566:0:0 < i4565:0:0 ---------------------------------------- (16) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f11823_0_transfer_Load(VARIABLE, VARIABLE, INTEGER, VARIABLE, VARIABLE) java.lang.Object(VARIABLE) ARRAY(VARIABLE) f11959_0_transfer_NONNULL(VARIABLE, VARIABLE, VARIABLE, VARIABLE, VARIABLE, VARIABLE) NULL() javaUtilEx.HashMap$Entry(VARIABLE) Replaced non-predefined constructor symbols by 0.The following proof was generated: # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty Termination of the given IntTRS could not be shown: - IntTRS - PolynomialOrderProcessor Rules: f11823_0_transfer_Load(c, c1, x10:0, x8:0, x9:0) -> f11959_0_transfer_NONNULL(c2, c3, x10:0, x11:0, x8:0, x9:0) :|: c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0)) && (x8:0 > x12:0 && x8:0 > -1 && x9:0 > -1 && x9:0 > x10:0) f11959_0_transfer_NONNULL(c4, c5, x15:0, c6, x13:0, x14:0) -> f11823_0_transfer_Load(c7, c8, c9, x13:0, x14:0) :|: c9 = x15:0 + 1 && (c8 = 0 && (c7 = 0 && (c6 = 0 && (c5 = 0 && c4 = 0)))) && TRUE f11959_0_transfer_NONNULL(c10, c11, x5:0, c12, x3:0, x4:0) -> f11959_0_transfer_NONNULL(c13, c14, x5:0, x6:0, x3:0, x4:0) :|: c14 = 0 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0))) && (x3:0 > -1 && x7:0 < x3:0) f11823_0_transfer_Load(c15, c16, i4566:0:0, i4279:0:0, i4565:0:0) -> f11823_0_transfer_Load(c17, c18, c19, i4279:0:0, i4565:0:0) :|: c19 = i4566:0:0 + 1 && (c18 = 0 && (c17 = 0 && (c16 = 0 && c15 = 0))) && (i4565:0:0 > -1 && i4566:0:0 < i4565:0:0) Found the following polynomial interpretation: [f11823_0_transfer_Load(x, x1, x2, x3, x4)] = -1 + c*x + c1*x1 - x2 + x3 + 2*x4 [f11959_0_transfer_NONNULL(x5, x6, x7, x8, x9, x10)] = -1 + 2*x10 + c5*x5 + c6*x6 - x7 + x9 The following rules are decreasing: f11959_0_transfer_NONNULL(c4, c5, x15:0, c6, x13:0, x14:0) -> f11823_0_transfer_Load(c7, c8, c9, x13:0, x14:0) :|: c9 = x15:0 + 1 && (c8 = 0 && (c7 = 0 && (c6 = 0 && (c5 = 0 && c4 = 0)))) && TRUE f11823_0_transfer_Load(c15, c16, i4566:0:0, i4279:0:0, i4565:0:0) -> f11823_0_transfer_Load(c17, c18, c19, i4279:0:0, i4565:0:0) :|: c19 = i4566:0:0 + 1 && (c18 = 0 && (c17 = 0 && (c16 = 0 && c15 = 0))) && (i4565:0:0 > -1 && i4566:0:0 < i4565:0:0) The following rules are bounded: f11823_0_transfer_Load(c, c1, x10:0, x8:0, x9:0) -> f11959_0_transfer_NONNULL(c2, c3, x10:0, x11:0, x8:0, x9:0) :|: c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0)) && (x8:0 > x12:0 && x8:0 > -1 && x9:0 > -1 && x9:0 > x10:0) - IntTRS - PolynomialOrderProcessor - AND - IntTRS - IntTRS - PolynomialOrderProcessor - IntTRS Rules: f11823_0_transfer_Load(c, c1, x10:0, x8:0, x9:0) -> f11959_0_transfer_NONNULL(c2, c3, x10:0, x11:0, x8:0, x9:0) :|: c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0)) && (x8:0 > x12:0 && x8:0 > -1 && x9:0 > -1 && x9:0 > x10:0) f11959_0_transfer_NONNULL(c10, c11, x5:0, c12, x3:0, x4:0) -> f11959_0_transfer_NONNULL(c13, c14, x5:0, x6:0, x3:0, x4:0) :|: c14 = 0 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0))) && (x3:0 > -1 && x7:0 < x3:0) Found the following polynomial interpretation: [f11823_0_transfer_Load(x, x1, x2, x3, x4)] = 1 + c*x + c1*x1 [f11959_0_transfer_NONNULL(x5, x6, x7, x8, x9, x10)] = c5*x5 + c6*x6 The following rules are decreasing: f11823_0_transfer_Load(c, c1, x10:0, x8:0, x9:0) -> f11959_0_transfer_NONNULL(c2, c3, x10:0, x11:0, x8:0, x9:0) :|: c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0)) && (x8:0 > x12:0 && x8:0 > -1 && x9:0 > -1 && x9:0 > x10:0) The following rules are bounded: f11823_0_transfer_Load(c, c1, x10:0, x8:0, x9:0) -> f11959_0_transfer_NONNULL(c2, c3, x10:0, x11:0, x8:0, x9:0) :|: c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0)) && (x8:0 > x12:0 && x8:0 > -1 && x9:0 > -1 && x9:0 > x10:0) f11959_0_transfer_NONNULL(c10, c11, x5:0, c12, x3:0, x4:0) -> f11959_0_transfer_NONNULL(c13, c14, x5:0, x6:0, x3:0, x4:0) :|: c14 = 0 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0))) && (x3:0 > -1 && x7:0 < x3:0) - IntTRS - PolynomialOrderProcessor - AND - IntTRS - IntTRS - PolynomialOrderProcessor - IntTRS - IntTRS Rules: f11959_0_transfer_NONNULL(c10, c11, x5:0, c12, x3:0, x4:0) -> f11959_0_transfer_NONNULL(c13, c14, x5:0, x6:0, x3:0, x4:0) :|: c14 = 0 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0))) && (x3:0 > -1 && x7:0 < x3:0) - IntTRS - PolynomialOrderProcessor - AND - IntTRS - IntTRS - IntTRS - PolynomialOrderProcessor Rules: f11959_0_transfer_NONNULL(c4, c5, x15:0, c6, x13:0, x14:0) -> f11823_0_transfer_Load(c7, c8, c9, x13:0, x14:0) :|: c9 = x15:0 + 1 && (c8 = 0 && (c7 = 0 && (c6 = 0 && (c5 = 0 && c4 = 0)))) && TRUE f11959_0_transfer_NONNULL(c10, c11, x5:0, c12, x3:0, x4:0) -> f11959_0_transfer_NONNULL(c13, c14, x5:0, x6:0, x3:0, x4:0) :|: c14 = 0 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0))) && (x3:0 > -1 && x7:0 < x3:0) f11823_0_transfer_Load(c15, c16, i4566:0:0, i4279:0:0, i4565:0:0) -> f11823_0_transfer_Load(c17, c18, c19, i4279:0:0, i4565:0:0) :|: c19 = i4566:0:0 + 1 && (c18 = 0 && (c17 = 0 && (c16 = 0 && c15 = 0))) && (i4565:0:0 > -1 && i4566:0:0 < i4565:0:0) Found the following polynomial interpretation: [f11959_0_transfer_NONNULL(x, x1, x2, x3, x4, x5)] = 1 + c*x + c1*x1 [f11823_0_transfer_Load(x6, x7, x8, x9, x10)] = c6*x6 + c7*x7 The following rules are decreasing: f11959_0_transfer_NONNULL(c4, c5, x15:0, c6, x13:0, x14:0) -> f11823_0_transfer_Load(c7, c8, c9, x13:0, x14:0) :|: c9 = x15:0 + 1 && (c8 = 0 && (c7 = 0 && (c6 = 0 && (c5 = 0 && c4 = 0)))) && TRUE The following rules are bounded: f11959_0_transfer_NONNULL(c4, c5, x15:0, c6, x13:0, x14:0) -> f11823_0_transfer_Load(c7, c8, c9, x13:0, x14:0) :|: c9 = x15:0 + 1 && (c8 = 0 && (c7 = 0 && (c6 = 0 && (c5 = 0 && c4 = 0)))) && TRUE f11959_0_transfer_NONNULL(c10, c11, x5:0, c12, x3:0, x4:0) -> f11959_0_transfer_NONNULL(c13, c14, x5:0, x6:0, x3:0, x4:0) :|: c14 = 0 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0))) && (x3:0 > -1 && x7:0 < x3:0) f11823_0_transfer_Load(c15, c16, i4566:0:0, i4279:0:0, i4565:0:0) -> f11823_0_transfer_Load(c17, c18, c19, i4279:0:0, i4565:0:0) :|: c19 = i4566:0:0 + 1 && (c18 = 0 && (c17 = 0 && (c16 = 0 && c15 = 0))) && (i4565:0:0 > -1 && i4566:0:0 < i4565:0:0) - IntTRS - PolynomialOrderProcessor - AND - IntTRS - IntTRS - IntTRS - PolynomialOrderProcessor - IntTRS - RankingReductionPairProof Rules: f11959_0_transfer_NONNULL(c10, c11, x5:0, c12, x3:0, x4:0) -> f11959_0_transfer_NONNULL(c13, c14, x5:0, x6:0, x3:0, x4:0) :|: c14 = 0 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0))) && (x3:0 > -1 && x7:0 < x3:0) f11823_0_transfer_Load(c15, c16, i4566:0:0, i4279:0:0, i4565:0:0) -> f11823_0_transfer_Load(c17, c18, c19, i4279:0:0, i4565:0:0) :|: c19 = i4566:0:0 + 1 && (c18 = 0 && (c17 = 0 && (c16 = 0 && c15 = 0))) && (i4565:0:0 > -1 && i4566:0:0 < i4565:0:0) Interpretation: [ f11959_0_transfer_NONNULL ] = 0 [ f11823_0_transfer_Load ] = f11823_0_transfer_Load_5 + -1*f11823_0_transfer_Load_3 The following rules are decreasing: f11823_0_transfer_Load(c15, c16, i4566:0:0, i4279:0:0, i4565:0:0) -> f11823_0_transfer_Load(c17, c18, c19, i4279:0:0, i4565:0:0) :|: c19 = i4566:0:0 + 1 && (c18 = 0 && (c17 = 0 && (c16 = 0 && c15 = 0))) && (i4565:0:0 > -1 && i4566:0:0 < i4565:0:0) The following rules are bounded: f11959_0_transfer_NONNULL(c10, c11, x5:0, c12, x3:0, x4:0) -> f11959_0_transfer_NONNULL(c13, c14, x5:0, x6:0, x3:0, x4:0) :|: c14 = 0 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0))) && (x3:0 > -1 && x7:0 < x3:0) f11823_0_transfer_Load(c15, c16, i4566:0:0, i4279:0:0, i4565:0:0) -> f11823_0_transfer_Load(c17, c18, c19, i4279:0:0, i4565:0:0) :|: c19 = i4566:0:0 + 1 && (c18 = 0 && (c17 = 0 && (c16 = 0 && c15 = 0))) && (i4565:0:0 > -1 && i4566:0:0 < i4565:0:0) - IntTRS - PolynomialOrderProcessor - AND - IntTRS - IntTRS - IntTRS - PolynomialOrderProcessor - IntTRS - RankingReductionPairProof - IntTRS Rules: f11959_0_transfer_NONNULL(c10, c11, x5:0, c12, x3:0, x4:0) -> f11959_0_transfer_NONNULL(c13, c14, x5:0, x6:0, x3:0, x4:0) :|: c14 = 0 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0))) && (x3:0 > -1 && x7:0 < x3:0) ---------------------------------------- (17) Obligation: Rules: f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x3:0, x4:0) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, x6:0, x3:0, x4:0) :|: x3:0 > -1 && x7:0 < x3:0 ---------------------------------------- (18) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x3:0, x4:0) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, x6:0, x3:0, x4:0) :|: x3:0 > -1 && x7:0 < x3:0 Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (19) Obligation: Termination digraph: Nodes: (1) f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x3:0, x4:0) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x5:0, x6:0, x3:0, x4:0) :|: x3:0 > -1 && x7:0 < x3:0 Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (20) IntTRSUnneededArgumentFilterProof (EQUIVALENT) Some arguments are removed because they cannot influence termination. We removed arguments according to the following replacements: f11959_0_transfer_NONNULL(x1, x2, x3, x4, x5, x6) -> f11959_0_transfer_NONNULL(x1, x2, x4, x5, x6) ---------------------------------------- (21) Obligation: Rules: f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x3:0, x4:0) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x6:0, x3:0, x4:0) :|: x3:0 > -1 && x7:0 < x3:0 ---------------------------------------- (22) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f11959_0_transfer_NONNULL(VARIABLE, VARIABLE, VARIABLE, INTEGER, VARIABLE) java.lang.Object(VARIABLE) ARRAY(VARIABLE) javaUtilEx.HashMap$Entry(VARIABLE) Removed predefined arithmetic. ---------------------------------------- (23) Obligation: Rules: f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x4:0) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x6:0, x4:0) ---------------------------------------- (24) IRSwTToQDPProof (SOUND) Removed the integers and created a QDP-Problem. ---------------------------------------- (25) Obligation: Q DP problem: The TRS P consists of the following rules: f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x4:0) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x6:0, x4:0) R is empty. Q is empty. We have to consider all (P,Q,R)-chains. ---------------------------------------- (26) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x6:0)), x4:0) -> f11959_0_transfer_NONNULL(java.lang.Object(ARRAY(x3:0)), java.lang.Object(ARRAY(x4:0)), x6:0, x4:0) The graph contains the following edges 1 >= 1, 2 >= 2, 3 > 3, 2 > 4, 4 >= 4 ---------------------------------------- (27) YES ---------------------------------------- (28) Obligation: SCC of termination graph based on JBC Program. SCC contains nodes from the following methods: javaUtilEx.HashMap.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; 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.HashMap$Entry: [hash, next, key] *Marker field analysis yielded the following relations that could be markers: ---------------------------------------- (29) SCCToIRSProof (SOUND) Transformed FIGraph SCCs to intTRSs. Log: Generated rules. Obtained 57 IRulesP rules: f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(o6228sub), java.lang.Object(o6228sub)) -> f10872_0_put_NULL(EOS(STATIC_10872), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(o6228sub), java.lang.Object(o6228sub)) :|: TRUE f10872_0_put_NULL(EOS(STATIC_10872), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(o6228sub), java.lang.Object(o6228sub)) -> f10878_0_put_Load(EOS(STATIC_10878), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(o6228sub)) :|: TRUE f10878_0_put_Load(EOS(STATIC_10878), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(o6228sub)) -> f10884_0_put_FieldAccess(EOS(STATIC_10884), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(o6228sub), java.lang.Object(o6228sub)) :|: TRUE f10884_0_put_FieldAccess(EOS(STATIC_10884), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250))) -> f10888_0_put_FieldAccess(EOS(STATIC_10888), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250))) :|: TRUE f10888_0_put_FieldAccess(EOS(STATIC_10888), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250))) -> f10892_0_put_Load(EOS(STATIC_10892), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250)), i3944) :|: TRUE f10892_0_put_Load(EOS(STATIC_10892), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250)), i3944) -> f10896_0_put_NE(EOS(STATIC_10896), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250)), i3944, i3921) :|: TRUE f10896_0_put_NE(EOS(STATIC_10896), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250)), i3944, i3921) -> f10900_0_put_NE(EOS(STATIC_10900), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250)), i3944, i3921) :|: !(i3944 = i3921) f10896_0_put_NE(EOS(STATIC_10896), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), i3921, i3921) -> f10901_0_put_NE(EOS(STATIC_10901), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), i3921, i3921) :|: i3944 = i3921 f10900_0_put_NE(EOS(STATIC_10900), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250)), i3944, i3921) -> f10906_0_put_Load(EOS(STATIC_10906), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250))) :|: !(i3944 = i3921) f10906_0_put_Load(EOS(STATIC_10906), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250))) -> f10912_0_put_FieldAccess(EOS(STATIC_10912), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250))) :|: TRUE f10912_0_put_FieldAccess(EOS(STATIC_10912), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944, o6252, o6250))) -> f10918_0_put_Store(EOS(STATIC_10918), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) :|: TRUE f10918_0_put_Store(EOS(STATIC_10918), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) -> f10924_0_put_JMP(EOS(STATIC_10924), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) :|: TRUE f10924_0_put_JMP(EOS(STATIC_10924), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) -> f10930_0_put_Load(EOS(STATIC_10930), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) :|: TRUE f10930_0_put_Load(EOS(STATIC_10930), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) -> f10861_0_put_Load(EOS(STATIC_10861), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) :|: TRUE f10861_0_put_Load(EOS(STATIC_10861), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6212) -> f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6212, o6212) :|: TRUE f10901_0_put_NE(EOS(STATIC_10901), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), i3921, i3921) -> f10907_0_put_Load(EOS(STATIC_10907), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250))) :|: TRUE f10907_0_put_Load(EOS(STATIC_10907), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250))) -> f10913_0_put_FieldAccess(EOS(STATIC_10913), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250))) :|: TRUE f10913_0_put_FieldAccess(EOS(STATIC_10913), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250))) -> f10919_0_put_Duplicate(EOS(STATIC_10919), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), o6250) :|: TRUE f10919_0_put_Duplicate(EOS(STATIC_10919), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), o6250) -> f10925_0_put_Store(EOS(STATIC_10925), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), o6250, o6250) :|: TRUE f10925_0_put_Store(EOS(STATIC_10925), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), o6250, o6250) -> f10931_0_put_Load(EOS(STATIC_10931), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), o6250, o6250) :|: TRUE f10931_0_put_Load(EOS(STATIC_10931), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), o6250, o6250) -> f10936_0_put_EQ(EOS(STATIC_10936), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, o6250)), o6250, o6250, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10936_0_put_EQ(EOS(STATIC_10936), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(o6279sub), java.lang.Object(o6279sub), java.lang.Object(javaUtilEx.Content(EOC))) -> f10940_0_put_EQ(EOS(STATIC_10940), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(o6279sub), java.lang.Object(o6279sub), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10936_0_put_EQ(EOS(STATIC_10936), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), NULL, NULL, java.lang.Object(javaUtilEx.Content(EOC))) -> f10941_0_put_EQ(EOS(STATIC_10941), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), NULL, NULL, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10940_0_put_EQ(EOS(STATIC_10940), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(o6279sub), java.lang.Object(o6279sub), java.lang.Object(javaUtilEx.Content(EOC))) -> f10946_0_put_Load(EOS(STATIC_10946), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(o6279sub)) :|: TRUE f10946_0_put_Load(EOS(STATIC_10946), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(o6279sub)) -> f10951_0_put_Load(EOS(STATIC_10951), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(o6279sub), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10951_0_put_Load(EOS(STATIC_10951), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(o6279sub), java.lang.Object(javaUtilEx.Content(EOC))) -> f10957_0_put_InvokeMethod(EOS(STATIC_10957), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub)) :|: TRUE f10957_0_put_InvokeMethod(EOS(STATIC_10957), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub)) -> f10961_0_equals_Load(EOS(STATIC_10961), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub)) :|: TRUE f10957_0_put_InvokeMethod(EOS(STATIC_10957), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub)) -> f10961_1_equals_Load(EOS(STATIC_10961), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub)) :|: TRUE f10961_0_equals_Load(EOS(STATIC_10961), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub)) -> f12175_0_equals_Load(EOS(STATIC_12175), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6279sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub)) :|: TRUE f10995_0_equals_Return(EOS(STATIC_10995), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6357sub))), matching1) -> f11009_0_put_EQ(EOS(STATIC_11009), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6357sub))), 0) :|: TRUE && matching1 = 0 f11009_0_put_EQ(EOS(STATIC_11009), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6357sub))), matching1) -> f11016_0_put_Load(EOS(STATIC_11016), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6357sub)))) :|: TRUE && matching1 = 0 f11016_0_put_Load(EOS(STATIC_11016), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6357sub)))) -> f11024_0_put_FieldAccess(EOS(STATIC_11024), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6357sub)))) :|: TRUE f11024_0_put_FieldAccess(EOS(STATIC_11024), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6357sub)))) -> f11031_0_put_Store(EOS(STATIC_11031), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) :|: TRUE f11031_0_put_Store(EOS(STATIC_11031), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) -> f10918_0_put_Store(EOS(STATIC_10918), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) :|: TRUE f10996_0_equals_Return(EOS(STATIC_10996), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(javaUtilEx.Content(EOC)))), matching1) -> f10998_0_equals_Return(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(javaUtilEx.Content(EOC)))), 0) :|: TRUE && matching1 = 0 f10998_0_equals_Return(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6425, java.lang.Object(javaUtilEx.Content(EOC)))), i4098) -> f11010_0_put_EQ(EOS(STATIC_11010), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6425, java.lang.Object(javaUtilEx.Content(EOC)))), i4098) :|: TRUE f11010_0_put_EQ(EOS(STATIC_11010), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6425, java.lang.Object(javaUtilEx.Content(EOC)))), matching1) -> f11018_0_put_EQ(EOS(STATIC_11018), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6425, java.lang.Object(javaUtilEx.Content(EOC)))), 0) :|: TRUE && matching1 = 0 f11018_0_put_EQ(EOS(STATIC_11018), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6425, java.lang.Object(javaUtilEx.Content(EOC)))), matching1) -> f11026_0_put_Load(EOS(STATIC_11026), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6425, java.lang.Object(javaUtilEx.Content(EOC))))) :|: TRUE && matching1 = 0 f11026_0_put_Load(EOS(STATIC_11026), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6425, java.lang.Object(javaUtilEx.Content(EOC))))) -> f11033_0_put_FieldAccess(EOS(STATIC_11033), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6425, java.lang.Object(javaUtilEx.Content(EOC))))) :|: TRUE f11033_0_put_FieldAccess(EOS(STATIC_11033), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6425, java.lang.Object(javaUtilEx.Content(EOC))))) -> f11039_0_put_Store(EOS(STATIC_11039), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6425) :|: TRUE f11039_0_put_Store(EOS(STATIC_11039), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6425) -> f10918_0_put_Store(EOS(STATIC_10918), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6425) :|: TRUE f10997_0_equals_Return(EOS(STATIC_10997), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(javaUtilEx.Content(EOC)))), matching1) -> f10998_0_equals_Return(EOS(STATIC_10998), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(javaUtilEx.Content(EOC)))), 1) :|: TRUE && matching1 = 1 f10941_0_put_EQ(EOS(STATIC_10941), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), NULL, NULL, java.lang.Object(javaUtilEx.Content(EOC))) -> f10947_0_put_Load(EOS(STATIC_10947), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), NULL) :|: TRUE f10947_0_put_Load(EOS(STATIC_10947), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), NULL) -> f10952_0_put_Load(EOS(STATIC_10952), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), NULL, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10952_0_put_Load(EOS(STATIC_10952), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), NULL, java.lang.Object(javaUtilEx.Content(EOC))) -> f10958_0_put_InvokeMethod(EOS(STATIC_10958), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f10958_0_put_InvokeMethod(EOS(STATIC_10958), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f10962_0_equals_Load(EOS(STATIC_10962), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f10958_0_put_InvokeMethod(EOS(STATIC_10958), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f10962_1_equals_Load(EOS(STATIC_10962), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f10962_0_equals_Load(EOS(STATIC_10962), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f12231_0_equals_Load(EOS(STATIC_12231), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE f11000_0_equals_Return(EOS(STATIC_11000), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), matching1) -> f11011_0_put_EQ(EOS(STATIC_11011), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), 0) :|: TRUE && matching1 = 0 f11011_0_put_EQ(EOS(STATIC_11011), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), matching1) -> f11019_0_put_Load(EOS(STATIC_11019), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL))) :|: TRUE && matching1 = 0 f11019_0_put_Load(EOS(STATIC_11019), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL))) -> f11027_0_put_FieldAccess(EOS(STATIC_11027), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL))) :|: TRUE f11027_0_put_FieldAccess(EOS(STATIC_11027), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL))) -> f11034_0_put_Store(EOS(STATIC_11034), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) :|: TRUE f11034_0_put_Store(EOS(STATIC_11034), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) -> f10918_0_put_Store(EOS(STATIC_10918), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, o6252) :|: TRUE f10961_1_equals_Load(EOS(STATIC_10961), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6357sub))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6357sub)) -> f10995_0_equals_Return(EOS(STATIC_10995), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(o6357sub))), 0) :|: TRUE f10961_1_equals_Load(EOS(STATIC_10961), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(javaUtilEx.Content(EOC)))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10996_0_equals_Return(EOS(STATIC_10996), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(javaUtilEx.Content(EOC)))), 0) :|: TRUE f10961_1_equals_Load(EOS(STATIC_10961), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(javaUtilEx.Content(EOC)))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10997_0_equals_Return(EOS(STATIC_10997), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, java.lang.Object(javaUtilEx.Content(EOC)))), 1) :|: TRUE f10962_1_equals_Load(EOS(STATIC_10962), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), java.lang.Object(javaUtilEx.Content(EOC)), NULL) -> f11000_0_equals_Return(EOS(STATIC_11000), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921, o6252, NULL)), 0) :|: TRUE Combined rules. Obtained 7 IRulesP rules: f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921:0, o6252:0, NULL)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921:0, o6252:0, NULL))) -> f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, o6252:0, o6252:0) :|: TRUE f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944:0, o6252:0, o6250:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944:0, o6252:0, o6250:0))) -> f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, o6252:0, o6252:0) :|: i3944:0 < i3921:0 f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944:0, o6252:0, o6250:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3944:0, o6252:0, o6250:0))) -> f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, o6252:0, o6252:0) :|: i3944:0 > i3921:0 f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921:0, o6252:0, java.lang.Object(javaUtilEx.Content(EOC)))), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921:0, o6252:0, java.lang.Object(javaUtilEx.Content(EOC))))) -> f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, o6252:0, o6252:0) :|: TRUE f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921:0, o6252:0, java.lang.Object(o6279sub:0))), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921:0, o6252:0, java.lang.Object(o6279sub:0)))) -> f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, o6252:0, o6252:0) :|: TRUE Removed following non-SCC rules: f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921:0, o6252:0, java.lang.Object(o6279sub:0))), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921:0, o6252:0, java.lang.Object(o6279sub:0)))) -> f12175_0_equals_Load(EOS(STATIC_12175), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub:0), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921:0, o6252:0, java.lang.Object(o6279sub:0))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6279sub:0)) :|: TRUE f10866_0_put_NULL(EOS(STATIC_10866), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921:0, o6252:0, NULL)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, i3921:0, o6252:0, NULL))) -> f12231_0_equals_Load(EOS(STATIC_12231), java.lang.Object(javaUtilEx.Content(EOC)), NULL, java.lang.Object(javaUtilEx.Content(EOC)), NULL) :|: TRUE Filtered constant ground arguments: f10866_0_put_NULL(x1, x2, x3, x4, x5, x6, x7) -> f10866_0_put_NULL(x5, x6, x7) EOS(x1) -> EOS javaUtilEx.AbstractMap(x1) -> javaUtilEx.AbstractMap javaUtilEx.Content(x1) -> javaUtilEx.Content javaUtilEx.HashMap$Entry(x1, x2, x3, x4) -> javaUtilEx.HashMap$Entry(x2, x3, x4) javaUtilEx.HashMap(x1) -> javaUtilEx.HashMap Filtered duplicate arguments: f10866_0_put_NULL(x1, x2, x3) -> f10866_0_put_NULL(x1, x3) Finished conversion. Obtained 5 rules.P rules: f10866_0_put_NULL(i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3921:0, o6252:0, NULL))) -> f10866_0_put_NULL(i3921:0, o6252:0) :|: TRUE f10866_0_put_NULL(i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3944:0, o6252:0, o6250:0))) -> f10866_0_put_NULL(i3921:0, o6252:0) :|: i3944:0 < i3921:0 f10866_0_put_NULL(i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3944:0, o6252:0, o6250:0))) -> f10866_0_put_NULL(i3921:0, o6252:0) :|: i3944:0 > i3921:0 f10866_0_put_NULL(i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3921:0, o6252:0, java.lang.Object(javaUtilEx.Content)))) -> f10866_0_put_NULL(i3921:0, o6252:0) :|: TRUE f10866_0_put_NULL(i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3921:0, o6252:0, java.lang.Object(o6279sub:0)))) -> f10866_0_put_NULL(i3921:0, o6252:0) :|: TRUE ---------------------------------------- (30) Obligation: Rules: f10866_0_put_NULL(i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3921:0, o6252:0, NULL))) -> f10866_0_put_NULL(i3921:0, o6252:0) :|: TRUE f10866_0_put_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10866_0_put_NULL(x, x2) :|: x1 < x f10866_0_put_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10866_0_put_NULL(x4, x6) :|: x5 > x4 f10866_0_put_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x8, x9, java.lang.Object(javaUtilEx.Content)))) -> f10866_0_put_NULL(x8, x9) :|: TRUE f10866_0_put_NULL(x10, java.lang.Object(javaUtilEx.HashMap$Entry(x10, x11, java.lang.Object(x12)))) -> f10866_0_put_NULL(x10, x11) :|: TRUE ---------------------------------------- (31) IRSFormatTransformerProof (EQUIVALENT) Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). ---------------------------------------- (32) Obligation: Rules: f10866_0_put_NULL(i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3921:0, o6252:0, NULL))) -> f10866_0_put_NULL(i3921:0, o6252:0) :|: TRUE f10866_0_put_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10866_0_put_NULL(x, x2) :|: x1 < x f10866_0_put_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10866_0_put_NULL(x4, x6) :|: x5 > x4 f10866_0_put_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x8, x9, java.lang.Object(javaUtilEx.Content)))) -> f10866_0_put_NULL(x8, x9) :|: TRUE f10866_0_put_NULL(x10, java.lang.Object(javaUtilEx.HashMap$Entry(x10, x11, java.lang.Object(x12)))) -> f10866_0_put_NULL(x10, x11) :|: TRUE ---------------------------------------- (33) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f10866_0_put_NULL(i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3921:0, o6252:0, NULL))) -> f10866_0_put_NULL(i3921:0, o6252:0) :|: TRUE (2) f10866_0_put_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10866_0_put_NULL(x, x2) :|: x1 < x (3) f10866_0_put_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10866_0_put_NULL(x4, x6) :|: x5 > x4 (4) f10866_0_put_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x8, x9, java.lang.Object(javaUtilEx.Content)))) -> f10866_0_put_NULL(x8, x9) :|: TRUE (5) f10866_0_put_NULL(x10, java.lang.Object(javaUtilEx.HashMap$Entry(x10, x11, java.lang.Object(x12)))) -> f10866_0_put_NULL(x10, x11) :|: TRUE Arcs: (1) -> (1), (2), (3), (4), (5) (2) -> (1), (2), (3), (4), (5) (3) -> (1), (2), (3), (4), (5) (4) -> (1), (2), (3), (4), (5) (5) -> (1), (2), (3), (4), (5) This digraph is fully evaluated! ---------------------------------------- (34) Obligation: Termination digraph: Nodes: (1) f10866_0_put_NULL(i3921:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3921:0, o6252:0, NULL))) -> f10866_0_put_NULL(i3921:0, o6252:0) :|: TRUE (2) f10866_0_put_NULL(x, java.lang.Object(javaUtilEx.HashMap$Entry(x1, x2, x3))) -> f10866_0_put_NULL(x, x2) :|: x1 < x (3) f10866_0_put_NULL(x4, java.lang.Object(javaUtilEx.HashMap$Entry(x5, x6, x7))) -> f10866_0_put_NULL(x4, x6) :|: x5 > x4 (4) f10866_0_put_NULL(x8, java.lang.Object(javaUtilEx.HashMap$Entry(x8, x9, java.lang.Object(javaUtilEx.Content)))) -> f10866_0_put_NULL(x8, x9) :|: TRUE (5) f10866_0_put_NULL(x10, java.lang.Object(javaUtilEx.HashMap$Entry(x10, x11, java.lang.Object(x12)))) -> f10866_0_put_NULL(x10, x11) :|: TRUE Arcs: (1) -> (1), (2), (3), (4), (5) (2) -> (1), (2), (3), (4), (5) (3) -> (1), (2), (3), (4), (5) (4) -> (1), (2), (3), (4), (5) (5) -> (1), (2), (3), (4), (5) This digraph is fully evaluated! ---------------------------------------- (35) IntTRSCompressionProof (EQUIVALENT) Compressed rules. ---------------------------------------- (36) Obligation: Rules: f10866_0_put_NULL(i3921:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3921:0:0, o6252:0:0, NULL))) -> f10866_0_put_NULL(i3921:0:0, o6252:0:0) :|: TRUE f10866_0_put_NULL(x4:0, java.lang.Object(javaUtilEx.HashMap$Entry(x5:0, x6:0, x7:0))) -> f10866_0_put_NULL(x4:0, x6:0) :|: x5:0 > x4:0 f10866_0_put_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0, x9:0, java.lang.Object(javaUtilEx.Content)))) -> f10866_0_put_NULL(x8:0, x9:0) :|: TRUE f10866_0_put_NULL(x10:0, java.lang.Object(javaUtilEx.HashMap$Entry(x10:0, x11:0, java.lang.Object(x12:0)))) -> f10866_0_put_NULL(x10:0, x11:0) :|: TRUE f10866_0_put_NULL(x:0, java.lang.Object(javaUtilEx.HashMap$Entry(x1:0, x2:0, x3:0))) -> f10866_0_put_NULL(x:0, x2:0) :|: x:0 > x1:0 ---------------------------------------- (37) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f10866_0_put_NULL(VARIABLE, VARIABLE) java.lang.Object(VARIABLE) javaUtilEx.HashMap$Entry(VARIABLE, VARIABLE, VARIABLE) NULL() javaUtilEx.Content() Removed predefined arithmetic. ---------------------------------------- (38) Obligation: Rules: f10866_0_put_NULL(i3921:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3921:0:0, o6252:0:0, NULL))) -> f10866_0_put_NULL(i3921:0:0, o6252:0:0) f10866_0_put_NULL(x4:0, java.lang.Object(javaUtilEx.HashMap$Entry(x5:0, x6:0, x7:0))) -> f10866_0_put_NULL(x4:0, x6:0) f10866_0_put_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0, x9:0, java.lang.Object(javaUtilEx.Content)))) -> f10866_0_put_NULL(x8:0, x9:0) f10866_0_put_NULL(x10:0, java.lang.Object(javaUtilEx.HashMap$Entry(x10:0, x11:0, java.lang.Object(x12:0)))) -> f10866_0_put_NULL(x10:0, x11:0) ---------------------------------------- (39) IRSwTToQDPProof (SOUND) Removed the integers and created a QDP-Problem. ---------------------------------------- (40) Obligation: Q DP problem: The TRS P consists of the following rules: f10866_0_put_NULL(i3921:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3921:0:0, o6252:0:0, NULL))) -> f10866_0_put_NULL(i3921:0:0, o6252:0:0) f10866_0_put_NULL(x4:0, java.lang.Object(javaUtilEx.HashMap$Entry(x5:0, x6:0, x7:0))) -> f10866_0_put_NULL(x4:0, x6:0) f10866_0_put_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0, x9:0, java.lang.Object(javaUtilEx.Content)))) -> f10866_0_put_NULL(x8:0, x9:0) f10866_0_put_NULL(x10:0, java.lang.Object(javaUtilEx.HashMap$Entry(x10:0, x11:0, java.lang.Object(x12:0)))) -> f10866_0_put_NULL(x10:0, x11:0) R is empty. Q is empty. We have to consider all (P,Q,R)-chains. ---------------------------------------- (41) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *f10866_0_put_NULL(i3921:0:0, java.lang.Object(javaUtilEx.HashMap$Entry(i3921:0:0, o6252:0:0, NULL))) -> f10866_0_put_NULL(i3921:0:0, o6252:0:0) The graph contains the following edges 1 >= 1, 2 > 1, 2 > 2 *f10866_0_put_NULL(x4:0, java.lang.Object(javaUtilEx.HashMap$Entry(x5:0, x6:0, x7:0))) -> f10866_0_put_NULL(x4:0, x6:0) The graph contains the following edges 1 >= 1, 2 > 2 *f10866_0_put_NULL(x8:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0, x9:0, java.lang.Object(javaUtilEx.Content)))) -> f10866_0_put_NULL(x8:0, x9:0) The graph contains the following edges 1 >= 1, 2 > 1, 2 > 2 *f10866_0_put_NULL(x10:0, java.lang.Object(javaUtilEx.HashMap$Entry(x10:0, x11:0, java.lang.Object(x12:0)))) -> f10866_0_put_NULL(x10:0, x11:0) The graph contains the following edges 1 >= 1, 2 > 1, 2 > 2 ---------------------------------------- (42) YES ---------------------------------------- (43) Obligation: SCC of termination graph based on JBC Program. SCC contains nodes from the following methods: javaUtilEx.juHashMapCreateIteratorValueLoop.createMap(I)LjavaUtilEx/HashMap; SCC calls the following helper methods: javaUtilEx.HashMap.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;, javaUtilEx.Content.hashCode()I, javaUtilEx.Content.equals(Ljava/lang/Object;)Z Performed SCC analyses: *Used field analysis yielded the following read fields: *java.lang.String: [count] *Marker field analysis yielded the following relations that could be markers: ---------------------------------------- (44) SCCToIRSProof (SOUND) Transformed FIGraph SCCs to intTRSs. Log: Generated rules. Obtained 81 IRulesP rules: f10268_0_createMap_LE(EOS(STATIC_10268(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i3674) -> f10272_0_createMap_LE(EOS(STATIC_10272(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i3674) :|: TRUE f10272_0_createMap_LE(EOS(STATIC_10272(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i3674) -> f10277_0_createMap_New(EOS(STATIC_10277(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: i3674 > 0 f10277_0_createMap_New(EOS(STATIC_10277(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f10282_0_createMap_Duplicate(EOS(STATIC_10282(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10282_0_createMap_Duplicate(EOS(STATIC_10282(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) -> f10286_0_createMap_InvokeMethod(EOS(STATIC_10286(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10286_0_createMap_InvokeMethod(EOS(STATIC_10286(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10290_0_random_FieldAccess(EOS(STATIC_10290(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10290_0_random_FieldAccess(EOS(STATIC_10290(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10300_0_random_FieldAccess(EOS(STATIC_10300(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5886sub)) :|: TRUE f10300_0_random_FieldAccess(EOS(STATIC_10300(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5886sub)) -> f10305_0_random_ArrayAccess(EOS(STATIC_10305(java.lang.Object(o5886sub), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5886sub), i3655) :|: TRUE f10305_0_random_ArrayAccess(EOS(STATIC_10305(java.lang.Object(ARRAY(i3702)), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702)), i3655) -> f10310_0_random_ArrayAccess(EOS(STATIC_10310(java.lang.Object(ARRAY(i3702)), i3655)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702)), i3655) :|: i3702 >= 0 f10310_0_random_ArrayAccess(EOS(STATIC_10310(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702)), i3704) -> f10316_0_random_ArrayAccess(EOS(STATIC_10316(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702)), i3704) :|: TRUE f10316_0_random_ArrayAccess(EOS(STATIC_10316(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702)), i3704) -> f10322_0_random_ArrayAccess(EOS(STATIC_10322(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702)), i3704) :|: TRUE f10322_0_random_ArrayAccess(EOS(STATIC_10322(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702)), i3704) -> f10328_0_random_Store(EOS(STATIC_10328(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917) :|: i3704 < i3702 f10328_0_random_Store(EOS(STATIC_10328(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917) -> f10334_0_random_FieldAccess(EOS(STATIC_10334(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917) :|: TRUE f10334_0_random_FieldAccess(EOS(STATIC_10334(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917) -> f10340_0_random_ConstantStackPush(EOS(STATIC_10340(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917, i3704) :|: TRUE f10340_0_random_ConstantStackPush(EOS(STATIC_10340(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917, i3704) -> f10346_0_random_IntArithmetic(EOS(STATIC_10346(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917, i3704, 1) :|: TRUE f10346_0_random_IntArithmetic(EOS(STATIC_10346(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917, i3704, matching1) -> f10352_0_random_FieldAccess(EOS(STATIC_10352(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917, i3704 + 1) :|: i3704 >= 0 && matching1 = 1 f10352_0_random_FieldAccess(EOS(STATIC_10352(java.lang.Object(ARRAY(i3702)), i3704)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917, i3707) -> f10359_0_random_Load(EOS(STATIC_10359(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917) :|: TRUE f10359_0_random_Load(EOS(STATIC_10359(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917) -> f10366_0_random_InvokeMethod(EOS(STATIC_10366(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o5917) :|: TRUE f10366_0_random_InvokeMethod(EOS(STATIC_10366(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5928sub)) -> f10371_0_random_InvokeMethod(EOS(STATIC_10371(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5928sub)) :|: TRUE f10371_0_random_InvokeMethod(EOS(STATIC_10371(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5934sub)) -> f10378_0_random_InvokeMethod(EOS(STATIC_10378(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5934sub)) :|: TRUE f10378_0_random_InvokeMethod(EOS(STATIC_10378(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5934sub)) -> f10385_0_length_Load(EOS(STATIC_10385(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5934sub)) :|: TRUE f10385_0_length_Load(EOS(STATIC_10385(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5934sub)) -> f10397_0_length_FieldAccess(EOS(STATIC_10397(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o5934sub)) :|: TRUE f10397_0_length_FieldAccess(EOS(STATIC_10397(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i3712))) -> f10404_0_length_FieldAccess(EOS(STATIC_10404(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i3712))) :|: i3712 >= 0 f10404_0_length_FieldAccess(EOS(STATIC_10404(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i3712))) -> f10409_0_length_Return(EOS(STATIC_10409(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) :|: TRUE f10409_0_length_Return(EOS(STATIC_10409(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) -> f10415_0_random_Return(EOS(STATIC_10415(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) :|: TRUE f10415_0_random_Return(EOS(STATIC_10415(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) -> f10421_0_createMap_InvokeMethod(EOS(STATIC_10421(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) :|: TRUE f10421_0_createMap_InvokeMethod(EOS(STATIC_10421(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) -> f10426_0__init__Load(EOS(STATIC_10426(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) :|: TRUE f10426_0__init__Load(EOS(STATIC_10426(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) -> f10439_0__init__InvokeMethod(EOS(STATIC_10439(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10439_0__init__InvokeMethod(EOS(STATIC_10439(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712, java.lang.Object(javaUtilEx.Content(EOC))) -> f10444_0__init__Load(EOS(STATIC_10444(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) :|: TRUE f10444_0__init__Load(EOS(STATIC_10444(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) -> f10451_0__init__Load(EOS(STATIC_10451(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3712, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10451_0__init__Load(EOS(STATIC_10451(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), i3712, java.lang.Object(javaUtilEx.Content(EOC))) -> f10457_0__init__FieldAccess(EOS(STATIC_10457(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) :|: TRUE f10457_0__init__FieldAccess(EOS(STATIC_10457(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3712) -> f10464_0__init__Return(EOS(STATIC_10464(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10464_0__init__Return(EOS(STATIC_10464(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) -> f10471_0_createMap_Store(EOS(STATIC_10471(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10471_0_createMap_Store(EOS(STATIC_10471(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) -> f10478_0_createMap_New(EOS(STATIC_10478(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10478_0_createMap_New(EOS(STATIC_10478(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) -> f10485_0_createMap_Duplicate(EOS(STATIC_10485(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10485_0_createMap_Duplicate(EOS(STATIC_10485(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10492_0_createMap_InvokeMethod(EOS(STATIC_10492(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10492_0_createMap_InvokeMethod(EOS(STATIC_10492(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10499_0_random_FieldAccess(EOS(STATIC_10499(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10499_0_random_FieldAccess(EOS(STATIC_10499(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10510_0_random_FieldAccess(EOS(STATIC_10510(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702))) :|: TRUE f10510_0_random_FieldAccess(EOS(STATIC_10510(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702))) -> f10515_0_random_ArrayAccess(EOS(STATIC_10515(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702)), i3707) :|: TRUE f10515_0_random_ArrayAccess(EOS(STATIC_10515(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702)), i3707) -> f10519_0_random_ArrayAccess(EOS(STATIC_10519(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702)), i3707) :|: TRUE f10519_0_random_ArrayAccess(EOS(STATIC_10519(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(ARRAY(i3702)), i3707) -> f10524_0_random_Store(EOS(STATIC_10524(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015) :|: i3707 < i3702 f10524_0_random_Store(EOS(STATIC_10524(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015) -> f10529_0_random_FieldAccess(EOS(STATIC_10529(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015) :|: TRUE f10529_0_random_FieldAccess(EOS(STATIC_10529(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015) -> f10531_0_random_ConstantStackPush(EOS(STATIC_10531(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015, i3707) :|: TRUE f10531_0_random_ConstantStackPush(EOS(STATIC_10531(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015, i3707) -> f10534_0_random_IntArithmetic(EOS(STATIC_10534(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015, i3707, 1) :|: TRUE f10534_0_random_IntArithmetic(EOS(STATIC_10534(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015, i3707, matching1) -> f10537_0_random_FieldAccess(EOS(STATIC_10537(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015, i3707 + 1) :|: i3707 > 0 && matching1 = 1 f10537_0_random_FieldAccess(EOS(STATIC_10537(java.lang.Object(ARRAY(i3702)), i3707)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015, i3795) -> f10539_0_random_Load(EOS(STATIC_10539(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015) :|: TRUE f10539_0_random_Load(EOS(STATIC_10539(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015) -> f10542_0_random_InvokeMethod(EOS(STATIC_10542(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), o6015) :|: TRUE f10542_0_random_InvokeMethod(EOS(STATIC_10542(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6029sub)) -> f10545_0_random_InvokeMethod(EOS(STATIC_10545(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6029sub)) :|: TRUE f10545_0_random_InvokeMethod(EOS(STATIC_10545(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6030sub)) -> f10548_0_random_InvokeMethod(EOS(STATIC_10548(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6030sub)) :|: TRUE f10548_0_random_InvokeMethod(EOS(STATIC_10548(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6030sub)) -> f10551_0_length_Load(EOS(STATIC_10551(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6030sub)) :|: TRUE f10551_0_length_Load(EOS(STATIC_10551(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6030sub)) -> f10556_0_length_FieldAccess(EOS(STATIC_10556(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(o6030sub)) :|: TRUE f10556_0_length_FieldAccess(EOS(STATIC_10556(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i3808))) -> f10560_0_length_FieldAccess(EOS(STATIC_10560(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i3808))) :|: i3808 >= 0 f10560_0_length_FieldAccess(EOS(STATIC_10560(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(java.lang.String(EOC, i3808))) -> f10562_0_length_Return(EOS(STATIC_10562(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) :|: TRUE f10562_0_length_Return(EOS(STATIC_10562(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) -> f10565_0_random_Return(EOS(STATIC_10565(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) :|: TRUE f10565_0_random_Return(EOS(STATIC_10565(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) -> f10569_0_createMap_InvokeMethod(EOS(STATIC_10569(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) :|: TRUE f10569_0_createMap_InvokeMethod(EOS(STATIC_10569(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) -> f10572_0__init__Load(EOS(STATIC_10572(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) :|: TRUE f10572_0__init__Load(EOS(STATIC_10572(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) -> f10579_0__init__InvokeMethod(EOS(STATIC_10579(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10579_0__init__InvokeMethod(EOS(STATIC_10579(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808, java.lang.Object(javaUtilEx.Content(EOC))) -> f10582_0__init__Load(EOS(STATIC_10582(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) :|: TRUE f10582_0__init__Load(EOS(STATIC_10582(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) -> f10585_0__init__Load(EOS(STATIC_10585(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808, java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10585_0__init__Load(EOS(STATIC_10585(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808, java.lang.Object(javaUtilEx.Content(EOC))) -> f10589_0__init__FieldAccess(EOS(STATIC_10589(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) :|: TRUE f10589_0__init__FieldAccess(EOS(STATIC_10589(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), i3808) -> f10593_0__init__Return(EOS(STATIC_10593(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10593_0__init__Return(EOS(STATIC_10593(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10597_0_createMap_Store(EOS(STATIC_10597(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10597_0_createMap_Store(EOS(STATIC_10597(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10601_0_createMap_Load(EOS(STATIC_10601(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10601_0_createMap_Load(EOS(STATIC_10601(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10605_0_createMap_Load(EOS(STATIC_10605(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f10605_0_createMap_Load(EOS(STATIC_10605(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f10609_0_createMap_Load(EOS(STATIC_10609(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10609_0_createMap_Load(EOS(STATIC_10609(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC))) -> f10613_0_createMap_InvokeMethod(EOS(STATIC_10613(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f10613_0_createMap_InvokeMethod(EOS(STATIC_10613(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10617_0_put_Load(EOS(STATIC_10617(java.lang.Object(ARRAY(i3702)), i3795)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: i3675 >= 1 && i3674 >= 1 && i3795 > 1 && i3675 >= i3674 f10613_0_createMap_InvokeMethod(EOS(STATIC_10613(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f10617_1_put_Load(EOS(STATIC_10617(java.lang.Object(ARRAY(i3702)), i3795)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: i3675 >= 1 && i3674 >= 1 && i3795 > 1 && i3675 >= i3674 f10617_0_put_Load(EOS(STATIC_10617(java.lang.Object(ARRAY(i3702)), i3795)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f12445_0_put_Load(EOS(STATIC_12445(java.lang.Object(ARRAY(i3702)), i3795)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: TRUE f11096_0_put_Return(EOS(STATIC_11096(java.lang.Object(ARRAY(i4201)), i4203)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f11101_0_createMap_StackPop(EOS(STATIC_11101(java.lang.Object(ARRAY(i4201)), i4203)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11101_0_createMap_StackPop(EOS(STATIC_11101(java.lang.Object(ARRAY(i4201)), i4203)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f11105_0_createMap_Inc(EOS(STATIC_11105(java.lang.Object(ARRAY(i4201)), i4203)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11105_0_createMap_Inc(EOS(STATIC_11105(java.lang.Object(ARRAY(i4201)), i4203)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f11110_0_createMap_JMP(EOS(STATIC_11110(java.lang.Object(ARRAY(i4201)), i4203)), i3674 + -1, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11110_0_createMap_JMP(EOS(STATIC_11110(java.lang.Object(ARRAY(i4201)), i4203)), i4215, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f11115_0_createMap_Load(EOS(STATIC_11115(java.lang.Object(ARRAY(i4201)), i4203)), i4215, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11115_0_createMap_Load(EOS(STATIC_11115(java.lang.Object(ARRAY(i4201)), i4203)), i4215, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f10265_0_createMap_Load(EOS(STATIC_10265(java.lang.Object(ARRAY(i4201)), i4203)), i4215, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f10265_0_createMap_Load(EOS(STATIC_10265(java.lang.Object(o5886sub), i3655)), i3657, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f10268_0_createMap_LE(EOS(STATIC_10268(java.lang.Object(o5886sub), i3655)), i3657, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i3657) :|: TRUE f11187_0_put_Return(EOS(STATIC_11187(java.lang.Object(ARRAY(i4250)), i4252)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) -> f11192_0_createMap_StackPop(EOS(STATIC_11192(java.lang.Object(ARRAY(i4250)), i4252)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) :|: TRUE f11192_0_createMap_StackPop(EOS(STATIC_11192(java.lang.Object(ARRAY(i4250)), i4252)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) -> f11197_0_createMap_Inc(EOS(STATIC_11197(java.lang.Object(ARRAY(i4250)), i4252)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11197_0_createMap_Inc(EOS(STATIC_11197(java.lang.Object(ARRAY(i4250)), i4252)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) -> f11105_0_createMap_Inc(EOS(STATIC_11105(java.lang.Object(ARRAY(i4250)), i4252)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f11886_0_put_Return(EOS(STATIC_11886(java.lang.Object(ARRAY(i4589)), i4591)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) -> f11187_0_put_Return(EOS(STATIC_11187(java.lang.Object(ARRAY(i4589)), i4591)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) :|: TRUE f10617_1_put_Load(EOS(STATIC_10617(java.lang.Object(ARRAY(i4201)), i4203)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f11096_0_put_Return(EOS(STATIC_11096(java.lang.Object(ARRAY(i4201)), i4203)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC)))) :|: TRUE f10617_1_put_Load(EOS(STATIC_10617(java.lang.Object(ARRAY(i4250)), i4252)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f11187_0_put_Return(EOS(STATIC_11187(java.lang.Object(ARRAY(i4250)), i4252)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) :|: TRUE f10617_1_put_Load(EOS(STATIC_10617(java.lang.Object(ARRAY(i4589)), i4591)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) -> f11886_0_put_Return(EOS(STATIC_11886(java.lang.Object(ARRAY(i4589)), i4591)), i3674, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), NULL) :|: TRUE Combined rules. Obtained 2 IRulesP rules: f10268_0_createMap_LE(EOS(STATIC_10268(java.lang.Object(ARRAY(i3702:0)), i3655:0)), i3674:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i3674:0) -> f10268_0_createMap_LE(EOS(STATIC_10268(java.lang.Object(ARRAY(i3702:0)), i3655:0 + 2)), i3674:0 - 1, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i3674:0 - 1) :|: i3702:0 > i3655:0 + 1 && i3674:0 > 0 && i3702:0 > -1 && i3655:0 > -1 && i3712:0 > -1 && i3808:0 > -1 && i3675:0 > 0 && i3675:0 >= i3674:0 Removed following non-SCC rules: f10268_0_createMap_LE(EOS(STATIC_10268(java.lang.Object(ARRAY(i3702:0)), i3655:0)), i3674:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), i3674:0) -> f12445_0_put_Load(EOS(STATIC_12445(java.lang.Object(ARRAY(i3702:0)), i3655:0 + 2)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC))), java.lang.Object(javaUtilEx.Content(EOC)), java.lang.Object(javaUtilEx.Content(EOC))) :|: i3702:0 > i3655:0 + 1 && i3674:0 > 0 && i3702:0 > -1 && i3655:0 > -1 && i3712:0 > -1 && i3808:0 > -1 && i3675:0 > 0 && i3675:0 >= i3674:0 Filtered constant ground arguments: f10268_0_createMap_LE(x1, x2, x3, x4) -> f10268_0_createMap_LE(x1, x2, x4) javaUtilEx.AbstractMap(x1) -> javaUtilEx.AbstractMap javaUtilEx.HashMap(x1) -> javaUtilEx.HashMap Filtered duplicate arguments: f10268_0_createMap_LE(x1, x2, x3) -> f10268_0_createMap_LE(x1, x3) Finished conversion. Obtained 1 rules.P rules: f10268_0_createMap_LE(i3674:0, i3702:0, i3655:0) -> f10268_0_createMap_LE(i3674:0 - 1, i3702:0, i3655:0 + 2) :|: i3674:0 > 0 && i3702:0 > i3655:0 + 1 && i3702:0 > -1 && i3655:0 > -1 && i3712:0 > -1 && i3808:0 > -1 && i3675:0 >= i3674:0 && i3675:0 > 0 ---------------------------------------- (45) Obligation: Rules: f10268_0_createMap_LE(i3674:0, i3702:0, i3655:0) -> f10268_0_createMap_LE(i3674:0 - 1, i3702:0, i3655:0 + 2) :|: i3674:0 > 0 && i3702:0 > i3655:0 + 1 && i3702:0 > -1 && i3655:0 > -1 && i3712:0 > -1 && i3808:0 > -1 && i3675:0 >= i3674:0 && i3675:0 > 0 ---------------------------------------- (46) IRSFormatTransformerProof (EQUIVALENT) Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). ---------------------------------------- (47) Obligation: Rules: f10268_0_createMap_LE(i3674:0, i3702:0, i3655:0) -> f10268_0_createMap_LE(arith, i3702:0, arith1) :|: i3674:0 > 0 && i3702:0 > i3655:0 + 1 && i3702:0 > -1 && i3655:0 > -1 && i3712:0 > -1 && i3808:0 > -1 && i3675:0 >= i3674:0 && i3675:0 > 0 && arith = i3674:0 - 1 && arith1 = i3655:0 + 2 ---------------------------------------- (48) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f10268_0_createMap_LE(i3674:0, i3702:0, i3655:0) -> f10268_0_createMap_LE(arith, i3702:0, arith1) :|: i3674:0 > 0 && i3702:0 > i3655:0 + 1 && i3702:0 > -1 && i3655:0 > -1 && i3712:0 > -1 && i3808:0 > -1 && i3675:0 >= i3674:0 && i3675:0 > 0 && arith = i3674:0 - 1 && arith1 = i3655:0 + 2 Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (49) Obligation: Termination digraph: Nodes: (1) f10268_0_createMap_LE(i3674:0, i3702:0, i3655:0) -> f10268_0_createMap_LE(arith, i3702:0, arith1) :|: i3674:0 > 0 && i3702:0 > i3655:0 + 1 && i3702:0 > -1 && i3655:0 > -1 && i3712:0 > -1 && i3808:0 > -1 && i3675:0 >= i3674:0 && i3675:0 > 0 && arith = i3674:0 - 1 && arith1 = i3655:0 + 2 Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (50) IntTRSCompressionProof (EQUIVALENT) Compressed rules. ---------------------------------------- (51) Obligation: Rules: f10268_0_createMap_LE(i3674:0:0, i3702:0:0, i3655:0:0) -> f10268_0_createMap_LE(i3674:0:0 - 1, i3702:0:0, i3655:0:0 + 2) :|: i3675:0:0 >= i3674:0:0 && i3675:0:0 > 0 && i3808:0:0 > -1 && i3712:0:0 > -1 && i3655:0:0 > -1 && i3702:0:0 > -1 && i3702:0:0 > i3655:0:0 + 1 && i3674:0:0 > 0 ---------------------------------------- (52) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f10268_0_createMap_LE(INTEGER, INTEGER, INTEGER) Replaced non-predefined constructor symbols by 0. ---------------------------------------- (53) Obligation: Rules: f10268_0_createMap_LE(i3674:0:0, i3702:0:0, i3655:0:0) -> f10268_0_createMap_LE(c, i3702:0:0, c1) :|: c1 = i3655:0:0 + 2 && c = i3674:0:0 - 1 && (i3675:0:0 >= i3674:0:0 && i3675:0:0 > 0 && i3808:0:0 > -1 && i3712:0:0 > -1 && i3655:0:0 > -1 && i3702:0:0 > -1 && i3702:0:0 > i3655:0:0 + 1 && i3674:0:0 > 0) ---------------------------------------- (54) RankingReductionPairProof (EQUIVALENT) Interpretation: [ f10268_0_createMap_LE ] = f10268_0_createMap_LE_1 The following rules are decreasing: f10268_0_createMap_LE(i3674:0:0, i3702:0:0, i3655:0:0) -> f10268_0_createMap_LE(c, i3702:0:0, c1) :|: c1 = i3655:0:0 + 2 && c = i3674:0:0 - 1 && (i3675:0:0 >= i3674:0:0 && i3675:0:0 > 0 && i3808:0:0 > -1 && i3712:0:0 > -1 && i3655:0:0 > -1 && i3702:0:0 > -1 && i3702:0:0 > i3655:0:0 + 1 && i3674:0:0 > 0) The following rules are bounded: f10268_0_createMap_LE(i3674:0:0, i3702:0:0, i3655:0:0) -> f10268_0_createMap_LE(c, i3702:0:0, c1) :|: c1 = i3655:0:0 + 2 && c = i3674:0:0 - 1 && (i3675:0:0 >= i3674:0:0 && i3675:0:0 > 0 && i3808:0:0 > -1 && i3712:0:0 > -1 && i3655:0:0 > -1 && i3702:0:0 > -1 && i3702:0:0 > i3655:0:0 + 1 && i3674:0:0 > 0) ---------------------------------------- (55) YES ---------------------------------------- (56) Obligation: SCC of termination graph based on JBC Program. SCC contains nodes from the following methods: javaUtilEx.juHashMapCreateIteratorValueLoop.main([Ljava/lang/String;)V SCC calls the following helper methods: Performed SCC analyses: *Used field analysis yielded the following read fields: *javaUtilEx.HashMap$HashIterator: [index, next, this$0, expectedModCount] *javaUtilEx.HashMap$Entry: [value, next] *javaUtilEx.HashMap: [modCount, table] *Marker field analysis yielded the following relations that could be markers: *javaUtilEx.HashMap$HashIterator.index > i4422 (Introduced counter i4620) ---------------------------------------- (57) SCCToIRSProof (SOUND) Transformed FIGraph SCCs to intTRSs. Log: Generated rules. Obtained 84 IRulesP rules: f11694_0_nextEntry_GE(EOS(STATIC_11694), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4422, i4421, i4620) -> f11698_0_nextEntry_Load(EOS(STATIC_11698), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4620) :|: i4422 < i4421 f11698_0_nextEntry_Load(EOS(STATIC_11698), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4620) -> f11702_0_nextEntry_Load(EOS(STATIC_11702), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11702_0_nextEntry_Load(EOS(STATIC_11702), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11705_0_nextEntry_Load(EOS(STATIC_11705), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4620) :|: TRUE f11705_0_nextEntry_Load(EOS(STATIC_11705), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4620) -> f11708_0_nextEntry_Duplicate(EOS(STATIC_11708), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11708_0_nextEntry_Duplicate(EOS(STATIC_11708), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11711_0_nextEntry_FieldAccess(EOS(STATIC_11711), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11711_0_nextEntry_FieldAccess(EOS(STATIC_11711), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11714_0_nextEntry_Duplicate(EOS(STATIC_11714), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4422, i4620) :|: TRUE f11714_0_nextEntry_Duplicate(EOS(STATIC_11714), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4422, i4620) -> f11717_0_nextEntry_ConstantStackPush(EOS(STATIC_11717), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4422, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4422, i4620) :|: TRUE f11717_0_nextEntry_ConstantStackPush(EOS(STATIC_11717), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4422, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4422, i4620) -> f11720_0_nextEntry_IntArithmetic(EOS(STATIC_11720), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4422, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4422, 1, i4620) :|: TRUE f11720_0_nextEntry_IntArithmetic(EOS(STATIC_11720), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4422, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4422, matching1, i4620) -> f11723_0_nextEntry_FieldAccess(EOS(STATIC_11723), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4422, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4422 + 1, i4620) :|: TRUE && matching1 = 1 f11723_0_nextEntry_FieldAccess(EOS(STATIC_11723), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4422, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4486, i4620) -> f11727_0_nextEntry_ArrayAccess(EOS(STATIC_11727), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4422, i4620 + 1) :|: i4620 >= 0 f11727_0_nextEntry_ArrayAccess(EOS(STATIC_11727), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4501, i4620) -> f11730_0_nextEntry_ArrayAccess(EOS(STATIC_11730), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4501, i4620) :|: TRUE f11730_0_nextEntry_ArrayAccess(EOS(STATIC_11730), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4501, i4620) -> f11734_0_nextEntry_ArrayAccess(EOS(STATIC_11734), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4501, i4620) :|: TRUE f11734_0_nextEntry_ArrayAccess(EOS(STATIC_11734), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(ARRAY(i4421)), i4501, i4620) -> f11737_0_nextEntry_Duplicate(EOS(STATIC_11737), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), o7165, i4620) :|: i4501 < i4421 f11737_0_nextEntry_Duplicate(EOS(STATIC_11737), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), o7165, i4620) -> f11742_0_nextEntry_FieldAccess(EOS(STATIC_11742), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), o7165, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), o7165, i4620) :|: TRUE f11742_0_nextEntry_FieldAccess(EOS(STATIC_11742), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), o7165, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), o7165, i4620) -> f11746_0_nextEntry_NONNULL(EOS(STATIC_11746), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, o7165, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, o7165, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), o7165, i4620) :|: TRUE f11746_0_nextEntry_NONNULL(EOS(STATIC_11746), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(o7187sub), i4620) -> f11750_0_nextEntry_NONNULL(EOS(STATIC_11750), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(o7187sub), i4620) :|: TRUE f11746_0_nextEntry_NONNULL(EOS(STATIC_11746), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), NULL, i4620) -> f11751_0_nextEntry_NONNULL(EOS(STATIC_11751), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), NULL, i4620) :|: TRUE f11750_0_nextEntry_NONNULL(EOS(STATIC_11750), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(o7187sub), i4620) -> f11755_0_nextEntry_Load(EOS(STATIC_11755), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) :|: TRUE f11755_0_nextEntry_Load(EOS(STATIC_11755), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) -> f11760_0_nextEntry_Load(EOS(STATIC_11760), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11760_0_nextEntry_Load(EOS(STATIC_11760), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11764_0_nextEntry_FieldAccess(EOS(STATIC_11764), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) :|: TRUE f11764_0_nextEntry_FieldAccess(EOS(STATIC_11764), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) -> f11767_0_nextEntry_Load(EOS(STATIC_11767), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) :|: TRUE f11767_0_nextEntry_Load(EOS(STATIC_11767), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) -> f11770_0_nextEntry_Return(EOS(STATIC_11770), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) :|: TRUE f11770_0_nextEntry_Return(EOS(STATIC_11770), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) -> f11773_0_next_FieldAccess(EOS(STATIC_11773), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) :|: TRUE f11773_0_next_FieldAccess(EOS(STATIC_11773), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) -> f11777_0_next_Return(EOS(STATIC_11777), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11777_0_next_Return(EOS(STATIC_11777), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11780_0_main_StackPop(EOS(STATIC_11780), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11780_0_main_StackPop(EOS(STATIC_11780), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11783_0_main_JMP(EOS(STATIC_11783), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11783_0_main_JMP(EOS(STATIC_11783), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11787_0_main_Load(EOS(STATIC_11787), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11787_0_main_Load(EOS(STATIC_11787), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11512_0_main_Load(EOS(STATIC_11512), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, java.lang.Object(o7187sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11512_0_main_Load(EOS(STATIC_11512), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11515_0_main_InvokeMethod(EOS(STATIC_11515), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11515_0_main_InvokeMethod(EOS(STATIC_11515), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11518_0_hasNext_Load(EOS(STATIC_11518), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11518_0_hasNext_Load(EOS(STATIC_11518), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11524_0_hasNext_FieldAccess(EOS(STATIC_11524), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11524_0_hasNext_FieldAccess(EOS(STATIC_11524), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11528_0_hasNext_NULL(EOS(STATIC_11528), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), i4620) :|: TRUE f11528_0_hasNext_NULL(EOS(STATIC_11528), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), i4620) -> f11531_0_hasNext_ConstantStackPush(EOS(STATIC_11531), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11531_0_hasNext_ConstantStackPush(EOS(STATIC_11531), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11535_0_hasNext_JMP(EOS(STATIC_11535), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), 1, i4620) :|: TRUE f11535_0_hasNext_JMP(EOS(STATIC_11535), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), matching1, i4620) -> f11540_0_hasNext_Return(EOS(STATIC_11540), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), 1, i4620) :|: TRUE && matching1 = 1 f11540_0_hasNext_Return(EOS(STATIC_11540), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), matching1, i4620) -> f11544_0_main_EQ(EOS(STATIC_11544), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), 1, i4620) :|: TRUE && matching1 = 1 f11544_0_main_EQ(EOS(STATIC_11544), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), matching1, i4620) -> f11549_0_main_Load(EOS(STATIC_11549), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: 1 > 0 && matching1 = 1 f11549_0_main_Load(EOS(STATIC_11549), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11554_0_main_InvokeMethod(EOS(STATIC_11554), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11554_0_main_InvokeMethod(EOS(STATIC_11554), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11557_0_next_Load(EOS(STATIC_11557), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11557_0_next_Load(EOS(STATIC_11557), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11566_0_next_InvokeMethod(EOS(STATIC_11566), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11566_0_next_InvokeMethod(EOS(STATIC_11566), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11569_0_nextEntry_Load(EOS(STATIC_11569), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11569_0_nextEntry_Load(EOS(STATIC_11569), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11578_0_nextEntry_FieldAccess(EOS(STATIC_11578), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11578_0_nextEntry_FieldAccess(EOS(STATIC_11578), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11580_0_nextEntry_FieldAccess(EOS(STATIC_11580), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i4620) :|: TRUE f11580_0_nextEntry_FieldAccess(EOS(STATIC_11580), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i4620) -> f11585_0_nextEntry_Load(EOS(STATIC_11585), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i3690, i4620) :|: TRUE f11585_0_nextEntry_Load(EOS(STATIC_11585), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i3690, i4620) -> f11589_0_nextEntry_FieldAccess(EOS(STATIC_11589), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i3690, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11589_0_nextEntry_FieldAccess(EOS(STATIC_11589), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i3690, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11592_0_nextEntry_EQ(EOS(STATIC_11592), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i3690, i3690, i4620) :|: TRUE f11592_0_nextEntry_EQ(EOS(STATIC_11592), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i3690, i3690, i4620) -> f11596_0_nextEntry_Load(EOS(STATIC_11596), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11596_0_nextEntry_Load(EOS(STATIC_11596), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11599_0_nextEntry_FieldAccess(EOS(STATIC_11599), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11599_0_nextEntry_FieldAccess(EOS(STATIC_11599), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11602_0_nextEntry_Store(EOS(STATIC_11602), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), i4620) :|: TRUE f11602_0_nextEntry_Store(EOS(STATIC_11602), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), i4620) -> f11606_0_nextEntry_Load(EOS(STATIC_11606), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), i4620) :|: TRUE f11606_0_nextEntry_Load(EOS(STATIC_11606), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), i4620) -> f11610_0_nextEntry_NONNULL(EOS(STATIC_11610), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), java.lang.Object(o6943sub), i4620) :|: TRUE f11610_0_nextEntry_NONNULL(EOS(STATIC_11610), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), java.lang.Object(o6943sub), i4620) -> f11613_0_nextEntry_Load(EOS(STATIC_11613), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), i4620) :|: TRUE f11613_0_nextEntry_Load(EOS(STATIC_11613), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), i4620) -> f11617_0_nextEntry_Load(EOS(STATIC_11617), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11617_0_nextEntry_Load(EOS(STATIC_11617), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11621_0_nextEntry_FieldAccess(EOS(STATIC_11621), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o6943sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(o6943sub), i4620) :|: TRUE f11621_0_nextEntry_FieldAccess(EOS(STATIC_11621), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), i4620) -> f11625_0_nextEntry_FieldAccess(EOS(STATIC_11625), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), i4620) :|: TRUE f11625_0_nextEntry_FieldAccess(EOS(STATIC_11625), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), i4620) -> f11629_0_nextEntry_Duplicate(EOS(STATIC_11629), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), o7026, i4620) :|: TRUE f11629_0_nextEntry_Duplicate(EOS(STATIC_11629), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), o7026, i4620) -> f11633_0_nextEntry_FieldAccess(EOS(STATIC_11633), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), o7026, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), o7026, i4620) :|: TRUE f11633_0_nextEntry_FieldAccess(EOS(STATIC_11633), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), o7026, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), o7026, i4620) -> f11637_0_nextEntry_NONNULL(EOS(STATIC_11637), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, o7026, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, o7026, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, o7026)), o7026, i4620) :|: TRUE f11637_0_nextEntry_NONNULL(EOS(STATIC_11637), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), java.lang.Object(o7033sub), i4620) -> f11642_0_nextEntry_NONNULL(EOS(STATIC_11642), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), java.lang.Object(o7033sub), i4620) :|: TRUE f11637_0_nextEntry_NONNULL(EOS(STATIC_11637), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), NULL, i4620) -> f11643_0_nextEntry_NONNULL(EOS(STATIC_11643), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), NULL, i4620) :|: TRUE f11642_0_nextEntry_NONNULL(EOS(STATIC_11642), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), java.lang.Object(o7033sub), i4620) -> f11648_0_nextEntry_Load(EOS(STATIC_11648), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), i4620) :|: TRUE f11648_0_nextEntry_Load(EOS(STATIC_11648), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), i4620) -> f11652_0_nextEntry_Load(EOS(STATIC_11652), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11652_0_nextEntry_Load(EOS(STATIC_11652), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11658_0_nextEntry_FieldAccess(EOS(STATIC_11658), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), i4620) :|: TRUE f11658_0_nextEntry_FieldAccess(EOS(STATIC_11658), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), i4620) -> f11663_0_nextEntry_Load(EOS(STATIC_11663), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), i4620) :|: TRUE f11663_0_nextEntry_Load(EOS(STATIC_11663), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), i4620) -> f11667_0_nextEntry_Return(EOS(STATIC_11667), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), i4620) :|: TRUE f11667_0_nextEntry_Return(EOS(STATIC_11667), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), i4620) -> f11673_0_next_FieldAccess(EOS(STATIC_11673), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), i4620) :|: TRUE f11673_0_next_FieldAccess(EOS(STATIC_11673), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, java.lang.Object(o7033sub))), i4620) -> f11679_0_next_Return(EOS(STATIC_11679), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11679_0_next_Return(EOS(STATIC_11679), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11682_0_main_StackPop(EOS(STATIC_11682), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11682_0_main_StackPop(EOS(STATIC_11682), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11687_0_main_JMP(EOS(STATIC_11687), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11687_0_main_JMP(EOS(STATIC_11687), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11692_0_main_Load(EOS(STATIC_11692), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11692_0_main_Load(EOS(STATIC_11692), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11512_0_main_Load(EOS(STATIC_11512), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, java.lang.Object(o7033sub), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11643_0_nextEntry_NONNULL(EOS(STATIC_11643), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), NULL, i4620) -> f11649_0_nextEntry_Load(EOS(STATIC_11649), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) :|: TRUE f11649_0_nextEntry_Load(EOS(STATIC_11649), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), i4620) -> f11653_0_nextEntry_FieldAccess(EOS(STATIC_11653), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11653_0_nextEntry_FieldAccess(EOS(STATIC_11653), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11659_0_nextEntry_FieldAccess(EOS(STATIC_11659), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i4620) :|: TRUE f11659_0_nextEntry_FieldAccess(EOS(STATIC_11659), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i4620) -> f11664_0_nextEntry_Store(EOS(STATIC_11664), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4620) :|: TRUE f11664_0_nextEntry_Store(EOS(STATIC_11664), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4620) -> f11668_0_nextEntry_Load(EOS(STATIC_11668), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4620) :|: TRUE f11668_0_nextEntry_Load(EOS(STATIC_11668), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4620) -> f11674_0_nextEntry_FieldAccess(EOS(STATIC_11674), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) :|: TRUE f11674_0_nextEntry_FieldAccess(EOS(STATIC_11674), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), i4620) -> f11680_0_nextEntry_Load(EOS(STATIC_11680), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4422, i4620) :|: TRUE f11680_0_nextEntry_Load(EOS(STATIC_11680), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4422, i4620) -> f11683_0_nextEntry_ArrayLength(EOS(STATIC_11683), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4422, java.lang.Object(ARRAY(i4421)), i4620) :|: TRUE f11683_0_nextEntry_ArrayLength(EOS(STATIC_11683), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4422, java.lang.Object(ARRAY(i4421)), i4620) -> f11688_0_nextEntry_GE(EOS(STATIC_11688), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4422, i4421, i4620) :|: i4421 >= 0 f11688_0_nextEntry_GE(EOS(STATIC_11688), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4422, i4421, i4620) -> f11694_0_nextEntry_GE(EOS(STATIC_11694), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4422, i4421, i4620) :|: i4422 < i4421 f11751_0_nextEntry_NONNULL(EOS(STATIC_11751), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), NULL, i4620) -> f11756_0_nextEntry_JMP(EOS(STATIC_11756), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4620) :|: TRUE f11756_0_nextEntry_JMP(EOS(STATIC_11756), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4620) -> f11761_0_nextEntry_Load(EOS(STATIC_11761), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4620) :|: TRUE f11761_0_nextEntry_Load(EOS(STATIC_11761), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4620) -> f11668_0_nextEntry_Load(EOS(STATIC_11668), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4486, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690, java.lang.Object(ARRAY(i4421))))), i3690)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025, NULL)), java.lang.Object(ARRAY(i4421)), i4620) :|: TRUE Combined rules. Obtained 4 IRulesP rules: f11694_0_nextEntry_GE(EOS(STATIC_11694), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:0, NULL)), java.lang.Object(ARRAY(i4421:0)), i4422:0, i4421:0, i4620:0) -> f11694_0_nextEntry_GE(EOS(STATIC_11694), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0 + 1, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0 + 1, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:0, NULL)), java.lang.Object(ARRAY(i4421:0)), i4422:0 + 1, i4421:0, i4620:0 + 1) :|: i4422:0 + 1 < i4421:0 && i4421:0 > -1 && i4620:0 > -1 f11637_0_nextEntry_NONNULL(EOS(STATIC_11637), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:0, NULL)), NULL, i4620:0) -> f11694_0_nextEntry_GE(EOS(STATIC_11694), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:0, NULL)), java.lang.Object(ARRAY(i4421:0)), i4422:0, i4421:0, i4620:0) :|: i4422:0 < i4421:0 && i4421:0 > -1 f11694_0_nextEntry_GE(EOS(STATIC_11694), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:0, NULL)), java.lang.Object(ARRAY(i4421:0)), i4422:0, i4421:0, i4620:0) -> f11637_0_nextEntry_NONNULL(EOS(STATIC_11637), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0 + 1, o7026:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0 + 1, o7026:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:1, o7026:0)), o7026:0, i4620:0 + 1) :|: i4422:0 < i4421:0 && i4620:0 > -1 f11637_0_nextEntry_NONNULL(EOS(STATIC_11637), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:0, o7026:0)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:0, o7026:0)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:1, java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:0, o7026:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:0, o7026:0)), i4620:0) -> f11637_0_nextEntry_NONNULL(EOS(STATIC_11637), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, o7026:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i4422:0, o7026:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(EOC, i3690:0, java.lang.Object(ARRAY(i4421:0))))), i3690:0)), java.lang.Object(javaUtilEx.HashMap$Entry(EOC, o7025:0, o7026:0)), o7026:0, i4620:0) :|: TRUE Filtered constant ground arguments: f11694_0_nextEntry_GE(x1, x2, x3, x4, x5, x6, x7, x8) -> f11694_0_nextEntry_GE(x2, x3, x4, x5, x6, x7, x8) f11637_0_nextEntry_NONNULL(x1, x2, x3, x4, x5, x6) -> f11637_0_nextEntry_NONNULL(x2, x3, x4, x5, x6) javaUtilEx.HashMap$HashIterator(x1, x2, x3, x4, x5) -> javaUtilEx.HashMap$HashIterator(x2, x3, x4, x5) javaUtilEx.HashMap$Entry(x1, x2, x3) -> javaUtilEx.HashMap$Entry(x2, x3) javaUtilEx.HashMap$ValueIterator(x1) -> javaUtilEx.HashMap$ValueIterator javaUtilEx.HashMap(x1, x2, x3) -> javaUtilEx.HashMap(x2, x3) Filtered duplicate arguments: f11694_0_nextEntry_GE(x1, x2, x3, x4, x5, x6, x7) -> f11694_0_nextEntry_GE(x2, x3, x4, x5, x6, x7) f11637_0_nextEntry_NONNULL(x1, x2, x3, x4, x5) -> f11637_0_nextEntry_NONNULL(x2, x3, x4, x5) Filtered unneeded arguments: f11694_0_nextEntry_GE(x1, x2, x3, x4, x5, x6) -> f11694_0_nextEntry_GE(x1, x3, x4, x5, x6) javaUtilEx.HashMap$HashIterator(x1, x2, x3, x4) -> javaUtilEx.HashMap$HashIterator(x1, x2, x3) javaUtilEx.HashMap$Entry(x1, x2) -> javaUtilEx.HashMap$Entry(x2) javaUtilEx.HashMap(x1, x2) -> javaUtilEx.HashMap(x2) Finished conversion. Obtained 4 rules.P rules: f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), i4422:0, i4421:0, i4620:0, i4422:0, i4421:0, i4421:0) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0 + 1, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), i4422:0 + 1, i4421:0, i4620:0 + 1, i4422:0 + 1, i4421:0, i4421:0) :|: i4421:0 > -1 && i4620:0 > -1 && i4422:0 + 1 < i4421:0 f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(NULL)), NULL, i4620:0, i4422:0, i4421:0) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), i4422:0, i4421:0, i4620:0, i4422:0, i4421:0, i4421:0) :|: i4422:0 < i4421:0 && i4421:0 > -1 f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), i4422:0, i4421:0, i4620:0, i4422:0, i4421:0, i4421:0) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0 + 1, o7026:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(o7026:0)), o7026:0, i4620:0 + 1, i4422:0 + 1, i4421:0) :|: i4422:0 < i4421:0 && i4620:0 > -1 f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0, java.lang.Object(javaUtilEx.HashMap$Entry(o7026:0)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(o7026:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(o7026:0)), i4620:0, i4422:0, i4421:0) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0, o7026:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(o7026:0)), o7026:0, i4620:0, i4422:0, i4421:0) :|: TRUE ---------------------------------------- (58) Obligation: Rules: f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), i4422:0, i4421:0, i4620:0, i4422:0, i4421:0, i4421:0) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0 + 1, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), i4422:0 + 1, i4421:0, i4620:0 + 1, i4422:0 + 1, i4421:0, i4421:0) :|: i4421:0 > -1 && i4620:0 > -1 && i4422:0 + 1 < i4421:0 f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x1))))))), java.lang.Object(javaUtilEx.HashMap$Entry(NULL)), NULL, x2, x, x1) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(x, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x1))))))), java.lang.Object(ARRAY(x1)), x, x1, x2, x, x1, x1) :|: x < x1 && x1 > -1 f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(x3, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x4))))))), java.lang.Object(ARRAY(x4)), x3, x4, x5, x3, x4, x4) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x3 + 1, x6, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x4))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x6)), x6, x5 + 1, x3 + 1, x4) :|: x3 < x4 && x5 > -1 f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7, java.lang.Object(javaUtilEx.HashMap$Entry(x8)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9))))))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8)), x10, x7, x9) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7, x8, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x8)), x8, x10, x7, x9) :|: TRUE ---------------------------------------- (59) IRSFormatTransformerProof (EQUIVALENT) Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). ---------------------------------------- (60) Obligation: Rules: f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), i4422:0, i4421:0, i4620:0, i4422:0, i4421:0, i4421:0) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(arith, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), arith, i4421:0, arith1, arith, i4421:0, i4421:0) :|: i4421:0 > -1 && i4620:0 > -1 && i4422:0 + 1 < i4421:0 && arith = i4422:0 + 1 && arith1 = i4620:0 + 1 && arith = i4422:0 + 1 && arith = i4422:0 + 1 f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x1))))))), java.lang.Object(javaUtilEx.HashMap$Entry(NULL)), NULL, x2, x, x1) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(x, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x1))))))), java.lang.Object(ARRAY(x1)), x, x1, x2, x, x1, x1) :|: x < x1 && x1 > -1 f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(x11, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x12))))))), java.lang.Object(ARRAY(x12)), x11, x12, x13, x11, x12, x12) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x14, x15, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x12))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x15)), x15, x16, x14, x12) :|: x11 < x12 && x13 > -1 && x16 = x13 + 1 && x14 = x11 + 1 && x14 = x11 + 1 f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7, java.lang.Object(javaUtilEx.HashMap$Entry(x8)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9))))))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8)), x10, x7, x9) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7, x8, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x8)), x8, x10, x7, x9) :|: TRUE ---------------------------------------- (61) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), i4422:0, i4421:0, i4620:0, i4422:0, i4421:0, i4421:0) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(arith, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), arith, i4421:0, arith1, arith, i4421:0, i4421:0) :|: i4421:0 > -1 && i4620:0 > -1 && i4422:0 + 1 < i4421:0 && arith = i4422:0 + 1 && arith1 = i4620:0 + 1 && arith = i4422:0 + 1 && arith = i4422:0 + 1 (2) f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x1))))))), java.lang.Object(javaUtilEx.HashMap$Entry(NULL)), NULL, x2, x, x1) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(x, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x1))))))), java.lang.Object(ARRAY(x1)), x, x1, x2, x, x1, x1) :|: x < x1 && x1 > -1 (3) f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(x11, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x12))))))), java.lang.Object(ARRAY(x12)), x11, x12, x13, x11, x12, x12) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x14, x15, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x12))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x15)), x15, x16, x14, x12) :|: x11 < x12 && x13 > -1 && x16 = x13 + 1 && x14 = x11 + 1 && x14 = x11 + 1 (4) f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7, java.lang.Object(javaUtilEx.HashMap$Entry(x8)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9))))))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8)), x10, x7, x9) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7, x8, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x8)), x8, x10, x7, x9) :|: TRUE Arcs: (1) -> (1), (3) (2) -> (1), (3) (3) -> (2), (4) (4) -> (2), (4) This digraph is fully evaluated! ---------------------------------------- (62) Obligation: Termination digraph: Nodes: (1) f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), i4422:0, i4421:0, i4620:0, i4422:0, i4421:0, i4421:0) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(arith, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0))))))), java.lang.Object(ARRAY(i4421:0)), arith, i4421:0, arith1, arith, i4421:0, i4421:0) :|: i4421:0 > -1 && i4620:0 > -1 && i4422:0 + 1 < i4421:0 && arith = i4422:0 + 1 && arith1 = i4620:0 + 1 && arith = i4422:0 + 1 && arith = i4422:0 + 1 (2) f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x1))))))), java.lang.Object(javaUtilEx.HashMap$Entry(NULL)), NULL, x2, x, x1) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(x, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x1))))))), java.lang.Object(ARRAY(x1)), x, x1, x2, x, x1, x1) :|: x < x1 && x1 > -1 (3) f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7, java.lang.Object(javaUtilEx.HashMap$Entry(x8)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9))))))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8)), x10, x7, x9) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7, x8, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x8)), x8, x10, x7, x9) :|: TRUE (4) f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(x11, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x12))))))), java.lang.Object(ARRAY(x12)), x11, x12, x13, x11, x12, x12) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x14, x15, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x12))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x15)), x15, x16, x14, x12) :|: x11 < x12 && x13 > -1 && x16 = x13 + 1 && x14 = x11 + 1 && x14 = x11 + 1 Arcs: (1) -> (1), (4) (2) -> (1), (4) (3) -> (2), (3) (4) -> (2), (3) This digraph is fully evaluated! ---------------------------------------- (63) IntTRSCompressionProof (EQUIVALENT) Compressed rules. ---------------------------------------- (64) Obligation: Rules: f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x1:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(NULL)), NULL, x2:0, x:0, x1:0) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(x:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x1:0))))))), java.lang.Object(ARRAY(x1:0)), x:0, x1:0, x2:0, x:0, x1:0, x1:0) :|: x:0 < x1:0 && x1:0 > -1 f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x10:0, x7:0, x9:0) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7:0, x8:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x8:0, x10:0, x7:0, x9:0) :|: TRUE f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(x11:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x12:0))))))), java.lang.Object(ARRAY(x12:0)), x11:0, x12:0, x13:0, x11:0, x12:0, x12:0) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x11:0 + 1, x15:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x12:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x15:0)), x15:0, x13:0 + 1, x11:0 + 1, x12:0) :|: x12:0 > x11:0 && x13:0 > -1 f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0:0, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0:0))))))), java.lang.Object(ARRAY(i4421:0:0)), i4422:0:0, i4421:0:0, i4620:0:0, i4422:0:0, i4421:0:0, i4421:0:0) -> f11694_0_nextEntry_GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i4422:0:0 + 1, NULL, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(i4421:0:0))))))), java.lang.Object(ARRAY(i4421:0:0)), i4422:0:0 + 1, i4421:0:0, i4620:0:0 + 1, i4422:0:0 + 1, i4421:0:0, i4421:0:0) :|: i4421:0:0 > -1 && i4620:0:0 > -1 && i4422:0:0 + 1 < i4421:0:0 ---------------------------------------- (65) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f11637_0_nextEntry_NONNULL(VARIABLE, VARIABLE, VARIABLE, VARIABLE, VARIABLE, VARIABLE) java.lang.Object(VARIABLE) javaUtilEx.HashMap$HashIterator(VARIABLE, VARIABLE, VARIABLE) NULL() javaUtilEx.AbstractMap(VARIABLE) javaUtilEx.HashMap(VARIABLE) ARRAY(VARIABLE) javaUtilEx.HashMap$Entry(VARIABLE) f11694_0_nextEntry_GE(VARIABLE, VARIABLE, INTEGER, INTEGER, VARIABLE, INTEGER, INTEGER, INTEGER) Replaced non-predefined constructor symbols by 0.The following proof was generated: # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty Termination of the given IntTRS could not be shown: - IntTRS - RankingReductionPairProof Rules: f11637_0_nextEntry_NONNULL(c, c1, c2, x2:0, x:0, x1:0) -> f11694_0_nextEntry_GE(c3, c4, x:0, x1:0, x2:0, x:0, x1:0, x1:0) :|: c4 = 0 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x:0 < x1:0 && x1:0 > -1) f11637_0_nextEntry_NONNULL(c5, c6, c7, x10:0, x7:0, x9:0) -> f11637_0_nextEntry_NONNULL(c8, c9, x8:0, x10:0, x7:0, x9:0) :|: c9 = 0 && (c8 = 0 && (c7 = 0 && (c6 = 0 && c5 = 0))) && TRUE f11694_0_nextEntry_GE(c10, c11, x11:0, x12:0, x13:0, x11:0, x12:0, x12:0) -> f11637_0_nextEntry_NONNULL(c12, c13, x15:0, c14, c15, x12:0) :|: c15 = x11:0 + 1 && (c14 = x13:0 + 1 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0)))) && (x12:0 > x11:0 && x13:0 > -1) f11694_0_nextEntry_GE(c16, c17, i4422:0:0, i4421:0:0, i4620:0:0, i4422:0:0, i4421:0:0, i4421:0:0) -> f11694_0_nextEntry_GE(c18, c19, c20, i4421:0:0, c21, c22, i4421:0:0, i4421:0:0) :|: c22 = i4422:0:0 + 1 && (c21 = i4620:0:0 + 1 && (c20 = i4422:0:0 + 1 && (c19 = 0 && (c18 = 0 && (c17 = 0 && c16 = 0))))) && (i4421:0:0 > -1 && i4620:0:0 > -1 && i4422:0:0 + 1 < i4421:0:0) Interpretation: [ f11637_0_nextEntry_NONNULL ] = -4*f11637_0_nextEntry_NONNULL_5 + 4*f11637_0_nextEntry_NONNULL_6 + 2*f11637_0_nextEntry_NONNULL_4 + 1 [ f11694_0_nextEntry_GE ] = 2*f11694_0_nextEntry_GE_5 + -4*f11694_0_nextEntry_GE_6 + 4*f11694_0_nextEntry_GE_8 The following rules are decreasing: f11637_0_nextEntry_NONNULL(c, c1, c2, x2:0, x:0, x1:0) -> f11694_0_nextEntry_GE(c3, c4, x:0, x1:0, x2:0, x:0, x1:0, x1:0) :|: c4 = 0 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x:0 < x1:0 && x1:0 > -1) f11694_0_nextEntry_GE(c10, c11, x11:0, x12:0, x13:0, x11:0, x12:0, x12:0) -> f11637_0_nextEntry_NONNULL(c12, c13, x15:0, c14, c15, x12:0) :|: c15 = x11:0 + 1 && (c14 = x13:0 + 1 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0)))) && (x12:0 > x11:0 && x13:0 > -1) f11694_0_nextEntry_GE(c16, c17, i4422:0:0, i4421:0:0, i4620:0:0, i4422:0:0, i4421:0:0, i4421:0:0) -> f11694_0_nextEntry_GE(c18, c19, c20, i4421:0:0, c21, c22, i4421:0:0, i4421:0:0) :|: c22 = i4422:0:0 + 1 && (c21 = i4620:0:0 + 1 && (c20 = i4422:0:0 + 1 && (c19 = 0 && (c18 = 0 && (c17 = 0 && c16 = 0))))) && (i4421:0:0 > -1 && i4620:0:0 > -1 && i4422:0:0 + 1 < i4421:0:0) The following rules are bounded: f11694_0_nextEntry_GE(c10, c11, x11:0, x12:0, x13:0, x11:0, x12:0, x12:0) -> f11637_0_nextEntry_NONNULL(c12, c13, x15:0, c14, c15, x12:0) :|: c15 = x11:0 + 1 && (c14 = x13:0 + 1 && (c13 = 0 && (c12 = 0 && (c11 = 0 && c10 = 0)))) && (x12:0 > x11:0 && x13:0 > -1) - IntTRS - RankingReductionPairProof - IntTRS - PolynomialOrderProcessor Rules: f11637_0_nextEntry_NONNULL(c, c1, c2, x2:0, x:0, x1:0) -> f11694_0_nextEntry_GE(c3, c4, x:0, x1:0, x2:0, x:0, x1:0, x1:0) :|: c4 = 0 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x:0 < x1:0 && x1:0 > -1) f11637_0_nextEntry_NONNULL(c5, c6, c7, x10:0, x7:0, x9:0) -> f11637_0_nextEntry_NONNULL(c8, c9, x8:0, x10:0, x7:0, x9:0) :|: c9 = 0 && (c8 = 0 && (c7 = 0 && (c6 = 0 && c5 = 0))) && TRUE f11694_0_nextEntry_GE(c16, c17, i4422:0:0, i4421:0:0, i4620:0:0, i4422:0:0, i4421:0:0, i4421:0:0) -> f11694_0_nextEntry_GE(c18, c19, c20, i4421:0:0, c21, c22, i4421:0:0, i4421:0:0) :|: c22 = i4422:0:0 + 1 && (c21 = i4620:0:0 + 1 && (c20 = i4422:0:0 + 1 && (c19 = 0 && (c18 = 0 && (c17 = 0 && c16 = 0))))) && (i4421:0:0 > -1 && i4620:0:0 > -1 && i4422:0:0 + 1 < i4421:0:0) Found the following polynomial interpretation: [f11637_0_nextEntry_NONNULL(x, x1, x2, x3, x4, x5)] = 1 + c*x + c1*x1 [f11694_0_nextEntry_GE(x6, x7, x8, x9, x10, x11, x12, x13)] = c6*x6 + c7*x7 The following rules are decreasing: f11637_0_nextEntry_NONNULL(c, c1, c2, x2:0, x:0, x1:0) -> f11694_0_nextEntry_GE(c3, c4, x:0, x1:0, x2:0, x:0, x1:0, x1:0) :|: c4 = 0 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x:0 < x1:0 && x1:0 > -1) The following rules are bounded: f11637_0_nextEntry_NONNULL(c, c1, c2, x2:0, x:0, x1:0) -> f11694_0_nextEntry_GE(c3, c4, x:0, x1:0, x2:0, x:0, x1:0, x1:0) :|: c4 = 0 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))) && (x:0 < x1:0 && x1:0 > -1) f11637_0_nextEntry_NONNULL(c5, c6, c7, x10:0, x7:0, x9:0) -> f11637_0_nextEntry_NONNULL(c8, c9, x8:0, x10:0, x7:0, x9:0) :|: c9 = 0 && (c8 = 0 && (c7 = 0 && (c6 = 0 && c5 = 0))) && TRUE f11694_0_nextEntry_GE(c16, c17, i4422:0:0, i4421:0:0, i4620:0:0, i4422:0:0, i4421:0:0, i4421:0:0) -> f11694_0_nextEntry_GE(c18, c19, c20, i4421:0:0, c21, c22, i4421:0:0, i4421:0:0) :|: c22 = i4422:0:0 + 1 && (c21 = i4620:0:0 + 1 && (c20 = i4422:0:0 + 1 && (c19 = 0 && (c18 = 0 && (c17 = 0 && c16 = 0))))) && (i4421:0:0 > -1 && i4620:0:0 > -1 && i4422:0:0 + 1 < i4421:0:0) - IntTRS - RankingReductionPairProof - IntTRS - PolynomialOrderProcessor - IntTRS - RankingReductionPairProof Rules: f11637_0_nextEntry_NONNULL(c5, c6, c7, x10:0, x7:0, x9:0) -> f11637_0_nextEntry_NONNULL(c8, c9, x8:0, x10:0, x7:0, x9:0) :|: c9 = 0 && (c8 = 0 && (c7 = 0 && (c6 = 0 && c5 = 0))) && TRUE f11694_0_nextEntry_GE(c16, c17, i4422:0:0, i4421:0:0, i4620:0:0, i4422:0:0, i4421:0:0, i4421:0:0) -> f11694_0_nextEntry_GE(c18, c19, c20, i4421:0:0, c21, c22, i4421:0:0, i4421:0:0) :|: c22 = i4422:0:0 + 1 && (c21 = i4620:0:0 + 1 && (c20 = i4422:0:0 + 1 && (c19 = 0 && (c18 = 0 && (c17 = 0 && c16 = 0))))) && (i4421:0:0 > -1 && i4620:0:0 > -1 && i4422:0:0 + 1 < i4421:0:0) Interpretation: [ f11637_0_nextEntry_NONNULL ] = 0 [ f11694_0_nextEntry_GE ] = f11694_0_nextEntry_GE_8 + -1*f11694_0_nextEntry_GE_6 The following rules are decreasing: f11694_0_nextEntry_GE(c16, c17, i4422:0:0, i4421:0:0, i4620:0:0, i4422:0:0, i4421:0:0, i4421:0:0) -> f11694_0_nextEntry_GE(c18, c19, c20, i4421:0:0, c21, c22, i4421:0:0, i4421:0:0) :|: c22 = i4422:0:0 + 1 && (c21 = i4620:0:0 + 1 && (c20 = i4422:0:0 + 1 && (c19 = 0 && (c18 = 0 && (c17 = 0 && c16 = 0))))) && (i4421:0:0 > -1 && i4620:0:0 > -1 && i4422:0:0 + 1 < i4421:0:0) The following rules are bounded: f11637_0_nextEntry_NONNULL(c5, c6, c7, x10:0, x7:0, x9:0) -> f11637_0_nextEntry_NONNULL(c8, c9, x8:0, x10:0, x7:0, x9:0) :|: c9 = 0 && (c8 = 0 && (c7 = 0 && (c6 = 0 && c5 = 0))) && TRUE f11694_0_nextEntry_GE(c16, c17, i4422:0:0, i4421:0:0, i4620:0:0, i4422:0:0, i4421:0:0, i4421:0:0) -> f11694_0_nextEntry_GE(c18, c19, c20, i4421:0:0, c21, c22, i4421:0:0, i4421:0:0) :|: c22 = i4422:0:0 + 1 && (c21 = i4620:0:0 + 1 && (c20 = i4422:0:0 + 1 && (c19 = 0 && (c18 = 0 && (c17 = 0 && c16 = 0))))) && (i4421:0:0 > -1 && i4620:0:0 > -1 && i4422:0:0 + 1 < i4421:0:0) - IntTRS - RankingReductionPairProof - IntTRS - PolynomialOrderProcessor - IntTRS - RankingReductionPairProof - IntTRS Rules: f11637_0_nextEntry_NONNULL(c5, c6, c7, x10:0, x7:0, x9:0) -> f11637_0_nextEntry_NONNULL(c8, c9, x8:0, x10:0, x7:0, x9:0) :|: c9 = 0 && (c8 = 0 && (c7 = 0 && (c6 = 0 && c5 = 0))) && TRUE ---------------------------------------- (66) Obligation: Rules: f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x10:0, x7:0, x9:0) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7:0, x8:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x8:0, x10:0, x7:0, x9:0) :|: TRUE ---------------------------------------- (67) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x10:0, x7:0, x9:0) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7:0, x8:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x8:0, x10:0, x7:0, x9:0) :|: TRUE Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (68) Obligation: Termination digraph: Nodes: (1) f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7:0, java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x10:0, x7:0, x9:0) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x7:0, x8:0, java.lang.Object(javaUtilEx.AbstractMap(javaUtilEx.HashMap(java.lang.Object(ARRAY(x9:0))))))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x8:0, x10:0, x7:0, x9:0) :|: TRUE Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (69) IntTRSUnneededArgumentFilterProof (EQUIVALENT) Some arguments are removed because they cannot influence termination. We removed arguments according to the following replacements: f11637_0_nextEntry_NONNULL(x1, x2, x3, x4, x5, x6) -> f11637_0_nextEntry_NONNULL(x1, x2, x3) javaUtilEx.HashMap$HashIterator(x1, x2, x3) -> javaUtilEx.HashMap$HashIterator(x2) ---------------------------------------- (70) Obligation: Rules: f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0))) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x8:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x8:0) :|: TRUE ---------------------------------------- (71) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f11637_0_nextEntry_NONNULL(VARIABLE, VARIABLE, VARIABLE) java.lang.Object(VARIABLE) javaUtilEx.HashMap$HashIterator(VARIABLE) javaUtilEx.HashMap$Entry(VARIABLE) Removed predefined arithmetic. ---------------------------------------- (72) Obligation: Rules: f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0))) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x8:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x8:0) ---------------------------------------- (73) IRSwTToQDPProof (SOUND) Removed the integers and created a QDP-Problem. ---------------------------------------- (74) Obligation: Q DP problem: The TRS P consists of the following rules: f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0))) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x8:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x8:0) R is empty. Q is empty. We have to consider all (P,Q,R)-chains. ---------------------------------------- (75) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)))), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0))) -> f11637_0_nextEntry_NONNULL(java.lang.Object(javaUtilEx.HashMap$HashIterator(x8:0)), java.lang.Object(javaUtilEx.HashMap$Entry(x8:0)), x8:0) The graph contains the following edges 1 > 2, 2 > 2, 3 >= 2, 1 > 3, 2 > 3, 3 > 3 ---------------------------------------- (76) YES ---------------------------------------- (77) Obligation: SCC of termination graph based on JBC Program. SCC contains nodes from the following methods: javaUtilEx.juHashMapCreateIteratorValueLoop.main([Ljava/lang/String;)V SCC calls the following helper methods: Performed SCC analyses: *Used field analysis yielded the following read fields: *javaUtilEx.HashMap$HashIterator: [index] *Marker field analysis yielded the following relations that could be markers: *javaUtilEx.HashMap$HashIterator.index > i3940 (Introduced counter i4621) ---------------------------------------- (78) SCCToIRSProof (SOUND) Transformed FIGraph SCCs to intTRSs. Log: Generated rules. Obtained 23 IRulesP rules: f10905_0__init__GE(EOS(STATIC_10905), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, i3939, i4621) -> f10911_0__init__Load(EOS(STATIC_10911), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i4621) :|: i3940 < i3939 f10911_0__init__Load(EOS(STATIC_10911), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i4621) -> f10917_0__init__Load(EOS(STATIC_10917), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i4621) :|: TRUE f10917_0__init__Load(EOS(STATIC_10917), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i4621) -> f10923_0__init__Load(EOS(STATIC_10923), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i4621) :|: TRUE f10923_0__init__Load(EOS(STATIC_10923), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i4621) -> f10929_0__init__Duplicate(EOS(STATIC_10929), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i4621) :|: TRUE f10929_0__init__Duplicate(EOS(STATIC_10929), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i4621) -> f10935_0__init__FieldAccess(EOS(STATIC_10935), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i4621) :|: TRUE f10935_0__init__FieldAccess(EOS(STATIC_10935), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i4621) -> f10939_0__init__Duplicate(EOS(STATIC_10939), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i3940, i4621) :|: TRUE f10939_0__init__Duplicate(EOS(STATIC_10939), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i3940, i4621) -> f10945_0__init__ConstantStackPush(EOS(STATIC_10945), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i3940, i4621) :|: TRUE f10945_0__init__ConstantStackPush(EOS(STATIC_10945), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i3940, i4621) -> f10950_0__init__IntArithmetic(EOS(STATIC_10950), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i3940, 1, i4621) :|: TRUE f10950_0__init__IntArithmetic(EOS(STATIC_10950), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i3940, matching1, i4621) -> f10956_0__init__FieldAccess(EOS(STATIC_10956), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i3940 + 1, i4621) :|: i3940 >= 0 && matching1 = 1 f10956_0__init__FieldAccess(EOS(STATIC_10956), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i3968, i4621) -> f10960_0__init__ArrayAccess(EOS(STATIC_10960), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), i3940, i4621 + 1) :|: i4621 >= 0 f10960_0__init__ArrayAccess(EOS(STATIC_10960), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), i3940, i4621) -> f10967_0__init__ArrayAccess(EOS(STATIC_10967), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), i3940, i4621) :|: TRUE f10967_0__init__ArrayAccess(EOS(STATIC_10967), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), i3940, i4621) -> f10975_0__init__Duplicate(EOS(STATIC_10975), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), o6315, i4621) :|: i3940 < i3939 f10975_0__init__Duplicate(EOS(STATIC_10975), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), o6315, i4621) -> f10982_0__init__FieldAccess(EOS(STATIC_10982), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), o6315, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), o6315, i4621) :|: TRUE f10982_0__init__FieldAccess(EOS(STATIC_10982), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), o6315, java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), o6315, i4621) -> f10985_0__init__NONNULL(EOS(STATIC_10985), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), o6315, i4621) :|: TRUE f10985_0__init__NONNULL(EOS(STATIC_10985), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), NULL, i4621) -> f10991_0__init__NONNULL(EOS(STATIC_10991), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), NULL, i4621) :|: TRUE f10991_0__init__NONNULL(EOS(STATIC_10991), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), NULL, i4621) -> f11008_0__init__JMP(EOS(STATIC_11008), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), i4621) :|: TRUE f11008_0__init__JMP(EOS(STATIC_11008), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), i4621) -> f11014_0__init__Load(EOS(STATIC_11014), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), i4621) :|: TRUE f11014_0__init__Load(EOS(STATIC_11014), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), i4621) -> f10883_0__init__Load(EOS(STATIC_10883), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3968)), java.lang.Object(ARRAY(i3939)), i4621) :|: TRUE f10883_0__init__Load(EOS(STATIC_10883), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i4621) -> f10887_0__init__FieldAccess(EOS(STATIC_10887), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i4621) :|: TRUE f10887_0__init__FieldAccess(EOS(STATIC_10887), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), i4621) -> f10891_0__init__Load(EOS(STATIC_10891), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, i4621) :|: TRUE f10891_0__init__Load(EOS(STATIC_10891), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, i4621) -> f10895_0__init__ArrayLength(EOS(STATIC_10895), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, java.lang.Object(ARRAY(i3939)), i4621) :|: TRUE f10895_0__init__ArrayLength(EOS(STATIC_10895), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, java.lang.Object(ARRAY(i3939)), i4621) -> f10899_0__init__GE(EOS(STATIC_10899), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, i3939, i4621) :|: i3939 >= 0 f10899_0__init__GE(EOS(STATIC_10899), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, i3939, i4621) -> f10905_0__init__GE(EOS(STATIC_10905), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940)), java.lang.Object(ARRAY(i3939)), i3940, i3939, i4621) :|: i3940 < i3939 Combined rules. Obtained 1 IRulesP rules: f10905_0__init__GE(EOS(STATIC_10905), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940:0)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940:0)), java.lang.Object(ARRAY(i3939:0)), i3940:0, i3939:0, i4621:0) -> f10905_0__init__GE(EOS(STATIC_10905), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940:0 + 1)), java.lang.Object(javaUtilEx.HashMap$HashIterator(javaUtilEx.HashMap$ValueIterator(EOC), i3940:0 + 1)), java.lang.Object(ARRAY(i3939:0)), i3940:0 + 1, i3939:0, i4621:0 + 1) :|: i3940:0 + 1 < i3939:0 && i3940:0 > -1 && i3939:0 > -1 && i4621:0 > -1 Filtered constant ground arguments: f10905_0__init__GE(x1, x2, x3, x4, x5, x6, x7) -> f10905_0__init__GE(x2, x3, x4, x5, x6, x7) EOS(x1) -> EOS javaUtilEx.HashMap$HashIterator(x1, x2) -> javaUtilEx.HashMap$HashIterator(x2) javaUtilEx.HashMap$ValueIterator(x1) -> javaUtilEx.HashMap$ValueIterator Filtered duplicate arguments: f10905_0__init__GE(x1, x2, x3, x4, x5, x6) -> f10905_0__init__GE(x2, x3, x4, x5, x6) Finished conversion. Obtained 1 rules.P rules: f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i3940:0)), java.lang.Object(ARRAY(i3939:0)), i3940:0, i3939:0, i4621:0, i3940:0, i3939:0) -> f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i3940:0 + 1)), java.lang.Object(ARRAY(i3939:0)), i3940:0 + 1, i3939:0, i4621:0 + 1, i3940:0 + 1, i3939:0) :|: i3940:0 > -1 && i3940:0 + 1 < i3939:0 && i4621:0 > -1 && i3939:0 > -1 ---------------------------------------- (79) Obligation: Rules: f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i3940:0)), java.lang.Object(ARRAY(i3939:0)), i3940:0, i3939:0, i4621:0, i3940:0, i3939:0) -> f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i3940:0 + 1)), java.lang.Object(ARRAY(i3939:0)), i3940:0 + 1, i3939:0, i4621:0 + 1, i3940:0 + 1, i3939:0) :|: i3940:0 > -1 && i3940:0 + 1 < i3939:0 && i4621:0 > -1 && i3939:0 > -1 ---------------------------------------- (80) IRSFormatTransformerProof (EQUIVALENT) Reformatted IRS to match normalized format (transformed away non-linear left-hand sides, !=, / and %). ---------------------------------------- (81) Obligation: Rules: f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i3940:0)), java.lang.Object(ARRAY(i3939:0)), i3940:0, i3939:0, i4621:0, i3940:0, i3939:0) -> f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(arith)), java.lang.Object(ARRAY(i3939:0)), arith, i3939:0, arith1, arith, i3939:0) :|: i3940:0 > -1 && i3940:0 + 1 < i3939:0 && i4621:0 > -1 && i3939:0 > -1 && arith = i3940:0 + 1 && arith1 = i4621:0 + 1 && arith = i3940:0 + 1 && arith = i3940:0 + 1 ---------------------------------------- (82) IRSwTTerminationDigraphProof (EQUIVALENT) Constructed termination digraph! Nodes: (1) f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i3940:0)), java.lang.Object(ARRAY(i3939:0)), i3940:0, i3939:0, i4621:0, i3940:0, i3939:0) -> f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(arith)), java.lang.Object(ARRAY(i3939:0)), arith, i3939:0, arith1, arith, i3939:0) :|: i3940:0 > -1 && i3940:0 + 1 < i3939:0 && i4621:0 > -1 && i3939:0 > -1 && arith = i3940:0 + 1 && arith1 = i4621:0 + 1 && arith = i3940:0 + 1 && arith = i3940:0 + 1 Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (83) Obligation: Termination digraph: Nodes: (1) f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i3940:0)), java.lang.Object(ARRAY(i3939:0)), i3940:0, i3939:0, i4621:0, i3940:0, i3939:0) -> f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(arith)), java.lang.Object(ARRAY(i3939:0)), arith, i3939:0, arith1, arith, i3939:0) :|: i3940:0 > -1 && i3940:0 + 1 < i3939:0 && i4621:0 > -1 && i3939:0 > -1 && arith = i3940:0 + 1 && arith1 = i4621:0 + 1 && arith = i3940:0 + 1 && arith = i3940:0 + 1 Arcs: (1) -> (1) This digraph is fully evaluated! ---------------------------------------- (84) IntTRSCompressionProof (EQUIVALENT) Compressed rules. ---------------------------------------- (85) Obligation: Rules: f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i3940:0:0)), java.lang.Object(ARRAY(i3939:0:0)), i3940:0:0, i3939:0:0, i4621:0:0, i3940:0:0, i3939:0:0) -> f10905_0__init__GE(java.lang.Object(javaUtilEx.HashMap$HashIterator(i3940:0:0 + 1)), java.lang.Object(ARRAY(i3939:0:0)), i3940:0:0 + 1, i3939:0:0, i4621:0:0 + 1, i3940:0:0 + 1, i3939:0:0) :|: i4621:0:0 > -1 && i3939:0:0 > -1 && i3940:0:0 + 1 < i3939:0:0 && i3940:0:0 > -1 ---------------------------------------- (86) TempFilterProof (SOUND) Used the following sort dictionary for filtering: f10905_0__init__GE(VARIABLE, VARIABLE, INTEGER, INTEGER, INTEGER, INTEGER, INTEGER) java.lang.Object(VARIABLE) javaUtilEx.HashMap$HashIterator(INTEGER) ARRAY(INTEGER) Replaced non-predefined constructor symbols by 0. ---------------------------------------- (87) Obligation: Rules: f10905_0__init__GE(c, c1, i3940:0:0, i3939:0:0, i4621:0:0, i3940:0:0, i3939:0:0) -> f10905_0__init__GE(c2, c3, c4, i3939:0:0, c5, c6, i3939:0:0) :|: c6 = i3940:0:0 + 1 && (c5 = i4621:0:0 + 1 && (c4 = i3940:0:0 + 1 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))))) && (i4621:0:0 > -1 && i3939:0:0 > -1 && i3940:0:0 + 1 < i3939:0:0 && i3940:0:0 > -1) ---------------------------------------- (88) RankingReductionPairProof (EQUIVALENT) Interpretation: [ f10905_0__init__GE ] = f10905_0__init__GE_7 + -1*f10905_0__init__GE_6 The following rules are decreasing: f10905_0__init__GE(c, c1, i3940:0:0, i3939:0:0, i4621:0:0, i3940:0:0, i3939:0:0) -> f10905_0__init__GE(c2, c3, c4, i3939:0:0, c5, c6, i3939:0:0) :|: c6 = i3940:0:0 + 1 && (c5 = i4621:0:0 + 1 && (c4 = i3940:0:0 + 1 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))))) && (i4621:0:0 > -1 && i3939:0:0 > -1 && i3940:0:0 + 1 < i3939:0:0 && i3940:0:0 > -1) The following rules are bounded: f10905_0__init__GE(c, c1, i3940:0:0, i3939:0:0, i4621:0:0, i3940:0:0, i3939:0:0) -> f10905_0__init__GE(c2, c3, c4, i3939:0:0, c5, c6, i3939:0:0) :|: c6 = i3940:0:0 + 1 && (c5 = i4621:0:0 + 1 && (c4 = i3940:0:0 + 1 && (c3 = 0 && (c2 = 0 && (c1 = 0 && c = 0))))) && (i4621:0:0 > -1 && i3939:0:0 > -1 && i3940:0:0 + 1 < i3939:0:0 && i3940:0:0 > -1) ---------------------------------------- (89) YES