ETH Price: $3,179.64 (+1.47%)
Gas: 5 Gwei

Token

Metaverse ETP Chain Token (ETP)
 

Overview

Max Total Supply

9,797,584.93691169 ETP

Holders

84

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
Uniswap V2: ETP
Balance
3,660.63550959 ETP

Value
$0.00
0x6c57d2a1de03d23ad8985a40b69fbe17c6d791d6
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:
EtpToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-17
*/

// File: @openzeppelin/contracts/utils/EnumerableSet.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @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.0.0, only sets of type `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];
    }

    // 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(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(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(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(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));
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.6.2;

/**
 * @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) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/GSN/Context.sol



pragma solidity ^0.6.0;

/*
 * @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;
    }
}

// File: @openzeppelin/contracts/access/AccessControl.sol



pragma solidity ^0.6.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity ^0.6.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.
     */
    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-contracts/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.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        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.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.6.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol



pragma solidity ^0.6.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

// File: @openzeppelin/contracts/utils/Pausable.sol



pragma solidity ^0.6.0;


/**
 * @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 virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

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

// File: @openzeppelin/contracts/token/ERC20/ERC20Pausable.sol



pragma solidity ^0.6.0;



/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/presets/ERC20PresetMinterPauser.sol



pragma solidity ^0.6.0;






/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC20PresetMinterPauser is Context, AccessControl, ERC20Burnable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol) public ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

// File: contracts/BaseToken.sol



// XX: pragma solidity 0.6.2;

pragma solidity 0.6.12;

pragma experimental ABIEncoderV2;


contract BaseToken is ERC20PresetMinterPauser {
    bytes32 public constant ADJUST_ROLE = keccak256("ADJUST_ROLE");
    bytes32 public constant DELIVER_ROLE = keccak256("DELIVER_ROLE");

    string[30] private txidArray;
    uint256 arrayLength = 30;
    uint256 private id;

    uint256 private _minDeliver;
    uint256 private _minCollect;

    // uint8 private decimals_;

    event Deliver(address indexed to, uint256 amount, string from, string txid);

    event Collect(address indexed from, uint256 amount, string to);

    constructor(
        uint8 decimal,
        uint256 minDeliver,
        uint256 minCollect,
        string memory name,
        string memory symbol
    ) public ERC20PresetMinterPauser(name, symbol) {
        super._setupDecimals(decimal);
        _minDeliver = minDeliver;
        _minCollect = minCollect;
        _setupRole(ADJUST_ROLE, _msgSender());
        _setupRole(DELIVER_ROLE, _msgSender()); //SET TO Constructor
    }

    function deliver(
        address to,
        uint256 amount,
        string memory from,
        string memory txid
    ) public {
        require(
            amount >= _minDeliver,
            "The minimum value must be greater than minDeliver"
        );
        require(
            hasRole(DELIVER_ROLE, _msgSender()),
            "Must have deliver role to deliver"
        );
        for (uint256 i = 0; i < arrayLength; i++) {
            require(
                keccak256(abi.encodePacked(txidArray[i])) !=
                    keccak256(abi.encodePacked(txid)),
                "The txid has existed"
            );
        }
        uint256 id_number = id % arrayLength;
        txidArray[id_number] = txid;
        id++;
        //transfer(to, amount);
        //NEED MINTER_ROLE
        super.mint(to, amount);
        emit Deliver(to, amount, from, txid);
    }

    function collect(uint256 amount, string memory to) public {
        require(
            amount >= _minCollect,
            "The minimum value must be greater than minCollect"
        );
        super.burn(amount);
        emit Collect(msg.sender, amount, to);
    }

    function adjustParams(uint256 minDeliver, uint256 minCollect) public {
        require(hasRole(ADJUST_ROLE, _msgSender()), "Adjust role required");
        _minDeliver = minDeliver;
        _minCollect = minCollect;
    }

    function getParams() public view returns (uint256, uint256) {
        return (_minDeliver, _minCollect);
    }

    function getTxids() public view returns (string[30] memory) {
        return txidArray;
    }
}

// File: contracts/EtpToken.sol



// XX: pragma solidity 0.6.2;

pragma solidity 0.6.12;


contract EtpToken is BaseToken {
    constructor(string memory name, string memory symbol)
        public
        BaseToken(8, 100000000, 100000000, name, symbol)
    {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"to","type":"string"}],"name":"Collect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"from","type":"string"},{"indexed":false,"internalType":"string","name":"txid","type":"string"}],"name":"Deliver","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ADJUST_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELIVER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minDeliver","type":"uint256"},{"internalType":"uint256","name":"minCollect","type":"uint256"}],"name":"adjustParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"to","type":"string"}],"name":"collect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"from","type":"string"},{"internalType":"string","name":"txid","type":"string"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTxids","outputs":[{"internalType":"string[30]","name":"","type":"string[30]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052601e6025553480156200001657600080fd5b5060405162003dfa38038062003dfa83398181016040528101906200003c9190620004c6565b60086305f5e10080848481818181816004908051906020019062000062929190620003c4565b5080600590805190602001906200007b929190620003c4565b506012600660006101000a81548160ff021916908360ff16021790555050506000600660016101000a81548160ff021916908315150217905550620000d96000801b620000cd6200021060201b60201c565b6200021860201b60201c565b6200011a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200010e6200021060201b60201c565b6200021860201b60201c565b6200015b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6200014f6200021060201b60201c565b6200021860201b60201c565b505062000173856200022e60201b6200142c1760201c565b8360278190555082602881905550620001c27fef765358d14e314da3182bb18974c5fe330c9e28291095869f197cad06c4550c620001b66200021060201b60201c565b6200021860201b60201c565b620002037ff62058b7b4feae3d8708f12c15f6252ed834fde2d9f6d96109e2400d98770aeb620001f76200021060201b60201c565b6200021860201b60201c565b50505050505050620005ca565b600033905090565b6200022a82826200024c60201b60201c565b5050565b80600660006101000a81548160ff021916908360ff16021790555050565b6200027a81600080858152602001908152602001600020600001620002ef60201b6200144a1790919060201c565b15620002eb57620002906200021060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200031f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200032760201b60201c565b905092915050565b60006200033b8383620003a160201b60201c565b620003965782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200039b565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200040757805160ff191683800117855562000438565b8280016001018555821562000438579182015b82811115620004375782518255916020019190600101906200041a565b5b5090506200044791906200044b565b5090565b5b80821115620004665760008160009055506001016200044c565b5090565b600082601f8301126200047c57600080fd5b8151620004936200048d8262000567565b62000539565b91508082526020830160208301858383011115620004b057600080fd5b620004bd83828462000594565b50505092915050565b60008060408385031215620004da57600080fd5b600083015167ffffffffffffffff811115620004f557600080fd5b62000503858286016200046a565b925050602083015167ffffffffffffffff8111156200052157600080fd5b6200052f858286016200046a565b9150509250929050565b6000604051905081810181811067ffffffffffffffff821117156200055d57600080fd5b8060405250919050565b600067ffffffffffffffff8211156200057f57600080fd5b601f19601f8301169050602081019050919050565b60005b83811015620005b457808201518184015260208101905062000597565b83811115620005c4576000848401525b50505050565b61382080620005da6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806379cc67901161011a578063a9059cbb116100ad578063d336abab1161007c578063d336abab146105ee578063d53913931461060c578063d547741f1461062a578063dd62ed3e14610646578063e63ab1e91461067657610206565b8063a9059cbb14610552578063b0ab396814610582578063b10fe704146105a0578063ca15c873146105be57610206565b806395d89b41116100e957806395d89b41146104ca578063a217fddf146104e8578063a457c2d714610506578063a7c0c7cf1461053657610206565b806379cc6790146104445780638456cb59146104605780639010d07c1461046a57806391d148541461049a57610206565b806336568abe1161019d57806342966c681161016c57806342966c681461039f5780635c975abb146103bb5780635e615a6b146103d95780637013cc56146103f857806370a082311461041457610206565b806336568abe1461032d57806339509351146103495780633f4ba83a1461037957806340c10f191461038357610206565b8063248a9ca3116101d9578063248a9ca3146102a75780632f2ff15d146102d7578063313ce567146102f357806334d4d1ac1461031157610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461025957806323b872dd14610277575b600080fd5b610213610694565b604051610220919061317b565b60405180910390f35b610243600480360381019061023e91906124a2565b610736565b6040516102509190613145565b60405180910390f35b610261610754565b60405161026e919061345d565b60405180910390f35b610291600480360381019061028c9190612453565b61075e565b60405161029e9190613145565b60405180910390f35b6102c160048036038101906102bc9190612571565b610837565b6040516102ce9190613160565b60405180910390f35b6102f160048036038101906102ec919061259a565b610856565b005b6102fb6108c9565b6040516103089190613516565b60405180910390f35b61032b600480360381019061032691906124de565b6108e0565b005b6103476004803603810190610342919061259a565b610af6565b005b610363600480360381019061035e91906124a2565b610b79565b6040516103709190613145565b60405180910390f35b610381610c2c565b005b61039d600480360381019061039891906124a2565b610ca6565b005b6103b960048036038101906103b49190612612565b610d24565b005b6103c3610d38565b6040516103d09190613145565b60405180910390f35b6103e1610d4f565b6040516103ef9291906134ed565b60405180910390f35b610412600480360381019061040d919061268f565b610d60565b005b61042e600480360381019061042991906123ee565b610de2565b60405161043b919061345d565b60405180910390f35b61045e600480360381019061045991906124a2565b610e2b565b005b610468610e8d565b005b610484600480360381019061047f91906125d6565b610f07565b60405161049191906130ed565b60405180910390f35b6104b460048036038101906104af919061259a565b610f38565b6040516104c19190613145565b60405180910390f35b6104d2610f69565b6040516104df919061317b565b60405180910390f35b6104f061100b565b6040516104fd9190613160565b60405180910390f35b610520600480360381019061051b91906124a2565b611012565b60405161052d9190613145565b60405180910390f35b610550600480360381019061054b919061263b565b6110df565b005b61056c600480360381019061056791906124a2565b611181565b6040516105799190613145565b60405180910390f35b61058a61119f565b6040516105979190613160565b60405180910390f35b6105a86111c3565b6040516105b59190613160565b60405180910390f35b6105d860048036038101906105d39190612571565b6111e7565b6040516105e5919061345d565b60405180910390f35b6105f661120d565b6040516106039190613123565b60405180910390f35b6106146112ea565b6040516106219190613160565b60405180910390f35b610644600480360381019061063f919061259a565b61130e565b005b610660600480360381019061065b9190612417565b611381565b60405161066d919061345d565b60405180910390f35b61067e611408565b60405161068b9190613160565b60405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561072c5780601f106107015761010080835404028352916020019161072c565b820191906000526020600020905b81548152906001019060200180831161070f57829003601f168201915b5050505050905090565b600061074a61074361147a565b8484611482565b6001905092915050565b6000600354905090565b600061076b84848461164d565b61082c8461077761147a565b6108278560405180606001604052806028815260200161377a60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107dd61147a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e69092919063ffffffff16565b611482565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b61087c6000808481526020019081526020016000206002015461087761147a565b610f38565b6108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b29061321d565b60405180910390fd5b6108c58282611941565b5050565b6000600660009054906101000a900460ff16905090565b602754831015610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c906131fd565b60405180910390fd5b6109567ff62058b7b4feae3d8708f12c15f6252ed834fde2d9f6d96109e2400d98770aeb61095161147a565b610f38565b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c9061319d565b60405180910390fd5b60005b602554811015610a4b57816040516020016109b391906130bf565b60405160208183030381529060405280519060200120600782601e81106109d657fe5b016040516020016109e791906130d6565b604051602081830303815290604052805190602001201415610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a359061329d565b60405180910390fd5b8080600101915050610998565b50600060255460265481610a5b57fe5b06905081600782601e8110610a6c57fe5b019080519060200190610a80929190612296565b50602660008154809291906001019190505550610a9d8585610ca6565b8473ffffffffffffffffffffffffffffffffffffffff167f2eaa57a9d56759e13e05e8f969287ff64974682a9553833ff7de893eb5d490e7858585604051610ae7939291906134a8565b60405180910390a25050505050565b610afe61147a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b62906133fd565b60405180910390fd5b610b7582826119d4565b5050565b6000610c22610b8661147a565b84610c1d8560026000610b9761147a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6790919063ffffffff16565b611482565b6001905092915050565b610c5d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610c5861147a565b610f38565b610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c939061325d565b60405180910390fd5b610ca4611abc565b565b610cd77f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610cd261147a565b610f38565b610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d9061335d565b60405180910390fd5b610d208282611b66565b5050565b610d35610d2f61147a565b82611cfc565b50565b6000600660019054906101000a900460ff16905090565b600080602754602854915091509091565b610d917fef765358d14e314da3182bb18974c5fe330c9e28291095869f197cad06c4550c610d8c61147a565b610f38565b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc7906132fd565b60405180910390fd5b81602781905550806028819055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e6a826040518060600160405280602481526020016137a260249139610e5b86610e5661147a565b611381565b6118e69092919063ffffffff16565b9050610e7e83610e7861147a565b83611482565b610e888383611cfc565b505050565b610ebe7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610eb961147a565b610f38565b610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906133dd565b60405180910390fd5b610f05611eac565b565b6000610f3082600080868152602001908152602001600020600001611f5790919063ffffffff16565b905092915050565b6000610f6182600080868152602001908152602001600020600001611f7190919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110015780601f10610fd657610100808354040283529160200191611001565b820191906000526020600020905b815481529060010190602001808311610fe457829003601f168201915b5050505050905090565b6000801b81565b60006110d561101f61147a565b846110d0856040518060600160405280602581526020016137c6602591396002600061104961147a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e69092919063ffffffff16565b611482565b6001905092915050565b602854821015611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b9061327d565b60405180910390fd5b61112d82610d24565b3373ffffffffffffffffffffffffffffffffffffffff167f175e925642f14f208ddf0b4335344b9897376065f4600e9f99c8d1a45f3a0ecf8383604051611175929190613478565b60405180910390a25050565b600061119561118e61147a565b848461164d565b6001905092915050565b7fef765358d14e314da3182bb18974c5fe330c9e28291095869f197cad06c4550c81565b7ff62058b7b4feae3d8708f12c15f6252ed834fde2d9f6d96109e2400d98770aeb81565b6000611206600080848152602001908152602001600020600001611fa1565b9050919050565b611215612316565b6007601e80602002604051908101604052809291906000905b828210156112e1578382018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112cd5780601f106112a2576101008083540402835291602001916112cd565b820191906000526020600020905b8154815290600101906020018083116112b057829003601f168201915b50505050508152602001906001019061122e565b50505050905090565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6113346000808481526020019081526020016000206002015461132f61147a565b610f38565b611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a9061331d565b60405180910390fd5b61137d82826119d4565b5050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b80600660006101000a81548160ff021916908360ff16021790555050565b6000611472836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611fb6565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e9906133bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611562576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611559906132bd565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611640919061345d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b49061339d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561172d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611724906131dd565b60405180910390fd5b611738838383612026565b6117a48160405180606001604052806026815260200161375460269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e69092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118d9919061345d565b60405180910390a3505050565b600083831115829061192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925919061317b565b60405180910390fd5b5060008385039050809150509392505050565b6119688160008085815260200190815260200160002060000161144a90919063ffffffff16565b156119d05761197561147a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119fb8160008085815260200190815260200160002060000161203690919063ffffffff16565b15611a6357611a0861147a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080828401905083811015611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa9906132dd565b60405180910390fd5b8091505092915050565b600660019054906101000a900460ff16611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061323d565b60405180910390fd5b6000600660016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b4f61147a565b604051611b5c9190613108565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd9061341d565b60405180910390fd5b611be260008383612026565b611bf781600354611a6790919063ffffffff16565b600381905550611c4f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cf0919061345d565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d639061337d565b60405180910390fd5b611d7882600083612026565b611de48160405180606001604052806022815260200161373260229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e69092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e3c8160035461206690919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ea0919061345d565b60405180910390a35050565b600660019054906101000a900460ff1615611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef39061333d565b60405180910390fd5b6001600660016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f4061147a565b604051611f4d9190613108565b60405180910390a1565b6000611f6683600001836120b0565b60001c905092915050565b6000611f99836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61211d565b905092915050565b6000611faf82600001612140565b9050919050565b6000611fc2838361211d565b61201b578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612020565b600090505b92915050565b612031838383612151565b505050565b600061205e836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6121a9565b905092915050565b60006120a883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118e6565b905092915050565b6000818360000180549050116120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f2906131bd565b60405180910390fd5b82600001828154811061210a57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b61215c838383612291565b612164610d38565b156121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b9061343d565b60405180910390fd5b505050565b6000808360010160008481526020019081526020016000205490506000811461228557600060018203905060006001866000018054905003905060008660000182815481106121f457fe5b906000526020600020015490508087600001848154811061221157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061224957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061228b565b60009150505b92915050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106122d757805160ff1916838001178555612305565b82800160010185558215612305579182015b828111156123045782518255916020019190600101906122e9565b5b509050612312919061233e565b5090565b604051806103c00160405280601e905b60608152602001906001900390816123265790505090565b5b8082111561235757600081600090555060010161233f565b5090565b60008135905061236a816136ec565b92915050565b60008135905061237f81613703565b92915050565b600082601f83011261239657600080fd5b81356123a96123a48261355e565b613531565b915080825260208301602083018583830111156123c557600080fd5b6123d0838284613699565b50505092915050565b6000813590506123e88161371a565b92915050565b60006020828403121561240057600080fd5b600061240e8482850161235b565b91505092915050565b6000806040838503121561242a57600080fd5b60006124388582860161235b565b92505060206124498582860161235b565b9150509250929050565b60008060006060848603121561246857600080fd5b60006124768682870161235b565b93505060206124878682870161235b565b9250506040612498868287016123d9565b9150509250925092565b600080604083850312156124b557600080fd5b60006124c38582860161235b565b92505060206124d4858286016123d9565b9150509250929050565b600080600080608085870312156124f457600080fd5b60006125028782880161235b565b9450506020612513878288016123d9565b935050604085013567ffffffffffffffff81111561253057600080fd5b61253c87828801612385565b925050606085013567ffffffffffffffff81111561255957600080fd5b61256587828801612385565b91505092959194509250565b60006020828403121561258357600080fd5b600061259184828501612370565b91505092915050565b600080604083850312156125ad57600080fd5b60006125bb85828601612370565b92505060206125cc8582860161235b565b9150509250929050565b600080604083850312156125e957600080fd5b60006125f785828601612370565b9250506020612608858286016123d9565b9150509250929050565b60006020828403121561262457600080fd5b6000612632848285016123d9565b91505092915050565b6000806040838503121561264e57600080fd5b600061265c858286016123d9565b925050602083013567ffffffffffffffff81111561267957600080fd5b61268585828601612385565b9150509250929050565b600080604083850312156126a257600080fd5b60006126b0858286016123d9565b92505060206126c1858286016123d9565b9150509250929050565b60006126d78383612790565b905092915050565b6126e881613663565b82525050565b6126f781613604565b82525050565b6000612708826135a9565b61271281856135cc565b9350836020820285016127248561358a565b8060005b85811015612760578484038952815161274185826126cb565b945061274c836135bf565b925060208a01995050600181019050612728565b50829750879550505050505092915050565b61277b81613616565b82525050565b61278a81613622565b82525050565b600061279b826135b4565b6127a581856135d7565b93506127b58185602086016136a8565b6127be816136db565b840191505092915050565b60006127d4826135b4565b6127de81856135e8565b93506127ee8185602086016136a8565b6127f7816136db565b840191505092915050565b600061280d826135b4565b61281781856135f9565b93506128278185602086016136a8565b80840191505092915050565b6000815460018116600081146128505760018114612875576128b9565b607f600283041661286181876135f9565b955060ff19831686528086019350506128b9565b6002820461288381876135f9565b955061288e85613594565b60005b828110156128b057815481890152600182019150602081019050612891565b82880195505050505b505092915050565b60006128ce6021836135e8565b91507f4d75737420686176652064656c6976657220726f6c6520746f2064656c69766560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129346022836135e8565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061299a6023836135e8565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a006031836135e8565b91507f546865206d696e696d756d2076616c7565206d7573742062652067726561746560008301527f72207468616e206d696e44656c697665720000000000000000000000000000006020830152604082019050919050565b6000612a66602f836135e8565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f206772616e7400000000000000000000000000000000006020830152604082019050919050565b6000612acc6014836135e8565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612b0c6039836135e8565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f20756e7061757365000000000000006020830152604082019050919050565b6000612b726031836135e8565b91507f546865206d696e696d756d2076616c7565206d7573742062652067726561746560008301527f72207468616e206d696e436f6c6c6563740000000000000000000000000000006020830152604082019050919050565b6000612bd86014836135e8565b91507f54686520747869642068617320657869737465640000000000000000000000006000830152602082019050919050565b6000612c186022836135e8565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c7e601b836135e8565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000612cbe6014836135e8565b91507f41646a75737420726f6c652072657175697265640000000000000000000000006000830152602082019050919050565b6000612cfe6030836135e8565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f207265766f6b65000000000000000000000000000000006020830152604082019050919050565b6000612d646010836135e8565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612da46036836135e8565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f7665206d696e74657220726f6c6520746f206d696e74000000000000000000006020830152604082019050919050565b6000612e0a6021836135e8565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e706025836135e8565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ed66024836135e8565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f3c6037836135e8565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f2070617573650000000000000000006020830152604082019050919050565b6000612fa2602f836135e8565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b6000613008601f836135e8565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000613048602a836135e8565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6130aa8161364c565b82525050565b6130b981613656565b82525050565b60006130cb8284612802565b915081905092915050565b60006130e28284612833565b915081905092915050565b600060208201905061310260008301846126ee565b92915050565b600060208201905061311d60008301846126df565b92915050565b6000602082019050818103600083015261313d81846126fd565b905092915050565b600060208201905061315a6000830184612772565b92915050565b60006020820190506131756000830184612781565b92915050565b6000602082019050818103600083015261319581846127c9565b905092915050565b600060208201905081810360008301526131b6816128c1565b9050919050565b600060208201905081810360008301526131d681612927565b9050919050565b600060208201905081810360008301526131f68161298d565b9050919050565b60006020820190508181036000830152613216816129f3565b9050919050565b6000602082019050818103600083015261323681612a59565b9050919050565b6000602082019050818103600083015261325681612abf565b9050919050565b6000602082019050818103600083015261327681612aff565b9050919050565b6000602082019050818103600083015261329681612b65565b9050919050565b600060208201905081810360008301526132b681612bcb565b9050919050565b600060208201905081810360008301526132d681612c0b565b9050919050565b600060208201905081810360008301526132f681612c71565b9050919050565b6000602082019050818103600083015261331681612cb1565b9050919050565b6000602082019050818103600083015261333681612cf1565b9050919050565b6000602082019050818103600083015261335681612d57565b9050919050565b6000602082019050818103600083015261337681612d97565b9050919050565b6000602082019050818103600083015261339681612dfd565b9050919050565b600060208201905081810360008301526133b681612e63565b9050919050565b600060208201905081810360008301526133d681612ec9565b9050919050565b600060208201905081810360008301526133f681612f2f565b9050919050565b6000602082019050818103600083015261341681612f95565b9050919050565b6000602082019050818103600083015261343681612ffb565b9050919050565b600060208201905081810360008301526134568161303b565b9050919050565b600060208201905061347260008301846130a1565b92915050565b600060408201905061348d60008301856130a1565b818103602083015261349f81846127c9565b90509392505050565b60006060820190506134bd60008301866130a1565b81810360208301526134cf81856127c9565b905081810360408301526134e381846127c9565b9050949350505050565b600060408201905061350260008301856130a1565b61350f60208301846130a1565b9392505050565b600060208201905061352b60008301846130b0565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561355457600080fd5b8060405250919050565b600067ffffffffffffffff82111561357557600080fd5b601f19601f8301169050602081019050919050565b6000819050919050565b60008190508160005260206000209050919050565b6000601e9050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061360f8261362c565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061366e82613675565b9050919050565b600061368082613687565b9050919050565b60006136928261362c565b9050919050565b82818337600083830152505050565b60005b838110156136c65780820151818401526020810190506136ab565b838111156136d5576000848401525b50505050565b6000601f19601f8301169050919050565b6136f581613604565b811461370057600080fd5b50565b61370c81613622565b811461371757600080fd5b50565b6137238161364c565b811461372e57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220902eeb014a32801de8f5a96751ea6e8db576bf6c2cc9a329d4b6e4ec5f2bc27364736f6c634300060c00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000194d65746176657273652045545020436861696e20546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000034554500000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806379cc67901161011a578063a9059cbb116100ad578063d336abab1161007c578063d336abab146105ee578063d53913931461060c578063d547741f1461062a578063dd62ed3e14610646578063e63ab1e91461067657610206565b8063a9059cbb14610552578063b0ab396814610582578063b10fe704146105a0578063ca15c873146105be57610206565b806395d89b41116100e957806395d89b41146104ca578063a217fddf146104e8578063a457c2d714610506578063a7c0c7cf1461053657610206565b806379cc6790146104445780638456cb59146104605780639010d07c1461046a57806391d148541461049a57610206565b806336568abe1161019d57806342966c681161016c57806342966c681461039f5780635c975abb146103bb5780635e615a6b146103d95780637013cc56146103f857806370a082311461041457610206565b806336568abe1461032d57806339509351146103495780633f4ba83a1461037957806340c10f191461038357610206565b8063248a9ca3116101d9578063248a9ca3146102a75780632f2ff15d146102d7578063313ce567146102f357806334d4d1ac1461031157610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461025957806323b872dd14610277575b600080fd5b610213610694565b604051610220919061317b565b60405180910390f35b610243600480360381019061023e91906124a2565b610736565b6040516102509190613145565b60405180910390f35b610261610754565b60405161026e919061345d565b60405180910390f35b610291600480360381019061028c9190612453565b61075e565b60405161029e9190613145565b60405180910390f35b6102c160048036038101906102bc9190612571565b610837565b6040516102ce9190613160565b60405180910390f35b6102f160048036038101906102ec919061259a565b610856565b005b6102fb6108c9565b6040516103089190613516565b60405180910390f35b61032b600480360381019061032691906124de565b6108e0565b005b6103476004803603810190610342919061259a565b610af6565b005b610363600480360381019061035e91906124a2565b610b79565b6040516103709190613145565b60405180910390f35b610381610c2c565b005b61039d600480360381019061039891906124a2565b610ca6565b005b6103b960048036038101906103b49190612612565b610d24565b005b6103c3610d38565b6040516103d09190613145565b60405180910390f35b6103e1610d4f565b6040516103ef9291906134ed565b60405180910390f35b610412600480360381019061040d919061268f565b610d60565b005b61042e600480360381019061042991906123ee565b610de2565b60405161043b919061345d565b60405180910390f35b61045e600480360381019061045991906124a2565b610e2b565b005b610468610e8d565b005b610484600480360381019061047f91906125d6565b610f07565b60405161049191906130ed565b60405180910390f35b6104b460048036038101906104af919061259a565b610f38565b6040516104c19190613145565b60405180910390f35b6104d2610f69565b6040516104df919061317b565b60405180910390f35b6104f061100b565b6040516104fd9190613160565b60405180910390f35b610520600480360381019061051b91906124a2565b611012565b60405161052d9190613145565b60405180910390f35b610550600480360381019061054b919061263b565b6110df565b005b61056c600480360381019061056791906124a2565b611181565b6040516105799190613145565b60405180910390f35b61058a61119f565b6040516105979190613160565b60405180910390f35b6105a86111c3565b6040516105b59190613160565b60405180910390f35b6105d860048036038101906105d39190612571565b6111e7565b6040516105e5919061345d565b60405180910390f35b6105f661120d565b6040516106039190613123565b60405180910390f35b6106146112ea565b6040516106219190613160565b60405180910390f35b610644600480360381019061063f919061259a565b61130e565b005b610660600480360381019061065b9190612417565b611381565b60405161066d919061345d565b60405180910390f35b61067e611408565b60405161068b9190613160565b60405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561072c5780601f106107015761010080835404028352916020019161072c565b820191906000526020600020905b81548152906001019060200180831161070f57829003601f168201915b5050505050905090565b600061074a61074361147a565b8484611482565b6001905092915050565b6000600354905090565b600061076b84848461164d565b61082c8461077761147a565b6108278560405180606001604052806028815260200161377a60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107dd61147a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e69092919063ffffffff16565b611482565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b61087c6000808481526020019081526020016000206002015461087761147a565b610f38565b6108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b29061321d565b60405180910390fd5b6108c58282611941565b5050565b6000600660009054906101000a900460ff16905090565b602754831015610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c906131fd565b60405180910390fd5b6109567ff62058b7b4feae3d8708f12c15f6252ed834fde2d9f6d96109e2400d98770aeb61095161147a565b610f38565b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c9061319d565b60405180910390fd5b60005b602554811015610a4b57816040516020016109b391906130bf565b60405160208183030381529060405280519060200120600782601e81106109d657fe5b016040516020016109e791906130d6565b604051602081830303815290604052805190602001201415610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a359061329d565b60405180910390fd5b8080600101915050610998565b50600060255460265481610a5b57fe5b06905081600782601e8110610a6c57fe5b019080519060200190610a80929190612296565b50602660008154809291906001019190505550610a9d8585610ca6565b8473ffffffffffffffffffffffffffffffffffffffff167f2eaa57a9d56759e13e05e8f969287ff64974682a9553833ff7de893eb5d490e7858585604051610ae7939291906134a8565b60405180910390a25050505050565b610afe61147a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b62906133fd565b60405180910390fd5b610b7582826119d4565b5050565b6000610c22610b8661147a565b84610c1d8560026000610b9761147a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6790919063ffffffff16565b611482565b6001905092915050565b610c5d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610c5861147a565b610f38565b610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c939061325d565b60405180910390fd5b610ca4611abc565b565b610cd77f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610cd261147a565b610f38565b610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d9061335d565b60405180910390fd5b610d208282611b66565b5050565b610d35610d2f61147a565b82611cfc565b50565b6000600660019054906101000a900460ff16905090565b600080602754602854915091509091565b610d917fef765358d14e314da3182bb18974c5fe330c9e28291095869f197cad06c4550c610d8c61147a565b610f38565b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc7906132fd565b60405180910390fd5b81602781905550806028819055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e6a826040518060600160405280602481526020016137a260249139610e5b86610e5661147a565b611381565b6118e69092919063ffffffff16565b9050610e7e83610e7861147a565b83611482565b610e888383611cfc565b505050565b610ebe7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610eb961147a565b610f38565b610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906133dd565b60405180910390fd5b610f05611eac565b565b6000610f3082600080868152602001908152602001600020600001611f5790919063ffffffff16565b905092915050565b6000610f6182600080868152602001908152602001600020600001611f7190919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110015780601f10610fd657610100808354040283529160200191611001565b820191906000526020600020905b815481529060010190602001808311610fe457829003601f168201915b5050505050905090565b6000801b81565b60006110d561101f61147a565b846110d0856040518060600160405280602581526020016137c6602591396002600061104961147a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e69092919063ffffffff16565b611482565b6001905092915050565b602854821015611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b9061327d565b60405180910390fd5b61112d82610d24565b3373ffffffffffffffffffffffffffffffffffffffff167f175e925642f14f208ddf0b4335344b9897376065f4600e9f99c8d1a45f3a0ecf8383604051611175929190613478565b60405180910390a25050565b600061119561118e61147a565b848461164d565b6001905092915050565b7fef765358d14e314da3182bb18974c5fe330c9e28291095869f197cad06c4550c81565b7ff62058b7b4feae3d8708f12c15f6252ed834fde2d9f6d96109e2400d98770aeb81565b6000611206600080848152602001908152602001600020600001611fa1565b9050919050565b611215612316565b6007601e80602002604051908101604052809291906000905b828210156112e1578382018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112cd5780601f106112a2576101008083540402835291602001916112cd565b820191906000526020600020905b8154815290600101906020018083116112b057829003601f168201915b50505050508152602001906001019061122e565b50505050905090565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6113346000808481526020019081526020016000206002015461132f61147a565b610f38565b611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a9061331d565b60405180910390fd5b61137d82826119d4565b5050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b80600660006101000a81548160ff021916908360ff16021790555050565b6000611472836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611fb6565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e9906133bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611562576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611559906132bd565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611640919061345d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b49061339d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561172d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611724906131dd565b60405180910390fd5b611738838383612026565b6117a48160405180606001604052806026815260200161375460269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e69092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118d9919061345d565b60405180910390a3505050565b600083831115829061192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925919061317b565b60405180910390fd5b5060008385039050809150509392505050565b6119688160008085815260200190815260200160002060000161144a90919063ffffffff16565b156119d05761197561147a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119fb8160008085815260200190815260200160002060000161203690919063ffffffff16565b15611a6357611a0861147a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080828401905083811015611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa9906132dd565b60405180910390fd5b8091505092915050565b600660019054906101000a900460ff16611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061323d565b60405180910390fd5b6000600660016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b4f61147a565b604051611b5c9190613108565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd9061341d565b60405180910390fd5b611be260008383612026565b611bf781600354611a6790919063ffffffff16565b600381905550611c4f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cf0919061345d565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d639061337d565b60405180910390fd5b611d7882600083612026565b611de48160405180606001604052806022815260200161373260229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118e69092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e3c8160035461206690919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ea0919061345d565b60405180910390a35050565b600660019054906101000a900460ff1615611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef39061333d565b60405180910390fd5b6001600660016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f4061147a565b604051611f4d9190613108565b60405180910390a1565b6000611f6683600001836120b0565b60001c905092915050565b6000611f99836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61211d565b905092915050565b6000611faf82600001612140565b9050919050565b6000611fc2838361211d565b61201b578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612020565b600090505b92915050565b612031838383612151565b505050565b600061205e836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6121a9565b905092915050565b60006120a883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118e6565b905092915050565b6000818360000180549050116120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f2906131bd565b60405180910390fd5b82600001828154811061210a57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b61215c838383612291565b612164610d38565b156121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b9061343d565b60405180910390fd5b505050565b6000808360010160008481526020019081526020016000205490506000811461228557600060018203905060006001866000018054905003905060008660000182815481106121f457fe5b906000526020600020015490508087600001848154811061221157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061224957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061228b565b60009150505b92915050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106122d757805160ff1916838001178555612305565b82800160010185558215612305579182015b828111156123045782518255916020019190600101906122e9565b5b509050612312919061233e565b5090565b604051806103c00160405280601e905b60608152602001906001900390816123265790505090565b5b8082111561235757600081600090555060010161233f565b5090565b60008135905061236a816136ec565b92915050565b60008135905061237f81613703565b92915050565b600082601f83011261239657600080fd5b81356123a96123a48261355e565b613531565b915080825260208301602083018583830111156123c557600080fd5b6123d0838284613699565b50505092915050565b6000813590506123e88161371a565b92915050565b60006020828403121561240057600080fd5b600061240e8482850161235b565b91505092915050565b6000806040838503121561242a57600080fd5b60006124388582860161235b565b92505060206124498582860161235b565b9150509250929050565b60008060006060848603121561246857600080fd5b60006124768682870161235b565b93505060206124878682870161235b565b9250506040612498868287016123d9565b9150509250925092565b600080604083850312156124b557600080fd5b60006124c38582860161235b565b92505060206124d4858286016123d9565b9150509250929050565b600080600080608085870312156124f457600080fd5b60006125028782880161235b565b9450506020612513878288016123d9565b935050604085013567ffffffffffffffff81111561253057600080fd5b61253c87828801612385565b925050606085013567ffffffffffffffff81111561255957600080fd5b61256587828801612385565b91505092959194509250565b60006020828403121561258357600080fd5b600061259184828501612370565b91505092915050565b600080604083850312156125ad57600080fd5b60006125bb85828601612370565b92505060206125cc8582860161235b565b9150509250929050565b600080604083850312156125e957600080fd5b60006125f785828601612370565b9250506020612608858286016123d9565b9150509250929050565b60006020828403121561262457600080fd5b6000612632848285016123d9565b91505092915050565b6000806040838503121561264e57600080fd5b600061265c858286016123d9565b925050602083013567ffffffffffffffff81111561267957600080fd5b61268585828601612385565b9150509250929050565b600080604083850312156126a257600080fd5b60006126b0858286016123d9565b92505060206126c1858286016123d9565b9150509250929050565b60006126d78383612790565b905092915050565b6126e881613663565b82525050565b6126f781613604565b82525050565b6000612708826135a9565b61271281856135cc565b9350836020820285016127248561358a565b8060005b85811015612760578484038952815161274185826126cb565b945061274c836135bf565b925060208a01995050600181019050612728565b50829750879550505050505092915050565b61277b81613616565b82525050565b61278a81613622565b82525050565b600061279b826135b4565b6127a581856135d7565b93506127b58185602086016136a8565b6127be816136db565b840191505092915050565b60006127d4826135b4565b6127de81856135e8565b93506127ee8185602086016136a8565b6127f7816136db565b840191505092915050565b600061280d826135b4565b61281781856135f9565b93506128278185602086016136a8565b80840191505092915050565b6000815460018116600081146128505760018114612875576128b9565b607f600283041661286181876135f9565b955060ff19831686528086019350506128b9565b6002820461288381876135f9565b955061288e85613594565b60005b828110156128b057815481890152600182019150602081019050612891565b82880195505050505b505092915050565b60006128ce6021836135e8565b91507f4d75737420686176652064656c6976657220726f6c6520746f2064656c69766560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129346022836135e8565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061299a6023836135e8565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a006031836135e8565b91507f546865206d696e696d756d2076616c7565206d7573742062652067726561746560008301527f72207468616e206d696e44656c697665720000000000000000000000000000006020830152604082019050919050565b6000612a66602f836135e8565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f206772616e7400000000000000000000000000000000006020830152604082019050919050565b6000612acc6014836135e8565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000612b0c6039836135e8565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f20756e7061757365000000000000006020830152604082019050919050565b6000612b726031836135e8565b91507f546865206d696e696d756d2076616c7565206d7573742062652067726561746560008301527f72207468616e206d696e436f6c6c6563740000000000000000000000000000006020830152604082019050919050565b6000612bd86014836135e8565b91507f54686520747869642068617320657869737465640000000000000000000000006000830152602082019050919050565b6000612c186022836135e8565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c7e601b836135e8565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000612cbe6014836135e8565b91507f41646a75737420726f6c652072657175697265640000000000000000000000006000830152602082019050919050565b6000612cfe6030836135e8565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f207265766f6b65000000000000000000000000000000006020830152604082019050919050565b6000612d646010836135e8565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612da46036836135e8565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f7665206d696e74657220726f6c6520746f206d696e74000000000000000000006020830152604082019050919050565b6000612e0a6021836135e8565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e706025836135e8565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ed66024836135e8565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f3c6037836135e8565b91507f45524332305072657365744d696e7465725061757365723a206d75737420686160008301527f76652070617573657220726f6c6520746f2070617573650000000000000000006020830152604082019050919050565b6000612fa2602f836135e8565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b6000613008601f836135e8565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000613048602a836135e8565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6130aa8161364c565b82525050565b6130b981613656565b82525050565b60006130cb8284612802565b915081905092915050565b60006130e28284612833565b915081905092915050565b600060208201905061310260008301846126ee565b92915050565b600060208201905061311d60008301846126df565b92915050565b6000602082019050818103600083015261313d81846126fd565b905092915050565b600060208201905061315a6000830184612772565b92915050565b60006020820190506131756000830184612781565b92915050565b6000602082019050818103600083015261319581846127c9565b905092915050565b600060208201905081810360008301526131b6816128c1565b9050919050565b600060208201905081810360008301526131d681612927565b9050919050565b600060208201905081810360008301526131f68161298d565b9050919050565b60006020820190508181036000830152613216816129f3565b9050919050565b6000602082019050818103600083015261323681612a59565b9050919050565b6000602082019050818103600083015261325681612abf565b9050919050565b6000602082019050818103600083015261327681612aff565b9050919050565b6000602082019050818103600083015261329681612b65565b9050919050565b600060208201905081810360008301526132b681612bcb565b9050919050565b600060208201905081810360008301526132d681612c0b565b9050919050565b600060208201905081810360008301526132f681612c71565b9050919050565b6000602082019050818103600083015261331681612cb1565b9050919050565b6000602082019050818103600083015261333681612cf1565b9050919050565b6000602082019050818103600083015261335681612d57565b9050919050565b6000602082019050818103600083015261337681612d97565b9050919050565b6000602082019050818103600083015261339681612dfd565b9050919050565b600060208201905081810360008301526133b681612e63565b9050919050565b600060208201905081810360008301526133d681612ec9565b9050919050565b600060208201905081810360008301526133f681612f2f565b9050919050565b6000602082019050818103600083015261341681612f95565b9050919050565b6000602082019050818103600083015261343681612ffb565b9050919050565b600060208201905081810360008301526134568161303b565b9050919050565b600060208201905061347260008301846130a1565b92915050565b600060408201905061348d60008301856130a1565b818103602083015261349f81846127c9565b90509392505050565b60006060820190506134bd60008301866130a1565b81810360208301526134cf81856127c9565b905081810360408301526134e381846127c9565b9050949350505050565b600060408201905061350260008301856130a1565b61350f60208301846130a1565b9392505050565b600060208201905061352b60008301846130b0565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561355457600080fd5b8060405250919050565b600067ffffffffffffffff82111561357557600080fd5b601f19601f8301169050602081019050919050565b6000819050919050565b60008190508160005260206000209050919050565b6000601e9050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061360f8261362c565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061366e82613675565b9050919050565b600061368082613687565b9050919050565b60006136928261362c565b9050919050565b82818337600083830152505050565b60005b838110156136c65780820151818401526020810190506136ab565b838111156136d5576000848401525b50505050565b6000601f19601f8301169050919050565b6136f581613604565b811461370057600080fd5b50565b61370c81613622565b811461371757600080fd5b50565b6137238161364c565b811461372e57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220902eeb014a32801de8f5a96751ea6e8db576bf6c2cc9a329d4b6e4ec5f2bc27364736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000194d65746176657273652045545020436861696e20546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000034554500000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Metaverse ETP Chain Token
Arg [1] : symbol (string): ETP

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [3] : 4d65746176657273652045545020436861696e20546f6b656e00000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4554500000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51754:176:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33046:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35152:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34121:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35795:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19445:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19821:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33973:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50005:904;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21030:209;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36525:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48492:178;;;:::i;:::-;;47683:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42341:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44125:78;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51431:112;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;51198:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34284:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42751:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48102:172;;;:::i;:::-;;19118:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18079:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33248:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16824:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37246:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50917:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34616:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49060:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49129:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18392:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51551:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46918:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20293:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34854:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46987:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33046:83;33083:13;33116:5;33109:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33046:83;:::o;35152:169::-;35235:4;35252:39;35261:12;:10;:12::i;:::-;35275:7;35284:6;35252:8;:39::i;:::-;35309:4;35302:11;;35152:169;;;;:::o;34121:100::-;34174:7;34201:12;;34194:19;;34121:100;:::o;35795:321::-;35901:4;35918:36;35928:6;35936:9;35947:6;35918:9;:36::i;:::-;35965:121;35974:6;35982:12;:10;:12::i;:::-;35996:89;36034:6;35996:89;;;;;;;;;;;;;;;;;:11;:19;36008:6;35996:19;;;;;;;;;;;;;;;:33;36016:12;:10;:12::i;:::-;35996:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;35965:8;:121::i;:::-;36104:4;36097:11;;35795:321;;;;;:::o;19445:114::-;19502:7;19529:6;:12;19536:4;19529:12;;;;;;;;;;;:22;;;19522:29;;19445:114;;;:::o;19821:227::-;19905:45;19913:6;:12;19920:4;19913:12;;;;;;;;;;;:22;;;19937:12;:10;:12::i;:::-;19905:7;:45::i;:::-;19897:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;20015:25;20026:4;20032:7;20015:10;:25::i;:::-;19821:227;;:::o;33973:83::-;34014:5;34039:9;;;;;;;;;;;34032:16;;33973:83;:::o;50005:904::-;50183:11;;50173:6;:21;;50151:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;50304:35;49168:25;50326:12;:10;:12::i;:::-;50304:7;:35::i;:::-;50282:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;50416:9;50411:250;50435:11;;50431:1;:15;50411:250;;;50587:4;50570:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;50560:33;;;;;;50521:9;50531:1;50521:12;;;;;;;;50504:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;50494:41;;;;;;:99;;50468:181;;;;;;;;;;;;:::i;:::-;;;;;;;;;50448:3;;;;;;;50411:250;;;;50671:17;50696:11;;50691:2;;:16;;;;;;50671:36;;50741:4;50718:9;50728;50718:20;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;50756:2;;:4;;;;;;;;;;;;;50832:22;50843:2;50847:6;50832:10;:22::i;:::-;50878:2;50870:31;;;50882:6;50890:4;50896;50870:31;;;;;;;;:::i;:::-;;;;;;;;50005:904;;;;;:::o;21030:209::-;21128:12;:10;:12::i;:::-;21117:23;;:7;:23;;;21109:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;21205:26;21217:4;21223:7;21205:11;:26::i;:::-;21030:209;;:::o;36525:218::-;36613:4;36630:83;36639:12;:10;:12::i;:::-;36653:7;36662:50;36701:10;36662:11;:25;36674:12;:10;:12::i;:::-;36662:25;;;;;;;;;;;;;;;:34;36688:7;36662:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;36630:8;:83::i;:::-;36731:4;36724:11;;36525:218;;;;:::o;48492:178::-;48545:34;47025:24;48566:12;:10;:12::i;:::-;48545:7;:34::i;:::-;48537:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;48652:10;:8;:10::i;:::-;48492:178::o;47683:205::-;47759:34;46956:24;47780:12;:10;:12::i;:::-;47759:7;:34::i;:::-;47751:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;47863:17;47869:2;47873:6;47863:5;:17::i;:::-;47683:205;;:::o;42341:91::-;42397:27;42403:12;:10;:12::i;:::-;42417:6;42397:5;:27::i;:::-;42341:91;:::o;44125:78::-;44164:4;44188:7;;;;;;;;;;;44181:14;;44125:78;:::o;51431:112::-;51473:7;51482;51510:11;;51523;;51502:33;;;;51431:112;;:::o;51198:225::-;51286:34;49098:24;51307:12;:10;:12::i;:::-;51286:7;:34::i;:::-;51278:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51370:10;51356:11;:24;;;;51405:10;51391:11;:24;;;;51198:225;;:::o;34284:119::-;34350:7;34377:9;:18;34387:7;34377:18;;;;;;;;;;;;;;;;34370:25;;34284:119;;;:::o;42751:295::-;42828:26;42857:84;42894:6;42857:84;;;;;;;;;;;;;;;;;:32;42867:7;42876:12;:10;:12::i;:::-;42857:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;42828:113;;42954:51;42963:7;42972:12;:10;:12::i;:::-;42986:18;42954:8;:51::i;:::-;43016:22;43022:7;43031:6;43016:5;:22::i;:::-;42751:295;;;:::o;48102:172::-;48153:34;47025:24;48174:12;:10;:12::i;:::-;48153:7;:34::i;:::-;48145:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;48258:8;:6;:8::i;:::-;48102:172::o;19118:138::-;19191:7;19218:30;19242:5;19218:6;:12;19225:4;19218:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;19211:37;;19118:138;;;;:::o;18079:139::-;18148:4;18172:38;18202:7;18172:6;:12;18179:4;18172:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;18165:45;;18079:139;;;;:::o;33248:87::-;33287:13;33320:7;33313:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33248:87;:::o;16824:49::-;16869:4;16824:49;;;:::o;37246:269::-;37339:4;37356:129;37365:12;:10;:12::i;:::-;37379:7;37388:96;37427:15;37388:96;;;;;;;;;;;;;;;;;:11;:25;37400:12;:10;:12::i;:::-;37388:25;;;;;;;;;;;;;;;:34;37414:7;37388:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;37356:8;:129::i;:::-;37503:4;37496:11;;37246:269;;;;:::o;50917:273::-;51018:11;;51008:6;:21;;50986:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;51117:18;51128:6;51117:10;:18::i;:::-;51159:10;51151:31;;;51171:6;51179:2;51151:31;;;;;;;:::i;:::-;;;;;;;;50917:273;;:::o;34616:175::-;34702:4;34719:42;34729:12;:10;:12::i;:::-;34743:9;34754:6;34719:9;:42::i;:::-;34779:4;34772:11;;34616:175;;;;:::o;49060:62::-;49098:24;49060:62;:::o;49129:64::-;49168:25;49129:64;:::o;18392:127::-;18455:7;18482:29;:6;:12;18489:4;18482:12;;;;;;;;;;;:20;;:27;:29::i;:::-;18475:36;;18392:127;;;:::o;51551:95::-;51592:17;;:::i;:::-;51629:9;51622:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51551:95;:::o;46918:62::-;46956:24;46918:62;:::o;20293:230::-;20378:45;20386:6;:12;20393:4;20386:12;;;;;;;;;;;:22;;;20410:12;:10;:12::i;:::-;20378:7;:45::i;:::-;20370:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;20489:26;20501:4;20507:7;20489:11;:26::i;:::-;20293:230;;:::o;34854:151::-;34943:7;34970:11;:18;34982:5;34970:18;;;;;;;;;;;;;;;:27;34989:7;34970:27;;;;;;;;;;;;;;;;34963:34;;34854:151;;;;:::o;46987:62::-;47025:24;46987:62;:::o;41069:90::-;41142:9;41130;;:21;;;;;;;;;;;;;;;;;;41069:90;:::o;5070:143::-;5140:4;5164:41;5169:3;:10;;5197:5;5189:14;;5181:23;;5164:4;:41::i;:::-;5157:48;;5070:143;;;;:::o;14765:106::-;14818:15;14853:10;14846:17;;14765:106;:::o;40391:346::-;40510:1;40493:19;;:5;:19;;;;40485:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40591:1;40572:21;;:7;:21;;;;40564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40675:6;40645:11;:18;40657:5;40645:18;;;;;;;;;;;;;;;:27;40664:7;40645:27;;;;;;;;;;;;;;;:36;;;;40713:7;40697:32;;40706:5;40697:32;;;40722:6;40697:32;;;;;;:::i;:::-;;;;;;;;40391:346;;;:::o;38005:539::-;38129:1;38111:20;;:6;:20;;;;38103:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;38213:1;38192:23;;:9;:23;;;;38184:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38268:47;38289:6;38297:9;38308:6;38268:20;:47::i;:::-;38348:71;38370:6;38348:71;;;;;;;;;;;;;;;;;:9;:17;38358:6;38348:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;38328:9;:17;38338:6;38328:17;;;;;;;;;;;;;;;:91;;;;38453:32;38478:6;38453:9;:20;38463:9;38453:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;38430:9;:20;38440:9;38430:20;;;;;;;;;;;;;;;:55;;;;38518:9;38501:35;;38510:6;38501:35;;;38529:6;38501:35;;;;;;:::i;:::-;;;;;;;;38005:539;;;:::o;27299:192::-;27385:7;27418:1;27413;:6;;27421:12;27405:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;27445:9;27461:1;27457;:5;27445:17;;27482:1;27475:8;;;27299:192;;;;;:::o;22273:188::-;22347:33;22372:7;22347:6;:12;22354:4;22347:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;22343:111;;;22429:12;:10;:12::i;:::-;22402:40;;22420:7;22402:40;;22414:4;22402:40;;;;;;;;;;22343:111;22273:188;;:::o;22469:192::-;22544:36;22572:7;22544:6;:12;22551:4;22544:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;22540:114;;;22629:12;:10;:12::i;:::-;22602:40;;22620:7;22602:40;;22614:4;22602:40;;;;;;;;;;22540:114;22469:192;;:::o;26396:181::-;26454:7;26474:9;26490:1;26486;:5;26474:17;;26515:1;26510;:6;;26502:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;26568:1;26561:8;;;26396:181;;;;:::o;45174:120::-;44719:7;;;;;;;;;;;44711:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;45243:5:::1;45233:7;;:15;;;;;;;;;;;;;;;;;;45264:22;45273:12;:10;:12::i;:::-;45264:22;;;;;;:::i;:::-;;;;;;;;45174:120::o:0;38825:378::-;38928:1;38909:21;;:7;:21;;;;38901:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;38979:49;39008:1;39012:7;39021:6;38979:20;:49::i;:::-;39056:24;39073:6;39056:12;;:16;;:24;;;;:::i;:::-;39041:12;:39;;;;39112:30;39135:6;39112:9;:18;39122:7;39112:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;39091:9;:18;39101:7;39091:18;;;;;;;;;;;;;;;:51;;;;39179:7;39158:37;;39175:1;39158:37;;;39188:6;39158:37;;;;;;:::i;:::-;;;;;;;;38825:378;;:::o;39535:418::-;39638:1;39619:21;;:7;:21;;;;39611:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39691:49;39712:7;39729:1;39733:6;39691:20;:49::i;:::-;39774:68;39797:6;39774:68;;;;;;;;;;;;;;;;;:9;:18;39784:7;39774:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;39753:9;:18;39763:7;39753:18;;;;;;;;;;;;;;;:89;;;;39868:24;39885:6;39868:12;;:16;;:24;;;;:::i;:::-;39853:12;:39;;;;39934:1;39908:37;;39917:7;39908:37;;;39938:6;39908:37;;;;;;:::i;:::-;;;;;;;;39535:418;;:::o;44915:118::-;44443:7;;;;;;;;;;;44442:8;44434:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;44985:4:::1;44975:7;;:14;;;;;;;;;;;;;;;;;;45005:20;45012:12;:10;:12::i;:::-;45005:20;;;;;;:::i;:::-;;;;;;;;44915:118::o:0;6329:149::-;6403:7;6446:22;6450:3;:10;;6462:5;6446:3;:22::i;:::-;6438:31;;6423:47;;6329:149;;;;:::o;5624:158::-;5704:4;5728:46;5738:3;:10;;5766:5;5758:14;;5750:23;;5728:9;:46::i;:::-;5721:53;;5624:158;;;;:::o;5868:117::-;5931:7;5958:19;5966:3;:10;;5958:7;:19::i;:::-;5951:26;;5868:117;;;:::o;1724:414::-;1787:4;1809:21;1819:3;1824:5;1809:9;:21::i;:::-;1804:327;;1847:3;:11;;1864:5;1847:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2030:3;:11;;:18;;;;2008:3;:12;;:19;2021:5;2008:19;;;;;;;;;;;:40;;;;2070:4;2063:11;;;;1804:327;2114:5;2107:12;;1724:414;;;;;:::o;48678:183::-;48809:44;48836:4;48842:2;48846:6;48809:26;:44::i;:::-;48678:183;;;:::o;5389:149::-;5462:4;5486:44;5494:3;:10;;5522:5;5514:14;;5506:23;;5486:7;:44::i;:::-;5479:51;;5389:149;;;;:::o;26860:136::-;26918:7;26945:43;26949:1;26952;26945:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;26938:50;;26860:136;;;;:::o;4612:204::-;4679:7;4728:5;4707:3;:11;;:18;;;;:26;4699:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:3;:11;;4802:5;4790:18;;;;;;;;;;;;;;;;4783:25;;4612:204;;;;:::o;3944:129::-;4017:4;4064:1;4041:3;:12;;:19;4054:5;4041:19;;;;;;;;;;;;:24;;4034:31;;3944:129;;;;:::o;4159:109::-;4215:7;4242:3;:11;;:18;;;;4235:25;;4159:109;;;:::o;45883:238::-;45992:44;46019:4;46025:2;46029:6;45992:26;:44::i;:::-;46058:8;:6;:8::i;:::-;46057:9;46049:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45883:238;;;:::o;2314:1544::-;2380:4;2498:18;2519:3;:12;;:19;2532:5;2519:19;;;;;;;;;;;;2498:40;;2569:1;2555:10;:15;2551:1300;;2917:21;2954:1;2941:10;:14;2917:38;;2970:17;3011:1;2990:3;:11;;:18;;;;:22;2970:42;;3257:17;3277:3;:11;;3289:9;3277:22;;;;;;;;;;;;;;;;3257:42;;3423:9;3394:3;:11;;3406:13;3394:26;;;;;;;;;;;;;;;:38;;;;3542:1;3526:13;:17;3500:3;:12;;:23;3513:9;3500:23;;;;;;;;;;;:43;;;;3652:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;3747:3;:12;;:19;3760:5;3747:19;;;;;;;;;;;3740:26;;;3790:4;3783:11;;;;;;;;2551:1300;3834:5;3827:12;;;2314:1544;;;;;:::o;41762:92::-;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;5:130::-;;85:6;72:20;63:29;;97:33;124:5;97:33;:::i;:::-;57:78;;;;:::o;142:130::-;;222:6;209:20;200:29;;234:33;261:5;234:33;:::i;:::-;194:78;;;;:::o;280:442::-;;382:3;375:4;367:6;363:17;359:27;349:2;;400:1;397;390:12;349:2;437:6;424:20;459:65;474:49;516:6;474:49;:::i;:::-;459:65;:::i;:::-;450:74;;544:6;537:5;530:21;580:4;572:6;568:17;613:4;606:5;602:16;648:3;639:6;634:3;630:16;627:25;624:2;;;665:1;662;655:12;624:2;675:41;709:6;704:3;699;675:41;:::i;:::-;342:380;;;;;;;:::o;730:130::-;;810:6;797:20;788:29;;822:33;849:5;822:33;:::i;:::-;782:78;;;;:::o;867:241::-;;971:2;959:9;950:7;946:23;942:32;939:2;;;987:1;984;977:12;939:2;1022:1;1039:53;1084:7;1075:6;1064:9;1060:22;1039:53;:::i;:::-;1029:63;;1001:97;933:175;;;;:::o;1115:366::-;;;1236:2;1224:9;1215:7;1211:23;1207:32;1204:2;;;1252:1;1249;1242:12;1204:2;1287:1;1304:53;1349:7;1340:6;1329:9;1325:22;1304:53;:::i;:::-;1294:63;;1266:97;1394:2;1412:53;1457:7;1448:6;1437:9;1433:22;1412:53;:::i;:::-;1402:63;;1373:98;1198:283;;;;;:::o;1488:491::-;;;;1626:2;1614:9;1605:7;1601:23;1597:32;1594:2;;;1642:1;1639;1632:12;1594:2;1677:1;1694:53;1739:7;1730:6;1719:9;1715:22;1694:53;:::i;:::-;1684:63;;1656:97;1784:2;1802:53;1847:7;1838:6;1827:9;1823:22;1802:53;:::i;:::-;1792:63;;1763:98;1892:2;1910:53;1955:7;1946:6;1935:9;1931:22;1910:53;:::i;:::-;1900:63;;1871:98;1588:391;;;;;:::o;1986:366::-;;;2107:2;2095:9;2086:7;2082:23;2078:32;2075:2;;;2123:1;2120;2113:12;2075:2;2158:1;2175:53;2220:7;2211:6;2200:9;2196:22;2175:53;:::i;:::-;2165:63;;2137:97;2265:2;2283:53;2328:7;2319:6;2308:9;2304:22;2283:53;:::i;:::-;2273:63;;2244:98;2069:283;;;;;:::o;2359:829::-;;;;;2534:3;2522:9;2513:7;2509:23;2505:33;2502:2;;;2551:1;2548;2541:12;2502:2;2586:1;2603:53;2648:7;2639:6;2628:9;2624:22;2603:53;:::i;:::-;2593:63;;2565:97;2693:2;2711:53;2756:7;2747:6;2736:9;2732:22;2711:53;:::i;:::-;2701:63;;2672:98;2829:2;2818:9;2814:18;2801:32;2853:18;2845:6;2842:30;2839:2;;;2885:1;2882;2875:12;2839:2;2905:63;2960:7;2951:6;2940:9;2936:22;2905:63;:::i;:::-;2895:73;;2780:194;3033:2;3022:9;3018:18;3005:32;3057:18;3049:6;3046:30;3043:2;;;3089:1;3086;3079:12;3043:2;3109:63;3164:7;3155:6;3144:9;3140:22;3109:63;:::i;:::-;3099:73;;2984:194;2496:692;;;;;;;:::o;3195:241::-;;3299:2;3287:9;3278:7;3274:23;3270:32;3267:2;;;3315:1;3312;3305:12;3267:2;3350:1;3367:53;3412:7;3403:6;3392:9;3388:22;3367:53;:::i;:::-;3357:63;;3329:97;3261:175;;;;:::o;3443:366::-;;;3564:2;3552:9;3543:7;3539:23;3535:32;3532:2;;;3580:1;3577;3570:12;3532:2;3615:1;3632:53;3677:7;3668:6;3657:9;3653:22;3632:53;:::i;:::-;3622:63;;3594:97;3722:2;3740:53;3785:7;3776:6;3765:9;3761:22;3740:53;:::i;:::-;3730:63;;3701:98;3526:283;;;;;:::o;3816:366::-;;;3937:2;3925:9;3916:7;3912:23;3908:32;3905:2;;;3953:1;3950;3943:12;3905:2;3988:1;4005:53;4050:7;4041:6;4030:9;4026:22;4005:53;:::i;:::-;3995:63;;3967:97;4095:2;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4074:98;3899:283;;;;;:::o;4189:241::-;;4293:2;4281:9;4272:7;4268:23;4264:32;4261:2;;;4309:1;4306;4299:12;4261:2;4344:1;4361:53;4406:7;4397:6;4386:9;4382:22;4361:53;:::i;:::-;4351:63;;4323:97;4255:175;;;;:::o;4437:472::-;;;4568:2;4556:9;4547:7;4543:23;4539:32;4536:2;;;4584:1;4581;4574:12;4536:2;4619:1;4636:53;4681:7;4672:6;4661:9;4657:22;4636:53;:::i;:::-;4626:63;;4598:97;4754:2;4743:9;4739:18;4726:32;4778:18;4770:6;4767:30;4764:2;;;4810:1;4807;4800:12;4764:2;4830:63;4885:7;4876:6;4865:9;4861:22;4830:63;:::i;:::-;4820:73;;4705:194;4530:379;;;;;:::o;4916:366::-;;;5037:2;5025:9;5016:7;5012:23;5008:32;5005:2;;;5053:1;5050;5043:12;5005:2;5088:1;5105:53;5150:7;5141:6;5130:9;5126:22;5105:53;:::i;:::-;5095:63;;5067:97;5195:2;5213:53;5258:7;5249:6;5238:9;5234:22;5213:53;:::i;:::-;5203:63;;5174:98;4999:283;;;;;:::o;5290:193::-;;5411:66;5473:3;5465:6;5411:66;:::i;:::-;5397:80;;5390:93;;;;:::o;5491:142::-;5582:45;5621:5;5582:45;:::i;:::-;5577:3;5570:58;5564:69;;:::o;5640:113::-;5723:24;5741:5;5723:24;:::i;:::-;5718:3;5711:37;5705:48;;:::o;5793:922::-;;5956:63;6013:5;5956:63;:::i;:::-;6032:95;6120:6;6115:3;6032:95;:::i;:::-;6025:102;;6150:3;6192:4;6184:6;6180:17;6175:3;6171:27;6219:65;6278:5;6219:65;:::i;:::-;6304:7;6332:1;6317:359;6342:6;6339:1;6336:13;6317:359;;;6404:9;6398:4;6394:20;6389:3;6382:33;6449:6;6443:13;6471:84;6550:4;6535:13;6471:84;:::i;:::-;6463:92;;6572:69;6634:6;6572:69;:::i;:::-;6562:79;;6664:4;6659:3;6655:14;6648:21;;6374:302;6364:1;6361;6357:9;6352:14;;6317:359;;;6321:14;6689:4;6682:11;;6706:3;6699:10;;5935:780;;;;;;;;;:::o;6723:104::-;6800:21;6815:5;6800:21;:::i;:::-;6795:3;6788:34;6782:45;;:::o;6834:113::-;6917:24;6935:5;6917:24;:::i;:::-;6912:3;6905:37;6899:48;;:::o;6954:327::-;;7056:39;7089:5;7056:39;:::i;:::-;7107:61;7161:6;7156:3;7107:61;:::i;:::-;7100:68;;7173:52;7218:6;7213:3;7206:4;7199:5;7195:16;7173:52;:::i;:::-;7246:29;7268:6;7246:29;:::i;:::-;7241:3;7237:39;7230:46;;7036:245;;;;;:::o;7288:347::-;;7400:39;7433:5;7400:39;:::i;:::-;7451:71;7515:6;7510:3;7451:71;:::i;:::-;7444:78;;7527:52;7572:6;7567:3;7560:4;7553:5;7549:16;7527:52;:::i;:::-;7600:29;7622:6;7600:29;:::i;:::-;7595:3;7591:39;7584:46;;7380:255;;;;;:::o;7642:360::-;;7772:39;7805:5;7772:39;:::i;:::-;7823:89;7905:6;7900:3;7823:89;:::i;:::-;7816:96;;7917:52;7962:6;7957:3;7950:4;7943:5;7939:16;7917:52;:::i;:::-;7990:6;7985:3;7981:16;7974:23;;7752:250;;;;;:::o;8034:884::-;;8171:5;8165:12;8205:1;8194:9;8190:17;8218:1;8213:268;;;;8492:1;8487:425;;;;8183:729;;8213:268;8291:4;8287:1;8276:9;8272:17;8268:28;8310:89;8392:6;8387:3;8310:89;:::i;:::-;8303:96;;8437:4;8433:9;8422;8418:25;8413:3;8406:38;8467:6;8462:3;8458:16;8451:23;;8220:261;8213:268;;8487:425;8556:1;8545:9;8541:17;8572:89;8654:6;8649:3;8572:89;:::i;:::-;8565:96;;8683:38;8715:5;8683:38;:::i;:::-;8737:1;8745:130;8759:6;8756:1;8753:13;8745:130;;;8824:7;8818:14;8814:1;8809:3;8805:11;8798:35;8865:1;8856:7;8852:15;8841:26;;8781:4;8778:1;8774:12;8769:17;;8745:130;;;8898:6;8893:3;8889:16;8882:23;;8494:418;;;8183:729;;8141:777;;;;;:::o;8927:370::-;;9087:67;9151:2;9146:3;9087:67;:::i;:::-;9080:74;;9187:34;9183:1;9178:3;9174:11;9167:55;9256:3;9251:2;9246:3;9242:12;9235:25;9288:2;9283:3;9279:12;9272:19;;9073:224;;;:::o;9306:371::-;;9466:67;9530:2;9525:3;9466:67;:::i;:::-;9459:74;;9566:34;9562:1;9557:3;9553:11;9546:55;9635:4;9630:2;9625:3;9621:12;9614:26;9668:2;9663:3;9659:12;9652:19;;9452:225;;;:::o;9686:372::-;;9846:67;9910:2;9905:3;9846:67;:::i;:::-;9839:74;;9946:34;9942:1;9937:3;9933:11;9926:55;10015:5;10010:2;10005:3;10001:12;9994:27;10049:2;10044:3;10040:12;10033:19;;9832:226;;;:::o;10067:386::-;;10227:67;10291:2;10286:3;10227:67;:::i;:::-;10220:74;;10327:34;10323:1;10318:3;10314:11;10307:55;10396:19;10391:2;10386:3;10382:12;10375:41;10444:2;10439:3;10435:12;10428:19;;10213:240;;;:::o;10462:384::-;;10622:67;10686:2;10681:3;10622:67;:::i;:::-;10615:74;;10722:34;10718:1;10713:3;10709:11;10702:55;10791:17;10786:2;10781:3;10777:12;10770:39;10837:2;10832:3;10828:12;10821:19;;10608:238;;;:::o;10855:320::-;;11015:67;11079:2;11074:3;11015:67;:::i;:::-;11008:74;;11115:22;11111:1;11106:3;11102:11;11095:43;11166:2;11161:3;11157:12;11150:19;;11001:174;;;:::o;11184:394::-;;11344:67;11408:2;11403:3;11344:67;:::i;:::-;11337:74;;11444:34;11440:1;11435:3;11431:11;11424:55;11513:27;11508:2;11503:3;11499:12;11492:49;11569:2;11564:3;11560:12;11553:19;;11330:248;;;:::o;11587:386::-;;11747:67;11811:2;11806:3;11747:67;:::i;:::-;11740:74;;11847:34;11843:1;11838:3;11834:11;11827:55;11916:19;11911:2;11906:3;11902:12;11895:41;11964:2;11959:3;11955:12;11948:19;;11733:240;;;:::o;11982:320::-;;12142:67;12206:2;12201:3;12142:67;:::i;:::-;12135:74;;12242:22;12238:1;12233:3;12229:11;12222:43;12293:2;12288:3;12284:12;12277:19;;12128:174;;;:::o;12311:371::-;;12471:67;12535:2;12530:3;12471:67;:::i;:::-;12464:74;;12571:34;12567:1;12562:3;12558:11;12551:55;12640:4;12635:2;12630:3;12626:12;12619:26;12673:2;12668:3;12664:12;12657:19;;12457:225;;;:::o;12691:327::-;;12851:67;12915:2;12910:3;12851:67;:::i;:::-;12844:74;;12951:29;12947:1;12942:3;12938:11;12931:50;13009:2;13004:3;13000:12;12993:19;;12837:181;;;:::o;13027:320::-;;13187:67;13251:2;13246:3;13187:67;:::i;:::-;13180:74;;13287:22;13283:1;13278:3;13274:11;13267:43;13338:2;13333:3;13329:12;13322:19;;13173:174;;;:::o;13356:385::-;;13516:67;13580:2;13575:3;13516:67;:::i;:::-;13509:74;;13616:34;13612:1;13607:3;13603:11;13596:55;13685:18;13680:2;13675:3;13671:12;13664:40;13732:2;13727:3;13723:12;13716:19;;13502:239;;;:::o;13750:316::-;;13910:67;13974:2;13969:3;13910:67;:::i;:::-;13903:74;;14010:18;14006:1;14001:3;13997:11;13990:39;14057:2;14052:3;14048:12;14041:19;;13896:170;;;:::o;14075:391::-;;14235:67;14299:2;14294:3;14235:67;:::i;:::-;14228:74;;14335:34;14331:1;14326:3;14322:11;14315:55;14404:24;14399:2;14394:3;14390:12;14383:46;14457:2;14452:3;14448:12;14441:19;;14221:245;;;:::o;14475:370::-;;14635:67;14699:2;14694:3;14635:67;:::i;:::-;14628:74;;14735:34;14731:1;14726:3;14722:11;14715:55;14804:3;14799:2;14794:3;14790:12;14783:25;14836:2;14831:3;14827:12;14820:19;;14621:224;;;:::o;14854:374::-;;15014:67;15078:2;15073:3;15014:67;:::i;:::-;15007:74;;15114:34;15110:1;15105:3;15101:11;15094:55;15183:7;15178:2;15173:3;15169:12;15162:29;15219:2;15214:3;15210:12;15203:19;;15000:228;;;:::o;15237:373::-;;15397:67;15461:2;15456:3;15397:67;:::i;:::-;15390:74;;15497:34;15493:1;15488:3;15484:11;15477:55;15566:6;15561:2;15556:3;15552:12;15545:28;15601:2;15596:3;15592:12;15585:19;;15383:227;;;:::o;15619:392::-;;15779:67;15843:2;15838:3;15779:67;:::i;:::-;15772:74;;15879:34;15875:1;15870:3;15866:11;15859:55;15948:25;15943:2;15938:3;15934:12;15927:47;16002:2;15997:3;15993:12;15986:19;;15765:246;;;:::o;16020:384::-;;16180:67;16244:2;16239:3;16180:67;:::i;:::-;16173:74;;16280:34;16276:1;16271:3;16267:11;16260:55;16349:17;16344:2;16339:3;16335:12;16328:39;16395:2;16390:3;16386:12;16379:19;;16166:238;;;:::o;16413:331::-;;16573:67;16637:2;16632:3;16573:67;:::i;:::-;16566:74;;16673:33;16669:1;16664:3;16660:11;16653:54;16735:2;16730:3;16726:12;16719:19;;16559:185;;;:::o;16753:379::-;;16913:67;16977:2;16972:3;16913:67;:::i;:::-;16906:74;;17013:34;17009:1;17004:3;17000:11;16993:55;17082:12;17077:2;17072:3;17068:12;17061:34;17123:2;17118:3;17114:12;17107:19;;16899:233;;;:::o;17140:113::-;17223:24;17241:5;17223:24;:::i;:::-;17218:3;17211:37;17205:48;;:::o;17260:107::-;17339:22;17355:5;17339:22;:::i;:::-;17334:3;17327:35;17321:46;;:::o;17374:275::-;;17529:95;17620:3;17611:6;17529:95;:::i;:::-;17522:102;;17641:3;17634:10;;17510:139;;;;:::o;17656:269::-;;17808:92;17896:3;17887:6;17808:92;:::i;:::-;17801:99;;17917:3;17910:10;;17789:136;;;;:::o;17932:222::-;;18059:2;18048:9;18044:18;18036:26;;18073:71;18141:1;18130:9;18126:17;18117:6;18073:71;:::i;:::-;18030:124;;;;:::o;18161:238::-;;18296:2;18285:9;18281:18;18273:26;;18310:79;18386:1;18375:9;18371:17;18362:6;18310:79;:::i;:::-;18267:132;;;;:::o;18406:406::-;;18601:2;18590:9;18586:18;18578:26;;18651:9;18645:4;18641:20;18637:1;18626:9;18622:17;18615:47;18676:126;18797:4;18788:6;18676:126;:::i;:::-;18668:134;;18572:240;;;;:::o;18819:210::-;;18940:2;18929:9;18925:18;18917:26;;18954:65;19016:1;19005:9;19001:17;18992:6;18954:65;:::i;:::-;18911:118;;;;:::o;19036:222::-;;19163:2;19152:9;19148:18;19140:26;;19177:71;19245:1;19234:9;19230:17;19221:6;19177:71;:::i;:::-;19134:124;;;;:::o;19265:310::-;;19412:2;19401:9;19397:18;19389:26;;19462:9;19456:4;19452:20;19448:1;19437:9;19433:17;19426:47;19487:78;19560:4;19551:6;19487:78;:::i;:::-;19479:86;;19383:192;;;;:::o;19582:416::-;;19782:2;19771:9;19767:18;19759:26;;19832:9;19826:4;19822:20;19818:1;19807:9;19803:17;19796:47;19857:131;19983:4;19857:131;:::i;:::-;19849:139;;19753:245;;;:::o;20005:416::-;;20205:2;20194:9;20190:18;20182:26;;20255:9;20249:4;20245:20;20241:1;20230:9;20226:17;20219:47;20280:131;20406:4;20280:131;:::i;:::-;20272:139;;20176:245;;;:::o;20428:416::-;;20628:2;20617:9;20613:18;20605:26;;20678:9;20672:4;20668:20;20664:1;20653:9;20649:17;20642:47;20703:131;20829:4;20703:131;:::i;:::-;20695:139;;20599:245;;;:::o;20851:416::-;;21051:2;21040:9;21036:18;21028:26;;21101:9;21095:4;21091:20;21087:1;21076:9;21072:17;21065:47;21126:131;21252:4;21126:131;:::i;:::-;21118:139;;21022:245;;;:::o;21274:416::-;;21474:2;21463:9;21459:18;21451:26;;21524:9;21518:4;21514:20;21510:1;21499:9;21495:17;21488:47;21549:131;21675:4;21549:131;:::i;:::-;21541:139;;21445:245;;;:::o;21697:416::-;;21897:2;21886:9;21882:18;21874:26;;21947:9;21941:4;21937:20;21933:1;21922:9;21918:17;21911:47;21972:131;22098:4;21972:131;:::i;:::-;21964:139;;21868:245;;;:::o;22120:416::-;;22320:2;22309:9;22305:18;22297:26;;22370:9;22364:4;22360:20;22356:1;22345:9;22341:17;22334:47;22395:131;22521:4;22395:131;:::i;:::-;22387:139;;22291:245;;;:::o;22543:416::-;;22743:2;22732:9;22728:18;22720:26;;22793:9;22787:4;22783:20;22779:1;22768:9;22764:17;22757:47;22818:131;22944:4;22818:131;:::i;:::-;22810:139;;22714:245;;;:::o;22966:416::-;;23166:2;23155:9;23151:18;23143:26;;23216:9;23210:4;23206:20;23202:1;23191:9;23187:17;23180:47;23241:131;23367:4;23241:131;:::i;:::-;23233:139;;23137:245;;;:::o;23389:416::-;;23589:2;23578:9;23574:18;23566:26;;23639:9;23633:4;23629:20;23625:1;23614:9;23610:17;23603:47;23664:131;23790:4;23664:131;:::i;:::-;23656:139;;23560:245;;;:::o;23812:416::-;;24012:2;24001:9;23997:18;23989:26;;24062:9;24056:4;24052:20;24048:1;24037:9;24033:17;24026:47;24087:131;24213:4;24087:131;:::i;:::-;24079:139;;23983:245;;;:::o;24235:416::-;;24435:2;24424:9;24420:18;24412:26;;24485:9;24479:4;24475:20;24471:1;24460:9;24456:17;24449:47;24510:131;24636:4;24510:131;:::i;:::-;24502:139;;24406:245;;;:::o;24658:416::-;;24858:2;24847:9;24843:18;24835:26;;24908:9;24902:4;24898:20;24894:1;24883:9;24879:17;24872:47;24933:131;25059:4;24933:131;:::i;:::-;24925:139;;24829:245;;;:::o;25081:416::-;;25281:2;25270:9;25266:18;25258:26;;25331:9;25325:4;25321:20;25317:1;25306:9;25302:17;25295:47;25356:131;25482:4;25356:131;:::i;:::-;25348:139;;25252:245;;;:::o;25504:416::-;;25704:2;25693:9;25689:18;25681:26;;25754:9;25748:4;25744:20;25740:1;25729:9;25725:17;25718:47;25779:131;25905:4;25779:131;:::i;:::-;25771:139;;25675:245;;;:::o;25927:416::-;;26127:2;26116:9;26112:18;26104:26;;26177:9;26171:4;26167:20;26163:1;26152:9;26148:17;26141:47;26202:131;26328:4;26202:131;:::i;:::-;26194:139;;26098:245;;;:::o;26350:416::-;;26550:2;26539:9;26535:18;26527:26;;26600:9;26594:4;26590:20;26586:1;26575:9;26571:17;26564:47;26625:131;26751:4;26625:131;:::i;:::-;26617:139;;26521:245;;;:::o;26773:416::-;;26973:2;26962:9;26958:18;26950:26;;27023:9;27017:4;27013:20;27009:1;26998:9;26994:17;26987:47;27048:131;27174:4;27048:131;:::i;:::-;27040:139;;26944:245;;;:::o;27196:416::-;;27396:2;27385:9;27381:18;27373:26;;27446:9;27440:4;27436:20;27432:1;27421:9;27417:17;27410:47;27471:131;27597:4;27471:131;:::i;:::-;27463:139;;27367:245;;;:::o;27619:416::-;;27819:2;27808:9;27804:18;27796:26;;27869:9;27863:4;27859:20;27855:1;27844:9;27840:17;27833:47;27894:131;28020:4;27894:131;:::i;:::-;27886:139;;27790:245;;;:::o;28042:416::-;;28242:2;28231:9;28227:18;28219:26;;28292:9;28286:4;28282:20;28278:1;28267:9;28263:17;28256:47;28317:131;28443:4;28317:131;:::i;:::-;28309:139;;28213:245;;;:::o;28465:416::-;;28665:2;28654:9;28650:18;28642:26;;28715:9;28709:4;28705:20;28701:1;28690:9;28686:17;28679:47;28740:131;28866:4;28740:131;:::i;:::-;28732:139;;28636:245;;;:::o;28888:222::-;;29015:2;29004:9;29000:18;28992:26;;29029:71;29097:1;29086:9;29082:17;29073:6;29029:71;:::i;:::-;28986:124;;;;:::o;29117:421::-;;29292:2;29281:9;29277:18;29269:26;;29306:71;29374:1;29363:9;29359:17;29350:6;29306:71;:::i;:::-;29425:9;29419:4;29415:20;29410:2;29399:9;29395:18;29388:48;29450:78;29523:4;29514:6;29450:78;:::i;:::-;29442:86;;29263:275;;;;;:::o;29545:620::-;;29768:2;29757:9;29753:18;29745:26;;29782:71;29850:1;29839:9;29835:17;29826:6;29782:71;:::i;:::-;29901:9;29895:4;29891:20;29886:2;29875:9;29871:18;29864:48;29926:78;29999:4;29990:6;29926:78;:::i;:::-;29918:86;;30052:9;30046:4;30042:20;30037:2;30026:9;30022:18;30015:48;30077:78;30150:4;30141:6;30077:78;:::i;:::-;30069:86;;29739:426;;;;;;:::o;30172:333::-;;30327:2;30316:9;30312:18;30304:26;;30341:71;30409:1;30398:9;30394:17;30385:6;30341:71;:::i;:::-;30423:72;30491:2;30480:9;30476:18;30467:6;30423:72;:::i;:::-;30298:207;;;;;:::o;30512:214::-;;30635:2;30624:9;30620:18;30612:26;;30649:67;30713:1;30702:9;30698:17;30689:6;30649:67;:::i;:::-;30606:120;;;;:::o;30733:256::-;;30795:2;30789:9;30779:19;;30833:4;30825:6;30821:17;30932:6;30920:10;30917:22;30896:18;30884:10;30881:34;30878:62;30875:2;;;30953:1;30950;30943:12;30875:2;30973:10;30969:2;30962:22;30773:216;;;;:::o;30996:322::-;;31140:18;31132:6;31129:30;31126:2;;;31172:1;31169;31162:12;31126:2;31239:4;31235:9;31228:4;31220:6;31216:17;31212:33;31204:41;;31303:4;31297;31293:15;31285:23;;31063:255;;;:::o;31325:108::-;;31420:3;31412:11;;31406:27;;;:::o;31440:158::-;;31508:3;31500:11;;31545:3;31542:1;31535:14;31577:4;31574:1;31564:18;31556:26;;31494:104;;;:::o;31605:119::-;;31710:4;31700:14;;31688:36;;;:::o;31731:122::-;;31825:5;31819:12;31809:22;;31790:63;;;:::o;31860:117::-;;31967:4;31962:3;31958:14;31950:22;;31944:33;;;:::o;31985:151::-;;32127:3;32112:18;;32105:31;;;;:::o;32145:153::-;;32250:6;32245:3;32238:19;32287:4;32282:3;32278:14;32263:29;;32231:67;;;;:::o;32307:163::-;;32422:6;32417:3;32410:19;32459:4;32454:3;32450:14;32435:29;;32403:67;;;;:::o;32479:145::-;;32615:3;32600:18;;32593:31;;;;:::o;32632:91::-;;32694:24;32712:5;32694:24;:::i;:::-;32683:35;;32677:46;;;:::o;32730:85::-;;32803:5;32796:13;32789:21;32778:32;;32772:43;;;:::o;32822:72::-;;32884:5;32873:16;;32867:27;;;:::o;32901:121::-;;32974:42;32967:5;32963:54;32952:65;;32946:76;;;:::o;33029:72::-;;33091:5;33080:16;;33074:27;;;:::o;33108:81::-;;33179:4;33172:5;33168:16;33157:27;;33151:38;;;:::o;33196:129::-;;33283:37;33314:5;33283:37;:::i;:::-;33270:50;;33264:61;;;:::o;33332:121::-;;33411:37;33442:5;33411:37;:::i;:::-;33398:50;;33392:61;;;:::o;33460:108::-;;33539:24;33557:5;33539:24;:::i;:::-;33526:37;;33520:48;;;:::o;33576:145::-;33657:6;33652:3;33647;33634:30;33713:1;33704:6;33699:3;33695:16;33688:27;33627:94;;;:::o;33730:268::-;33795:1;33802:101;33816:6;33813:1;33810:13;33802:101;;;33892:1;33887:3;33883:11;33877:18;33873:1;33868:3;33864:11;33857:39;33838:2;33835:1;33831:10;33826:15;;33802:101;;;33918:6;33915:1;33912:13;33909:2;;;33983:1;33974:6;33969:3;33965:16;33958:27;33909:2;33779:219;;;;:::o;34006:97::-;;34094:2;34090:7;34085:2;34078:5;34074:14;34070:28;34060:38;;34054:49;;;:::o;34111:117::-;34180:24;34198:5;34180:24;:::i;:::-;34173:5;34170:35;34160:2;;34219:1;34216;34209:12;34160:2;34154:74;:::o;34235:117::-;34304:24;34322:5;34304:24;:::i;:::-;34297:5;34294:35;34284:2;;34343:1;34340;34333:12;34284:2;34278:74;:::o;34359:117::-;34428:24;34446:5;34428:24;:::i;:::-;34421:5;34418:35;34408:2;;34467:1;34464;34457:12;34408:2;34402:74;:::o

Swarm Source

ipfs://902eeb014a32801de8f5a96751ea6e8db576bf6c2cc9a329d4b6e4ec5f2bc273
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.