ETH Price: $3,246.43 (-0.35%)
 

Overview

Max Total Supply

4 FANSI

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kaxing.eth
Balance
1 FANSI
0x381a17eb78501498fa183C81648B4165826E1af7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FansiNFT

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-09
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash =
            0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }
}

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(
        Map storage map,
        bytes32 key,
        bytes32 value
    ) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) {
            // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({_key: key, _value: value}));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) {
            // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key)
        private
        view
        returns (bool)
    {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index)
        private
        view
        returns (bytes32, bytes32)
    {
        require(
            map._entries.length > index,
            "EnumerableMap: index out of bounds"
        );

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key)
        private
        view
        returns (bool, bytes32)
    {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToAddressMap storage map,
        uint256 key,
        address value
    ) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key)
        internal
        returns (bool)
    {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool)
    {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map)
        internal
        view
        returns (uint256)
    {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintToAddressMap storage map, uint256 index)
        internal
        view
        returns (uint256, address)
    {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool, address)
    {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return
            address(
                uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))
            );
    }
}

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index)
        private
        view
        returns (bytes32)
    {
        require(
            set._values.length > index,
            "EnumerableSet: index out of bounds"
        );
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index)
        internal
        view
        returns (bytes32)
    {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }
}

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + (temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping(address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account)
        internal
        view
        returns (bool)
    {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract AdminRole is Context {
    using Roles for Roles.Role;

    event AdminAdded(address indexed account);
    event AdminRemoved(address indexed account);

    Roles.Role private _admins;

    constructor() internal {
        _addAdmin(_msgSender());
    }

    modifier onlyAdmin() {
        require(
            isAdmin(_msgSender()),
            "AdminRole: caller does not have the Admin role"
        );
        _;
    }

    function isAdmin(address account) public view returns (bool) {
        return _admins.has(account);
    }

    function addAdmin(address account) public onlyAdmin {
        _addAdmin(account);
    }

    function renounceAdmin() public {
        _removeAdmin(_msgSender());
    }

    function _addAdmin(address account) internal {
        _admins.add(account);
        emit AdminAdded(account);
    }

    function _removeAdmin(address account) internal {
        _admins.remove(account);
        emit AdminRemoved(account);
    }
}

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 _interfaceId)
        external
        view
        returns (bool);
}

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    event Transfer(
        address indexed _from,
        address indexed _to,
        uint256 indexed _tokenId
    );
    event Approval(
        address indexed _owner,
        address indexed _approved,
        uint256 indexed _tokenId
    );
    event ApprovalForAll(
        address indexed _owner,
        address indexed _operator,
        bool _approved
    );

    function balanceOf(address _owner) external view returns (uint256 _balance);

    function ownerOf(uint256 _tokenId) external view returns (address _owner);

    function approve(address _to, uint256 _tokenId) external;

    function getApproved(uint256 _tokenId)
        external
        view
        returns (address _operator);

    function setApprovalForAll(address _operator, bool _approved) external;

    function isApprovedForAll(address _owner, address _operator)
        external
        view
        returns (bool);

    function transferFrom(
        address _from,
        address _to,
        uint256 _tokenId
    ) external;

    function safeTransferFrom(
        address _from,
        address _to,
        uint256 _tokenId
    ) external;

    function safeTransferFrom(
        address _from,
        address _to,
        uint256 _tokenId,
        bytes calldata _data
    ) external;
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    function totalSupply() external view returns (uint256);

    function tokenOfOwnerByIndex(address _owner, uint256 _index)
        external
        view
        returns (uint256 _tokenId);

    function tokenByIndex(uint256 _index) external view returns (uint256);
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function tokenURI(uint256 _tokenId) external view returns (string memory);
}

// File: openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Magic value to be returned upon successful reception of an NFT
     *  Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`,
     *  which can be also obtained as `ERC721Receiver(0).onERC721Received.selector`
     */

    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a `safetransfer`. This function MAY throw to revert and reject the
     * transfer. Return of other than the magic value MUST result in the
     * transaction being reverted.
     * Note: the contract address is always the message sender.
     * @param _operator The address which called `safeTransferFrom` function
     * @param _from The address which previously owned the token
     * @param _tokenId The NFT identifier which is being transferred
     * @param _data Additional data with no specified format
     * @return `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(
        address _operator,
        address _from,
        uint256 _tokenId,
        bytes calldata _data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor() internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping(address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) internal _operatorApprovals;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        return
            _tokenOwners.get(
                tokenId,
                "ERC721: owner query for nonexistent token"
            );
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
     * @dev Returns the base URI set via {_setBaseURI}. This will be
     * automatically added as a prefix in {tokenURI} to each token's URI, or
     * to the token ID if no specific URI is set for that token ID.
     */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner ||
                ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _tokenOwners.contains(tokenId);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId); // internal owner

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        ); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (!to.isContract()) {
            return true;
        }
        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) =
            to.call(
                abi.encodeWithSelector(
                    IERC721Receiver(to).onERC721Received.selector,
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            );
        if (!success) {
            if (returndata.length > 0) {
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert("ERC721: transfer to non ERC721Receiver implementer");
            }
        } else {
            bytes4 retval = abi.decode(returndata, (bytes4));
            return (retval == _ERC721_RECEIVED);
        }
    }

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

