ETH Price: $3,939.76 (-1.32%)

Token

zkSwap Finance (ZF)

Overview

Max Total Supply

682,563,583.22423873430565946 ZF

Holders

148,208

Total Transfers

-

Market

Price

$0.0222 @ 0.000006 ETH (+6.29%)

Onchain Market Cap

$15,130,789.66

Circulating Supply Market Cap

$10,703,099.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Market

Volume (24H):$1,163,150.00
Market Capitalization:$10,703,099.00
Circulating Supply:480,921,434.00 ZF
Market Data Source: Coinmarketcap

This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
ZFToken

Compiler Version
v0.8.16+commit.07a7930e

ZkSolc Version
v1.3.8

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 8 : ZFToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";


// ZF token with Governance
contract ZFToken is ERC20('zkSwap Finance', 'ZF'), Ownable {
    using EnumerableSet for EnumerableSet.AddressSet;
    EnumerableSet.AddressSet private _minters;

    // modifier for mint function
    modifier onlyMinter() {
        require(isMinter(msg.sender), "caller is not the minter");
        _;
    }

    constructor() {
        addMinter(msg.sender);
    }

    function mint(address to, uint256 amount) public onlyMinter returns(bool) {
        _mint(to, amount);
        return true;
    }
    

    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    function addMinter(address account) public onlyOwner returns (bool) {
        require(account != address(0), "addMinter: account is the zero address");
        return EnumerableSet.add(_minters, account);
    }

    function removeMinter(address account) public onlyOwner returns (bool) {
        require(account != address(0), "removeMinter: account is the zero address");
        return EnumerableSet.remove(_minters, account);
    }

    function getMinterLength() public view returns (uint256) {
        return EnumerableSet.length(_minters);
    }

    function isMinter(address account) public view returns (bool) {
        return EnumerableSet.contains(_minters, account);
    }

    function getMinter(uint256 index) public view returns (address){
        require(index <= getMinterLength() - 1, "getMinter: index out of bounds");
        return EnumerableSet.at(_minters, index);
    }

}

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 3 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.openzeppelin.com/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, allowance(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 = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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 4 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

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

File 5 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 8 : Context.sol
// 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 7 of 8 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 subtraction 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 8 of 8 : EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.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.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
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;

            if (lastIndex != toDeleteIndex) {
                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] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // 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) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // 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 in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

Settings
{
  "compilerPath": "",
  "experimental": {},
  "optimizer": {
    "enabled": true,
    "mode": "3"
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":"uint256","name":"index","type":"uint256"}],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"isMinter","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002a77bfff4744aaf65e101c2e31ad4f8919a8e2b993c737800f082268aea00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0002000000000002000600000000000200010000000103550000006001100270000002540010019d00000001012001900000003e0000c13d0000008001000039000000400010043f0000000001000031000000040110008c000007110000413d0000000101000367000000000101043b000000e001100270000002630210009c000000590000a13d000002640210009c000000c50000a13d000002650210009c000001290000213d000002690210009c000002990000613d0000026a0210009c000003a70000613d0000026b0110009c000007110000c13d0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000400310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000001010003670000000402100370000000000202043b0000025b0320009c000007110000213d0000002401100370000000000301043b0000000001000411094907870000040f0000000101000039000000400200043d00000000001204350000025401000041000002540320009c0000000001024019000000400110021000000281011001c70000094a0001042e0000000001000416000000000110004c000007110000c13d000000c001000039000000400010043f0000000e01000039000000800010043f0000025501000041000000a00010043f000000400400043d000002560140009c000000530000813d0000004001400039000000400010043f0000000201000039000000000514043600000257010000410000000000150435000000800700043d000002580170009c000000b30000a13d000002860100004100000000001004350000004101000039000000040010043f00000287010000410000094b00010430000002720210009c000000f50000213d000002790210009c000001b90000a13d0000027a0210009c000002cc0000613d0000027b0210009c000003f90000613d0000027c0110009c000007110000c13d0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000600310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000001010003670000000402100370000000000202043b000600000002001d0000025b0220009c000007110000213d0000002402100370000000000202043b000500000002001d0000025b0220009c000007110000213d0000004401100370000000000101043b000400000001001d000000060100002900000000001004350000000101000039000300000001001d000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000000101043b0000000002000411000200000002001d0000000000200435000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000000101043b000000000201041a000000010100008a000100000002001d000000000112004b000006950000c13d000000060100002900000005020000290000000403000029094907870000040f000000400100043d000000030200002900000000002104350000025402000041000002540310009c0000000001028019000000400110021000000281011001c70000094a0001042e0000000306000039000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000001620000613d000002860100004100000000001004350000002201000039000000040010043f00000287010000410000094b000104300000026c0210009c000001e50000a13d0000026d0210009c000002ef0000613d0000026e0210009c0000031d0000613d0000026f0110009c000007110000c13d0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000000310004c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d0000000405000039000000000405041a000000010640019000000001014002700000007f0210018f00000000010260190000001f0210008c00000000020000190000000102002039000000000224013f0000000102200190000000bf0000c13d000000400200043d0000000003120436000000000660004c000005740000c13d000001000500008a000000000454016f0000000000430435000000000110004c00000020040000390000000004006019000005810000013d000002730210009c0000020d0000a13d000002740210009c000003390000613d000002750210009c000004140000613d000002760110009c000007110000c13d0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000200310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000004010000390000000101100367000000000301043b0000000002000411000000000120004c000005370000c13d000000400100043d00000064021000390000028e03000041000000000032043500000044021000390000028f030000410000000000320435000000240210003900000021030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b00010430000002660210009c000003850000613d000002670210009c000004520000613d000002680110009c000007110000c13d0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000200310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000004010000390000000101100367000000000601043b0000025b0160009c000007110000213d0000000501000039000000000201041a0000025b032001970000000005000411000000000353004b000004ea0000c13d000000000360004c000005e00000c13d000000400100043d00000064021000390000025f030000410000000000320435000000440210003900000280030000410000000000320435000000240210003900000026030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b00010430000000200130008c000600000004001d000500000005001d000001880000413d000200000003001d000300000007001d000400000006001d000000000060043500000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000259011001c70000801002000039094909440000040f0000000102200190000007110000613d00000003070000290000001f027000390000000502200270000000200370008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000000060400002900000005050000290000000406000029000001880000813d000000000002041b0000000102200039000000000312004b000001840000413d0000001f0170008c0000022b0000a13d000300000007001d000400000006001d000000000060043500000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000259011001c70000801002000039094909440000040f0000000102200190000007110000613d000000200200008a00000003070000290000000002270170000000a003000039000000000101043b000001a90000613d00000020050000390000000003000019000000000405001900000080054000390000000005050433000000000051041b000000200540003900000001011000390000002003300039000000000623004b0000019f0000413d000000a003400039000000000272004b000001b30000813d0000000302700210000000f80220018f000000010400008a000000000224022f000000000242013f0000000003030433000000000223016f000000000021041b00000001010000390000000102700210000000060400002900000005050000290000000406000029000002350000013d0000027d0210009c000004830000613d0000027e0110009c000007110000c13d0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000000310004c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d0000000305000039000000000405041a000000010640019000000001014002700000007f0210018f00000000010260190000001f0210008c00000000020000190000000102002039000000000224013f0000000102200190000000bf0000c13d000000400200043d0000000003120436000000000660004c0000059a0000c13d000001000500008a000000000454016f0000000000430435000000000110004c00000020040000390000000004006019000005a70000013d000002700210009c000004990000613d000002710110009c000007110000c13d0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000200310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000004010000390000000101100367000000000101043b0000025b0210009c000007110000213d0000000000100435000000200000043f00000040020000390000000001000019094907130000040f000000000101041a000000400200043d00000000001204350000025401000041000002540320009c0000000001024019000000400110021000000281011001c70000094a0001042e000002770210009c000004b70000613d000002780110009c000007110000c13d0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000000310004c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d000000400100043d000000120200003900000000002104350000025402000041000002540310009c0000000001028019000000400110021000000281011001c70000094a0001042e000000000170004c00000000010000190000022f0000613d000000a00100043d0000000302700210000000010300008a000000000223022f000000000232013f000000000221016f0000000101700210000000000112019f000000000016041b0000000007040433000002580170009c000000530000213d0000000406000039000000000106041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000000bf0000c13d000000200130008c0000026a0000413d000200000003001d000300000007001d000400000006001d000000000060043500000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000259011001c70000801002000039094909440000040f0000000102200190000007110000613d00000003070000290000001f027000390000000502200270000000200370008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000604000029000000050500002900000004060000290000026a0000813d000000000002041b0000000102200039000000000312004b000002660000413d0000001f0170008c000004fb0000a13d000300000007001d000400000006001d000000000060043500000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000259011001c70000801002000039094909440000040f0000000102200190000007110000613d000000200200008a000000030700002900000000032701700000002002000039000000000101043b00000006060000290000028a0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000002820000413d000000000373004b000002950000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010100003900000001027002100000000406000029000005050000013d0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000200310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000004010000390000000101100367000000000101043b0000025b0210009c000007110000213d0000000502000039000000000202041a0000025b022001970000000003000411000000000232004b000004ea0000c13d000000000210004c000005d40000c13d000000400100043d00000064021000390000025f030000410000000000320435000000440210003900000260030000410000000000320435000000240210003900000026030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b000104300000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000400310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000001010003670000000402100370000000000202043b0000025b0320009c000007110000213d0000002401100370000000000301043b00000000010004110949081a0000040f0000000101000039000000400200043d00000000001204350000025401000041000002540320009c0000000001024019000000400110021000000281011001c70000094a0001042e0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000000310004c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d0000000501000039000000000201041a0000025b032001970000000005000411000000000353004b000004ea0000c13d0000025a02200197000000000021041b000000400100043d00000254020000410000000003000414000002540430009c0000000003028019000002540410009c00000000010280190000004002100210000000c001300210000600000002001d000000000121019f0000025c011001c70000800d0200003900000003030000390000025d0400004100000000060000190949093f0000040f0000000101200190000007110000613d00000006010000290000094a0001042e0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000000310004c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d0000000501000039000000000101041a0000025b01100197000000400200043d00000000001204350000025401000041000002540320009c0000000001024019000000400110021000000281011001c70000094a0001042e0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000400310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000004010000390000000101100367000000000101043b000600000001001d0000025b0110009c000007110000213d0000000001000411000400000001001d00000000001004350000000101000039000500000001001d000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000000101043b00000006020000290000000000200435000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000000101043b000000000101041a00000024020000390000000102200367000000000202043b0000000003120019000000000123004b000000000100001900000001010040390000000101100190000004b10000c13d000000040100002900000006020000290949081a0000040f000000400100043d000000050200002900000000002104350000025402000041000002540310009c0000000001028019000000400110021000000281011001c70000094a0001042e0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000200310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000004010000390000000101100367000000000101043b0000025b0210009c000007110000213d094908c50000040f000000000110004c0000000001000019000000010100c039000000400200043d00000000001204350000025401000041000002540320009c0000000001024019000000400110021000000281011001c70000094a0001042e0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000400310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000001010003670000000402100370000000000202043b000600000002001d0000025b0220009c000007110000213d0000002401100370000000000101043b000500000001001d0000000001000411000300000001001d00000000001004350000000101000039000400000001001d000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000000101043b00000006020000290000000000200435000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000000101043b000000000101041a0000000503000029000000000231004b0000064f0000813d000000400100043d000000640210003900000283030000410000000000320435000000440210003900000284030000410000000000320435000000240210003900000025030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b000104300000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000000310004c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d0000000201000039000000000101041a000000400200043d00000000001204350000025401000041000002540320009c0000000001024019000000400110021000000281011001c70000094a0001042e0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000400310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000001010003670000000402100370000000000202043b000600000002001d0000025b0220009c000007110000213d0000002401100370000000000101043b000500000001001d000000000100041100000000001004350000000701000039000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000000101043b000000000101041a000000000110004c000005f70000c13d000000400100043d000000440210003900000291030000410000000000320435000000240210003900000018030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c000000000102801900000040011002100000028a011001c70000094b000104300000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000400310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000001020003670000000401200370000000000101043b0000025b0310009c000007110000213d0000002402200370000000000202043b000600000002001d0000025b0220009c000007110000213d00000000001004350000000101000039000000200010043f0000004002000039000500000002001d0000000001000019094907130000040f00000006020000290000000000200435000000200010043f00000000010000190000000502000029094907130000040f000000000101041a000000400200043d00000000001204350000025401000041000002540320009c0000000001024019000000400110021000000281011001c70000094a0001042e0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000000310004c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d0000000601000039000000000101041a000000800010043f0000029c010000410000094a0001042e0000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000200310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000004010000390000000101100367000000000101043b0000000602000039000000000302041a000000000430004c0000055f0000c13d000002860100004100000000001004350000001101000039000000040010043f00000287010000410000094b000104300000000001000416000000000110004c000007110000c13d000000040100008a00000000011000310000027f02000041000000200310008c000000000300001900000000030240190000027f01100197000000000410004c000000000200a0190000027f0110009c00000000010300190000000001026019000000000110004c000007110000c13d00000004010000390000000101100367000000000101043b0000025b0210009c000007110000213d0000000502000039000000000202041a0000025b022001970000000003000411000000000232004b000004ea0000c13d000000000210004c0000060c0000c13d000000400100043d000000640210003900000293030000410000000000320435000000440210003900000294030000410000000000320435000000240210003900000029030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b00010430000000400100043d00000044021000390000029203000041000000000032043500000261020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000025402000041000002540310009c000000000102801900000040011002100000028a011001c70000094b00010430000000000170004c0000000001000019000004ff0000613d00000000010504330000000302700210000000010300008a000000000223022f000000000232013f000000000221016f0000000101700210000000000112019f000000000016041b0000000501000039000000000201041a0000025a032001970000000006000411000000000363019f000000000031041b0000025401000041000000400500043d0000000003000414000002540430009c0000000003018019000002540450009c000500000005001d00000000010540190000004004100210000000c0013002100000025b05200197000400000004001d000000000141019f0000025c011001c70000800d0200003900000003030000390000025d04000041000600000006001d0949093f0000040f0000000101200190000007110000613d0000000601000029000000000210004c000005ce0000c13d000000050300002900000064013000390000025f02000041000000000021043500000044013000390000026002000041000000000021043500000024013000390000002602000039000000000021043500000261010000410000000000130435000000040130003900000020020000390000000000210435000000040100002900000262011001c70000094b00010430000600000003001d000500000002001d0000000000200435000000200000043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000000101043b000000000201041a0000000601000029000000000112004b000006180000813d000000400100043d00000064021000390000028c03000041000000000032043500000044021000390000028d030000410000000000320435000000240210003900000022030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b00010430000000010430008a000000000441004b000005c00000a13d000000400100043d00000044021000390000028903000041000000000032043500000024021000390000001e030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c000000000102801900000040011002100000028a011001c70000094b000104300000000000500435000000000410004c0000000004000019000005810000613d000002850500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000614004b0000057a0000413d0000003f01400039000000200300008a000000000331016f0000000001230019000000000331004b00000000040000190000000104004039000002580310009c000000530000213d0000000103400190000000530000c13d000000400010043f000600000001001d094907710000040f000000060400002900000000014100490000025402000041000002540310009c0000000001028019000002540340009c000000000204401900000040022002100000006001100210000000000121019f0000094a0001042e0000000000500435000000000410004c0000000004000019000005a70000613d0000029b0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000614004b000005a00000413d0000003f01400039000000200300008a000000000331016f0000000001230019000000000331004b00000000040000190000000104004039000002580310009c000000530000213d0000000103400190000000530000c13d000000400010043f000600000001001d094907710000040f000000060400002900000000014100490000025402000041000002540310009c0000000001028019000002540340009c000000000204401900000040022002100000006001100210000000000121019f0000094a0001042e000000000331004b000006490000813d00000000002004350000028801100041000000000101041a0000025b01100197000000400200043d00000000001204350000025401000041000002540320009c0000000001024019000000400110021000000281011001c70000094a0001042e094907290000040f0000002001000039000001000010044300000120000004430000025e010000410000094a0001042e094908810000040f000000000110004c0000000001000019000000010100c039000000400200043d00000000001204350000025401000041000002540320009c0000000001024019000000400110021000000281011001c70000094a0001042e0000025a02200197000000000262019f000000000021041b000000400100043d00000254020000410000000003000414000002540430009c0000000003028019000002540410009c00000000010280190000004002100210000000c001300210000600000002001d000000000121019f0000025c011001c70000800d0200003900000003030000390000025d040000410949093f0000040f0000000101200190000007110000613d00000006010000290000094a0001042e0000000601000029000000000110004c0000065c0000c13d000000400100043d00000044021000390000029003000041000000000032043500000024021000390000001f030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c000000000102801900000040011002100000028a011001c70000094b00010430094908da0000040f000000000110004c0000000001000019000000010100c039000000400200043d00000000001204350000025401000041000002540320009c0000000001024019000000400110021000000281011001c70000094a0001042e000400000002001d00000005010000290000000000100435000000200000043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000060300002900000004020000290000000002320049000000000101043b000000000021041b0000000201000039000000000201041a0000000002320049000000000021041b000000400100043d000000000031043500000254020000410000000003000414000002540430009c0000000003028019000002540410009c00000000010280190000004001100210000000c002300210000000000112019f00000259011001c70000800d0200003900000003030000390000028b04000041000000050500002900000000060000190949093f0000040f0000000101200190000007110000613d0000025401000041000000400200043d000002540320009c000000000102401900000040011002100000094a0001042e000002860100004100000000001004350000003201000039000000040010043f00000287010000410000094b000104300000000003310049000000030100002900000006020000290949081a0000040f000000400100043d000000040200002900000000002104350000025402000041000002540310009c0000000001028019000000400110021000000281011001c70000094a0001042e0000000201000039000000000301041a00000005020000290000000002230019000000000332004b000000000300001900000001030040390000000103300190000004b10000c13d000000000021041b00000006010000290000000000100435000000200000043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d000000000031043500000254020000410000000003000414000002540430009c0000000003028019000002540410009c00000000010280190000004001100210000000c002300210000000000112019f00000259011001c70000800d0200003900000003030000390000028b04000041000000000500001900000006060000290949093f0000040f0000000101200190000007110000613d000000400100043d000000010200003900000000002104350000025402000041000002540310009c0000000001028019000000400110021000000281011001c70000094a0001042e00000004010000290000000102000029000000000112004b000006ab0000813d000000400100043d00000044021000390000029a03000041000000000032043500000024021000390000001d030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c000000000102801900000040011002100000028a011001c70000094b000104300000000601000029000000000110004c000006c30000c13d000000400100043d000000640210003900000298030000410000000000320435000000440210003900000299030000410000000000320435000000240210003900000024030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b0001043000000002010000290000025b01100198000200000001001d000006dc0000c13d000000400100043d000000640210003900000296030000410000000000320435000000440210003900000297030000410000000000320435000000240210003900000022030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b00010430000000060100002900000000001004350000000301000029000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000000101043b00000002020000290000000000200435000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007110000613d000000040200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000254020000410000000003000414000002540430009c0000000003028019000002540410009c00000000010280190000004001100210000000c002300210000000000112019f00000259011001c70000800d0200003900000003030000390000029504000041000000060500002900000002060000290949093f0000040f0000000101200190000000a60000c13d00000000010000190000094b000104300000025403000041000002540410009c00000000010380190000004001100210000002540420009c00000000020380190000006002200210000000000112019f0000000002000414000002540420009c0000000002038019000000c002200210000000000112019f0000025c011001c70000801002000039094909440000040f0000000102200190000007270000613d000000000101043b000000000001042d00000000010000190000094b000104300004000000000002000400000001001d00000000001004350000000701000039000300000001001d000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007690000613d000000000101043b000000000101041a000000000110004c000007680000c13d0000000602000039000000000302041a0000029d0130009c0000076b0000813d000100000003001d0000000101300039000000000012041b000200000002001d000000000020043500000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000259011001c70000801002000039094909440000040f0000000102200190000007690000613d000000000101043b000000010200002900000000012100190000000402000029000000000021041b0000000201000029000000000101041a000200000001001d00000000002004350000000301000029000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007690000613d000000000101043b0000000202000029000000000021041b000000000001042d00000000010000190000094b00010430000002860100004100000000001004350000004101000039000000040010043f00000287010000410000094b0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000430004c000007800000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b000007790000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d0004000000000002000400000003001d0000025b01100198000007db0000613d0000025b02200198000200000002001d000007f00000613d000300000001001d0000000000100435000000200000043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007d90000613d000000000101043b000000000201041a0000000401000029000100000002001d000000000112004b000008050000413d00000003010000290000000000100435000000200000043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007d90000613d000000040200002900000001030000290000000002230049000000000101043b000000000021041b0000000201000029000000000010043500000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000007d90000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d000000000031043500000254020000410000000003000414000002540430009c0000000003028019000002540410009c00000000010280190000004001100210000000c002300210000000000112019f00000259011001c70000800d0200003900000003030000390000028b04000041000000030500002900000002060000290949093f0000040f0000000101200190000007d90000613d000000000001042d00000000010000190000094b00010430000000400100043d0000006402100039000002a20300004100000000003204350000004402100039000002a3030000410000000000320435000000240210003900000025030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b00010430000000400100043d0000006402100039000002a00300004100000000003204350000004402100039000002a1030000410000000000320435000000240210003900000023030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b00010430000000400100043d00000064021000390000029e03000041000000000032043500000044021000390000029f030000410000000000320435000000240210003900000026030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b0001043000030000000000020000025b01100198000008570000613d000200000003001d0000025b02200198000300000002001d0000086c0000613d000100000001001d00000000001004350000000101000039000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f00000001022001900000000304000029000008550000613d000000000101043b0000000000400435000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f00000003060000290000000102200190000008550000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000254020000410000000003000414000002540430009c0000000003028019000002540410009c00000000010280190000004001100210000000c002300210000000000112019f00000259011001c70000800d020000390000000303000039000002950400004100000001050000290949093f0000040f0000000101200190000008550000613d000000000001042d00000000010000190000094b00010430000000400100043d000000640210003900000298030000410000000000320435000000440210003900000299030000410000000000320435000000240210003900000024030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b00010430000000400100043d000000640210003900000296030000410000000000320435000000440210003900000297030000410000000000320435000000240210003900000022030000390000000000320435000002610200004100000000002104350000000402100039000000200300003900000000003204350000025402000041000002540310009c0000000001028019000000400110021000000262011001c70000094b000104300003000000000002000300000001001d00000000001004350000000701000039000200000001001d000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000008b70000613d000000000101043b000000000101041a000000000110004c0000000001000019000008b60000c13d0000000601000039000000000201041a0000029d0320009c000008b90000813d0000000103200039000000000031041b000000000301041a000000000323004b000008bf0000a13d000000000010043500000288022000410000000303000029000000000032041b000000000101041a000100000001001d00000000003004350000000201000029000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000008b70000613d000000000101043b0000000102000029000000000021041b0000000101000039000000000001042d00000000010000190000094b00010430000002860100004100000000001004350000004101000039000000040010043f00000287010000410000094b00010430000002860100004100000000001004350000003201000039000000040010043f00000287010000410000094b0001043000000000001004350000000701000039000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f0000000102200190000008d80000613d000000000101043b000000000101041a000000000110004c0000000001000019000000010100c039000000000001042d00000000010000190000094b000104300004000000000002000300000001001d00000000001004350000000701000039000400000001001d000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f00000001022001900000092b0000613d000000000101043b000000000401041a000000000140004c00000000010000190000092a0000613d0000000603000039000000000103041a000000000210004c0000092d0000613d000000000241004b000009110000613d000000010240008a0000000000300435000200000003001d000000000303041a000000000223004b000009390000a13d000002a402400041000002a401100041000000000101041a000000000012041b00000000001004350000000401000029000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039000100000004001d094909440000040f00000001022001900000092b0000613d000000000101043b0000000102000029000000000021041b0000000203000029000000000103041a000000000210004c000009330000613d0000000000300435000002a402100041000000000002041b000000010110008a000000000013041b000000030100002900000000001004350000000401000029000000200010043f00000254010000410000000002000414000002540320009c0000000001024019000000c00110021000000282011001c70000801002000039094909440000040f00000001022001900000092b0000613d000000000101043b000000000001041b0000000101000039000000000001042d00000000010000190000094b00010430000002860100004100000000001004350000001101000039000000040010043f00000287010000410000094b00010430000002860100004100000000001004350000003101000039000000040010043f00000287010000410000094b00010430000002860100004100000000001004350000003201000039000000040010043f00000287010000410000094b0001043000000942002104210000000102000039000000000001042d0000000002000019000000000001042d00000947002104230000000102000039000000000001042d0000000002000019000000000001042d00000949000004320000094a0001042e0000094b00010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff7a6b537761702046696e616e6365000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc05a46000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000020000000000000000000000000000004000000100000000000000000064647265737300000000000000000000000000000000000000000000000000006164644d696e7465723a206163636f756e7420697320746865207a65726f206108c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000000000005b7121f700000000000000000000000000000000000000000000000000000000983b2d5500000000000000000000000000000000000000000000000000000000aa271e1900000000000000000000000000000000000000000000000000000000aa271e1a00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000983b2d5600000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000005b7121f80000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000003092afd4000000000000000000000000000000000000000000000000000000003950935000000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000003092afd500000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000000323aac70000000000000000000000000000000000000000000000000000000006fdde0380000000000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206100000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f778a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f6765744d696e7465723a20696e646578206f7574206f6620626f756e647300000000000000000000000000000000000000000064000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f2061646472657345524332303a206d696e7420746f20746865207a65726f20616464726573730063616c6c6572206973206e6f7420746865206d696e74657200000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726f2061646472657373000000000000000000000000000000000000000000000072656d6f76654d696e7465723a206163636f756e7420697320746865207a65728c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b00000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000000000000010000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3e00000000000000000000000000000000000000000000000000000000000000004ac12900d4c819c3945d014ab37d7f480769152594f7d5462228047498a30170

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