ETH Price: $2,270.72 (-0.02%)

Token

TRH (TRH)
 

Overview

Max Total Supply

365,232,344.8708334260783742 TRH

Holders

125

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
euphrat.eth
Balance
400 TRH

Value
$0.00
0xf013bc61cf2e52f316d74ed4aef922bd633726c7
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:
Stock

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-17
*/

/**
 *Submitted for verification at Etherscan.io on 2022-12-06
*/

// Sources flattened with hardhat v2.9.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]
// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.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 Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File @openzeppelin/contracts/utils/math/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File @openzeppelin/contracts/security/[email protected]

// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.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.
 */
abstract 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() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual 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 contracts/interface/ICheckPermission.sol

pragma solidity =0.8.10;

interface ICheckPermission {
    function operator() external view returns (address);

    function owner() external view returns (address);

    function check(address _target) external view returns (bool);
}

// File contracts/tools/Operatable.sol

pragma solidity =0.8.10;

// seperate owner and operator, operator is for daily devops, only owner can update operator
contract Operatable is Ownable {
    event SetOperator(address indexed oldOperator, address indexed newOperator);

    address public operator;

    mapping(address => bool) public contractWhiteList;

    constructor() {
        operator = msg.sender;
        emit SetOperator(address(0), operator);
    }

    modifier onlyOperator() {
        require(msg.sender == operator, "not operator");
        _;
    }

    function setOperator(address newOperator) public onlyOwner {
        require(newOperator != address(0), "bad new operator");
        address oldOperator = operator;
        operator = newOperator;
        emit SetOperator(oldOperator, newOperator);
    }

    // File: @openzeppelin/contracts/utils/Address.sol
    function isContract(address account) public 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.

        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != 0x0 && codehash != accountHash);
    }

    function addContract(address _target) public onlyOperator {
        contractWhiteList[_target] = true;
    }

    function removeContract(address _target) public onlyOperator {
        contractWhiteList[_target] = false;
    }

    //Do not ban access to the user, need to be in the whitelist contract address to be able to access
    function check(address _target) public view returns (bool) {
        if (isContract(_target)) {
            return contractWhiteList[_target];
        }
        return true;
    }
}

// File contracts/tools/CheckPermission.sol

pragma solidity =0.8.10;

