POL Price: $0.216818 (+0.89%)
 

Overview

Max Total Supply

170,000,000 ZYN

Holders

1,153 ( 0.087%)

Total Transfers

-

Market

Price

$0.0122 @ 0.056429 POL (-8.49%)

Onchain Market Cap

$2,079,912.60

Circulating Supply Market Cap

$426,559.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

Zynecoin is a blockchain system created with the aim of supporting and rewarding talented innovators and entrepreneurs throughout Africa.

Market

Volume (24H):$225,129.00
Market Capitalization:$426,559.00
Circulating Supply:34,873,997.00 ZYN
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
Zynecoin

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : zynecoin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// Import OpenZeppelin contracts directly from GitHub
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/security/Pausable.sol";

/**
 * @title Zynecoin Token (ZYN)
 * @dev ERC-20 token with mint, burn, pausability, blacklist, accounting, and utility functions.
 */
contract Zynecoin is ERC20, Pausable, Ownable {
    // Maximum supply of the token
    uint256 public constant MAX_SUPPLY = 240000000 * 10 ** 18;

    // Blacklist mapping
    mapping(address => bool) public blacklist;

    // Accounting mappings
    uint256 public totalTokensTransferred;
    mapping(address => uint256) public userTransfers;

    // Events for Blacklist
    event Blacklisted(address indexed account);
    event RemovedFromBlacklist(address indexed account);

    constructor() ERC20("Zynecoin", "ZYN") {
        _mint(msg.sender, 170000000 * 10 ** decimals()); // Initial supply
    }

    function mint(address to, uint256 amount) public onlyOwner {
        require(totalSupply() + amount <= MAX_SUPPLY, "Minting exceeds the maximum supply");
        _mint(to, amount);
    }

    function burn(uint256 amount) public {
        require(amount > 0, "Burn amount must be greater than zero");
        _burn(msg.sender, amount);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function addToBlacklist(address account) public onlyOwner {
        require(!blacklist[account], "Address is already blacklisted");
        blacklist[account] = true;
        emit Blacklisted(account);
    }

    function removeFromBlacklist(address account) public onlyOwner {
        require(blacklist[account], "Address is not blacklisted");
        blacklist[account] = false;
        emit RemovedFromBlacklist(account);
    }

    

   function _beforeTokenTransfer(
    address from,
    address to,
    uint256 /*amount*/
) internal override whenNotPaused {
    // This function does not modify the state directly but is part of mutable operations
    if (to == address(0)) {
        require(from != address(0), "Burn from the zero address is not allowed");
        return;
    }

    require(to != address(0), "Transfer to the zero address is not allowed");
    require(!blacklist[from], "Sender is blacklisted");
    require(!blacklist[to], "Recipient is blacklisted");
}



    /**
     * @dev Hook that is called after any transfer of tokens.
     * Updates accounting data.
     * @param from The address tokens were transferred from.
     * @param to The address tokens were transferred to.
     * @param amount The number of tokens being transferred.
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        super._afterTokenTransfer(from, to, amount);

        // Update global transfer count
        if (from != address(0)) {
            totalTokensTransferred += amount;
        }

        // Update individual transfer count for the sender
        if (from != address(0)) {
            userTransfers[from] += amount;
        }
    }

    /**
     * @dev Retrieve the total amount of tokens transferred globally.
     * @return The total amount of tokens transferred.
     */
    function getTotalTokensTransferred() external view returns (uint256) {
        return totalTokensTransferred;
    }

    /**
     * @dev Retrieve the total amount of tokens transferred by a specific user.
     * @param user The address of the user.
     * @return The total amount of tokens transferred by the user.
     */
    function getUserTransfers(address user) external view returns (uint256) {
        return userTransfers[user];
    }

    /**
     * @dev Retrieve the token's name.
     * @return The name of the token.
     */
    function getTokenName() external view returns (string memory) {
        return name();
    }

    /**
     * @dev Retrieve the token's decimals.
     * @return The number of decimals used by the token.
     */
    function getTokenDecimals() external view returns (uint8) {
        return decimals();
    }

    /**
     * @dev Retrieve the balance of a specific user.
     * @param user The address of the user whose balance is being queried.
     * @return The balance of the specified user.
     */
    function getUserBalance(address user) external view returns (uint256) {
        return balanceOf(user);
    }

    /**
     * @dev Retrieve the maximum supply of the token.
     * @return The maximum supply (MAX_SUPPLY) in tokens.
     */
    function getMaxSupply() external pure returns (uint256) {
        return MAX_SUPPLY;
    }

    /**
     * @dev Check if minting a specific amount of tokens is possible without exceeding the supply cap.
     * @param amount The number of tokens to check for minting.
     * @return True if minting is allowed, otherwise False.
     */
    function canMint(uint256 amount) external view returns (bool) {
        return totalSupply() + amount <= MAX_SUPPLY;
    }
}

File 2 of 7 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @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 Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        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 3 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 4 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 5 of 7 : 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 6 of 7 : 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 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

API
[{"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":"account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RemovedFromBlacklist","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToBlacklist","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":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"canMint","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":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getTokenDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalTokensTransferred","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserTransfers","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlacklist","outputs":[],"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":[],"name":"totalTokensTransferred","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userTransfers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405234801562000010575f80fd5b506040518060400160405280600881526020017f5a796e65636f696e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5a594e000000000000000000000000000000000000000000000000000000000081525081600390816200008e91906200096b565b508060049081620000a091906200096b565b5050505f60055f6101000a81548160ff021916908315150217905550620000dc620000d06200012260201b60201c565b6200012960201b60201c565b6200011c33620000f1620001ee60201b60201c565b600a620000ff919062000bd8565b630a21fe8062000110919062000c28565b620001f660201b60201c565b62000fc8565b5f33905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000267576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025e9062000cd0565b60405180910390fd5b6200027a5f83836200035b60201b60201c565b8060025f8282546200028d919062000cf0565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033c919062000d3b565b60405180910390a3620003575f8383620005a760201b60201c565b5050565b6200036b6200069860201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000416575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004079062000dca565b60405180910390fd5b620005a2565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000487576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047e9062000e5e565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161562000514576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050b9062000ecc565b60405180910390fd5b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615620005a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005989062000f3a565b60405180910390fd5b5b505050565b620005ba838383620006ed60201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000609578060075f82825462000601919062000cf0565b925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000693578060085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546200068b919062000cf0565b925050819055505b505050565b620006a8620006f260201b60201c565b15620006eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e29062000fa8565b60405180910390fd5b565b505050565b5f60055f9054906101000a900460ff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200078357607f821691505b6020821081036200079957620007986200073e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007fd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007c0565b620008098683620007c0565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620008536200084d620008478462000821565b6200082a565b62000821565b9050919050565b5f819050919050565b6200086e8362000833565b620008866200087d826200085a565b848454620007cc565b825550505050565b5f90565b6200089c6200088e565b620008a981848462000863565b505050565b5b81811015620008d057620008c45f8262000892565b600181019050620008af565b5050565b601f8211156200091f57620008e9816200079f565b620008f484620007b1565b8101602085101562000904578190505b6200091c6200091385620007b1565b830182620008ae565b50505b505050565b5f82821c905092915050565b5f620009415f198460080262000924565b1980831691505092915050565b5f6200095b838362000930565b9150826002028217905092915050565b620009768262000707565b67ffffffffffffffff81111562000992576200099162000711565b5b6200099e82546200076b565b620009ab828285620008d4565b5f60209050601f831160018114620009e1575f8415620009cc578287015190505b620009d885826200094e565b86555062000a47565b601f198416620009f1866200079f565b5f5b8281101562000a1a57848901518255600182019150602085019450602081019050620009f3565b8683101562000a3a578489015162000a36601f89168262000930565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000ad95780860481111562000ab15762000ab062000a4f565b5b600185161562000ac15780820291505b808102905062000ad18562000a7c565b945062000a91565b94509492505050565b5f8262000af3576001905062000bc5565b8162000b02575f905062000bc5565b816001811462000b1b576002811462000b265762000b5c565b600191505062000bc5565b60ff84111562000b3b5762000b3a62000a4f565b5b8360020a91508482111562000b555762000b5462000a4f565b5b5062000bc5565b5060208310610133831016604e8410600b841016171562000b965782820a90508381111562000b905762000b8f62000a4f565b5b62000bc5565b62000ba5848484600162000a88565b9250905081840481111562000bbf5762000bbe62000a4f565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000be48262000821565b915062000bf18362000bcc565b925062000c207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ae2565b905092915050565b5f62000c348262000821565b915062000c418362000821565b925082820262000c518162000821565b9150828204841483151762000c6b5762000c6a62000a4f565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000cb8601f8362000c72565b915062000cc58262000c82565b602082019050919050565b5f6020820190508181035f83015262000ce98162000caa565b9050919050565b5f62000cfc8262000821565b915062000d098362000821565b925082820190508082111562000d245762000d2362000a4f565b5b92915050565b62000d358162000821565b82525050565b5f60208201905062000d505f83018462000d2a565b92915050565b7f4275726e2066726f6d20746865207a65726f2061646472657373206973206e6f5f8201527f7420616c6c6f7765640000000000000000000000000000000000000000000000602082015250565b5f62000db260298362000c72565b915062000dbf8262000d56565b604082019050919050565b5f6020820190508181035f83015262000de38162000da4565b9050919050565b7f5472616e7366657220746f20746865207a65726f2061646472657373206973205f8201527f6e6f7420616c6c6f776564000000000000000000000000000000000000000000602082015250565b5f62000e46602b8362000c72565b915062000e538262000dea565b604082019050919050565b5f6020820190508181035f83015262000e778162000e38565b9050919050565b7f53656e64657220697320626c61636b6c697374656400000000000000000000005f82015250565b5f62000eb460158362000c72565b915062000ec18262000e7e565b602082019050919050565b5f6020820190508181035f83015262000ee58162000ea6565b9050919050565b7f526563697069656e7420697320626c61636b6c697374656400000000000000005f82015250565b5f62000f2260188362000c72565b915062000f2f8262000eec565b602082019050919050565b5f6020820190508181035f83015262000f538162000f14565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f62000f9060108362000c72565b915062000f9d8262000f5a565b602082019050919050565b5f6020820190508181035f83015262000fc18162000f82565b9050919050565b612ada8062000fd65f395ff3fe608060405234801561000f575f80fd5b50600436106101ee575f3560e01c80635c975abb1161010d578063a457c2d7116100a0578063ed7d506c1161006f578063ed7d506c146105bc578063f05ca187146105da578063f2fde38b146105f8578063f9f92be414610614576101ee565b8063a457c2d7146104fc578063a9059cbb1461052c578063b37370851461055c578063dd62ed3e1461058c576101ee565b80638456cb59116100dc5780638456cb5914610498578063862b092b146104a25780638da5cb5b146104c057806395d89b41146104de576101ee565b80635c975abb146104105780635dd871a31461042e57806370a082311461045e578063715018a61461048e576101ee565b8063395093511161018557806344337ea11161015457806344337ea11461038a57806347734892146103a65780634c0f38c2146103d6578063537df3b6146103f4576101ee565b806339509351146103185780633f4ba83a1461034857806340c10f191461035257806342966c681461036e576101ee565b806324f65ee7116101c157806324f65ee71461028e578063313ce567146102ac57806332cb6b0c146102ca578063335d3410146102e8576101ee565b806306fdde03146101f2578063095ea7b31461021057806318160ddd1461024057806323b872dd1461025e575b5f80fd5b6101fa610644565b6040516102079190611c7f565b60405180910390f35b61022a60048036038101906102259190611d30565b6106d4565b6040516102379190611d88565b60405180910390f35b6102486106f6565b6040516102559190611db0565b60405180910390f35b61027860048036038101906102739190611dc9565b6106ff565b6040516102859190611d88565b60405180910390f35b61029661072d565b6040516102a39190611e34565b60405180910390f35b6102b461073b565b6040516102c19190611e34565b60405180910390f35b6102d2610743565b6040516102df9190611db0565b60405180910390f35b61030260048036038101906102fd9190611e4d565b610752565b60405161030f9190611db0565b60405180910390f35b610332600480360381019061032d9190611d30565b610798565b60405161033f9190611d88565b60405180910390f35b6103506107ce565b005b61036c60048036038101906103679190611d30565b6107e0565b005b61038860048036038101906103839190611e78565b610856565b005b6103a4600480360381019061039f9190611e4d565b6108a5565b005b6103c060048036038101906103bb9190611e4d565b6109d2565b6040516103cd9190611db0565b60405180910390f35b6103de6109e3565b6040516103eb9190611db0565b60405180910390f35b61040e60048036038101906104099190611e4d565b6109f5565b005b610418610b20565b6040516104259190611d88565b60405180910390f35b61044860048036038101906104439190611e78565b610b35565b6040516104559190611d88565b60405180910390f35b61047860048036038101906104739190611e4d565b610b5e565b6040516104859190611db0565b60405180910390f35b610496610ba3565b005b6104a0610bb6565b005b6104aa610bc8565b6040516104b79190611c7f565b60405180910390f35b6104c8610bd7565b6040516104d59190611eb2565b60405180910390f35b6104e6610c00565b6040516104f39190611c7f565b60405180910390f35b61051660048036038101906105119190611d30565b610c90565b6040516105239190611d88565b60405180910390f35b61054660048036038101906105419190611d30565b610d05565b6040516105539190611d88565b60405180910390f35b61057660048036038101906105719190611e4d565b610d27565b6040516105839190611db0565b60405180910390f35b6105a660048036038101906105a19190611ecb565b610d3c565b6040516105b39190611db0565b60405180910390f35b6105c4610dbe565b6040516105d19190611db0565b60405180910390f35b6105e2610dc4565b6040516105ef9190611db0565b60405180910390f35b610612600480360381019061060d9190611e4d565b610dcd565b005b61062e60048036038101906106299190611e4d565b610e4f565b60405161063b9190611d88565b60405180910390f35b60606003805461065390611f36565b80601f016020809104026020016040519081016040528092919081815260200182805461067f90611f36565b80156106ca5780601f106106a1576101008083540402835291602001916106ca565b820191905f5260205f20905b8154815290600101906020018083116106ad57829003601f168201915b5050505050905090565b5f806106de610e6c565b90506106eb818585610e73565b600191505092915050565b5f600254905090565b5f80610709610e6c565b9050610716858285611036565b6107218585856110c1565b60019150509392505050565b5f61073661073b565b905090565b5f6012905090565b6ac685fa11e01ec6f000000081565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f806107a2610e6c565b90506107c38185856107b48589610d3c565b6107be9190611f93565b610e73565b600191505092915050565b6107d661132d565b6107de6113ab565b565b6107e861132d565b6ac685fa11e01ec6f0000000816107fd6106f6565b6108079190611f93565b1115610848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083f90612036565b60405180910390fd5b610852828261140c565b5050565b5f8111610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f906120c4565b60405180910390fd5b6108a2338261155a565b50565b6108ad61132d565b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e9061212c565b60405180910390fd5b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b85560405160405180910390a250565b5f6109dc82610b5e565b9050919050565b5f6ac685fa11e01ec6f0000000905090565b6109fd61132d565b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90612194565b60405180910390fd5b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f2b6bf71b58b3583add364b3d9060ebf8019650f65f5be35f5464b9cb3e4ba2d460405160405180910390a250565b5f60055f9054906101000a900460ff16905090565b5f6ac685fa11e01ec6f000000082610b4b6106f6565b610b559190611f93565b11159050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610bab61132d565b610bb45f61171d565b565b610bbe61132d565b610bc66117e2565b565b6060610bd2610644565b905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c0f90611f36565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3b90611f36565b8015610c865780601f10610c5d57610100808354040283529160200191610c86565b820191905f5260205f20905b815481529060010190602001808311610c6957829003601f168201915b5050505050905090565b5f80610c9a610e6c565b90505f610ca78286610d3c565b905083811015610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390612222565b60405180910390fd5b610cf98286868403610e73565b60019250505092915050565b5f80610d0f610e6c565b9050610d1c8185856110c1565b600191505092915050565b6008602052805f5260405f205f915090505481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60075481565b5f600754905090565b610dd561132d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a906122b0565b60405180910390fd5b610e4c8161171d565b50565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed89061233e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906123cc565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110299190611db0565b60405180910390a3505050565b5f6110418484610d3c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110bb57818110156110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a490612434565b60405180910390fd5b6110ba8484848403610e73565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361112f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611126906124c2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490612550565b60405180910390fd5b6111a8838383611844565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561122b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611222906125de565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113149190611db0565b60405180910390a3611327848484611a7a565b50505050565b611335610e6c565b73ffffffffffffffffffffffffffffffffffffffff16611353610bd7565b73ffffffffffffffffffffffffffffffffffffffff16146113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090612646565b60405180910390fd5b565b6113b3611b5d565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113f5610e6c565b6040516114029190611eb2565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611471906126ae565b60405180910390fd5b6114855f8383611844565b8060025f8282546114969190611f93565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115439190611db0565b60405180910390a36115565f8383611a7a565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf9061273c565b60405180910390fd5b6115d3825f83611844565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d906127ca565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117059190611db0565b60405180910390a3611718835f84611a7a565b505050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117ea611ba6565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861182d610e6c565b60405161183a9190611eb2565b60405180910390a1565b61184c611ba6565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f2575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490612858565b60405180910390fd5b611a75565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611957906128e6565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e19061294e565b60405180910390fd5b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b906129b6565b60405180910390fd5b5b505050565b611a85838383611bf0565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ad1578060075f828254611ac99190611f93565b925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b58578060085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611b509190611f93565b925050819055505b505050565b611b65610b20565b611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90612a1e565b60405180910390fd5b565b611bae610b20565b15611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be590612a86565b60405180910390fd5b565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c2c578082015181840152602081019050611c11565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c5182611bf5565b611c5b8185611bff565b9350611c6b818560208601611c0f565b611c7481611c37565b840191505092915050565b5f6020820190508181035f830152611c978184611c47565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ccc82611ca3565b9050919050565b611cdc81611cc2565b8114611ce6575f80fd5b50565b5f81359050611cf781611cd3565b92915050565b5f819050919050565b611d0f81611cfd565b8114611d19575f80fd5b50565b5f81359050611d2a81611d06565b92915050565b5f8060408385031215611d4657611d45611c9f565b5b5f611d5385828601611ce9565b9250506020611d6485828601611d1c565b9150509250929050565b5f8115159050919050565b611d8281611d6e565b82525050565b5f602082019050611d9b5f830184611d79565b92915050565b611daa81611cfd565b82525050565b5f602082019050611dc35f830184611da1565b92915050565b5f805f60608486031215611de057611ddf611c9f565b5b5f611ded86828701611ce9565b9350506020611dfe86828701611ce9565b9250506040611e0f86828701611d1c565b9150509250925092565b5f60ff82169050919050565b611e2e81611e19565b82525050565b5f602082019050611e475f830184611e25565b92915050565b5f60208284031215611e6257611e61611c9f565b5b5f611e6f84828501611ce9565b91505092915050565b5f60208284031215611e8d57611e8c611c9f565b5b5f611e9a84828501611d1c565b91505092915050565b611eac81611cc2565b82525050565b5f602082019050611ec55f830184611ea3565b92915050565b5f8060408385031215611ee157611ee0611c9f565b5b5f611eee85828601611ce9565b9250506020611eff85828601611ce9565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f4d57607f821691505b602082108103611f6057611f5f611f09565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f9d82611cfd565b9150611fa883611cfd565b9250828201905080821115611fc057611fbf611f66565b5b92915050565b7f4d696e74696e67206578636565647320746865206d6178696d756d20737570705f8201527f6c79000000000000000000000000000000000000000000000000000000000000602082015250565b5f612020602283611bff565b915061202b82611fc6565b604082019050919050565b5f6020820190508181035f83015261204d81612014565b9050919050565b7f4275726e20616d6f756e74206d7573742062652067726561746572207468616e5f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6120ae602583611bff565b91506120b982612054565b604082019050919050565b5f6020820190508181035f8301526120db816120a2565b9050919050565b7f4164647265737320697320616c726561647920626c61636b6c697374656400005f82015250565b5f612116601e83611bff565b9150612121826120e2565b602082019050919050565b5f6020820190508181035f8301526121438161210a565b9050919050565b7f41646472657373206973206e6f7420626c61636b6c69737465640000000000005f82015250565b5f61217e601a83611bff565b91506121898261214a565b602082019050919050565b5f6020820190508181035f8301526121ab81612172565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61220c602583611bff565b9150612217826121b2565b604082019050919050565b5f6020820190508181035f83015261223981612200565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61229a602683611bff565b91506122a582612240565b604082019050919050565b5f6020820190508181035f8301526122c78161228e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612328602483611bff565b9150612333826122ce565b604082019050919050565b5f6020820190508181035f8301526123558161231c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6123b6602283611bff565b91506123c18261235c565b604082019050919050565b5f6020820190508181035f8301526123e3816123aa565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61241e601d83611bff565b9150612429826123ea565b602082019050919050565b5f6020820190508181035f83015261244b81612412565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6124ac602583611bff565b91506124b782612452565b604082019050919050565b5f6020820190508181035f8301526124d9816124a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61253a602383611bff565b9150612545826124e0565b604082019050919050565b5f6020820190508181035f8301526125678161252e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6125c8602683611bff565b91506125d38261256e565b604082019050919050565b5f6020820190508181035f8301526125f5816125bc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612630602083611bff565b915061263b826125fc565b602082019050919050565b5f6020820190508181035f83015261265d81612624565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f612698601f83611bff565b91506126a382612664565b602082019050919050565b5f6020820190508181035f8301526126c58161268c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612726602183611bff565b9150612731826126cc565b604082019050919050565b5f6020820190508181035f8301526127538161271a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6127b4602283611bff565b91506127bf8261275a565b604082019050919050565b5f6020820190508181035f8301526127e1816127a8565b9050919050565b7f4275726e2066726f6d20746865207a65726f2061646472657373206973206e6f5f8201527f7420616c6c6f7765640000000000000000000000000000000000000000000000602082015250565b5f612842602983611bff565b915061284d826127e8565b604082019050919050565b5f6020820190508181035f83015261286f81612836565b9050919050565b7f5472616e7366657220746f20746865207a65726f2061646472657373206973205f8201527f6e6f7420616c6c6f776564000000000000000000000000000000000000000000602082015250565b5f6128d0602b83611bff565b91506128db82612876565b604082019050919050565b5f6020820190508181035f8301526128fd816128c4565b9050919050565b7f53656e64657220697320626c61636b6c697374656400000000000000000000005f82015250565b5f612938601583611bff565b915061294382612904565b602082019050919050565b5f6020820190508181035f8301526129658161292c565b9050919050565b7f526563697069656e7420697320626c61636b6c697374656400000000000000005f82015250565b5f6129a0601883611bff565b91506129ab8261296c565b602082019050919050565b5f6020820190508181035f8301526129cd81612994565b9050919050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f612a08601483611bff565b9150612a13826129d4565b602082019050919050565b5f6020820190508181035f830152612a35816129fc565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f612a70601083611bff565b9150612a7b82612a3c565b602082019050919050565b5f6020820190508181035f830152612a9d81612a64565b905091905056fea26469706673582212205468e6cacccc4bd14f49dd3534a6e7605c05debbc4c50deb1b2fb89a3eee224f64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101ee575f3560e01c80635c975abb1161010d578063a457c2d7116100a0578063ed7d506c1161006f578063ed7d506c146105bc578063f05ca187146105da578063f2fde38b146105f8578063f9f92be414610614576101ee565b8063a457c2d7146104fc578063a9059cbb1461052c578063b37370851461055c578063dd62ed3e1461058c576101ee565b80638456cb59116100dc5780638456cb5914610498578063862b092b146104a25780638da5cb5b146104c057806395d89b41146104de576101ee565b80635c975abb146104105780635dd871a31461042e57806370a082311461045e578063715018a61461048e576101ee565b8063395093511161018557806344337ea11161015457806344337ea11461038a57806347734892146103a65780634c0f38c2146103d6578063537df3b6146103f4576101ee565b806339509351146103185780633f4ba83a1461034857806340c10f191461035257806342966c681461036e576101ee565b806324f65ee7116101c157806324f65ee71461028e578063313ce567146102ac57806332cb6b0c146102ca578063335d3410146102e8576101ee565b806306fdde03146101f2578063095ea7b31461021057806318160ddd1461024057806323b872dd1461025e575b5f80fd5b6101fa610644565b6040516102079190611c7f565b60405180910390f35b61022a60048036038101906102259190611d30565b6106d4565b6040516102379190611d88565b60405180910390f35b6102486106f6565b6040516102559190611db0565b60405180910390f35b61027860048036038101906102739190611dc9565b6106ff565b6040516102859190611d88565b60405180910390f35b61029661072d565b6040516102a39190611e34565b60405180910390f35b6102b461073b565b6040516102c19190611e34565b60405180910390f35b6102d2610743565b6040516102df9190611db0565b60405180910390f35b61030260048036038101906102fd9190611e4d565b610752565b60405161030f9190611db0565b60405180910390f35b610332600480360381019061032d9190611d30565b610798565b60405161033f9190611d88565b60405180910390f35b6103506107ce565b005b61036c60048036038101906103679190611d30565b6107e0565b005b61038860048036038101906103839190611e78565b610856565b005b6103a4600480360381019061039f9190611e4d565b6108a5565b005b6103c060048036038101906103bb9190611e4d565b6109d2565b6040516103cd9190611db0565b60405180910390f35b6103de6109e3565b6040516103eb9190611db0565b60405180910390f35b61040e60048036038101906104099190611e4d565b6109f5565b005b610418610b20565b6040516104259190611d88565b60405180910390f35b61044860048036038101906104439190611e78565b610b35565b6040516104559190611d88565b60405180910390f35b61047860048036038101906104739190611e4d565b610b5e565b6040516104859190611db0565b60405180910390f35b610496610ba3565b005b6104a0610bb6565b005b6104aa610bc8565b6040516104b79190611c7f565b60405180910390f35b6104c8610bd7565b6040516104d59190611eb2565b60405180910390f35b6104e6610c00565b6040516104f39190611c7f565b60405180910390f35b61051660048036038101906105119190611d30565b610c90565b6040516105239190611d88565b60405180910390f35b61054660048036038101906105419190611d30565b610d05565b6040516105539190611d88565b60405180910390f35b61057660048036038101906105719190611e4d565b610d27565b6040516105839190611db0565b60405180910390f35b6105a660048036038101906105a19190611ecb565b610d3c565b6040516105b39190611db0565b60405180910390f35b6105c4610dbe565b6040516105d19190611db0565b60405180910390f35b6105e2610dc4565b6040516105ef9190611db0565b60405180910390f35b610612600480360381019061060d9190611e4d565b610dcd565b005b61062e60048036038101906106299190611e4d565b610e4f565b60405161063b9190611d88565b60405180910390f35b60606003805461065390611f36565b80601f016020809104026020016040519081016040528092919081815260200182805461067f90611f36565b80156106ca5780601f106106a1576101008083540402835291602001916106ca565b820191905f5260205f20905b8154815290600101906020018083116106ad57829003601f168201915b5050505050905090565b5f806106de610e6c565b90506106eb818585610e73565b600191505092915050565b5f600254905090565b5f80610709610e6c565b9050610716858285611036565b6107218585856110c1565b60019150509392505050565b5f61073661073b565b905090565b5f6012905090565b6ac685fa11e01ec6f000000081565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f806107a2610e6c565b90506107c38185856107b48589610d3c565b6107be9190611f93565b610e73565b600191505092915050565b6107d661132d565b6107de6113ab565b565b6107e861132d565b6ac685fa11e01ec6f0000000816107fd6106f6565b6108079190611f93565b1115610848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083f90612036565b60405180910390fd5b610852828261140c565b5050565b5f8111610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f906120c4565b60405180910390fd5b6108a2338261155a565b50565b6108ad61132d565b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e9061212c565b60405180910390fd5b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b85560405160405180910390a250565b5f6109dc82610b5e565b9050919050565b5f6ac685fa11e01ec6f0000000905090565b6109fd61132d565b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90612194565b60405180910390fd5b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f2b6bf71b58b3583add364b3d9060ebf8019650f65f5be35f5464b9cb3e4ba2d460405160405180910390a250565b5f60055f9054906101000a900460ff16905090565b5f6ac685fa11e01ec6f000000082610b4b6106f6565b610b559190611f93565b11159050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610bab61132d565b610bb45f61171d565b565b610bbe61132d565b610bc66117e2565b565b6060610bd2610644565b905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c0f90611f36565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3b90611f36565b8015610c865780601f10610c5d57610100808354040283529160200191610c86565b820191905f5260205f20905b815481529060010190602001808311610c6957829003601f168201915b5050505050905090565b5f80610c9a610e6c565b90505f610ca78286610d3c565b905083811015610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390612222565b60405180910390fd5b610cf98286868403610e73565b60019250505092915050565b5f80610d0f610e6c565b9050610d1c8185856110c1565b600191505092915050565b6008602052805f5260405f205f915090505481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60075481565b5f600754905090565b610dd561132d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a906122b0565b60405180910390fd5b610e4c8161171d565b50565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed89061233e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906123cc565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110299190611db0565b60405180910390a3505050565b5f6110418484610d3c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110bb57818110156110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a490612434565b60405180910390fd5b6110ba8484848403610e73565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361112f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611126906124c2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490612550565b60405180910390fd5b6111a8838383611844565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561122b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611222906125de565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113149190611db0565b60405180910390a3611327848484611a7a565b50505050565b611335610e6c565b73ffffffffffffffffffffffffffffffffffffffff16611353610bd7565b73ffffffffffffffffffffffffffffffffffffffff16146113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090612646565b60405180910390fd5b565b6113b3611b5d565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113f5610e6c565b6040516114029190611eb2565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611471906126ae565b60405180910390fd5b6114855f8383611844565b8060025f8282546114969190611f93565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115439190611db0565b60405180910390a36115565f8383611a7a565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf9061273c565b60405180910390fd5b6115d3825f83611844565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d906127ca565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117059190611db0565b60405180910390a3611718835f84611a7a565b505050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117ea611ba6565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861182d610e6c565b60405161183a9190611eb2565b60405180910390a1565b61184c611ba6565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f2575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490612858565b60405180910390fd5b611a75565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611957906128e6565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e19061294e565b60405180910390fd5b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b906129b6565b60405180910390fd5b5b505050565b611a85838383611bf0565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ad1578060075f828254611ac99190611f93565b925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b58578060085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611b509190611f93565b925050819055505b505050565b611b65610b20565b611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90612a1e565b60405180910390fd5b565b611bae610b20565b15611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be590612a86565b60405180910390fd5b565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c2c578082015181840152602081019050611c11565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c5182611bf5565b611c5b8185611bff565b9350611c6b818560208601611c0f565b611c7481611c37565b840191505092915050565b5f6020820190508181035f830152611c978184611c47565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ccc82611ca3565b9050919050565b611cdc81611cc2565b8114611ce6575f80fd5b50565b5f81359050611cf781611cd3565b92915050565b5f819050919050565b611d0f81611cfd565b8114611d19575f80fd5b50565b5f81359050611d2a81611d06565b92915050565b5f8060408385031215611d4657611d45611c9f565b5b5f611d5385828601611ce9565b9250506020611d6485828601611d1c565b9150509250929050565b5f8115159050919050565b611d8281611d6e565b82525050565b5f602082019050611d9b5f830184611d79565b92915050565b611daa81611cfd565b82525050565b5f602082019050611dc35f830184611da1565b92915050565b5f805f60608486031215611de057611ddf611c9f565b5b5f611ded86828701611ce9565b9350506020611dfe86828701611ce9565b9250506040611e0f86828701611d1c565b9150509250925092565b5f60ff82169050919050565b611e2e81611e19565b82525050565b5f602082019050611e475f830184611e25565b92915050565b5f60208284031215611e6257611e61611c9f565b5b5f611e6f84828501611ce9565b91505092915050565b5f60208284031215611e8d57611e8c611c9f565b5b5f611e9a84828501611d1c565b91505092915050565b611eac81611cc2565b82525050565b5f602082019050611ec55f830184611ea3565b92915050565b5f8060408385031215611ee157611ee0611c9f565b5b5f611eee85828601611ce9565b9250506020611eff85828601611ce9565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f4d57607f821691505b602082108103611f6057611f5f611f09565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f9d82611cfd565b9150611fa883611cfd565b9250828201905080821115611fc057611fbf611f66565b5b92915050565b7f4d696e74696e67206578636565647320746865206d6178696d756d20737570705f8201527f6c79000000000000000000000000000000000000000000000000000000000000602082015250565b5f612020602283611bff565b915061202b82611fc6565b604082019050919050565b5f6020820190508181035f83015261204d81612014565b9050919050565b7f4275726e20616d6f756e74206d7573742062652067726561746572207468616e5f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6120ae602583611bff565b91506120b982612054565b604082019050919050565b5f6020820190508181035f8301526120db816120a2565b9050919050565b7f4164647265737320697320616c726561647920626c61636b6c697374656400005f82015250565b5f612116601e83611bff565b9150612121826120e2565b602082019050919050565b5f6020820190508181035f8301526121438161210a565b9050919050565b7f41646472657373206973206e6f7420626c61636b6c69737465640000000000005f82015250565b5f61217e601a83611bff565b91506121898261214a565b602082019050919050565b5f6020820190508181035f8301526121ab81612172565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61220c602583611bff565b9150612217826121b2565b604082019050919050565b5f6020820190508181035f83015261223981612200565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61229a602683611bff565b91506122a582612240565b604082019050919050565b5f6020820190508181035f8301526122c78161228e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612328602483611bff565b9150612333826122ce565b604082019050919050565b5f6020820190508181035f8301526123558161231c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6123b6602283611bff565b91506123c18261235c565b604082019050919050565b5f6020820190508181035f8301526123e3816123aa565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61241e601d83611bff565b9150612429826123ea565b602082019050919050565b5f6020820190508181035f83015261244b81612412565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6124ac602583611bff565b91506124b782612452565b604082019050919050565b5f6020820190508181035f8301526124d9816124a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61253a602383611bff565b9150612545826124e0565b604082019050919050565b5f6020820190508181035f8301526125678161252e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6125c8602683611bff565b91506125d38261256e565b604082019050919050565b5f6020820190508181035f8301526125f5816125bc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612630602083611bff565b915061263b826125fc565b602082019050919050565b5f6020820190508181035f83015261265d81612624565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f612698601f83611bff565b91506126a382612664565b602082019050919050565b5f6020820190508181035f8301526126c58161268c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612726602183611bff565b9150612731826126cc565b604082019050919050565b5f6020820190508181035f8301526127538161271a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6127b4602283611bff565b91506127bf8261275a565b604082019050919050565b5f6020820190508181035f8301526127e1816127a8565b9050919050565b7f4275726e2066726f6d20746865207a65726f2061646472657373206973206e6f5f8201527f7420616c6c6f7765640000000000000000000000000000000000000000000000602082015250565b5f612842602983611bff565b915061284d826127e8565b604082019050919050565b5f6020820190508181035f83015261286f81612836565b9050919050565b7f5472616e7366657220746f20746865207a65726f2061646472657373206973205f8201527f6e6f7420616c6c6f776564000000000000000000000000000000000000000000602082015250565b5f6128d0602b83611bff565b91506128db82612876565b604082019050919050565b5f6020820190508181035f8301526128fd816128c4565b9050919050565b7f53656e64657220697320626c61636b6c697374656400000000000000000000005f82015250565b5f612938601583611bff565b915061294382612904565b602082019050919050565b5f6020820190508181035f8301526129658161292c565b9050919050565b7f526563697069656e7420697320626c61636b6c697374656400000000000000005f82015250565b5f6129a0601883611bff565b91506129ab8261296c565b602082019050919050565b5f6020820190508181035f8301526129cd81612994565b9050919050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f612a08601483611bff565b9150612a13826129d4565b602082019050919050565b5f6020820190508181035f830152612a35816129fc565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f612a70601083611bff565b9150612a7b82612a3c565b602082019050919050565b5f6020820190508181035f830152612a9d81612a64565b905091905056fea26469706673582212205468e6cacccc4bd14f49dd3534a6e7605c05debbc4c50deb1b2fb89a3eee224f64736f6c63430008140033

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.