ETH Price: $3,565.96 (-1.27%)

Token

ERC-20: Pizza Token (PZA)
 

Overview

Max Total Supply

264,124 PZA

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
28,600 PZA

Value
$0.00
0x65a463d6c9974360b1885e56a8faf3c478f6a0fd
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Pizzas

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 10 : pizzaToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract Pizzas is ERC20, ERC20Burnable, ReentrancyGuard, Ownable {
    using ECDSA for bytes32;

    event WithdrawPZA(address indexed userAddress, uint256 amount);
    event DepositPZA(address indexed userAddress, uint256 amount);

    bool public withdrawActive = true;
    bool public depositActive = true;

    mapping(uint256 => bool) public usedNonces;
    mapping(address => bool) controllers;

    address public signerAddress;

    constructor() ERC20("Pizza Token", "PZA") {}

    function decimals() public pure override returns (uint8) {
        return 0;
    }

    function withdraw(
        uint256 amount,
        uint256 nonce,
        uint256 blockHeight,
        bytes memory signature
    ) external nonReentrant {
        require(withdrawActive, "Withdraw is not active");
        require(!usedNonces[nonce], "Used nonce");
        require(blockHeight > block.number, "Expired signature");

        usedNonces[nonce] = true;
        bytes32 inputHash = keccak256(
            abi.encodePacked(msg.sender, amount, nonce, blockHeight)
        );
        bytes32 ethSignedMessageHash = inputHash.toEthSignedMessageHash();
        address recoveredAddress = ethSignedMessageHash.recover(signature);

        require(recoveredAddress == signerAddress, "Wrong signature");

        _mint(msg.sender, amount);
        emit WithdrawPZA(msg.sender, amount);
    }

    function deposit(uint256 amount) external nonReentrant {
        require(depositActive, "Deposit is not active");
        _burn(msg.sender, amount);
        emit DepositPZA(msg.sender, amount);
    }

    function burnFrom(address account, uint256 amount) public override {
        if (controllers[msg.sender]) {
            _burn(account, amount);
        } else {
            super.burnFrom(account, amount);
        }
    }

    function addController(address controller) external onlyOwner {
        controllers[controller] = true;
    }

    function removeController(address controller) external onlyOwner {
        controllers[controller] = false;
    }

    function setSignerAddress(address newAddress) external onlyOwner {
        signerAddress = newAddress;
    }

    function toggleWithdraw() external onlyOwner {
        withdrawActive = !withdrawActive;
    }

    function toggleDeposit() external onlyOwner {
        depositActive = !depositActive;
    }
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 3 of 10 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

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

File 5 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 10 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

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

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

File 7 of 10 : 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 8 of 10 : 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 9 of 10 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 10 of 10 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "details": {
      "constantOptimizer": true,
      "cse": true,
      "deduplicate": true,
      "inliner": true,
      "jumpdestRemover": true,
      "orderLiterals": true,
      "peephole": true,
      "yul": false
    },
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositPZA","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawPZA","type":"event"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"addController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedNonces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"blockHeight","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526006805461ffff60a01b191661010160a01b1790553480156200002657600080fd5b506040518060400160405280600b81526020016a2834bd3d30902a37b5b2b760a91b81525060405180604001604052806003815260200162505a4160e81b81525081600390805190602001906200007f92919062000100565b5080516200009590600490602084019062000100565b5050600160055550620000a833620000ae565b620001ed565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010e90620001bc565b90600052602060002090601f0160209004810192826200013257600085556200017d565b82601f106200014d57805160ff19168380011785556200017d565b828001600101855582156200017d579182015b828111156200017d57825182559160200191906001019062000160565b506200018b9291506200018f565b5090565b5b808211156200018b576000815560010162000190565b634e487b7160e01b600052602260045260246000fd5b600281046001821680620001d157607f821691505b60208210811415620001e757620001e7620001a6565b50919050565b611c3680620001fd6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80638da5cb5b116100f9578063b79a42eb11610097578063f282671d11610071578063f282671d146103af578063f2fde38b146103b7578063f6a74ed7146103ca578063fe55892d146103dd57600080fd5b8063b79a42eb1461034e578063da12f4ac14610362578063dd62ed3e1461037657600080fd5b8063a457c2d7116100d3578063a457c2d714610302578063a7fc7a0714610315578063a9059cbb14610328578063b6b55f251461033b57600080fd5b80638da5cb5b146102e1578063921eeb4b146102f257806395d89b41146102fa57600080fd5b806339509351116101665780636717e41c116101405780636717e41c1461027a57806370a082311461029d578063715018a6146102c657806379cc6790146102ce57600080fd5b8063395093511461023457806342966c68146102475780635b7633d01461025a57600080fd5b8063046dc166146101ae57806306fdde03146101c3578063095ea7b3146101e157806318160ddd1461020157806323b872dd14610212578063313ce56714610225575b600080fd5b6101c16101bc3660046110f3565b6103f0565b005b6101cb610445565b6040516101d8919061117a565b60405180910390f35b6101f46101ef3660046111a3565b6104d7565b6040516101d891906111ea565b6002545b6040516101d891906111fe565b6101f461022036600461120c565b6104f1565b60006040516101d89190611265565b6101f46102423660046111a3565b610515565b6101c1610255366004611273565b610554565b60095461026d906001600160a01b031681565b6040516101d8919061129d565b6101f4610288366004611273565b60076020526000908152604090205460ff1681565b6102056102ab3660046110f3565b6001600160a01b031660009081526020819052604090205490565b6101c1610561565b6101c16102dc3660046111a3565b610597565b6006546001600160a01b031661026d565b6101c16105c7565b6101cb610612565b6101f46103103660046111a3565b610621565b6101c16103233660046110f3565b610675565b6101f46103363660046111a3565b6106c3565b6101c1610349366004611273565b6106d1565b6006546101f490600160a01b900460ff1681565b6006546101f490600160a81b900460ff1681565b6102056103843660046112ab565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101c1610775565b6101c16103c53660046110f3565b6107c0565b6101c16103d83660046110f3565b610819565b6101c16103eb3660046113d1565b610864565b6006546001600160a01b031633146104235760405162461bcd60e51b815260040161041a90611485565b60405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610454906114ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610480906114ab565b80156104cd5780601f106104a2576101008083540402835291602001916104cd565b820191906000526020600020905b8154815290600101906020018083116104b057829003601f168201915b5050505050905090565b6000336104e58185856109ec565b60019150505b92915050565b6000336104ff858285610aa0565b61050a858585610b02565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906104e5908290869061054f9087906114ee565b6109ec565b61055e3382610c15565b50565b6006546001600160a01b0316331461058b5760405162461bcd60e51b815260040161041a90611485565b6105956000610ce6565b565b3360009081526008602052604090205460ff16156105bd576105b98282610c15565b5050565b6105b98282610d38565b6006546001600160a01b031633146105f15760405162461bcd60e51b815260040161041a90611485565b6006805460ff60a81b198116600160a81b9182900460ff1615909102179055565b606060048054610454906114ab565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156106685760405162461bcd60e51b815260040161041a9061154b565b61050a82868684036109ec565b6006546001600160a01b0316331461069f5760405162461bcd60e51b815260040161041a90611485565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000336104e5818585610b02565b600260055414156106f45760405162461bcd60e51b815260040161041a9061158f565b6002600555600654600160a81b900460ff166107225760405162461bcd60e51b815260040161041a906115cb565b61072c3382610c15565b336001600160a01b03167f16bf6367d62ba58712e130f777a87b617b52fa63b82641daef237ccb69a6d9538260405161076591906111fe565b60405180910390a2506001600555565b6006546001600160a01b0316331461079f5760405162461bcd60e51b815260040161041a90611485565b6006805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6006546001600160a01b031633146107ea5760405162461bcd60e51b815260040161041a90611485565b6001600160a01b0381166108105760405162461bcd60e51b815260040161041a9061161e565b61055e81610ce6565b6006546001600160a01b031633146108435760405162461bcd60e51b815260040161041a90611485565b6001600160a01b03166000908152600860205260409020805460ff19169055565b600260055414156108875760405162461bcd60e51b815260040161041a9061158f565b6002600555600654600160a01b900460ff166108b55760405162461bcd60e51b815260040161041a9061165b565b60008381526007602052604090205460ff16156108e45760405162461bcd60e51b815260040161041a9061168c565b4382116109035760405162461bcd60e51b815260040161041a906116c4565b6000838152600760209081526040808320805460ff1916600117905551610932913391889188918891016116fc565b604051602081830303815290604052805190602001209050600061095582610d4d565b905060006109638285610d7d565b6009549091506001600160a01b038083169116146109935760405162461bcd60e51b815260040161041a9061176a565b61099d3388610da1565b336001600160a01b03167fd1d23615aecdb0528b47dd2dae951b1fcac3996e06a3df3baefae518e89862c6886040516109d691906111fe565b60405180910390a2505060016005555050505050565b6001600160a01b038316610a125760405162461bcd60e51b815260040161041a906117bb565b6001600160a01b038216610a385760405162461bcd60e51b815260040161041a9061180a565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610a939085906111fe565b60405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610afc5781811015610aef5760405162461bcd60e51b815260040161041a9061184e565b610afc84848484036109ec565b50505050565b6001600160a01b038316610b285760405162461bcd60e51b815260040161041a906118a0565b6001600160a01b038216610b4e5760405162461bcd60e51b815260040161041a906118f0565b6001600160a01b03831660009081526020819052604090205481811015610b875760405162461bcd60e51b815260040161041a90611943565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610bbe9084906114ee565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0891906111fe565b60405180910390a3610afc565b6001600160a01b038216610c3b5760405162461bcd60e51b815260040161041a90611991565b6001600160a01b03821660009081526020819052604090205481811015610c745760405162461bcd60e51b815260040161041a906119e0565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610ca39084906119f0565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a939086906111fe565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d43823383610aa0565b6105b98282610c15565b600081604051602001610d609190611a07565b604051602081830303815290604052805190602001209050919050565b6000806000610d8c8585610e55565b91509150610d9981610ec5565b509392505050565b6001600160a01b038216610dc75760405162461bcd60e51b815260040161041a90611a76565b8060026000828254610dd991906114ee565b90915550506001600160a01b03821660009081526020819052604081208054839290610e069084906114ee565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e499085906111fe565b60405180910390a35050565b600080825160411415610e8c5760208301516040840151606085015160001a610e8087828585610faa565b94509450505050610ebe565b825160401415610eb65760208301516040840151610eab86838361108a565b935093505050610ebe565b506000905060025b9250929050565b6000816004811115610ed957610ed9611a86565b1415610ee25750565b6001816004811115610ef657610ef6611a86565b1415610f145760405162461bcd60e51b815260040161041a90611ad0565b6002816004811115610f2857610f28611a86565b1415610f465760405162461bcd60e51b815260040161041a90611b14565b6003816004811115610f5a57610f5a611a86565b1415610f785760405162461bcd60e51b815260040161041a90611b63565b6004816004811115610f8c57610f8c611a86565b141561055e5760405162461bcd60e51b815260040161041a90611bb2565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610fe15750600090506003611081565b8460ff16601b14158015610ff957508460ff16601c14155b1561100a5750600090506004611081565b60006001878787876040516000815260200160405260405161102f9493929190611bc2565b6020604051602081039080840390855afa158015611051573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661107a57600060019250925050611081565b9150600090505b94509492505050565b6000806001600160ff1b038316816110a760ff86901c601b6114ee565b90506110b587828885610faa565b935093505050935093915050565b60006001600160a01b0382166104eb565b6110dd816110c3565b811461055e57600080fd5b80356104eb816110d4565b60006020828403121561110857611108600080fd5b600061111484846110e8565b949350505050565b60005b8381101561113757818101518382015260200161111f565b83811115610afc5750506000910152565b6000611152825190565b80845260208401935061116981856020860161111c565b601f01601f19169290920192915050565b6020808252810161118b8184611148565b9392505050565b806110dd565b80356104eb81611192565b600080604083850312156111b9576111b9600080fd5b60006111c585856110e8565b92505060206111d685828601611198565b9150509250929050565b8015155b82525050565b602081016104eb82846111e0565b806111e4565b602081016104eb82846111f8565b60008060006060848603121561122457611224600080fd5b600061123086866110e8565b9350506020611241868287016110e8565b925050604061125286828701611198565b9150509250925092565b60ff81166111e4565b602081016104eb828461125c565b60006020828403121561128857611288600080fd5b60006111148484611198565b6111e4816110c3565b602081016104eb8284611294565b600080604083850312156112c1576112c1600080fd5b60006112cd85856110e8565b92505060206111d6858286016110e8565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff8211171561131a5761131a6112de565b6040525050565b600061132c60405190565b905061133882826112f4565b919050565b600067ffffffffffffffff821115611357576113576112de565b601f19601f83011660200192915050565b82818337506000910152565b60006113876113828461133d565b611321565b9050828152602081018484840111156113a2576113a2600080fd5b610d99848285611368565b600082601f8301126113c1576113c1600080fd5b8135611114848260208601611374565b600080600080608085870312156113ea576113ea600080fd5b60006113f68787611198565b945050602061140787828801611198565b935050604061141887828801611198565b925050606085013567ffffffffffffffff81111561143857611438600080fd5b611444878288016113ad565b91505092959194509250565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572910190815260005b5060200190565b602080825281016104eb81611450565b634e487b7160e01b600052602260045260246000fd5b6002810460018216806114bf57607f821691505b602082108114156114d2576114d2611495565b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611501576115016114d8565b500190565b602581526000602082017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77815264207a65726f60d81b602082015291505b5060400190565b602080825281016104eb81611506565b601f81526000602082017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c008152915061147e565b602080825281016104eb8161155b565b60158152600060208201744465706f736974206973206e6f742061637469766560581b8152915061147e565b602080825281016104eb8161159f565b602681526000602082017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b60208201529150611544565b602080825281016104eb816115db565b60168152600060208201755769746864726177206973206e6f742061637469766560501b8152915061147e565b602080825281016104eb8161162e565b600a81526000602082016955736564206e6f6e636560b01b8152915061147e565b602080825281016104eb8161166b565b601181526000602082017045787069726564207369676e617475726560781b8152915061147e565b602080825281016104eb8161169c565b60006104eb8260601b90565b60006104eb826116d4565b6111e46116f7826110c3565b6116e0565b600061170882876116eb565b60148201915061171882866111f8565b60208201915061172882856111f8565b60208201915061173882846111f8565b50602001949350505050565b600f81526000602082016e57726f6e67207369676e617475726560881b8152915061147e565b602080825281016104eb81611744565b602481526000602082017f45524332303a20617070726f76652066726f6d20746865207a65726f206164648152637265737360e01b60208201529150611544565b602080825281016104eb8161177a565b602281526000602082017f45524332303a20617070726f766520746f20746865207a65726f206164647265815261737360f01b60208201529150611544565b602080825281016104eb816117cb565b601d81526000602082017f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000008152915061147e565b602080825281016104eb8161181a565b602581526000602082017f45524332303a207472616e736665722066726f6d20746865207a65726f206164815264647265737360d81b60208201529150611544565b602080825281016104eb8161185e565b602381526000602082017f45524332303a207472616e7366657220746f20746865207a65726f206164647281526265737360e81b60208201529150611544565b602080825281016104eb816118b0565b602681526000602082017f45524332303a207472616e7366657220616d6f756e7420657863656564732062815265616c616e636560d01b60208201529150611544565b602080825281016104eb81611900565b602181526000602082017f45524332303a206275726e2066726f6d20746865207a65726f206164647265738152607360f81b60208201529150611544565b602080825281016104eb81611953565b602281526000602082017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e815261636560f01b60208201529150611544565b602080825281016104eb816119a1565b600082821015611a0257611a026114d8565b500390565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c016000611a3982846111f8565b50602001919050565b601f81526000602082017f45524332303a206d696e7420746f20746865207a65726f2061646472657373008152915061147e565b602080825281016104eb81611a42565b634e487b7160e01b600052602160045260246000fd5b601881526000602082017f45434453413a20696e76616c6964207369676e617475726500000000000000008152915061147e565b602080825281016104eb81611a9c565b601f81526000602082017f45434453413a20696e76616c6964207369676e6174757265206c656e677468008152915061147e565b602080825281016104eb81611ae0565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202773272076616c815261756560f01b60208201529150611544565b602080825281016104eb81611b24565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202776272076616c815261756560f01b60208201529150611544565b602080825281016104eb81611b73565b60808101611bd082876111f8565b611bdd602083018661125c565b611bea60408301856111f8565b611bf760608301846111f8565b9594505050505056fea264697066735822122024811418df2a9c57bd7909ef9ba2161903278058a5b897e4177f18624c32387b64736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80638da5cb5b116100f9578063b79a42eb11610097578063f282671d11610071578063f282671d146103af578063f2fde38b146103b7578063f6a74ed7146103ca578063fe55892d146103dd57600080fd5b8063b79a42eb1461034e578063da12f4ac14610362578063dd62ed3e1461037657600080fd5b8063a457c2d7116100d3578063a457c2d714610302578063a7fc7a0714610315578063a9059cbb14610328578063b6b55f251461033b57600080fd5b80638da5cb5b146102e1578063921eeb4b146102f257806395d89b41146102fa57600080fd5b806339509351116101665780636717e41c116101405780636717e41c1461027a57806370a082311461029d578063715018a6146102c657806379cc6790146102ce57600080fd5b8063395093511461023457806342966c68146102475780635b7633d01461025a57600080fd5b8063046dc166146101ae57806306fdde03146101c3578063095ea7b3146101e157806318160ddd1461020157806323b872dd14610212578063313ce56714610225575b600080fd5b6101c16101bc3660046110f3565b6103f0565b005b6101cb610445565b6040516101d8919061117a565b60405180910390f35b6101f46101ef3660046111a3565b6104d7565b6040516101d891906111ea565b6002545b6040516101d891906111fe565b6101f461022036600461120c565b6104f1565b60006040516101d89190611265565b6101f46102423660046111a3565b610515565b6101c1610255366004611273565b610554565b60095461026d906001600160a01b031681565b6040516101d8919061129d565b6101f4610288366004611273565b60076020526000908152604090205460ff1681565b6102056102ab3660046110f3565b6001600160a01b031660009081526020819052604090205490565b6101c1610561565b6101c16102dc3660046111a3565b610597565b6006546001600160a01b031661026d565b6101c16105c7565b6101cb610612565b6101f46103103660046111a3565b610621565b6101c16103233660046110f3565b610675565b6101f46103363660046111a3565b6106c3565b6101c1610349366004611273565b6106d1565b6006546101f490600160a01b900460ff1681565b6006546101f490600160a81b900460ff1681565b6102056103843660046112ab565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101c1610775565b6101c16103c53660046110f3565b6107c0565b6101c16103d83660046110f3565b610819565b6101c16103eb3660046113d1565b610864565b6006546001600160a01b031633146104235760405162461bcd60e51b815260040161041a90611485565b60405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610454906114ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610480906114ab565b80156104cd5780601f106104a2576101008083540402835291602001916104cd565b820191906000526020600020905b8154815290600101906020018083116104b057829003601f168201915b5050505050905090565b6000336104e58185856109ec565b60019150505b92915050565b6000336104ff858285610aa0565b61050a858585610b02565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906104e5908290869061054f9087906114ee565b6109ec565b61055e3382610c15565b50565b6006546001600160a01b0316331461058b5760405162461bcd60e51b815260040161041a90611485565b6105956000610ce6565b565b3360009081526008602052604090205460ff16156105bd576105b98282610c15565b5050565b6105b98282610d38565b6006546001600160a01b031633146105f15760405162461bcd60e51b815260040161041a90611485565b6006805460ff60a81b198116600160a81b9182900460ff1615909102179055565b606060048054610454906114ab565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156106685760405162461bcd60e51b815260040161041a9061154b565b61050a82868684036109ec565b6006546001600160a01b0316331461069f5760405162461bcd60e51b815260040161041a90611485565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000336104e5818585610b02565b600260055414156106f45760405162461bcd60e51b815260040161041a9061158f565b6002600555600654600160a81b900460ff166107225760405162461bcd60e51b815260040161041a906115cb565b61072c3382610c15565b336001600160a01b03167f16bf6367d62ba58712e130f777a87b617b52fa63b82641daef237ccb69a6d9538260405161076591906111fe565b60405180910390a2506001600555565b6006546001600160a01b0316331461079f5760405162461bcd60e51b815260040161041a90611485565b6006805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6006546001600160a01b031633146107ea5760405162461bcd60e51b815260040161041a90611485565b6001600160a01b0381166108105760405162461bcd60e51b815260040161041a9061161e565b61055e81610ce6565b6006546001600160a01b031633146108435760405162461bcd60e51b815260040161041a90611485565b6001600160a01b03166000908152600860205260409020805460ff19169055565b600260055414156108875760405162461bcd60e51b815260040161041a9061158f565b6002600555600654600160a01b900460ff166108b55760405162461bcd60e51b815260040161041a9061165b565b60008381526007602052604090205460ff16156108e45760405162461bcd60e51b815260040161041a9061168c565b4382116109035760405162461bcd60e51b815260040161041a906116c4565b6000838152600760209081526040808320805460ff1916600117905551610932913391889188918891016116fc565b604051602081830303815290604052805190602001209050600061095582610d4d565b905060006109638285610d7d565b6009549091506001600160a01b038083169116146109935760405162461bcd60e51b815260040161041a9061176a565b61099d3388610da1565b336001600160a01b03167fd1d23615aecdb0528b47dd2dae951b1fcac3996e06a3df3baefae518e89862c6886040516109d691906111fe565b60405180910390a2505060016005555050505050565b6001600160a01b038316610a125760405162461bcd60e51b815260040161041a906117bb565b6001600160a01b038216610a385760405162461bcd60e51b815260040161041a9061180a565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610a939085906111fe565b60405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610afc5781811015610aef5760405162461bcd60e51b815260040161041a9061184e565b610afc84848484036109ec565b50505050565b6001600160a01b038316610b285760405162461bcd60e51b815260040161041a906118a0565b6001600160a01b038216610b4e5760405162461bcd60e51b815260040161041a906118f0565b6001600160a01b03831660009081526020819052604090205481811015610b875760405162461bcd60e51b815260040161041a90611943565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610bbe9084906114ee565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0891906111fe565b60405180910390a3610afc565b6001600160a01b038216610c3b5760405162461bcd60e51b815260040161041a90611991565b6001600160a01b03821660009081526020819052604090205481811015610c745760405162461bcd60e51b815260040161041a906119e0565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610ca39084906119f0565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a939086906111fe565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d43823383610aa0565b6105b98282610c15565b600081604051602001610d609190611a07565b604051602081830303815290604052805190602001209050919050565b6000806000610d8c8585610e55565b91509150610d9981610ec5565b509392505050565b6001600160a01b038216610dc75760405162461bcd60e51b815260040161041a90611a76565b8060026000828254610dd991906114ee565b90915550506001600160a01b03821660009081526020819052604081208054839290610e069084906114ee565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e499085906111fe565b60405180910390a35050565b600080825160411415610e8c5760208301516040840151606085015160001a610e8087828585610faa565b94509450505050610ebe565b825160401415610eb65760208301516040840151610eab86838361108a565b935093505050610ebe565b506000905060025b9250929050565b6000816004811115610ed957610ed9611a86565b1415610ee25750565b6001816004811115610ef657610ef6611a86565b1415610f145760405162461bcd60e51b815260040161041a90611ad0565b6002816004811115610f2857610f28611a86565b1415610f465760405162461bcd60e51b815260040161041a90611b14565b6003816004811115610f5a57610f5a611a86565b1415610f785760405162461bcd60e51b815260040161041a90611b63565b6004816004811115610f8c57610f8c611a86565b141561055e5760405162461bcd60e51b815260040161041a90611bb2565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610fe15750600090506003611081565b8460ff16601b14158015610ff957508460ff16601c14155b1561100a5750600090506004611081565b60006001878787876040516000815260200160405260405161102f9493929190611bc2565b6020604051602081039080840390855afa158015611051573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661107a57600060019250925050611081565b9150600090505b94509492505050565b6000806001600160ff1b038316816110a760ff86901c601b6114ee565b90506110b587828885610faa565b935093505050935093915050565b60006001600160a01b0382166104eb565b6110dd816110c3565b811461055e57600080fd5b80356104eb816110d4565b60006020828403121561110857611108600080fd5b600061111484846110e8565b949350505050565b60005b8381101561113757818101518382015260200161111f565b83811115610afc5750506000910152565b6000611152825190565b80845260208401935061116981856020860161111c565b601f01601f19169290920192915050565b6020808252810161118b8184611148565b9392505050565b806110dd565b80356104eb81611192565b600080604083850312156111b9576111b9600080fd5b60006111c585856110e8565b92505060206111d685828601611198565b9150509250929050565b8015155b82525050565b602081016104eb82846111e0565b806111e4565b602081016104eb82846111f8565b60008060006060848603121561122457611224600080fd5b600061123086866110e8565b9350506020611241868287016110e8565b925050604061125286828701611198565b9150509250925092565b60ff81166111e4565b602081016104eb828461125c565b60006020828403121561128857611288600080fd5b60006111148484611198565b6111e4816110c3565b602081016104eb8284611294565b600080604083850312156112c1576112c1600080fd5b60006112cd85856110e8565b92505060206111d6858286016110e8565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff8211171561131a5761131a6112de565b6040525050565b600061132c60405190565b905061133882826112f4565b919050565b600067ffffffffffffffff821115611357576113576112de565b601f19601f83011660200192915050565b82818337506000910152565b60006113876113828461133d565b611321565b9050828152602081018484840111156113a2576113a2600080fd5b610d99848285611368565b600082601f8301126113c1576113c1600080fd5b8135611114848260208601611374565b600080600080608085870312156113ea576113ea600080fd5b60006113f68787611198565b945050602061140787828801611198565b935050604061141887828801611198565b925050606085013567ffffffffffffffff81111561143857611438600080fd5b611444878288016113ad565b91505092959194509250565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572910190815260005b5060200190565b602080825281016104eb81611450565b634e487b7160e01b600052602260045260246000fd5b6002810460018216806114bf57607f821691505b602082108114156114d2576114d2611495565b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611501576115016114d8565b500190565b602581526000602082017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77815264207a65726f60d81b602082015291505b5060400190565b602080825281016104eb81611506565b601f81526000602082017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c008152915061147e565b602080825281016104eb8161155b565b60158152600060208201744465706f736974206973206e6f742061637469766560581b8152915061147e565b602080825281016104eb8161159f565b602681526000602082017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b60208201529150611544565b602080825281016104eb816115db565b60168152600060208201755769746864726177206973206e6f742061637469766560501b8152915061147e565b602080825281016104eb8161162e565b600a81526000602082016955736564206e6f6e636560b01b8152915061147e565b602080825281016104eb8161166b565b601181526000602082017045787069726564207369676e617475726560781b8152915061147e565b602080825281016104eb8161169c565b60006104eb8260601b90565b60006104eb826116d4565b6111e46116f7826110c3565b6116e0565b600061170882876116eb565b60148201915061171882866111f8565b60208201915061172882856111f8565b60208201915061173882846111f8565b50602001949350505050565b600f81526000602082016e57726f6e67207369676e617475726560881b8152915061147e565b602080825281016104eb81611744565b602481526000602082017f45524332303a20617070726f76652066726f6d20746865207a65726f206164648152637265737360e01b60208201529150611544565b602080825281016104eb8161177a565b602281526000602082017f45524332303a20617070726f766520746f20746865207a65726f206164647265815261737360f01b60208201529150611544565b602080825281016104eb816117cb565b601d81526000602082017f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000008152915061147e565b602080825281016104eb8161181a565b602581526000602082017f45524332303a207472616e736665722066726f6d20746865207a65726f206164815264647265737360d81b60208201529150611544565b602080825281016104eb8161185e565b602381526000602082017f45524332303a207472616e7366657220746f20746865207a65726f206164647281526265737360e81b60208201529150611544565b602080825281016104eb816118b0565b602681526000602082017f45524332303a207472616e7366657220616d6f756e7420657863656564732062815265616c616e636560d01b60208201529150611544565b602080825281016104eb81611900565b602181526000602082017f45524332303a206275726e2066726f6d20746865207a65726f206164647265738152607360f81b60208201529150611544565b602080825281016104eb81611953565b602281526000602082017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e815261636560f01b60208201529150611544565b602080825281016104eb816119a1565b600082821015611a0257611a026114d8565b500390565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c016000611a3982846111f8565b50602001919050565b601f81526000602082017f45524332303a206d696e7420746f20746865207a65726f2061646472657373008152915061147e565b602080825281016104eb81611a42565b634e487b7160e01b600052602160045260246000fd5b601881526000602082017f45434453413a20696e76616c6964207369676e617475726500000000000000008152915061147e565b602080825281016104eb81611a9c565b601f81526000602082017f45434453413a20696e76616c6964207369676e6174757265206c656e677468008152915061147e565b602080825281016104eb81611ae0565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202773272076616c815261756560f01b60208201529150611544565b602080825281016104eb81611b24565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202776272076616c815261756560f01b60208201529150611544565b602080825281016104eb81611b73565b60808101611bd082876111f8565b611bdd602083018661125c565b611bea60408301856111f8565b611bf760608301846111f8565b9594505050505056fea264697066735822122024811418df2a9c57bd7909ef9ba2161903278058a5b897e4177f18624c32387b64736f6c634300080c0033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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