contract FansiNFT is ERC721, Ownable, Pausable, AdminRole {
    using SafeMath for uint256;
    using Address for address;

    // Events
    event Minted(uint256 indexed _tokenId, address indexed _tokenOwner);
    event URI(string _uri, uint256 indexed _id);

    struct TokenDetail {
        string name; //artist's name
        uint256 totalEdition; //limit for edition published
    }

    //  Mapping from token ID to TokenDetail
    mapping(uint256 => TokenDetail) internal tokenIdToTokenDetail;

    constructor(address admin) public ERC721("FANSI 721", "FANSI") {
        _addAdmin(admin);
    }

    /**
     * @dev mintArtistToken a new token and assigns to an address
     * @param _to Address of the future owner of the token
     * @param _tokenId specific Token ID
     * @param _tokenURI for token metadata
     * @param _name name for the artist
     * @param _totalEdition limit for edition published
     */
    function mintArtistToken(
        address _to,
        uint256 _tokenId,
        string memory _tokenURI,
        string memory _name,
        uint256 _totalEdition
    ) public onlyAdmin whenNotPaused returns (uint256) {
        require(bytes(_tokenURI).length > 0, "FansiNFT: uri should be set");

        tokenIdToTokenDetail[_tokenId] = TokenDetail({
            name: _name,
            totalEdition: _totalEdition
        });

        _mint(_to, _tokenId);
        emit Minted(_tokenId, _to);
        _setTokenURI(_tokenId, _tokenURI);
        emit URI(_tokenURI, _tokenId);

        _operatorApprovals[_to][_msgSender()] = true;
        emit ApprovalForAll(_to, _msgSender(), true);

        return _tokenId;
    }

    /**
     * @dev mintToken a new token and assigns to an address
     * @param _to Address of the future owner of the token
     * @param _tokenId specific Token ID
     * @param _tokenURI for token metadata
     * @param _name name for the artist
     * @param _totalEdition limit for edition published
     */
    function mintToken(
        address _to,
        uint256 _tokenId,
        string memory _tokenURI,
        string memory _name,
        uint256 _totalEdition
    ) public onlyAdmin whenNotPaused returns (uint256) {
        require(bytes(_tokenURI).length > 0, "FansiNFT: uri should be set");

        tokenIdToTokenDetail[_tokenId] = TokenDetail({
            name: _name,
            totalEdition: _totalEdition
        });

        _mint(_to, _tokenId);
        emit Minted(_tokenId, _to);
        _setTokenURI(_tokenId, _tokenURI);
        emit URI(_tokenURI, _tokenId);

        return _tokenId;
    }

    function burn(uint256 _tokenId) public {
        require(
            _isApprovedOrOwner(_msgSender(), _tokenId),
            "FansiNFT: caller is not owner nor approved"
        );

        _burn(_tokenId);
        // Delete token ID info
        delete tokenIdToTokenDetail[_tokenId];
    }

    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function setBaseURI(string memory _baseURI) public onlyOwner whenNotPaused {
        _setBaseURI(_baseURI);
    }

    function setTokenURI(uint256 _tokenId, string memory _tokenURI)
        public
        onlyAdmin
        whenNotPaused
    {
        _setTokenURI(_tokenId, _tokenURI);
    }

    function getTokenDetail(uint256 _tokenId)
        public
        view
        returns (string memory _name, uint256 _totalEdition)
    {
        return (
            tokenIdToTokenDetail[_tokenId].name,
            tokenIdToTokenDetail[_tokenId].totalEdition
        );
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC1155Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public onlyOwner {
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC1155Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public onlyOwner {
        _unpause();
    }

    function withdrawAll() public payable onlyOwner whenNotPaused {
        require(payable(_msgSender()).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"_tokenOwner","type":"address"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTokenDetail","outputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_totalEdition","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_totalEdition","type":"uint256"}],"name":"mintArtistToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_totalEdition","type":"uint256"}],"name":"mintToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040516200546438038062005464833981810160405260208110156200003757600080fd5b81019080805190602001909291905050506040518060400160405280600981526020017f46414e53492037323100000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f46414e5349000000000000000000000000000000000000000000000000000000815250620000cc6301ffc9a760e01b6200024c60201b60201c565b8160069080519060200190620000e492919062000582565b508060079080519060200190620000fd92919062000582565b50620001166380ac58cd60e01b6200024c60201b60201c565b6200012e635b5e139f60e01b6200024c60201b60201c565b6200014663780e9d6360e01b6200024c60201b60201c565b505060006200015a6200035560201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000600a60146101000a81548160ff02191690831515021790555062000234620002286200035560201b60201c565b6200035d60201b60201c565b62000245816200035d60201b60201c565b5062000631565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b6200037881600b620003be60201b620040a01790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a250565b620003d08282620004a260201b60201c565b1562000444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200052b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620054426022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005c557805160ff1916838001178555620005f6565b82800160010185558215620005f6579182015b82811115620005f5578251825591602001919060010190620005d8565b5b50905062000605919062000609565b5090565b6200062e91905b808211156200062a57600081600090555060010162000610565b5090565b90565b614e0180620006416000396000f3fe6080604052600436106102045760003560e01c80636352211e116101185780638da5cb5b116100a0578063b88d4fde1161006f578063b88d4fde14610fbb578063c0bcc07a146110cd578063c87b56dd14611188578063e985e9c51461123c578063f2fde38b146112c557610204565b80638da5cb5b14610e485780638f32d59b14610e9f57806395d89b4114610ece578063a22cb46514610f5e57610204565b8063715018a6116100e7578063715018a614610d535780638456cb5914610d6a5780638462151c14610d81578063853828b614610e275780638bad0c0a14610e3157610204565b80636352211e14610b925780636c0360eb14610c0d5780637048027514610c9d57806370a0823114610cee57610204565b80632f745c591161019b57806342966c681161016a57806342966c681461086a5780634d27e35c146108a55780634f6ccce714610a4c57806355f804b314610a9b5780635c975abb14610b6357610204565b80632f745c59146105c25780633abeb5c2146106315780633f4ba83a146107d857806342842e0e146107ef57610204565b8063162094c4116101d7578063162094c4146103e157806318160ddd146104b357806323b872dd146104de57806324d7806c1461055957610204565b806301ffc9a71461020957806306fdde031461027b578063081812fc1461030b578063095ea7b314610386575b600080fd5b34801561021557600080fd5b506102616004803603602081101561022c57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611316565b604051808215151515815260200191505060405180910390f35b34801561028757600080fd5b5061029061137d565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102d05780820151818401526020810190506102b5565b50505050905090810190601f1680156102fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031757600080fd5b506103446004803603602081101561032e57600080fd5b810190808035906020019092919050505061141f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039257600080fd5b506103df600480360360408110156103a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ba565b005b3480156103ed57600080fd5b506104b16004803603604081101561040457600080fd5b81019080803590602001909291908035906020019064010000000081111561042b57600080fd5b82018360208201111561043d57600080fd5b8035906020019184600183028401116401000000008311171561045f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115fe565b005b3480156104bf57600080fd5b506104c86116ec565b6040518082815260200191505060405180910390f35b3480156104ea57600080fd5b506105576004803603606081101561050157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116fd565b005b34801561056557600080fd5b506105a86004803603602081101561057c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611773565b604051808215151515815260200191505060405180910390f35b3480156105ce57600080fd5b5061061b600480360360408110156105e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611790565b6040518082815260200191505060405180910390f35b34801561063d57600080fd5b506107c2600480360360a081101561065457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561069b57600080fd5b8201836020820111156106ad57600080fd5b803590602001918460018302840111640100000000831117156106cf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561073257600080fd5b82018360208201111561074457600080fd5b8035906020019184600183028401116401000000008311171561076657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001909291905050506117eb565b6040518082815260200191505060405180910390f35b3480156107e457600080fd5b506107ed611ba4565b005b3480156107fb57600080fd5b506108686004803603606081101561081257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c28565b005b34801561087657600080fd5b506108a36004803603602081101561088d57600080fd5b8101908080359060200190929190505050611c48565b005b3480156108b157600080fd5b50610a36600480360360a08110156108c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561090f57600080fd5b82018360208201111561092157600080fd5b8035906020019184600183028401116401000000008311171561094357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156109a657600080fd5b8201836020820111156109b857600080fd5b803590602001918460018302840111640100000000831117156109da57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611ce8565b6040518082815260200191505060405180910390f35b348015610a5857600080fd5b50610a8560048036036020811015610a6f57600080fd5b8101908080359060200190929190505050611f94565b6040518082815260200191505060405180910390f35b348015610aa757600080fd5b50610b6160048036036020811015610abe57600080fd5b8101908080359060200190640100000000811115610adb57600080fd5b820183602082011115610aed57600080fd5b80359060200191846001830284011164010000000083111715610b0f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611fb7565b005b348015610b6f57600080fd5b50610b786120b8565b604051808215151515815260200191505060405180910390f35b348015610b9e57600080fd5b50610bcb60048036036020811015610bb557600080fd5b81019080803590602001909291905050506120cf565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c1957600080fd5b50610c22612106565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c62578082015181840152602081019050610c47565b50505050905090810190601f168015610c8f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ca957600080fd5b50610cec60048036036020811015610cc057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121a8565b005b348015610cfa57600080fd5b50610d3d60048036036020811015610d1157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612219565b6040518082815260200191505060405180910390f35b348015610d5f57600080fd5b50610d686122ee565b005b348015610d7657600080fd5b50610d7f612429565b005b348015610d8d57600080fd5b50610dd060048036036020811015610da457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124ad565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610e13578082015181840152602081019050610df8565b505050509050019250505060405180910390f35b610e2f61257b565b005b348015610e3d57600080fd5b50610e466126b7565b005b348015610e5457600080fd5b50610e5d6126c9565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610eab57600080fd5b50610eb46126f3565b604051808215151515815260200191505060405180910390f35b348015610eda57600080fd5b50610ee3612752565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f23578082015181840152602081019050610f08565b50505050905090810190601f168015610f505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f6a57600080fd5b50610fb960048036036040811015610f8157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506127f4565b005b348015610fc757600080fd5b506110cb60048036036080811015610fde57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561104557600080fd5b82018360208201111561105757600080fd5b8035906020019184600183028401116401000000008311171561107957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506129ac565b005b3480156110d957600080fd5b50611106600480360360208110156110f057600080fd5b8101908080359060200190929190505050612a24565b6040518080602001838152602001828103825284818151815260200191508051906020019080838360005b8381101561114c578082015181840152602081019050611131565b50505050905090810190601f1680156111795780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b34801561119457600080fd5b506111c1600480360360208110156111ab57600080fd5b8101908080359060200190929190505050612afa565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156112015780820151818401526020810190506111e6565b50505050905090810190601f16801561122e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561124857600080fd5b506112ab6004803603604081101561125f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dcb565b604051808215151515815260200191505060405180910390f35b3480156112d157600080fd5b50611314600480360360208110156112e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e5f565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114155780601f106113ea57610100808354040283529160200191611415565b820191906000526020600020905b8154815290600101906020018083116113f857829003601f168201915b5050505050905090565b600061142a82612ee5565b61147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614c7a602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006114c5826120cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561154c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614d4c6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661156b612f02565b73ffffffffffffffffffffffffffffffffffffffff16148061159a575061159981611594612f02565b612dcb565b5b6115ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614bac6038913960400191505060405180910390fd5b6115f98383612f0a565b505050565b61160e611609612f02565b611773565b611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614d6d602e913960400191505060405180910390fd5b61166b6120b8565b156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6116e88282612fc3565b5050565b60006116f8600261304d565b905090565b61170e611708612f02565b82613062565b611763576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614d9b6031913960400191505060405180910390fd5b61176e838383613156565b505050565b600061178982600b61339990919063ffffffff16565b9050919050565b60006117e382600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061347790919063ffffffff16565b905092915050565b60006117fd6117f8612f02565b611773565b611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614d6d602e913960400191505060405180910390fd5b61185a6120b8565b156118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6000845111611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f46616e73694e46543a207572692073686f756c6420626520736574000000000081525060200191505060405180910390fd5b604051806040016040528084815260200183815250600c6000878152602001908152602001600020600082015181600001908051906020019061198892919061494a565b50602082015181600101559050506119a08686613491565b8573ffffffffffffffffffffffffffffffffffffffff16857fb9203d657e9c0ec8274c818292ab0f58b04e1970050716891770eb1bab5d655e60405160405180910390a36119ee8585612fc3565b847f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b856040518080602001828103825283818151815260200191508051906020019080838360005b83811015611a51578082015181840152602081019050611a36565b50505050905090810190601f168015611a7e5780820380516001836020036101000a031916815260200191505b509250505060405180910390a26001600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611ad6612f02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b2f612f02565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c316001604051808215151515815260200191505060405180910390a384905095945050505050565b611bac6126f3565b611c1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c26613685565b565b611c43838383604051806020016040528060008152506129ac565b505050565b611c59611c53612f02565b82613062565b611cae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614b82602a913960400191505060405180910390fd5b611cb781613786565b600c600082815260200190815260200160002060008082016000611cdb91906149ca565b6001820160009055505050565b6000611cfa611cf5612f02565b611773565b611d4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614d6d602e913960400191505060405180910390fd5b611d576120b8565b15611dca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6000845111611e41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f46616e73694e46543a207572692073686f756c6420626520736574000000000081525060200191505060405180910390fd5b604051806040016040528084815260200183815250600c60008781526020019081526020016000206000820151816000019080519060200190611e8592919061494a565b5060208201518160010155905050611e9d8686613491565b8573ffffffffffffffffffffffffffffffffffffffff16857fb9203d657e9c0ec8274c818292ab0f58b04e1970050716891770eb1bab5d655e60405160405180910390a3611eeb8585612fc3565b847f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b856040518080602001828103825283818151815260200191508051906020019080838360005b83811015611f4e578082015181840152602081019050611f33565b50505050905090810190601f168015611f7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390a284905095945050505050565b600080611fab8360026138c090919063ffffffff16565b50905080915050919050565b611fbf6126f3565b612031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6120396120b8565b156120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6120b5816138ef565b50565b6000600a60149054906101000a900460ff16905090565b60006120ff82604051806060016040528060298152602001614c0e6029913960026139099092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561219e5780601f106121735761010080835404028352916020019161219e565b820191906000526020600020905b81548152906001019060200180831161218157829003601f168201915b5050505050905090565b6121b86121b3612f02565b611773565b61220d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614d6d602e913960400191505060405180910390fd5b61221681613928565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614be4602a913960400191505060405180910390fd5b6122e7600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613982565b9050919050565b6122f66126f3565b612368576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6124316126f3565b6124a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6124ab613997565b565b606060006124ba83612219565b905060008114156124fe5760006040519080825280602002602001820160405280156124f55781602001602082028038833980820191505090505b50915050612576565b60608160405190808252806020026020018201604052801561252f5781602001602082028038833980820191505090505b50905060008090505b8281101561256f5761254a8582611790565b82828151811061255657fe5b6020026020010181815250508080600101915050612538565b8193505050505b919050565b6125836126f3565b6125f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6125fd6120b8565b15612670576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612678612f02565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506126b557600080fd5b565b6126c76126c2612f02565b613a99565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612736612f02565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127ea5780601f106127bf576101008083540402835291602001916127ea565b820191906000526020600020905b8154815290600101906020018083116127cd57829003601f168201915b5050505050905090565b6127fc612f02565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561289d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600560006128aa612f02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612957612f02565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b6129bd6129b7612f02565b83613062565b612a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614d9b6031913960400191505060405180910390fd5b612a1e84848484613af3565b50505050565b60606000600c6000848152602001908152602001600020600001600c600085815260200190815260200160002060010154818054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612aea5780601f10612abf57610100808354040283529160200191612aea565b820191906000526020600020905b815481529060010190602001808311612acd57829003601f168201915b5050505050915091509150915091565b6060612b0582612ee5565b612b5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614d1d602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c035780601f10612bd857610100808354040283529160200191612c03565b820191906000526020600020905b815481529060010190602001808311612be657829003601f168201915b505050505090506060612c14612106565b9050600081511415612c2a578192505050612dc6565b600082511115612cfb5780826040516020018083805190602001908083835b60208310612c6c5780518252602082019150602081019050602083039250612c49565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612cbd5780518252602082019150602081019050602083039250612c9a565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050612dc6565b80612d0585613b65565b6040516020018083805190602001908083835b60208310612d3b5780518252602082019150602081019050602083039250612d18565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612d8c5780518252602082019150602081019050602083039250612d69565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612e676126f3565b612ed9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612ee281613c95565b50565b6000612efb826002613ddb90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f7d836120cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612fcc82612ee5565b613021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614ca6602c913960400191505060405180910390fd5b80600860008481526020019081526020016000209080519060200190613048929190614a12565b505050565b600061305b82600001613df5565b9050919050565b600061306d82612ee5565b6130c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614b56602c913960400191505060405180910390fd5b60006130cd836120cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061313c57508373ffffffffffffffffffffffffffffffffffffffff166131248461141f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061314d575061314c8185612dcb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613176826120cf565b73ffffffffffffffffffffffffffffffffffffffff16146131e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614cf46029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613268576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614b326024913960400191505060405180910390fd5b613273838383613e06565b61327e600082612f0a565b6132cf81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613e0b90919063ffffffff16565b5061332181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613e2590919063ffffffff16565b5061333881836002613e3f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614cd26022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006134868360000183613e74565b60001c905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613534576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61353d81612ee5565b156135b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6135bc60008383613e06565b61360d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613e2590919063ffffffff16565b5061362481836002613e3f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61368d6120b8565b6136ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613743612f02565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000613791826120cf565b905061379f81600084613e06565b6137aa600083612f0a565b600060086000848152602001908152602001600020805460018160011615610100020316600290049050146137f9576008600083815260200190815260200160002060006137f891906149ca565b5b61384a82600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613e0b90919063ffffffff16565b5061385f826002613ef790919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000806000806138d38660000186613f11565b915091508160001c8160001c8090509350935050509250929050565b8060099080519060200190613905929190614a12565b5050565b600061391c846000018460001b84613faa565b60001c90509392505050565b61393c81600b6140a090919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a250565b60006139908260000161417b565b9050919050565b61399f6120b8565b15613a12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613a56612f02565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b613aad81600b61418c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a250565b613afe848484613156565b613b0a84848484614249565b613b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614ada6032913960400191505060405180910390fd5b50505050565b60606000821415613bad576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c90565b600082905060005b60008214613bd7578080600101915050600a8281613bcf57fe5b049150613bb5565b6060816040519080825280601f01601f191660200182016040528015613c0c5781602001600182028038833980820191505090505b50905060006001830390508593505b60008414613c8857600a8481613c2d57fe5b0660300160f81b82828060019003935081518110613c4757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481613c8057fe5b049350613c1b565b819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614b0c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000613ded836000018360001b61456c565b905092915050565b600081600001805490509050919050565b505050565b6000613e1d836000018360001b61458f565b905092915050565b6000613e37836000018360001b614677565b905092915050565b6000613e6b846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6146e7565b90509392505050565b600081836000018054905011613ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ab86022913960400191505060405180910390fd5b826000018281548110613ee457fe5b9060005260206000200154905092915050565b6000613f09836000018360001b6147c3565b905092915050565b60008082846000018054905011613f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614c586022913960400191505060405180910390fd5b6000846000018481548110613f8457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614071576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561403657808201518184015260208101905061401b565b50505050905090810190601f1680156140635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061408457fe5b9060005260206000209060020201600101549150509392505050565b6140aa8282613399565b1561411d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600081600001805490509050919050565b6141968282613399565b6141eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614c376021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061426a8473ffffffffffffffffffffffffffffffffffffffff166148dc565b6142775760019050614564565b600060608573ffffffffffffffffffffffffffffffffffffffff1663150b7a0260e01b6142a2612f02565b898888604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614352578082015181840152602081019050614337565b50505050905090810190601f16801561437f5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518082805190602001908083835b6020831061441757805182526020820191506020810190506020830392506143f4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614479576040519150601f19603f3d011682016040523d82523d6000602084013e61447e565b606091505b5091509150816144ec5760008151111561449b5780518082602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614ada6032913960400191505060405180910390fd5b600081806020019051602081101561450357600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161493505050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461466b57600060018203905060006001866000018054905003905060008660000182815481106145da57fe5b90600052602060002001549050808760000184815481106145f757fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061462f57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614671565b60009150505b92915050565b60006146838383614927565b6146dc5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506146e1565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561478e578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506147bc565b828560000160018303815481106147a157fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020549050600081146148d0576000600182039050600060018660000180549050039050600086600001828154811061480e57fe5b906000526020600020906002020190508087600001848154811061482e57fe5b906000526020600020906002020160008201548160000155600182015481600101559050506001830187600101600083600001548152602001908152602001600020819055508660000180548061488157fe5b60019003818190600052602060002090600202016000808201600090556001820160009055505090558660010160008781526020019081526020016000206000905560019450505050506148d6565b60009150505b92915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561491e57506000801b8214155b92505050919050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061498b57805160ff19168380011785556149b9565b828001600101855582156149b9579182015b828111156149b857825182559160200191906001019061499d565b5b5090506149c69190614a92565b5090565b50805460018160011615610100020316600290046000825580601f106149f05750614a0f565b601f016020900490600052602060002090810190614a0e9190614a92565b5b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614a5357805160ff1916838001178555614a81565b82800160010185558215614a81579182015b82811115614a80578251825591602001919060010190614a65565b5b509050614a8e9190614a92565b5090565b614ab491905b80821115614ab0576000816000905550600101614a98565b5090565b9056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e46616e73694e46543a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e657241646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652041646d696e20726f6c654552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a26469706673582212202307484e695e810b4cd17fe913551629c051be8922db3cc210fe2a250bef3fd364736f6c63430006020033526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000ebb27b23336f62ebdc44bd5fae46a8fcb068e0ea

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e116101185780638da5cb5b116100a0578063b88d4fde1161006f578063b88d4fde14610fbb578063c0bcc07a146110cd578063c87b56dd14611188578063e985e9c51461123c578063f2fde38b146112c557610204565b80638da5cb5b14610e485780638f32d59b14610e9f57806395d89b4114610ece578063a22cb46514610f5e57610204565b8063715018a6116100e7578063715018a614610d535780638456cb5914610d6a5780638462151c14610d81578063853828b614610e275780638bad0c0a14610e3157610204565b80636352211e14610b925780636c0360eb14610c0d5780637048027514610c9d57806370a0823114610cee57610204565b80632f745c591161019b57806342966c681161016a57806342966c681461086a5780634d27e35c146108a55780634f6ccce714610a4c57806355f804b314610a9b5780635c975abb14610b6357610204565b80632f745c59146105c25780633abeb5c2146106315780633f4ba83a146107d857806342842e0e146107ef57610204565b8063162094c4116101d7578063162094c4146103e157806318160ddd146104b357806323b872dd146104de57806324d7806c1461055957610204565b806301ffc9a71461020957806306fdde031461027b578063081812fc1461030b578063095ea7b314610386575b600080fd5b34801561021557600080fd5b506102616004803603602081101561022c57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611316565b604051808215151515815260200191505060405180910390f35b34801561028757600080fd5b5061029061137d565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102d05780820151818401526020810190506102b5565b50505050905090810190601f1680156102fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031757600080fd5b506103446004803603602081101561032e57600080fd5b810190808035906020019092919050505061141f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039257600080fd5b506103df600480360360408110156103a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ba565b005b3480156103ed57600080fd5b506104b16004803603604081101561040457600080fd5b81019080803590602001909291908035906020019064010000000081111561042b57600080fd5b82018360208201111561043d57600080fd5b8035906020019184600183028401116401000000008311171561045f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115fe565b005b3480156104bf57600080fd5b506104c86116ec565b6040518082815260200191505060405180910390f35b3480156104ea57600080fd5b506105576004803603606081101561050157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116fd565b005b34801561056557600080fd5b506105a86004803603602081101561057c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611773565b604051808215151515815260200191505060405180910390f35b3480156105ce57600080fd5b5061061b600480360360408110156105e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611790565b6040518082815260200191505060405180910390f35b34801561063d57600080fd5b506107c2600480360360a081101561065457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561069b57600080fd5b8201836020820111156106ad57600080fd5b803590602001918460018302840111640100000000831117156106cf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561073257600080fd5b82018360208201111561074457600080fd5b8035906020019184600183028401116401000000008311171561076657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001909291905050506117eb565b6040518082815260200191505060405180910390f35b3480156107e457600080fd5b506107ed611ba4565b005b3480156107fb57600080fd5b506108686004803603606081101561081257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c28565b005b34801561087657600080fd5b506108a36004803603602081101561088d57600080fd5b8101908080359060200190929190505050611c48565b005b3480156108b157600080fd5b50610a36600480360360a08110156108c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561090f57600080fd5b82018360208201111561092157600080fd5b8035906020019184600183028401116401000000008311171561094357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156109a657600080fd5b8201836020820111156109b857600080fd5b803590602001918460018302840111640100000000831117156109da57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611ce8565b6040518082815260200191505060405180910390f35b348015610a5857600080fd5b50610a8560048036036020811015610a6f57600080fd5b8101908080359060200190929190505050611f94565b6040518082815260200191505060405180910390f35b348015610aa757600080fd5b50610b6160048036036020811015610abe57600080fd5b8101908080359060200190640100000000811115610adb57600080fd5b820183602082011115610aed57600080fd5b80359060200191846001830284011164010000000083111715610b0f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611fb7565b005b348015610b6f57600080fd5b50610b786120b8565b604051808215151515815260200191505060405180910390f35b348015610b9e57600080fd5b50610bcb60048036036020811015610bb557600080fd5b81019080803590602001909291905050506120cf565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c1957600080fd5b50610c22612106565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c62578082015181840152602081019050610c47565b50505050905090810190601f168015610c8f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ca957600080fd5b50610cec60048036036020811015610cc057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121a8565b005b348015610cfa57600080fd5b50610d3d60048036036020811015610d1157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612219565b6040518082815260200191505060405180910390f35b348015610d5f57600080fd5b50610d686122ee565b005b348015610d7657600080fd5b50610d7f612429565b005b348015610d8d57600080fd5b50610dd060048036036020811015610da457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124ad565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610e13578082015181840152602081019050610df8565b505050509050019250505060405180910390f35b610e2f61257b565b005b348015610e3d57600080fd5b50610e466126b7565b005b348015610e5457600080fd5b50610e5d6126c9565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610eab57600080fd5b50610eb46126f3565b604051808215151515815260200191505060405180910390f35b348015610eda57600080fd5b50610ee3612752565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f23578082015181840152602081019050610f08565b50505050905090810190601f168015610f505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f6a57600080fd5b50610fb960048036036040811015610f8157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506127f4565b005b348015610fc757600080fd5b506110cb60048036036080811015610fde57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561104557600080fd5b82018360208201111561105757600080fd5b8035906020019184600183028401116401000000008311171561107957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506129ac565b005b3480156110d957600080fd5b50611106600480360360208110156110f057600080fd5b8101908080359060200190929190505050612a24565b6040518080602001838152602001828103825284818151815260200191508051906020019080838360005b8381101561114c578082015181840152602081019050611131565b50505050905090810190601f1680156111795780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b34801561119457600080fd5b506111c1600480360360208110156111ab57600080fd5b8101908080359060200190929190505050612afa565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156112015780820151818401526020810190506111e6565b50505050905090810190601f16801561122e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561124857600080fd5b506112ab6004803603604081101561125f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dcb565b604051808215151515815260200191505060405180910390f35b3480156112d157600080fd5b50611314600480360360208110156112e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e5f565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114155780601f106113ea57610100808354040283529160200191611415565b820191906000526020600020905b8154815290600101906020018083116113f857829003601f168201915b5050505050905090565b600061142a82612ee5565b61147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614c7a602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006114c5826120cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561154c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614d4c6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661156b612f02565b73ffffffffffffffffffffffffffffffffffffffff16148061159a575061159981611594612f02565b612dcb565b5b6115ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614bac6038913960400191505060405180910390fd5b6115f98383612f0a565b505050565b61160e611609612f02565b611773565b611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614d6d602e913960400191505060405180910390fd5b61166b6120b8565b156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6116e88282612fc3565b5050565b60006116f8600261304d565b905090565b61170e611708612f02565b82613062565b611763576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614d9b6031913960400191505060405180910390fd5b61176e838383613156565b505050565b600061178982600b61339990919063ffffffff16565b9050919050565b60006117e382600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061347790919063ffffffff16565b905092915050565b60006117fd6117f8612f02565b611773565b611852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614d6d602e913960400191505060405180910390fd5b61185a6120b8565b156118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6000845111611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f46616e73694e46543a207572692073686f756c6420626520736574000000000081525060200191505060405180910390fd5b604051806040016040528084815260200183815250600c6000878152602001908152602001600020600082015181600001908051906020019061198892919061494a565b50602082015181600101559050506119a08686613491565b8573ffffffffffffffffffffffffffffffffffffffff16857fb9203d657e9c0ec8274c818292ab0f58b04e1970050716891770eb1bab5d655e60405160405180910390a36119ee8585612fc3565b847f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b856040518080602001828103825283818151815260200191508051906020019080838360005b83811015611a51578082015181840152602081019050611a36565b50505050905090810190601f168015611a7e5780820380516001836020036101000a031916815260200191505b509250505060405180910390a26001600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611ad6612f02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b2f612f02565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c316001604051808215151515815260200191505060405180910390a384905095945050505050565b611bac6126f3565b611c1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c26613685565b565b611c43838383604051806020016040528060008152506129ac565b505050565b611c59611c53612f02565b82613062565b611cae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614b82602a913960400191505060405180910390fd5b611cb781613786565b600c600082815260200190815260200160002060008082016000611cdb91906149ca565b6001820160009055505050565b6000611cfa611cf5612f02565b611773565b611d4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614d6d602e913960400191505060405180910390fd5b611d576120b8565b15611dca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6000845111611e41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f46616e73694e46543a207572692073686f756c6420626520736574000000000081525060200191505060405180910390fd5b604051806040016040528084815260200183815250600c60008781526020019081526020016000206000820151816000019080519060200190611e8592919061494a565b5060208201518160010155905050611e9d8686613491565b8573ffffffffffffffffffffffffffffffffffffffff16857fb9203d657e9c0ec8274c818292ab0f58b04e1970050716891770eb1bab5d655e60405160405180910390a3611eeb8585612fc3565b847f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b856040518080602001828103825283818151815260200191508051906020019080838360005b83811015611f4e578082015181840152602081019050611f33565b50505050905090810190601f168015611f7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390a284905095945050505050565b600080611fab8360026138c090919063ffffffff16565b50905080915050919050565b611fbf6126f3565b612031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6120396120b8565b156120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6120b5816138ef565b50565b6000600a60149054906101000a900460ff16905090565b60006120ff82604051806060016040528060298152602001614c0e6029913960026139099092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561219e5780601f106121735761010080835404028352916020019161219e565b820191906000526020600020905b81548152906001019060200180831161218157829003601f168201915b5050505050905090565b6121b86121b3612f02565b611773565b61220d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614d6d602e913960400191505060405180910390fd5b61221681613928565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614be4602a913960400191505060405180910390fd5b6122e7600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613982565b9050919050565b6122f66126f3565b612368576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6124316126f3565b6124a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6124ab613997565b565b606060006124ba83612219565b905060008114156124fe5760006040519080825280602002602001820160405280156124f55781602001602082028038833980820191505090505b50915050612576565b60608160405190808252806020026020018201604052801561252f5781602001602082028038833980820191505090505b50905060008090505b8281101561256f5761254a8582611790565b82828151811061255657fe5b6020026020010181815250508080600101915050612538565b8193505050505b919050565b6125836126f3565b6125f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6125fd6120b8565b15612670576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612678612f02565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506126b557600080fd5b565b6126c76126c2612f02565b613a99565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612736612f02565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127ea5780601f106127bf576101008083540402835291602001916127ea565b820191906000526020600020905b8154815290600101906020018083116127cd57829003601f168201915b5050505050905090565b6127fc612f02565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561289d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600560006128aa612f02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612957612f02565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b6129bd6129b7612f02565b83613062565b612a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614d9b6031913960400191505060405180910390fd5b612a1e84848484613af3565b50505050565b60606000600c6000848152602001908152602001600020600001600c600085815260200190815260200160002060010154818054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612aea5780601f10612abf57610100808354040283529160200191612aea565b820191906000526020600020905b815481529060010190602001808311612acd57829003601f168201915b5050505050915091509150915091565b6060612b0582612ee5565b612b5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614d1d602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c035780601f10612bd857610100808354040283529160200191612c03565b820191906000526020600020905b815481529060010190602001808311612be657829003601f168201915b505050505090506060612c14612106565b9050600081511415612c2a578192505050612dc6565b600082511115612cfb5780826040516020018083805190602001908083835b60208310612c6c5780518252602082019150602081019050602083039250612c49565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612cbd5780518252602082019150602081019050602083039250612c9a565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050612dc6565b80612d0585613b65565b6040516020018083805190602001908083835b60208310612d3b5780518252602082019150602081019050602083039250612d18565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612d8c5780518252602082019150602081019050602083039250612d69565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612e676126f3565b612ed9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612ee281613c95565b50565b6000612efb826002613ddb90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f7d836120cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612fcc82612ee5565b613021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614ca6602c913960400191505060405180910390fd5b80600860008481526020019081526020016000209080519060200190613048929190614a12565b505050565b600061305b82600001613df5565b9050919050565b600061306d82612ee5565b6130c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614b56602c913960400191505060405180910390fd5b60006130cd836120cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061313c57508373ffffffffffffffffffffffffffffffffffffffff166131248461141f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061314d575061314c8185612dcb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613176826120cf565b73ffffffffffffffffffffffffffffffffffffffff16146131e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614cf46029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613268576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614b326024913960400191505060405180910390fd5b613273838383613e06565b61327e600082612f0a565b6132cf81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613e0b90919063ffffffff16565b5061332181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613e2590919063ffffffff16565b5061333881836002613e3f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614cd26022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006134868360000183613e74565b60001c905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613534576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61353d81612ee5565b156135b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6135bc60008383613e06565b61360d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613e2590919063ffffffff16565b5061362481836002613e3f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61368d6120b8565b6136ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613743612f02565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000613791826120cf565b905061379f81600084613e06565b6137aa600083612f0a565b600060086000848152602001908152602001600020805460018160011615610100020316600290049050146137f9576008600083815260200190815260200160002060006137f891906149ca565b5b61384a82600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613e0b90919063ffffffff16565b5061385f826002613ef790919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000806000806138d38660000186613f11565b915091508160001c8160001c8090509350935050509250929050565b8060099080519060200190613905929190614a12565b5050565b600061391c846000018460001b84613faa565b60001c90509392505050565b61393c81600b6140a090919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a250565b60006139908260000161417b565b9050919050565b61399f6120b8565b15613a12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613a56612f02565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b613aad81600b61418c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a250565b613afe848484613156565b613b0a84848484614249565b613b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614ada6032913960400191505060405180910390fd5b50505050565b60606000821415613bad576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c90565b600082905060005b60008214613bd7578080600101915050600a8281613bcf57fe5b049150613bb5565b6060816040519080825280601f01601f191660200182016040528015613c0c5781602001600182028038833980820191505090505b50905060006001830390508593505b60008414613c8857600a8481613c2d57fe5b0660300160f81b82828060019003935081518110613c4757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481613c8057fe5b049350613c1b565b819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614b0c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000613ded836000018360001b61456c565b905092915050565b600081600001805490509050919050565b505050565b6000613e1d836000018360001b61458f565b905092915050565b6000613e37836000018360001b614677565b905092915050565b6000613e6b846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6146e7565b90509392505050565b600081836000018054905011613ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ab86022913960400191505060405180910390fd5b826000018281548110613ee457fe5b9060005260206000200154905092915050565b6000613f09836000018360001b6147c3565b905092915050565b60008082846000018054905011613f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614c586022913960400191505060405180910390fd5b6000846000018481548110613f8457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614071576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561403657808201518184015260208101905061401b565b50505050905090810190601f1680156140635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061408457fe5b9060005260206000209060020201600101549150509392505050565b6140aa8282613399565b1561411d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600081600001805490509050919050565b6141968282613399565b6141eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614c376021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061426a8473ffffffffffffffffffffffffffffffffffffffff166148dc565b6142775760019050614564565b600060608573ffffffffffffffffffffffffffffffffffffffff1663150b7a0260e01b6142a2612f02565b898888604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614352578082015181840152602081019050614337565b50505050905090810190601f16801561437f5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518082805190602001908083835b6020831061441757805182526020820191506020810190506020830392506143f4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614479576040519150601f19603f3d011682016040523d82523d6000602084013e61447e565b606091505b5091509150816144ec5760008151111561449b5780518082602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614ada6032913960400191505060405180910390fd5b600081806020019051602081101561450357600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161493505050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461466b57600060018203905060006001866000018054905003905060008660000182815481106145da57fe5b90600052602060002001549050808760000184815481106145f757fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061462f57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614671565b60009150505b92915050565b60006146838383614927565b6146dc5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506146e1565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561478e578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506147bc565b828560000160018303815481106147a157fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020549050600081146148d0576000600182039050600060018660000180549050039050600086600001828154811061480e57fe5b906000526020600020906002020190508087600001848154811061482e57fe5b906000526020600020906002020160008201548160000155600182015481600101559050506001830187600101600083600001548152602001908152602001600020819055508660000180548061488157fe5b60019003818190600052602060002090600202016000808201600090556001820160009055505090558660010160008781526020019081526020016000206000905560019450505050506148d6565b60009150505b92915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561491e57506000801b8214155b92505050919050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061498b57805160ff19168380011785556149b9565b828001600101855582156149b9579182015b828111156149b857825182559160200191906001019061499d565b5b5090506149c69190614a92565b5090565b50805460018160011615610100020316600290046000825580601f106149f05750614a0f565b601f016020900490600052602060002090810190614a0e9190614a92565b5b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614a5357805160ff1916838001178555614a81565b82800160010185558215614a81579182015b82811115614a80578251825591602001919060010190614a65565b5b509050614a8e9190614a92565b5090565b614ab491905b80821115614ab0576000816000905550600101614a98565b5090565b9056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e46616e73694e46543a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e657241646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652041646d696e20726f6c654552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a26469706673582212202307484e695e810b4cd17fe913551629c051be8922db3cc210fe2a250bef3fd364736f6c63430006020033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000ebb27b23336f62ebdc44bd5fae46a8fcb068e0ea

-----Decoded View---------------
Arg [0] : admin (address): 0xebB27b23336f62eBdc44bd5faE46a8FcB068E0Ea

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ebb27b23336f62ebdc44bd5fae46a8fcb068e0ea


Deployed Bytecode Sourcemap

61058:4862:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41428:200;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41428:200:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41428:200:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;46638:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46638:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46638:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49646:308;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49646:308:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49646:308:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;49145:435;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49145:435:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49145:435:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64737:179;;8:9:-1;5:2;;;30:1;27;20:12;5:2;64737:179:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;64737:179:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;64737:179:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;64737:179:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;64737:179:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;64737:179:0;;;;;;;;;;;;;;;:::i;:::-;;48573:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48573:211:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50705:376;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50705:376:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50705:376:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33266:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33266:107:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33266:107:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48285:212;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48285:212:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48285:212:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;62016:744;;8:9:-1;5:2;;;30:1;27;20:12;5:2;62016:744:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;62016:744:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;62016:744:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;62016:744:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;62016:744:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;62016:744:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;62016:744:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;62016:744:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;62016:744:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;62016:744:0;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;65705:65;;8:9:-1;5:2;;;30:1;27;20:12;5:2;65705:65:0;;;:::i;:::-;;51152:185;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51152:185:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51152:185:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;63725:301;;8:9:-1;5:2;;;30:1;27;20:12;5:2;63725:301:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;63725:301:0;;;;;;;;;;;;;;;;;:::i;:::-;;63091:626;;8:9:-1;5:2;;;30:1;27;20:12;5:2;63091:626:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;63091:626:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;63091:626:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;63091:626:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;63091:626:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;63091:626:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;63091:626:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;63091:626:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;63091:626:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;63091:626:0;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48861:222;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48861:222:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48861:222:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;64614:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;64614:115:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;64614:115:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;64614:115:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;64614:115:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;64614:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;64614:115:0;;;;;;;;;;;;;;;:::i;:::-;;34807:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34807:78:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;46282:289;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46282:289:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46282:289:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48104:97;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48104:97:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;48104:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33381:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33381:89:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33381:89:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;45912:308;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45912:308:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45912:308:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32026:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32026:140:0;;;:::i;:::-;;65424:61;;8:9:-1;5:2;;;30:1;27;20:12;5:2;65424:61:0;;;:::i;:::-;;64034:572;;8:9:-1;5:2;;;30:1;27;20:12;5:2;64034:572:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;64034:572:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;64034:572:0;;;;;;;;;;;;;;;;;65778:139;;;:::i;:::-;;33478:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33478:77:0;;;:::i;:::-;;31215:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31215:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31581:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31581:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;46807:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46807:104:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46807:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50026:327;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50026:327:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50026:327:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51408:365;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51408:365:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;51408:365:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51408:365:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51408:365:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51408:365:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;51408:365:0;;;;;;;;;;;;;;;:::i;:::-;;64924:284;;8:9:-1;5:2;;;30:1;27;20:12;5:2;64924:284:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;64924:284:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;64924:284:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46982:879;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46982:879:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46982:879:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46982:879:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50424:214;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50424:214:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50424:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32321:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32321:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32321:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;41428:200;41558:4;41587:20;:33;41608:11;41587:33;;;;;;;;;;;;;;;;;;;;;;;;;;;41580:40;;41428:200;;;:::o;46638:100::-;46692:13;46725:5;46718:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46638:100;:::o;49646:308::-;49767:7;49814:16;49822:7;49814;:16::i;:::-;49792:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49922:15;:24;49938:7;49922:24;;;;;;;;;;;;;;;;;;;;;49915:31;;49646:308;;;:::o;49145:435::-;49226:13;49242:23;49257:7;49242:14;:23::i;:::-;49226:39;;49290:5;49284:11;;:2;:11;;;;49276:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49384:5;49368:21;;:12;:10;:12::i;:::-;:21;;;:86;;;;49410:44;49434:5;49441:12;:10;:12::i;:::-;49410:23;:44::i;:::-;49368:86;49346:192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49551:21;49560:2;49564:7;49551:8;:21::i;:::-;49145:435;;;:::o;64737:179::-;33143:21;33151:12;:10;:12::i;:::-;33143:7;:21::i;:::-;33121:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35125:8:::1;:6;:8::i;:::-;35124:9;35116:38;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;64875:33:::2;64888:8;64898:9;64875:12;:33::i;:::-;64737:179:::0;;:::o;48573:211::-;48634:7;48755:21;:12;:19;:21::i;:::-;48748:28;;48573:211;:::o;50705:376::-;50914:41;50933:12;:10;:12::i;:::-;50947:7;50914:18;:41::i;:::-;50892:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51045:28;51055:4;51061:2;51065:7;51045:9;:28::i;:::-;50705:376;;;:::o;33266:107::-;33321:4;33345:20;33357:7;33345;:11;;:20;;;;:::i;:::-;33338:27;;33266:107;;;:::o;48285:212::-;48427:7;48459:30;48483:5;48459:13;:20;48473:5;48459:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;48452:37;;48285:212;;;;:::o;62016:744::-;62233:7;33143:21;33151:12;:10;:12::i;:::-;33143:7;:21::i;:::-;33121:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35125:8:::1;:6;:8::i;:::-;35124:9;35116:38;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;62287:1:::2;62267:9;62261:23;:27;62253:67;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;62366:92;;;;;;;;62399:5;62366:92;;;;62433:13;62366:92;;::::0;62333:20:::2;:30;62354:8;62333:30;;;;;;;;;;;:125;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62471:20;62477:3;62482:8;62471:5;:20::i;:::-;62524:3;62507:21;;62514:8;62507:21;;;;;;;;;;62539:33;62552:8;62562:9;62539:12;:33::i;:::-;62603:8;62588:24;62592:9;62588:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;62588:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62665:4;62625:18;:23;62644:3;62625:23;;;;;;;;;;;;;;;:37;62649:12;:10;:12::i;:::-;62625:37;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;62705:12;:10;:12::i;:::-;62685:39;;62700:3;62685:39;;;62719:4;62685:39;;;;;;;;;;;;;;;;;;;;;;62744:8;62737:15;;62016:744:::0;;;;;;;:::o;65705:65::-;31427:9;:7;:9::i;:::-;31419:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65752:10:::1;:8;:10::i;:::-;65705:65::o:0;51152:185::-;51290:39;51307:4;51313:2;51317:7;51290:39;;;;;;;;;;;;:16;:39::i;:::-;51152:185;;;:::o;63725:301::-;63797:42;63816:12;:10;:12::i;:::-;63830:8;63797:18;:42::i;:::-;63775:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63922:15;63928:8;63922:5;:15::i;:::-;63988:20;:30;64009:8;63988:30;;;;;;;;;;;;63981:37;;;;;;;;:::i;:::-;;;;;;;;;63725:301;:::o;63091:626::-;63302:7;33143:21;33151:12;:10;:12::i;:::-;33143:7;:21::i;:::-;33121:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35125:8:::1;:6;:8::i;:::-;35124:9;35116:38;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;63356:1:::2;63336:9;63330:23;:27;63322:67;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;63435:92;;;;;;;;63468:5;63435:92;;;;63502:13;63435:92;;::::0;63402:20:::2;:30;63423:8;63402:30;;;;;;;;;;;:125;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63540:20;63546:3;63551:8;63540:5;:20::i;:::-;63593:3;63576:21;;63583:8;63576:21;;;;;;;;;;63608:33;63621:8;63631:9;63608:12;:33::i;:::-;63672:8;63657:24;63661:9;63657:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;63657:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63701:8;63694:15;;63091:626:::0;;;;;;;:::o;48861:222::-;48981:7;49007:15;49028:22;49044:5;49028:12;:15;;:22;;;;:::i;:::-;49006:44;;;49068:7;49061:14;;;48861:222;;;:::o;64614:115::-;31427:9;:7;:9::i;:::-;31419:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35125:8:::1;:6;:8::i;:::-;35124:9;35116:38;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;64700:21:::2;64712:8;64700:11;:21::i;:::-;64614:115:::0;:::o;34807:78::-;34846:4;34870:7;;;;;;;;;;;34863:14;;34807:78;:::o;46282:289::-;46399:7;46444:119;46479:7;46444:119;;;;;;;;;;;;;;;;;:12;:16;;:119;;;;;:::i;:::-;46424:139;;46282:289;;;:::o;48104:97::-;48152:13;48185:8;48178:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48104:97;:::o;33381:89::-;33143:21;33151:12;:10;:12::i;:::-;33143:7;:21::i;:::-;33121:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33444:18:::1;33454:7;33444:9;:18::i;:::-;33381:89:::0;:::o;45912:308::-;46029:7;46093:1;46076:19;;:5;:19;;;;46054:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46183:29;:13;:20;46197:5;46183:20;;;;;;;;;;;;;;;:27;:29::i;:::-;46176:36;;45912:308;;;:::o;32026:140::-;31427:9;:7;:9::i;:::-;31419:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32125:1:::1;32088:40;;32109:6;;;;;;;;;;;32088:40;;;;;;;;;;;;32156:1;32139:6;;:19;;;;;;;;;;;;;;;;;;32026:140::o:0;65424:61::-;31427:9;:7;:9::i;:::-;31419:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65469:8:::1;:6;:8::i;:::-;65424:61::o:0;64034:572::-;64123:16;64157:18;64178:17;64188:6;64178:9;:17::i;:::-;64157:38;;64224:1;64210:10;:15;64206:393;;;64301:1;64287:16;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;64287:16:0;;;;64280:23;;;;;64206:393;64336:23;64376:10;64362:25;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;64362:25:0;;;;64336:51;;64402:13;64443:1;64435:9;;64430:130;64454:10;64446:5;:18;64430:130;;;64510:34;64530:6;64538:5;64510:19;:34::i;:::-;64494:6;64501:5;64494:13;;;;;;;;;;;;;:50;;;;;64466:7;;;;;;;64430:130;;;64581:6;64574:13;;;;;64034:572;;;;:::o;65778:139::-;31427:9;:7;:9::i;:::-;31419:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35125:8:::1;:6;:8::i;:::-;35124:9;35116:38;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;65867:12:::2;:10;:12::i;:::-;65859:26;;:49;65886:21;65859:49;;;;;;;;;;;;;;;;;;;;;;;65851:58;;;::::0;::::2;;65778:139::o:0;33478:77::-;33521:26;33534:12;:10;:12::i;:::-;33521;:26::i;:::-;33478:77::o;31215:79::-;31253:7;31280:6;;;;;;;;;;;31273:13;;31215:79;:::o;31581:94::-;31621:4;31661:6;;;;;;;;;;;31645:22;;:12;:10;:12::i;:::-;:22;;;31638:29;;31581:94;:::o;46807:104::-;46863:13;46896:7;46889:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46807:104;:::o;50026:327::-;50173:12;:10;:12::i;:::-;50161:24;;:8;:24;;;;50153:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50273:8;50228:18;:32;50247:12;:10;:12::i;:::-;50228:32;;;;;;;;;;;;;;;:42;50261:8;50228:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;50326:8;50297:48;;50312:12;:10;:12::i;:::-;50297:48;;;50336:8;50297:48;;;;;;;;;;;;;;;;;;;;;;50026:327;;:::o;51408:365::-;51597:41;51616:12;:10;:12::i;:::-;51630:7;51597:18;:41::i;:::-;51575:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51726:39;51740:4;51746:2;51750:7;51759:5;51726:13;:39::i;:::-;51408:365;;;;:::o;64924:284::-;65014:19;65035:21;65096:20;:30;65117:8;65096:30;;;;;;;;;;;:35;;65146:20;:30;65167:8;65146:30;;;;;;;;;;;:43;;;65074:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64924:284;;;:::o;46982:879::-;47100:13;47153:16;47161:7;47153;:16::i;:::-;47131:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47257:23;47283:10;:19;47294:7;47283:19;;;;;;;;;;;47257:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47313:18;47334:9;:7;:9::i;:::-;47313:30;;47441:1;47425:4;47419:18;:23;47415:72;;;47466:9;47459:16;;;;;;47415:72;47617:1;47597:9;47591:23;:27;47587:108;;;47666:4;47672:9;47649:33;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;47649:33:0;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;47649:33:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;47649:33:0;;;47635:48;;;;;;47587:108;47827:4;47833:18;:7;:16;:18::i;:::-;47810:42;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;47810:42:0;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;47810:42:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;47810:42:0;;;47796:57;;;;46982:879;;;;:::o;50424:214::-;50566:4;50595:18;:25;50614:5;50595:25;;;;;;;;;;;;;;;:35;50621:8;50595:35;;;;;;;;;;;;;;;;;;;;;;;;;50588:42;;50424:214;;;;:::o;32321:109::-;31427:9;:7;:9::i;:::-;31419:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32394:28:::1;32413:8;32394:18;:28::i;:::-;32321:109:::0;:::o;53320:127::-;53385:4;53409:30;53431:7;53409:12;:21;;:30;;;;:::i;:::-;53402:37;;53320:127;;;:::o;29957:106::-;30010:15;30045:10;30038:17;;29957:106;:::o;60129:183::-;60222:2;60195:15;:24;60211:7;60195:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;60278:7;60274:2;60240:46;;60249:23;60264:7;60249:14;:23::i;:::-;60240:46;;;;;;;;;;;;60129:183;;:::o;57751:275::-;57888:16;57896:7;57888;:16::i;:::-;57866:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58009:9;57987:10;:19;57998:7;57987:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;57751:275;;:::o;15227:155::-;15323:7;15355:19;15363:3;:10;;15355:7;:19::i;:::-;15348:26;;15227:155;;;:::o;53614:459::-;53743:4;53787:16;53795:7;53787;:16::i;:::-;53765:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53886:13;53902:23;53917:7;53902:14;:23::i;:::-;53886:39;;53955:5;53944:16;;:7;:16;;;:64;;;;54001:7;53977:31;;:20;53989:7;53977:11;:20::i;:::-;:31;;;53944:64;:120;;;;54025:39;54049:5;54056:7;54025:23;:39::i;:::-;53944:120;53936:129;;;53614:459;;;;:::o;56925:670::-;57098:4;57071:31;;:23;57086:7;57071:14;:23::i;:::-;:31;;;57049:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57222:1;57208:16;;:2;:16;;;;57200:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57278:39;57299:4;57305:2;57309:7;57278:20;:39::i;:::-;57382:29;57399:1;57403:7;57382:8;:29::i;:::-;57424:35;57451:7;57424:13;:19;57438:4;57424:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;57470:30;57492:7;57470:13;:17;57484:2;57470:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;57513:29;57530:7;57539:2;57513:12;:16;;:29;;;;;:::i;:::-;;57579:7;57575:2;57560:27;;57569:4;57560:27;;;;;;;;;;;;56925:670;;;:::o;29172:235::-;29271:4;29320:1;29301:21;;:7;:21;;;;29293:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29379:4;:11;;:20;29391:7;29379:20;;;;;;;;;;;;;;;;;;;;;;;;;29372:27;;29172:235;;;;:::o;27308:169::-;27406:7;27446:22;27450:3;:10;;27462:5;27446:3;:22::i;:::-;27438:31;;27431:38;;27308:169;;;;:::o;55410:404::-;55504:1;55490:16;;:2;:16;;;;55482:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55563:16;55571:7;55563;:16::i;:::-;55562:17;55554:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55625:45;55654:1;55658:2;55662:7;55625:20;:45::i;:::-;55683:30;55705:7;55683:13;:17;55697:2;55683:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;55726:29;55743:7;55752:2;55726:12;:16;;:29;;;;;:::i;:::-;;55798:7;55794:2;55773:33;;55790:1;55773:33;;;;;;;;;;;;55410:404;;:::o;35850:112::-;35402:8;:6;:8::i;:::-;35394:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35911:5:::1;35901:7;;:15;;;;;;;;;;;;;;;;;;35932:22;35941:12;:10;:12::i;:::-;35932:22;;;;;;;;;;;;;;;;;;;;;;35850:112::o:0;56043:545::-;56103:13;56119:23;56134:7;56119:14;:23::i;:::-;56103:39;;56173:48;56194:5;56209:1;56213:7;56173:20;:48::i;:::-;56262:29;56279:1;56283:7;56262:8;:29::i;:::-;56381:1;56350:10;:19;56361:7;56350:19;;;;;;;;;;;56344:33;;;;;;;;;;;;;;;;:38;56340:97;;56406:10;:19;56417:7;56406:19;;;;;;;;;;;;56399:26;;;;:::i;:::-;56340:97;56449:36;56477:7;56449:13;:20;56463:5;56449:20;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;;56498:28;56518:7;56498:12;:19;;:28;;;;:::i;:::-;;56572:7;56568:1;56544:36;;56553:5;56544:36;;;;;;;;;;;;56043:545;;:::o;15730:268::-;15837:7;15846;15872:11;15885:13;15902:22;15906:3;:10;;15918:5;15902:3;:22::i;:::-;15871:53;;;;15951:3;15943:12;;15981:5;15973:14;;15935:55;;;;;;;;;15730:268;;;;;:::o;58256:100::-;58340:8;58329;:19;;;;;;;;;;;;:::i;:::-;;58256:100;:::o;17112:292::-;17253:7;17335:44;17340:3;:10;;17360:3;17352:12;;17366;17335:4;:44::i;:::-;17327:53;;17273:123;;17112:292;;;;;:::o;33563:119::-;33619:20;33631:7;33619;:11;;:20;;;;:::i;:::-;33666:7;33655:19;;;;;;;;;;;;33563:119;:::o;26840:114::-;26900:7;26927:19;26935:3;:10;;26927:7;:19::i;:::-;26920:26;;26840:114;;;:::o;35599:110::-;35125:8;:6;:8::i;:::-;35124:9;35116:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35661:4:::1;35651:7;;:14;;;;;;;;;;;;;;;;;;35681:20;35688:12;:10;:12::i;:::-;35681:20;;;;;;;;;;;;;;;;;;;;;;35599:110::o:0;33690:127::-;33749:23;33764:7;33749;:14;;:23;;;;:::i;:::-;33801:7;33788:21;;;;;;;;;;;;33690:127;:::o;52655:352::-;52812:28;52822:4;52828:2;52832:7;52812:9;:28::i;:::-;52873:48;52896:4;52902:2;52906:7;52915:5;52873:22;:48::i;:::-;52851:148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52655:352;;;;:::o;27635:748::-;27691:13;27921:1;27912:5;:10;27908:53;;;27939:10;;;;;;;;;;;;;;;;;;;;;27908:53;27971:12;27986:5;27971:20;;28002:14;28027:78;28042:1;28034:4;:9;28027:78;;28060:8;;;;;;;28091:2;28083:10;;;;;;;;;28027:78;;;28115:19;28147:6;28137:17;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;28137:17:0;;;;28115:39;;28165:13;28190:1;28181:6;:10;28165:26;;28209:5;28202:12;;28225:119;28240:1;28232:4;:9;28225:119;;28302:2;28295:4;:9;;;;;;28289:2;:16;28276:31;;28258:6;28265:7;;;;;;;28258:15;;;;;;;;;;;:49;;;;;;;;;;;28330:2;28322:10;;;;;;;;;28225:119;;;28368:6;28354:21;;;;;;27635:748;;;;:::o;32536:266::-;32644:1;32624:22;;:8;:22;;;;32602:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32757:8;32728:38;;32749:6;;;;;;;;;;;32728:38;;;;;;;;;;;;32786:8;32777:6;;:17;;;;;;;;;;;;;;;;;;32536:266;:::o;14956:183::-;15067:4;15096:35;15106:3;:10;;15126:3;15118:12;;15096:9;:35::i;:::-;15089:42;;14956:183;;;;:::o;11572:110::-;11628:7;11655:3;:12;;:19;;;;11648:26;;11572:110;;;:::o;60925:126::-;;;;:::o;26330:160::-;26418:4;26447:35;26455:3;:10;;26475:5;26467:14;;26447:7;:35::i;:::-;26440:42;;26330:160;;;;:::o;26023:131::-;26090:4;26114:32;26119:3;:10;;26139:5;26131:14;;26114:4;:32::i;:::-;26107:39;;26023:131;;;;:::o;14322:219::-;14445:4;14469:64;14474:3;:10;;14494:3;14486:12;;14524:5;14508:23;;14500:32;;14469:4;:64::i;:::-;14462:71;;14322:219;;;;;:::o;21974:273::-;22068:7;22136:5;22115:3;:11;;:18;;;;:26;22093:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22221:3;:11;;22233:5;22221:18;;;;;;;;;;;;;;;;22214:25;;21974:273;;;;:::o;14707:165::-;14802:4;14831:33;14839:3;:10;;14859:3;14851:12;;14831:7;:33::i;:::-;14824:40;;14707:165;;;;:::o;12047:348::-;12141:7;12150;12219:5;12197:3;:12;;:19;;;;:27;12175:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12299:22;12324:3;:12;;12337:5;12324:19;;;;;;;;;;;;;;;;;;12299:44;;12362:5;:10;;;12374:5;:12;;;12354:33;;;;;12047:348;;;;;:::o;13645:353::-;13773:7;13793:16;13812:3;:12;;:17;13825:3;13812:17;;;;;;;;;;;;13793:36;;13860:1;13848:8;:13;;13863:12;13840:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13840:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13930:3;:12;;13954:1;13943:8;:12;13930:26;;;;;;;;;;;;;;;;;;:33;;;13923:40;;;13645:353;;;;;:::o;28636:178::-;28714:18;28718:4;28724:7;28714:3;:18::i;:::-;28713:19;28705:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28802:4;28779;:11;;:20;28791:7;28779:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;28636:178;;:::o;21511:109::-;21567:7;21594:3;:11;;:18;;;;21587:25;;21511:109;;;:::o;28894:183::-;28974:18;28978:4;28984:7;28974:3;:18::i;:::-;28966:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29064:5;29041:4;:11;;:20;29053:7;29041:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;28894:183;;:::o;58921:1200::-;59076:4;59098:15;:2;:13;;;:15::i;:::-;59093:60;;59137:4;59130:11;;;;59093:60;59224:12;59238:23;59278:2;:7;;59349:45;;;59417:12;:10;:12::i;:::-;59452:4;59479:7;59509:5;59304:229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;59304:229:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;59304:229:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;59304:229:0;59278:270;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;59278:270:0;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;59223:325:0;;;;59564:7;59559:555;;59612:1;59592:10;:17;:21;59588:384;;;59760:10;59754:17;59821:15;59808:10;59804:2;59800:19;59793:44;59708:148;59896:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59559:555;60004:13;60031:10;60020:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;60020:32:0;;;;;;;;;;;;;;;;60004:48;;42914:10;60085:16;;60075:26;;;:6;:26;;;;60067:35;;;;;58921:1200;;;;;;;:::o;11320:157::-;11418:4;11468:1;11447:3;:12;;:17;11460:3;11447:17;;;;;;;;;;;;:22;;11440:29;;11320:157;;;;:::o;19621:1557::-;19687:4;19805:18;19826:3;:12;;:19;19839:5;19826:19;;;;;;;;;;;;19805:40;;19876:1;19862:10;:15;19858:1313;;20237:21;20274:1;20261:10;:14;20237:38;;20290:17;20331:1;20310:3;:11;;:18;;;;:22;20290:42;;20577:17;20597:3;:11;;20609:9;20597:22;;;;;;;;;;;;;;;;20577:42;;20743:9;20714:3;:11;;20726:13;20714:26;;;;;;;;;;;;;;;:38;;;;20862:1;20846:13;:17;20820:3;:12;;:23;20833:9;20820:23;;;;;;;;;;;:43;;;;20972:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;21067:3;:12;;:19;21080:5;21067:19;;;;;;;;;;;21060:26;;;21110:4;21103:11;;;;;;;;19858:1313;21154:5;21147:12;;;19621:1557;;;;;:::o;19031:414::-;19094:4;19116:21;19126:3;19131:5;19116:9;:21::i;:::-;19111:327;;19154:3;:11;;19171:5;19154:23;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;19154:23:0;;;;;;;;;;;;;;;;;;;19337:3;:11;;:18;;;;19315:3;:12;;:19;19328:5;19315:19;;;;;;;;;;;:40;;;;19377:4;19370:11;;;;19111:327;19421:5;19414:12;;19031:414;;;;;:::o;8762:737::-;8872:4;8988:16;9007:3;:12;;:17;9020:3;9007:17;;;;;;;;;;;;8988:36;;9053:1;9041:8;:13;9037:455;;;9121:3;:12;;9139:36;;;;;;;;9155:3;9139:36;;;;9168:5;9139:36;;;9121:55;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;9121:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9334:3;:12;;:19;;;;9314:3;:12;;:17;9327:3;9314:17;;;;;;;;;;;:39;;;;9375:4;9368:11;;;;;9037:455;9448:5;9412:3;:12;;9436:1;9425:8;:12;9412:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;9475:5;9468:12;;;8762:737;;;;;;:::o;9674:1562::-;9738:4;9854:16;9873:3;:12;;:17;9886:3;9873:17;;;;;;;;;;;;9854:36;;9919:1;9907:8;:13;9903:1326;;10281:21;10316:1;10305:8;:12;10281:36;;10332:17;10374:1;10352:3;:12;;:19;;;;:23;10332:43;;10620:26;10649:3;:12;;10662:9;10649:23;;;;;;;;;;;;;;;;;;10620:52;;10797:9;10767:3;:12;;10780:13;10767:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;10921:1;10905:13;:17;10874:3;:12;;:28;10887:9;:14;;;10874:28;;;;;;;;;;;:48;;;;11031:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11127:3;:12;;:17;11140:3;11127:17;;;;;;;;;;;11120:24;;;11168:4;11161:11;;;;;;;;9903:1326;11212:5;11205:12;;;9674:1562;;;;;:::o;6279:654::-;6339:4;6601:16;6628:19;6663:66;6628:101;;;;6845:7;6833:20;6821:32;;6894:11;6882:8;:23;;:42;;;;;6921:3;6909:15;;:8;:15;;6882:42;6874:51;;;;6279:654;;;:::o;21264:161::-;21364:4;21416:1;21393:3;:12;;:19;21406:5;21393:19;;;;;;;;;;;;:24;;21386:31;;21264:161;;;;:::o;61058:4862::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://2307484e695e810b4cd17fe913551629c051be8922db3cc210fe2a250bef3fd3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.