// seperate owner and operator, operator is for daily devops, only owner can update operator
contract CheckPermission is ICheckPermission {
    Operatable public operatable;

    event SetOperatorContract(address indexed oldOperator, address indexed newOperator);

    constructor(address _oper) {
        operatable = Operatable(_oper);
        emit SetOperatorContract(address(0), _oper);
    }

    modifier onlyOwner() {
        require(operatable.owner() == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    modifier onlyOperator() {
        require(operatable.operator() == msg.sender, "not operator");
        _;
    }

    modifier onlyAEOWhiteList() {
        require(check(msg.sender), "aeo or whitelist");
        _;
    }

    function operator() public view override returns (address) {
        return operatable.operator();
    }

    function owner() public view override returns (address) {
        return operatable.owner();
    }

    function setOperContract(address _oper) public onlyOwner {
        require(_oper != address(0), "bad new operator");
        address oldOperator = address(operatable);
        operatable = Operatable(_oper);
        emit SetOperatorContract(oldOperator, _oper);
    }

    function check(address _target) public view override returns (bool) {
        return operatable.check(_target);
    }
}

// File contracts/tools/AbstractPausable.sol

pragma solidity 0.8.10;

abstract contract AbstractPausable is CheckPermission, Pausable {
    constructor(address _operatorMsg) CheckPermission(_operatorMsg) {}

    function togglePause() public onlyOwner {
        if (paused()) {
            _unpause();
        } else {
            _pause();
        }
    }
}

// File contracts/token/Stock.sol

pragma solidity 0.8.10;

contract Stock is ERC20Burnable, AbstractPausable {
    using SafeMath for uint256;

    uint256 public constant GENESIS_SUPPLY = 35e7 * 1e18;
    uint256 public constant MAX_SUPPLY = 1e9 * 1e18;

    address[] public poolAddress;
    mapping(address => bool) public isPools;

    modifier onlyPools() {
        require(isPools[msg.sender] == true, "Only pools can call this function");
        _;
    }

    constructor(
        address _operatorMsg,
        string memory _name,
        string memory _symbol
    ) public ERC20(_name, _symbol) AbstractPausable(_operatorMsg) {
        _mint(msg.sender, GENESIS_SUPPLY);
    }

    function poolAddressCount() public view returns (uint256) {
        return (poolAddress.length);
    }

    function addPool(address _pool) public onlyOperator {
        require(_pool != address(0), "0 address");
        require(isPools[_pool] == false, "Address already exists");
        isPools[_pool] = true;
        poolAddress.push(_pool);

        emit PoolAdded(_pool);
    }

    // Remove a pool
    function removePool(address _pool) public onlyOperator {
        require(_pool != address(0), "0 address");
        require(isPools[_pool] == true, "Address nonexistant");

        // Delete from the mapping
        delete isPools[_pool];

        // 'Delete' from the array by setting the address to 0x0
        for (uint256 i = 0; i < poolAddress.length; i++) {
            if (poolAddress[i] == _pool) {
                poolAddress[i] = address(0);
                // This will leave a null in the array and keep the indices the same
                break;
            }
        }
        emit PoolRemoved(_pool);
    }

    function mint(address to, uint256 amount) public onlyPools returns (bool) {
        if (amount.add(totalSupply()) > MAX_SUPPLY) {
            return false;
        }
        _mint(to, amount);
        return true;
    }

    function poolMint(address to, uint256 amount) external onlyPools {
        if (amount.add(totalSupply()) > MAX_SUPPLY) {
            return;
        }
        super._mint(to, amount);
        emit StockMinted(address(this), to, amount);
    }

    function poolBurnFrom(address _address, uint256 _amount) external onlyPools {
        super.burnFrom(_address, _amount);
        emit StockBurned(_address, address(this), _amount);
    }

    event StockBurned(address indexed from, address indexed to, uint256 amount);
    event StockMinted(address indexed from, address indexed to, uint256 amount);
    event PoolAdded(address pool);

    event PoolRemoved(address pool);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_operatorMsg","type":"address"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pool","type":"address"}],"name":"PoolAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pool","type":"address"}],"name":"PoolRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"SetOperatorContract","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":"amount","type":"uint256"}],"name":"StockBurned","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":"amount","type":"uint256"}],"name":"StockMinted","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":"GENESIS_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pool","type":"address"}],"name":"addPool","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":"address","name":"_target","type":"address"}],"name":"check","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":"","type":"address"}],"name":"isPools","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatable","outputs":[{"internalType":"contract Operatable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"poolBurnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"poolMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pool","type":"address"}],"name":"removePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oper","type":"address"}],"name":"setOperContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001d7638038062001d76833981016040819052620000349162000339565b600080546001600160a01b0319166001600160a01b03851690811782556040518592859285928592907f3ccbb406b985dd76fe05e172b432487a2ff9fe4257642d3acc350f167cb1d577908290a350815162000098906004906020850190620001c6565b508051620000ae906005906020840190620001c6565b50506006805460ff1916905550620000d59050336b0121836204bc2ce21e000000620000de565b50505062000427565b6001600160a01b038216620001395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200014d9190620003c3565b90915550506001600160a01b038216600090815260016020526040812080548392906200017c908490620003c3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001d490620003ea565b90600052602060002090601f016020900481019282620001f8576000855562000243565b82601f106200021357805160ff191683800117855562000243565b8280016001018555821562000243579182015b828111156200024357825182559160200191906001019062000226565b506200025192915062000255565b5090565b5b8082111562000251576000815560010162000256565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029457600080fd5b81516001600160401b0380821115620002b157620002b16200026c565b604051601f8301601f19908116603f01168101908282118183101715620002dc57620002dc6200026c565b81604052838152602092508683858801011115620002f957600080fd5b600091505b838210156200031d5785820183015181830184015290820190620002fe565b838211156200032f5760008385830101525b9695505050505050565b6000806000606084860312156200034f57600080fd5b83516001600160a01b03811681146200036757600080fd5b60208501519093506001600160401b03808211156200038557600080fd5b620003938783880162000282565b93506040860151915080821115620003aa57600080fd5b50620003b98682870162000282565b9150509250925092565b60008219821115620003e557634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620003ff57607f821691505b602082108114156200042157634e487b7160e01b600052602260045260246000fd5b50919050565b61193f80620004376000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063570ca73511610104578063a457c2d7116100a2578063d914cd4b11610071578063d914cd4b146103d4578063da9da526146103e7578063dd62ed3e146103fa578063e6052c4f1461043357600080fd5b8063a457c2d714610393578063a9059cbb146103a6578063c23697a8146103b9578063c4ae3168146103cc57600080fd5b806379cc6790116100de57806379cc67901461035d5780638da5cb5b1461037057806395d89b411461037857806399ec67651461038057600080fd5b8063570ca735146103215780635c975abb1461032957806370a082311461033457600080fd5b806323b872dd1161017c5780633b7d09461161014b5780633b7d0946146102bd57806340c10f19146102d057806342966c68146102e357806348ee26a3146102f657600080fd5b806323b872dd14610275578063313ce5671461028857806332cb6b0c1461029757806339509351146102aa57600080fd5b80630a0c165a116101b85780630a0c165a146102325780630c407d56146102475780630f589d631461025a57806318160ddd1461026d57600080fd5b806306fdde03146101df57806307f926df146101fd578063095ea7b31461020f575b600080fd5b6101e7610456565b6040516101f49190611692565b60405180910390f35b6007545b6040519081526020016101f4565b61022261021d3660046116fc565b6104e8565b60405190151581526020016101f4565b6102456102403660046116fc565b610502565b005b6102456102553660046116fc565b61058e565b610245610268366004611728565b610637565b600354610201565b610222610283366004611745565b610793565b604051601281526020016101f4565b6102016b033b2e3c9fd0803ce800000081565b6102226102b83660046116fc565b6107b7565b6102456102cb366004611728565b6107f6565b6102226102de3660046116fc565b610a4b565b6102456102f1366004611786565b610ac0565b600054610309906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b610309610acd565b60065460ff16610222565b610201610342366004611728565b6001600160a01b031660009081526001602052604090205490565b61024561036b3660046116fc565b610b4a565b610309610b5f565b6101e7610bb3565b6102016b0121836204bc2ce21e00000081565b6102226103a13660046116fc565b610bc2565b6102226103b43660046116fc565b610c54565b6102226103c7366004611728565b610c62565b610245610cd1565b6102456103e2366004611728565b610db1565b6103096103f5366004611786565b610f9d565b61020161040836600461179f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610222610441366004611728565b60086020526000908152604090205460ff1681565b606060048054610465906117d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610491906117d8565b80156104de5780601f106104b3576101008083540402835291602001916104de565b820191906000526020600020905b8154815290600101906020018083116104c157829003601f168201915b5050505050905090565b6000336104f6818585610fc7565b60019150505b92915050565b3360009081526008602052604090205460ff16151560011461053f5760405162461bcd60e51b815260040161053690611813565b60405180910390fd5b6105498282610b4a565b60405181815230906001600160a01b038416907f3d849d8f663146a2ee131057f0b001ad6688e2d868694788c2af6a2440e5ae0c906020015b60405180910390a35050565b3360009081526008602052604090205460ff1615156001146105c25760405162461bcd60e51b815260040161053690611813565b6b033b2e3c9fd0803ce80000006105e26105db60035490565b83906110ec565b11156105ec575050565b6105f682826110ff565b6040518181526001600160a01b0383169030907f8495a3e2ae26579b627700d628f2da02a0ae14e12f5e8ce5419c3792e9f818e590602001610582565b5050565b60005460408051638da5cb5b60e01b8152905133926001600160a01b031691638da5cb5b9160048083019260209291908290030181865afa158015610680573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a49190611854565b6001600160a01b0316146106fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610536565b6001600160a01b0381166107435760405162461bcd60e51b815260206004820152601060248201526f3130b2103732bb9037b832b930ba37b960811b6044820152606401610536565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f3ccbb406b985dd76fe05e172b432487a2ff9fe4257642d3acc350f167cb1d5779190a35050565b6000336107a18582856111de565b6107ac858585611270565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906104f690829086906107f1908790611887565b610fc7565b6000546040805163570ca73560e01b8152905133926001600160a01b03169163570ca7359160048083019260209291908290030181865afa15801561083f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108639190611854565b6001600160a01b0316146108a85760405162461bcd60e51b815260206004820152600c60248201526b3737ba1037b832b930ba37b960a11b6044820152606401610536565b6001600160a01b0381166108ea5760405162461bcd60e51b815260206004820152600960248201526830206164647265737360b81b6044820152606401610536565b6001600160a01b03811660009081526008602052604090205460ff16151560011461094d5760405162461bcd60e51b81526020600482015260136024820152721059191c995cdcc81b9bdb995e1a5cdd185b9d606a1b6044820152606401610536565b6001600160a01b0381166000908152600860205260408120805460ff191690555b600754811015610a0a57816001600160a01b0316600782815481106109955761099561189f565b6000918252602090912001546001600160a01b031614156109f8576000600782815481106109c5576109c561189f565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610a0a565b80610a02816118b5565b91505061096e565b506040516001600160a01b03821681527f4106dfdaa577573db51c0ca93f766dbedfa0758faa2e7f5bcdb7c142be803c3f906020015b60405180910390a150565b3360009081526008602052604081205460ff161515600114610a7f5760405162461bcd60e51b815260040161053690611813565b6b033b2e3c9fd0803ce8000000610a9f610a9860035490565b84906110ec565b1115610aad575060006104fc565b610ab783836110ff565b50600192915050565b610aca338261143e565b50565b60008060009054906101000a90046001600160a01b03166001600160a01b031663570ca7356040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b459190611854565b905090565b610b558233836111de565b610633828261143e565b60008060009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b21573d6000803e3d6000fd5b606060058054610465906117d8565b3360008181526002602090815260408083206001600160a01b038716845290915281205490919083811015610c475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610536565b6107ac8286868403610fc7565b6000336104f6818585611270565b60008054604051631846d2f560e31b81526001600160a01b0384811660048301529091169063c23697a890602401602060405180830381865afa158015610cad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fc91906118d0565b60005460408051638da5cb5b60e01b8152905133926001600160a01b031691638da5cb5b9160048083019260209291908290030181865afa158015610d1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3e9190611854565b6001600160a01b031614610d945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610536565b60065460ff1615610da957610da7611584565b565b610da7611617565b6000546040805163570ca73560e01b8152905133926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015610dfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1e9190611854565b6001600160a01b031614610e635760405162461bcd60e51b815260206004820152600c60248201526b3737ba1037b832b930ba37b960a11b6044820152606401610536565b6001600160a01b038116610ea55760405162461bcd60e51b815260206004820152600960248201526830206164647265737360b81b6044820152606401610536565b6001600160a01b03811660009081526008602052604090205460ff1615610f075760405162461bcd60e51b81526020600482015260166024820152754164647265737320616c72656164792065786973747360501b6044820152606401610536565b6001600160a01b0381166000818152600860209081526040808320805460ff191660019081179091556007805491820181559093527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68890920180546001600160a01b0319168417905590519182527f73cca62ab1b520c9715bf4e6c71e3e518c754e7148f65102f43289a7df0efea69101610a40565b60078181548110610fad57600080fd5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b0383166110295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610536565b6001600160a01b03821661108a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610536565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006110f88284611887565b9392505050565b6001600160a01b0382166111555760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610536565b80600360008282546111679190611887565b90915550506001600160a01b03821660009081526001602052604081208054839290611194908490611887565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03838116600090815260026020908152604080832093861683529290522054600019811461126a578181101561125d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610536565b61126a8484848403610fc7565b50505050565b6001600160a01b0383166112d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610536565b6001600160a01b0382166113365760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610536565b6001600160a01b038316600090815260016020526040902054818110156113ae5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610536565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906113e5908490611887565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161143191815260200190565b60405180910390a361126a565b6001600160a01b03821661149e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610536565b6001600160a01b038216600090815260016020526040902054818110156115125760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610536565b6001600160a01b03831660009081526001602052604081208383039055600380548492906115419084906118f2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016110df565b60065460ff166115cd5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610536565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60065460ff161561165d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610536565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115fa3390565b600060208083528351808285015260005b818110156116bf578581018301518582016040015282016116a3565b818111156116d1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610aca57600080fd5b6000806040838503121561170f57600080fd5b823561171a816116e7565b946020939093013593505050565b60006020828403121561173a57600080fd5b81356110f8816116e7565b60008060006060848603121561175a57600080fd5b8335611765816116e7565b92506020840135611775816116e7565b929592945050506040919091013590565b60006020828403121561179857600080fd5b5035919050565b600080604083850312156117b257600080fd5b82356117bd816116e7565b915060208301356117cd816116e7565b809150509250929050565b600181811c908216806117ec57607f821691505b6020821081141561180d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526021908201527f4f6e6c7920706f6f6c732063616e2063616c6c20746869732066756e6374696f6040820152603760f91b606082015260800190565b60006020828403121561186657600080fd5b81516110f8816116e7565b634e487b7160e01b600052601160045260246000fd5b6000821982111561189a5761189a611871565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156118c9576118c9611871565b5060010190565b6000602082840312156118e257600080fd5b815180151581146110f857600080fd5b60008282101561190457611904611871565b50039056fea2646970667358221220e8d6491da37fef659e0bc34145e8c9da7e3093e606f49f1c625d30ae51f41f5964736f6c634300080a003300000000000000000000000077c80b164f4b17466c49708c5fa522435435b049000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000003545248000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035452480000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063570ca73511610104578063a457c2d7116100a2578063d914cd4b11610071578063d914cd4b146103d4578063da9da526146103e7578063dd62ed3e146103fa578063e6052c4f1461043357600080fd5b8063a457c2d714610393578063a9059cbb146103a6578063c23697a8146103b9578063c4ae3168146103cc57600080fd5b806379cc6790116100de57806379cc67901461035d5780638da5cb5b1461037057806395d89b411461037857806399ec67651461038057600080fd5b8063570ca735146103215780635c975abb1461032957806370a082311461033457600080fd5b806323b872dd1161017c5780633b7d09461161014b5780633b7d0946146102bd57806340c10f19146102d057806342966c68146102e357806348ee26a3146102f657600080fd5b806323b872dd14610275578063313ce5671461028857806332cb6b0c1461029757806339509351146102aa57600080fd5b80630a0c165a116101b85780630a0c165a146102325780630c407d56146102475780630f589d631461025a57806318160ddd1461026d57600080fd5b806306fdde03146101df57806307f926df146101fd578063095ea7b31461020f575b600080fd5b6101e7610456565b6040516101f49190611692565b60405180910390f35b6007545b6040519081526020016101f4565b61022261021d3660046116fc565b6104e8565b60405190151581526020016101f4565b6102456102403660046116fc565b610502565b005b6102456102553660046116fc565b61058e565b610245610268366004611728565b610637565b600354610201565b610222610283366004611745565b610793565b604051601281526020016101f4565b6102016b033b2e3c9fd0803ce800000081565b6102226102b83660046116fc565b6107b7565b6102456102cb366004611728565b6107f6565b6102226102de3660046116fc565b610a4b565b6102456102f1366004611786565b610ac0565b600054610309906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b610309610acd565b60065460ff16610222565b610201610342366004611728565b6001600160a01b031660009081526001602052604090205490565b61024561036b3660046116fc565b610b4a565b610309610b5f565b6101e7610bb3565b6102016b0121836204bc2ce21e00000081565b6102226103a13660046116fc565b610bc2565b6102226103b43660046116fc565b610c54565b6102226103c7366004611728565b610c62565b610245610cd1565b6102456103e2366004611728565b610db1565b6103096103f5366004611786565b610f9d565b61020161040836600461179f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610222610441366004611728565b60086020526000908152604090205460ff1681565b606060048054610465906117d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610491906117d8565b80156104de5780601f106104b3576101008083540402835291602001916104de565b820191906000526020600020905b8154815290600101906020018083116104c157829003601f168201915b5050505050905090565b6000336104f6818585610fc7565b60019150505b92915050565b3360009081526008602052604090205460ff16151560011461053f5760405162461bcd60e51b815260040161053690611813565b60405180910390fd5b6105498282610b4a565b60405181815230906001600160a01b038416907f3d849d8f663146a2ee131057f0b001ad6688e2d868694788c2af6a2440e5ae0c906020015b60405180910390a35050565b3360009081526008602052604090205460ff1615156001146105c25760405162461bcd60e51b815260040161053690611813565b6b033b2e3c9fd0803ce80000006105e26105db60035490565b83906110ec565b11156105ec575050565b6105f682826110ff565b6040518181526001600160a01b0383169030907f8495a3e2ae26579b627700d628f2da02a0ae14e12f5e8ce5419c3792e9f818e590602001610582565b5050565b60005460408051638da5cb5b60e01b8152905133926001600160a01b031691638da5cb5b9160048083019260209291908290030181865afa158015610680573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a49190611854565b6001600160a01b0316146106fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610536565b6001600160a01b0381166107435760405162461bcd60e51b815260206004820152601060248201526f3130b2103732bb9037b832b930ba37b960811b6044820152606401610536565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f3ccbb406b985dd76fe05e172b432487a2ff9fe4257642d3acc350f167cb1d5779190a35050565b6000336107a18582856111de565b6107ac858585611270565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906104f690829086906107f1908790611887565b610fc7565b6000546040805163570ca73560e01b8152905133926001600160a01b03169163570ca7359160048083019260209291908290030181865afa15801561083f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108639190611854565b6001600160a01b0316146108a85760405162461bcd60e51b815260206004820152600c60248201526b3737ba1037b832b930ba37b960a11b6044820152606401610536565b6001600160a01b0381166108ea5760405162461bcd60e51b815260206004820152600960248201526830206164647265737360b81b6044820152606401610536565b6001600160a01b03811660009081526008602052604090205460ff16151560011461094d5760405162461bcd60e51b81526020600482015260136024820152721059191c995cdcc81b9bdb995e1a5cdd185b9d606a1b6044820152606401610536565b6001600160a01b0381166000908152600860205260408120805460ff191690555b600754811015610a0a57816001600160a01b0316600782815481106109955761099561189f565b6000918252602090912001546001600160a01b031614156109f8576000600782815481106109c5576109c561189f565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610a0a565b80610a02816118b5565b91505061096e565b506040516001600160a01b03821681527f4106dfdaa577573db51c0ca93f766dbedfa0758faa2e7f5bcdb7c142be803c3f906020015b60405180910390a150565b3360009081526008602052604081205460ff161515600114610a7f5760405162461bcd60e51b815260040161053690611813565b6b033b2e3c9fd0803ce8000000610a9f610a9860035490565b84906110ec565b1115610aad575060006104fc565b610ab783836110ff565b50600192915050565b610aca338261143e565b50565b60008060009054906101000a90046001600160a01b03166001600160a01b031663570ca7356040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b459190611854565b905090565b610b558233836111de565b610633828261143e565b60008060009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b21573d6000803e3d6000fd5b606060058054610465906117d8565b3360008181526002602090815260408083206001600160a01b038716845290915281205490919083811015610c475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610536565b6107ac8286868403610fc7565b6000336104f6818585611270565b60008054604051631846d2f560e31b81526001600160a01b0384811660048301529091169063c23697a890602401602060405180830381865afa158015610cad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fc91906118d0565b60005460408051638da5cb5b60e01b8152905133926001600160a01b031691638da5cb5b9160048083019260209291908290030181865afa158015610d1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3e9190611854565b6001600160a01b031614610d945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610536565b60065460ff1615610da957610da7611584565b565b610da7611617565b6000546040805163570ca73560e01b8152905133926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015610dfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1e9190611854565b6001600160a01b031614610e635760405162461bcd60e51b815260206004820152600c60248201526b3737ba1037b832b930ba37b960a11b6044820152606401610536565b6001600160a01b038116610ea55760405162461bcd60e51b815260206004820152600960248201526830206164647265737360b81b6044820152606401610536565b6001600160a01b03811660009081526008602052604090205460ff1615610f075760405162461bcd60e51b81526020600482015260166024820152754164647265737320616c72656164792065786973747360501b6044820152606401610536565b6001600160a01b0381166000818152600860209081526040808320805460ff191660019081179091556007805491820181559093527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68890920180546001600160a01b0319168417905590519182527f73cca62ab1b520c9715bf4e6c71e3e518c754e7148f65102f43289a7df0efea69101610a40565b60078181548110610fad57600080fd5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b0383166110295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610536565b6001600160a01b03821661108a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610536565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006110f88284611887565b9392505050565b6001600160a01b0382166111555760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610536565b80600360008282546111679190611887565b90915550506001600160a01b03821660009081526001602052604081208054839290611194908490611887565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03838116600090815260026020908152604080832093861683529290522054600019811461126a578181101561125d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610536565b61126a8484848403610fc7565b50505050565b6001600160a01b0383166112d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610536565b6001600160a01b0382166113365760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610536565b6001600160a01b038316600090815260016020526040902054818110156113ae5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610536565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906113e5908490611887565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161143191815260200190565b60405180910390a361126a565b6001600160a01b03821661149e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610536565b6001600160a01b038216600090815260016020526040902054818110156115125760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610536565b6001600160a01b03831660009081526001602052604081208383039055600380548492906115419084906118f2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016110df565b60065460ff166115cd5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610536565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60065460ff161561165d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610536565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115fa3390565b600060208083528351808285015260005b818110156116bf578581018301518582016040015282016116a3565b818111156116d1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610aca57600080fd5b6000806040838503121561170f57600080fd5b823561171a816116e7565b946020939093013593505050565b60006020828403121561173a57600080fd5b81356110f8816116e7565b60008060006060848603121561175a57600080fd5b8335611765816116e7565b92506020840135611775816116e7565b929592945050506040919091013590565b60006020828403121561179857600080fd5b5035919050565b600080604083850312156117b257600080fd5b82356117bd816116e7565b915060208301356117cd816116e7565b809150509250929050565b600181811c908216806117ec57607f821691505b6020821081141561180d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526021908201527f4f6e6c7920706f6f6c732063616e2063616c6c20746869732066756e6374696f6040820152603760f91b606082015260800190565b60006020828403121561186657600080fd5b81516110f8816116e7565b634e487b7160e01b600052601160045260246000fd5b6000821982111561189a5761189a611871565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156118c9576118c9611871565b5060010190565b6000602082840312156118e257600080fd5b815180151581146110f857600080fd5b60008282101561190457611904611871565b50039056fea2646970667358221220e8d6491da37fef659e0bc34145e8c9da7e3093e606f49f1c625d30ae51f41f5964736f6c634300080a0033

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

00000000000000000000000077c80b164f4b17466c49708c5fa522435435b049000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000003545248000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035452480000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _operatorMsg (address): 0x77C80b164f4b17466C49708c5FA522435435B049
Arg [1] : _name (string): TRH
Arg [2] : _symbol (string): TRH

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000077c80b164f4b17466c49708c5fa522435435b049
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 5452480000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5452480000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

35193:2647:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6829:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35848:104;35925:11;:18;35848:104;;;762:25:1;;;750:2;735:18;35848:104:0;616:177:1;9180:201:0;;;;;;:::i;:::-;;:::i;:::-;;;1419:14:1;;1412:22;1394:41;;1382:2;1367:18;9180:201:0;1254:187:1;37406:189:0;;;;;;:::i;:::-;;:::i;:::-;;37150:248;;;;;;:::i;:::-;;:::i;34346:272::-;;;;;;:::i;:::-;;:::i;7949:108::-;8037:12;;7949:108;;9961:295;;;;;;:::i;:::-;;:::i;7791:93::-;;;7874:2;2301:36:1;;2289:2;2274:18;7791:93:0;2159:184:1;35344:47:0;;35381:10;35344:47;;10665:240;;;;;;:::i;:::-;;:::i;36271:638::-;;;;;;:::i;:::-;;:::i;36917:225::-;;;;;;:::i;:::-;;:::i;18207:91::-;;;;;;:::i;:::-;;:::i;33484:28::-;;;;;-1:-1:-1;;;;;33484:28:0;;;;;;-1:-1:-1;;;;;2716:32:1;;;2698:51;;2686:2;2671:18;33484:28:0;2533:222:1;34124:106:0;;;:::i;29485:86::-;29556:7;;;;29485:86;;8120:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8221:18:0;8194:7;8221:18;;;:9;:18;;;;;;;8120:127;18617:164;;;;;;:::i;:::-;;:::i;34238:100::-;;;:::i;7048:104::-;;;:::i;35285:52::-;;35326:11;35285:52;;11408:438;;;;;;:::i;:::-;;:::i;8453:193::-;;;;;;:::i;:::-;;:::i;34626:119::-;;;;;;:::i;:::-;;:::i;34972:150::-;;;:::i;35960:281::-;;;;;;:::i;:::-;;:::i;35400:28::-;;;;;;:::i;:::-;;:::i;8709:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8825:18:0;;;8798:7;8825:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8709:151;35435:39;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6829:100;6883:13;6916:5;6909:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6829:100;:::o;9180:201::-;9263:4;931:10;9319:32;931:10;9335:7;9344:6;9319:8;:32::i;:::-;9369:4;9362:11;;;9180:201;;;;;:::o;37406:189::-;35531:10;35523:19;;;;:7;:19;;;;;;;;:27;;:19;:27;35515:73;;;;-1:-1:-1;;;35515:73:0;;;;;;;:::i;:::-;;;;;;;;;37493:33:::1;37508:8;37518:7;37493:14;:33::i;:::-;37542:45;::::0;762:25:1;;;37572:4:0::1;::::0;-1:-1:-1;;;;;37542:45:0;::::1;::::0;::::1;::::0;750:2:1;735:18;37542:45:0::1;;;;;;;;37406:189:::0;;:::o;37150:248::-;35531:10;35523:19;;;;:7;:19;;;;;;;;:27;;:19;:27;35515:73;;;;-1:-1:-1;;;35515:73:0;;;;;;;:::i;:::-;35381:10:::1;37230:25;37241:13;8037:12:::0;;;7949:108;37241:13:::1;37230:6:::0;;:10:::1;:25::i;:::-;:38;37226:77;;;37150:248:::0;;:::o;37226:77::-:1;37313:23;37325:2;37329:6;37313:11;:23::i;:::-;37352:38;::::0;762:25:1;;;-1:-1:-1;;;;;37352:38:0;::::1;::::0;37372:4:::1;::::0;37352:38:::1;::::0;750:2:1;735:18;37352:38:0::1;616:177:1::0;35599:1:0::1;37150:248:::0;;:::o;34346:272::-;33791:10;;:18;;;-1:-1:-1;;;33791:18:0;;;;33813:10;;-1:-1:-1;;;;;33791:10:0;;:16;;:18;;;;;;;;;;;;;;:10;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33791:32:0;;33783:77;;;;-1:-1:-1;;;33783:77:0;;4606:2:1;33783:77:0;;;4588:21:1;;;4625:18;;;4618:30;4684:34;4664:18;;;4657:62;4736:18;;33783:77:0;4404:356:1;33783:77:0;-1:-1:-1;;;;;34422:19:0;::::1;34414:48;;;::::0;-1:-1:-1;;;34414:48:0;;4967:2:1;34414:48:0::1;::::0;::::1;4949:21:1::0;5006:2;4986:18;;;4979:30;-1:-1:-1;;;5025:18:1;;;5018:46;5081:18;;34414:48:0::1;4765:340:1::0;34414:48:0::1;34473:19;34503:10:::0;;-1:-1:-1;;;;;34525:30:0;;::::1;-1:-1:-1::0;;;;;;34525:30:0;::::1;::::0;::::1;::::0;;34571:39:::1;::::0;34503:10;;;::::1;::::0;;;34571:39:::1;::::0;34473:19;34571:39:::1;34403:215;34346:272:::0;:::o;9961:295::-;10092:4;931:10;10150:38;10166:4;931:10;10181:6;10150:15;:38::i;:::-;10199:27;10209:4;10215:2;10219:6;10199:9;:27::i;:::-;-1:-1:-1;10244:4:0;;9961:295;-1:-1:-1;;;;9961:295:0:o;10665:240::-;931:10;10753:4;10834:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10834:27:0;;;;;;;;;;10753:4;;931:10;10809:66;;931:10;;10834:27;;:40;;10864:10;;10834:40;:::i;:::-;10809:8;:66::i;36271:638::-;33931:10;;:21;;;-1:-1:-1;;;33931:21:0;;;;33956:10;;-1:-1:-1;;;;;33931:10:0;;:19;;:21;;;;;;;;;;;;;;:10;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33931:35:0;;33923:60;;;;-1:-1:-1;;;33923:60:0;;5577:2:1;33923:60:0;;;5559:21:1;5616:2;5596:18;;;5589:30;-1:-1:-1;;;5635:18:1;;;5628:42;5687:18;;33923:60:0;5375:336:1;33923:60:0;-1:-1:-1;;;;;36345:19:0;::::1;36337:41;;;::::0;-1:-1:-1;;;36337:41:0;;5918:2:1;36337:41:0::1;::::0;::::1;5900:21:1::0;5957:1;5937:18;;;5930:29;-1:-1:-1;;;5975:18:1;;;5968:39;6024:18;;36337:41:0::1;5716:332:1::0;36337:41:0::1;-1:-1:-1::0;;;;;36397:14:0;::::1;;::::0;;;:7:::1;:14;::::0;;;;;::::1;;:22;;:14:::0;:22:::1;36389:54;;;::::0;-1:-1:-1;;;36389:54:0;;6255:2:1;36389:54:0::1;::::0;::::1;6237:21:1::0;6294:2;6274:18;;;6267:30;-1:-1:-1;;;6313:18:1;;;6306:49;6372:18;;36389:54:0::1;6053:343:1::0;36389:54:0::1;-1:-1:-1::0;;;;;36499:14:0;::::1;;::::0;;;:7:::1;:14;::::0;;;;36492:21;;-1:-1:-1;;36492:21:0::1;::::0;;36592:276:::1;36616:11;:18:::0;36612:22;::::1;36592:276;;;36678:5;-1:-1:-1::0;;;;;36660:23:0::1;:11;36672:1;36660:14;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;36660:14:0::1;:23;36656:201;;;36729:1;36704:11;36716:1;36704:14;;;;;;;;:::i;:::-;;;;;;;;;:27;;;;;-1:-1:-1::0;;;;;36704:27:0::1;;;;;-1:-1:-1::0;;;;;36704:27:0::1;;;;;;36836:5;;36656:201;36636:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36592:276;;;-1:-1:-1::0;36883:18:0::1;::::0;-1:-1:-1;;;;;2716:32:1;;2698:51;;36883:18:0::1;::::0;2686:2:1;2671:18;36883::0::1;;;;;;;;36271:638:::0;:::o;36917:225::-;35531:10;36985:4;35523:19;;;:7;:19;;;;;;;;:27;;:19;:27;35515:73;;;;-1:-1:-1;;;35515:73:0;;;;;;;:::i;:::-;35381:10:::1;37006:25;37017:13;8037:12:::0;;;7949:108;37017:13:::1;37006:6:::0;;:10:::1;:25::i;:::-;:38;37002:83;;;-1:-1:-1::0;37068:5:0::1;37061:12;;37002:83;37095:17;37101:2;37105:6;37095:5;:17::i;:::-;-1:-1:-1::0;37130:4:0::1;36917:225:::0;;;;:::o;18207:91::-;18263:27;931:10;18283:6;18263:5;:27::i;:::-;18207:91;:::o;34124:106::-;34174:7;34201:10;;;;;;;;;-1:-1:-1;;;;;34201:10:0;-1:-1:-1;;;;;34201:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34194:28;;34124:106;:::o;18617:164::-;18694:46;18710:7;931:10;18733:6;18694:15;:46::i;:::-;18751:22;18757:7;18766:6;18751:5;:22::i;34238:100::-;34285:7;34312:10;;;;;;;;;-1:-1:-1;;;;;34312:10:0;-1:-1:-1;;;;;34312:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7048:104;7104:13;7137:7;7130:14;;;;;:::i;11408:438::-;931:10;11501:4;11584:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11584:27:0;;;;;;;;;;11501:4;;931:10;11630:35;;;;11622:85;;;;-1:-1:-1;;;11622:85:0;;6875:2:1;11622:85:0;;;6857:21:1;6914:2;6894:18;;;6887:30;6953:34;6933:18;;;6926:62;-1:-1:-1;;;7004:18:1;;;6997:35;7049:19;;11622:85:0;6673:401:1;11622:85:0;11743:60;11752:5;11759:7;11787:15;11768:16;:34;11743:8;:60::i;8453:193::-;8532:4;931:10;8588:28;931:10;8605:2;8609:6;8588:9;:28::i;34626:119::-;34688:4;34712:10;;:25;;-1:-1:-1;;;34712:25:0;;-1:-1:-1;;;;;2716:32:1;;;34712:25:0;;;2698:51:1;34712:10:0;;;;:16;;2671:18:1;;34712:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;34972:150::-;33791:10;;:18;;;-1:-1:-1;;;33791:18:0;;;;33813:10;;-1:-1:-1;;;;;33791:10:0;;:16;;:18;;;;;;;;;;;;;;:10;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33791:32:0;;33783:77;;;;-1:-1:-1;;;33783:77:0;;4606:2:1;33783:77:0;;;4588:21:1;;;4625:18;;;4618:30;4684:34;4664:18;;;4657:62;4736:18;;33783:77:0;4404:356:1;33783:77:0;29556:7;;;;35023:92:::1;;;35052:10;:8;:10::i;:::-;34972:150::o:0;35023:92::-:1;35095:8;:6;:8::i;35960:281::-:0;33931:10;;:21;;;-1:-1:-1;;;33931:21:0;;;;33956:10;;-1:-1:-1;;;;;33931:10:0;;:19;;:21;;;;;;;;;;;;;;:10;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33931:35:0;;33923:60;;;;-1:-1:-1;;;33923:60:0;;5577:2:1;33923:60:0;;;5559:21:1;5616:2;5596:18;;;5589:30;-1:-1:-1;;;5635:18:1;;;5628:42;5687:18;;33923:60:0;5375:336:1;33923:60:0;-1:-1:-1;;;;;36031:19:0;::::1;36023:41;;;::::0;-1:-1:-1;;;36023:41:0;;5918:2:1;36023:41:0::1;::::0;::::1;5900:21:1::0;5957:1;5937:18;;;5930:29;-1:-1:-1;;;5975:18:1;;;5968:39;6024:18;;36023:41:0::1;5716:332:1::0;36023:41:0::1;-1:-1:-1::0;;;;;36083:14:0;::::1;;::::0;;;:7:::1;:14;::::0;;;;;::::1;;:23;36075:58;;;::::0;-1:-1:-1;;;36075:58:0;;7563:2:1;36075:58:0::1;::::0;::::1;7545:21:1::0;7602:2;7582:18;;;7575:30;-1:-1:-1;;;7621:18:1;;;7614:52;7683:18;;36075:58:0::1;7361:346:1::0;36075:58:0::1;-1:-1:-1::0;;;;;36144:14:0;::::1;;::::0;;;:7:::1;:14;::::0;;;;;;;:21;;-1:-1:-1;;36144:21:0::1;36161:4;36144:21:::0;;::::1;::::0;;;36176:11:::1;:23:::0;;;;::::1;::::0;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;36176:23:0::1;::::0;::::1;::::0;;36217:16;;2698:51:1;;;36217:16:0::1;::::0;2671:18:1;36217:16:0::1;2533:222:1::0;35400:28:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35400:28:0;;-1:-1:-1;35400:28:0;:::o;15044:380::-;-1:-1:-1;;;;;15180:19:0;;15172:68;;;;-1:-1:-1;;;15172:68:0;;7914:2:1;15172:68:0;;;7896:21:1;7953:2;7933:18;;;7926:30;7992:34;7972:18;;;7965:62;-1:-1:-1;;;8043:18:1;;;8036:34;8087:19;;15172:68:0;7712:400:1;15172:68:0;-1:-1:-1;;;;;15259:21:0;;15251:68;;;;-1:-1:-1;;;15251:68:0;;8319:2:1;15251:68:0;;;8301:21:1;8358:2;8338:18;;;8331:30;8397:34;8377:18;;;8370:62;-1:-1:-1;;;8448:18:1;;;8441:32;8490:19;;15251:68:0;8117:398:1;15251:68:0;-1:-1:-1;;;;;15332:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15384:32;;762:25:1;;;15384:32:0;;735:18:1;15384:32:0;;;;;;;;15044:380;;;:::o;21654:98::-;21712:7;21739:5;21743:1;21739;:5;:::i;:::-;21732:12;21654:98;-1:-1:-1;;;21654:98:0:o;13283:399::-;-1:-1:-1;;;;;13367:21:0;;13359:65;;;;-1:-1:-1;;;13359:65:0;;8722:2:1;13359:65:0;;;8704:21:1;8761:2;8741:18;;;8734:30;8800:33;8780:18;;;8773:61;8851:18;;13359:65:0;8520:355:1;13359:65:0;13515:6;13499:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13532:18:0;;;;;;:9;:18;;;;;:28;;13554:6;;13532:18;:28;;13554:6;;13532:28;:::i;:::-;;;;-1:-1:-1;;13576:37:0;;762:25:1;;;-1:-1:-1;;;;;13576:37:0;;;13593:1;;13576:37;;750:2:1;735:18;13576:37:0;;;;;;;37150:248;;:::o;15711:453::-;-1:-1:-1;;;;;8825:18:0;;;15846:24;8825:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15913:37:0;;15909:248;;15995:6;15975:16;:26;;15967:68;;;;-1:-1:-1;;;15967:68:0;;9082:2:1;15967:68:0;;;9064:21:1;9121:2;9101:18;;;9094:30;9160:31;9140:18;;;9133:59;9209:18;;15967:68:0;8880:353:1;15967:68:0;16079:51;16088:5;16095:7;16123:6;16104:16;:25;16079:8;:51::i;:::-;15835:329;15711:453;;;:::o;12325:671::-;-1:-1:-1;;;;;12456:18:0;;12448:68;;;;-1:-1:-1;;;12448:68:0;;9440:2:1;12448:68:0;;;9422:21:1;9479:2;9459:18;;;9452:30;9518:34;9498:18;;;9491:62;-1:-1:-1;;;9569:18:1;;;9562:35;9614:19;;12448:68:0;9238:401:1;12448:68:0;-1:-1:-1;;;;;12535:16:0;;12527:64;;;;-1:-1:-1;;;12527:64:0;;9846:2:1;12527:64:0;;;9828:21:1;9885:2;9865:18;;;9858:30;9924:34;9904:18;;;9897:62;-1:-1:-1;;;9975:18:1;;;9968:33;10018:19;;12527:64:0;9644:399:1;12527:64:0;-1:-1:-1;;;;;12677:15:0;;12655:19;12677:15;;;:9;:15;;;;;;12711:21;;;;12703:72;;;;-1:-1:-1;;;12703:72:0;;10250:2:1;12703:72:0;;;10232:21:1;10289:2;10269:18;;;10262:30;10328:34;10308:18;;;10301:62;-1:-1:-1;;;10379:18:1;;;10372:36;10425:19;;12703:72:0;10048:402:1;12703:72:0;-1:-1:-1;;;;;12811:15:0;;;;;;;:9;:15;;;;;;12829:20;;;12811:38;;12871:13;;;;;;;;:23;;12843:6;;12811:15;12871:23;;12843:6;;12871:23;:::i;:::-;;;;;;;;12927:2;-1:-1:-1;;;;;12912:26:0;12921:4;-1:-1:-1;;;;;12912:26:0;;12931:6;12912:26;;;;762:25:1;;750:2;735:18;;616:177;12912:26:0;;;;;;;;12951:37;14015:591;;-1:-1:-1;;;;;14099:21:0;;14091:67;;;;-1:-1:-1;;;14091:67:0;;10657:2:1;14091:67:0;;;10639:21:1;10696:2;10676:18;;;10669:30;10735:34;10715:18;;;10708:62;-1:-1:-1;;;10786:18:1;;;10779:31;10827:19;;14091:67:0;10455:397:1;14091:67:0;-1:-1:-1;;;;;14258:18:0;;14233:22;14258:18;;;:9;:18;;;;;;14295:24;;;;14287:71;;;;-1:-1:-1;;;14287:71:0;;11059:2:1;14287:71:0;;;11041:21:1;11098:2;11078:18;;;11071:30;11137:34;11117:18;;;11110:62;-1:-1:-1;;;11188:18:1;;;11181:32;11230:19;;14287:71:0;10857:398:1;14287:71:0;-1:-1:-1;;;;;14394:18:0;;;;;;:9;:18;;;;;14415:23;;;14394:44;;14460:12;:22;;14432:6;;14394:18;14460:22;;14432:6;;14460:22;:::i;:::-;;;;-1:-1:-1;;14500:37:0;;762:25:1;;;14526:1:0;;-1:-1:-1;;;;;14500:37:0;;;;;750:2:1;735:18;14500:37:0;616:177:1;30544:120:0;29556:7;;;;30080:41;;;;-1:-1:-1;;;30080:41:0;;11592:2:1;30080:41:0;;;11574:21:1;11631:2;11611:18;;;11604:30;-1:-1:-1;;;11650:18:1;;;11643:50;11710:18;;30080:41:0;11390:344:1;30080:41:0;30603:7:::1;:15:::0;;-1:-1:-1;;30603:15:0::1;::::0;;30634:22:::1;931:10:::0;30643:12:::1;30634:22;::::0;-1:-1:-1;;;;;2716:32:1;;;2698:51;;2686:2;2671:18;30634:22:0::1;;;;;;;30544:120::o:0;30285:118::-;29556:7;;;;29810:9;29802:38;;;;-1:-1:-1;;;29802:38:0;;11941:2:1;29802:38:0;;;11923:21:1;11980:2;11960:18;;;11953:30;-1:-1:-1;;;11999:18:1;;;11992:46;12055:18;;29802:38:0;11739:340:1;29802:38:0;30345:7:::1;:14:::0;;-1:-1:-1;;30345:14:0::1;30355:4;30345:14;::::0;;30375:20:::1;30382:12;931:10:::0;;851:98;14:597:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;798:131::-;-1:-1:-1;;;;;873:31:1;;863:42;;853:70;;919:1;916;909:12;934:315;1002:6;1010;1063:2;1051:9;1042:7;1038:23;1034:32;1031:52;;;1079:1;1076;1069:12;1031:52;1118:9;1105:23;1137:31;1162:5;1137:31;:::i;:::-;1187:5;1239:2;1224:18;;;;1211:32;;-1:-1:-1;;;934:315:1:o;1446:247::-;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;1613:9;1600:23;1632:31;1657:5;1632:31;:::i;1698:456::-;1775:6;1783;1791;1844:2;1832:9;1823:7;1819:23;1815:32;1812:52;;;1860:1;1857;1850:12;1812:52;1899:9;1886:23;1918:31;1943:5;1918:31;:::i;:::-;1968:5;-1:-1:-1;2025:2:1;2010:18;;1997:32;2038:33;1997:32;2038:33;:::i;:::-;1698:456;;2090:7;;-1:-1:-1;;;2144:2:1;2129:18;;;;2116:32;;1698:456::o;2348:180::-;2407:6;2460:2;2448:9;2439:7;2435:23;2431:32;2428:52;;;2476:1;2473;2466:12;2428:52;-1:-1:-1;2499:23:1;;2348:180;-1:-1:-1;2348:180:1:o;2968:388::-;3036:6;3044;3097:2;3085:9;3076:7;3072:23;3068:32;3065:52;;;3113:1;3110;3103:12;3065:52;3152:9;3139:23;3171:31;3196:5;3171:31;:::i;:::-;3221:5;-1:-1:-1;3278:2:1;3263:18;;3250:32;3291:33;3250:32;3291:33;:::i;:::-;3343:7;3333:17;;;2968:388;;;;;:::o;3361:380::-;3440:1;3436:12;;;;3483;;;3504:61;;3558:4;3550:6;3546:17;3536:27;;3504:61;3611:2;3603:6;3600:14;3580:18;3577:38;3574:161;;;3657:10;3652:3;3648:20;3645:1;3638:31;3692:4;3689:1;3682:15;3720:4;3717:1;3710:15;3574:161;;3361:380;;;:::o;3746:397::-;3948:2;3930:21;;;3987:2;3967:18;;;3960:30;4026:34;4021:2;4006:18;;3999:62;-1:-1:-1;;;4092:2:1;4077:18;;4070:31;4133:3;4118:19;;3746:397::o;4148:251::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:31;4363:5;4338:31;:::i;5110:127::-;5171:10;5166:3;5162:20;5159:1;5152:31;5202:4;5199:1;5192:15;5226:4;5223:1;5216:15;5242:128;5282:3;5313:1;5309:6;5306:1;5303:13;5300:39;;;5319:18;;:::i;:::-;-1:-1:-1;5355:9:1;;5242:128::o;6401:127::-;6462:10;6457:3;6453:20;6450:1;6443:31;6493:4;6490:1;6483:15;6517:4;6514:1;6507:15;6533:135;6572:3;-1:-1:-1;;6593:17:1;;6590:43;;;6613:18;;:::i;:::-;-1:-1:-1;6660:1:1;6649:13;;6533:135::o;7079:277::-;7146:6;7199:2;7187:9;7178:7;7174:23;7170:32;7167:52;;;7215:1;7212;7205:12;7167:52;7247:9;7241:16;7300:5;7293:13;7286:21;7279:5;7276:32;7266:60;;7322:1;7319;7312:12;11260:125;11300:4;11328:1;11325;11322:8;11319:34;;;11333:18;;:::i;:::-;-1:-1:-1;11370:9:1;;11260:125::o

Swarm Source

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