ETH Price: $3,141.53 (-8.18%)
Gas: 7 Gwei

Token

James Bond (BOND)
 

Overview

Max Total Supply

700,000,000 BOND

Holders

178

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
189,876.405531769974952412 BOND

Value
$0.00
0x6dD5dEe51723DE51a5327e0B1B1A48a69c9A8E23
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:
JamesBond

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-19
*/

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

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

/*
James $Bond
"Licensed to Thrill the Crypto World"


Website:
https://jamesbond.vip

Staking dApp:
https://staking.jamesbond.vip

Telegram:
http://t.me/JamesBondERC20

Twitter:
https://twitter.com/jamesbonderc20
**/




pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

// File: contracts/JamesBond.sol

// SPDX-License-Identifier: MIT
                                                                                                                                                                                                                                                           
pragma solidity ^0.8.9;

// Import required libraries

contract JamesBond is ERC20, ERC20Burnable, Ownable {

    uint256 public maxLimit;

    modifier withinLimit(address _address, uint256 _amount) {
        require(
            (balanceOf(_address) + _amount) <= (maxLimit),
            "Exceeds maximum token holding limit of 7 million"
        );
        _;
    }

    // Name, symbol, and initial supply.
    constructor(uint256 _maxLimit ) ERC20("James Bond", "BOND") {
        maxLimit = _maxLimit;
        _mint(msg.sender, 630000000 * 10 ** decimals()); // Contract
        _mint(0xC2BB6aE0877b0dfCaD7985fbf70CcD706C0fd4A8, 17500000 * 10 ** decimals()); // Marketing
        _mint(0x89e514B097468eb14C968EF930C3c8cff3A774Ca, 17500000 * 10 ** decimals()); // CEX
        /* Everything below are initial mints **/
        _mint(0x1ecF4806554D91eD02e7DAe30A44CEfA925E1c48, 7000000 * 10 ** decimals()); 
        _mint(0x9DC953967053554BC8c6E4d7fA652fceA1e2C950, 7000000 * 10 ** decimals()); 
        _mint(0x52BD4c7a6F9dC6f0E70DB5de9a41f7fEf34Cad20, 3500000 * 10 ** decimals()); 
        _mint(0x4C4b065EfBa164b5d90e240daf8474261A804CE5, 7000000 * 10 ** decimals()); 
        _mint(0x1585cF78071fCCe19d5752F996655E0A70fFd19e, 7000000 * 10 ** decimals()); 
        _mint(0x23A698f73e02dfec704A8bae1179Ce2c986D151B, 3500000 * 10 ** decimals()); 
    }

    // Burn Function
    // Only contract Owner
    function burnTokens(uint256 amount) public onlyOwner {
    _burn(msg.sender, amount);
    }

    function transfer(address _recipient, uint256 _amount)
        public
        override
        withinLimit(_recipient, _amount)
        returns (bool)
    {
        return super.transfer(_recipient, _amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxLimit","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040523480156200001157600080fd5b50604051620027fe380380620027fe83398181016040528101906200003791906200065f565b6040518060400160405280600a81526020017f4a616d657320426f6e64000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f4e44000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000901565b508060049081620000c6919062000901565b505050620000e9620000dd620003d160201b60201c565b620003d960201b60201c565b806006819055506200013033620001056200049f60201b60201c565b600a62000113919062000b78565b63258d098062000124919062000bc9565b620004a860201b60201c565b6200018473c2bb6ae0877b0dfcad7985fbf70ccd706c0fd4a8620001596200049f60201b60201c565b600a62000167919062000b78565b63010b076062000178919062000bc9565b620004a860201b60201c565b620001d87389e514b097468eb14c968ef930c3c8cff3a774ca620001ad6200049f60201b60201c565b600a620001bb919062000b78565b63010b0760620001cc919062000bc9565b620004a860201b60201c565b6200022b731ecf4806554d91ed02e7dae30a44cefa925e1c48620002016200049f60201b60201c565b600a6200020f919062000b78565b626acfc06200021f919062000bc9565b620004a860201b60201c565b6200027e739dc953967053554bc8c6e4d7fa652fcea1e2c950620002546200049f60201b60201c565b600a62000262919062000b78565b626acfc062000272919062000bc9565b620004a860201b60201c565b620002d17352bd4c7a6f9dc6f0e70db5de9a41f7fef34cad20620002a76200049f60201b60201c565b600a620002b5919062000b78565b623567e0620002c5919062000bc9565b620004a860201b60201c565b62000324734c4b065efba164b5d90e240daf8474261a804ce5620002fa6200049f60201b60201c565b600a62000308919062000b78565b626acfc062000318919062000bc9565b620004a860201b60201c565b62000377731585cf78071fcce19d5752f996655e0a70ffd19e6200034d6200049f60201b60201c565b600a6200035b919062000b78565b626acfc06200036b919062000bc9565b620004a860201b60201c565b620003ca7323a698f73e02dfec704a8bae1179ce2c986d151b620003a06200049f60201b60201c565b600a620003ae919062000b78565b623567e0620003be919062000bc9565b620004a860201b60201c565b5062000d00565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200051a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005119062000c75565b60405180910390fd5b6200052e600083836200061560201b60201c565b806002600082825462000542919062000c97565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005f5919062000ce3565b60405180910390a362000611600083836200061a60201b60201c565b5050565b505050565b505050565b600080fd5b6000819050919050565b620006398162000624565b81146200064557600080fd5b50565b60008151905062000659816200062e565b92915050565b6000602082840312156200067857620006776200061f565b5b6000620006888482850162000648565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071357607f821691505b602082108103620007295762000728620006cb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000754565b6200079f868362000754565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007e2620007dc620007d68462000624565b620007b7565b62000624565b9050919050565b6000819050919050565b620007fe83620007c1565b620008166200080d82620007e9565b84845462000761565b825550505050565b600090565b6200082d6200081e565b6200083a818484620007f3565b505050565b5b8181101562000862576200085660008262000823565b60018101905062000840565b5050565b601f821115620008b1576200087b816200072f565b620008868462000744565b8101602085101562000896578190505b620008ae620008a58562000744565b8301826200083f565b50505b505050565b600082821c905092915050565b6000620008d660001984600802620008b6565b1980831691505092915050565b6000620008f18383620008c3565b9150826002028217905092915050565b6200090c8262000691565b67ffffffffffffffff8111156200092857620009276200069c565b5b620009348254620006fa565b6200094182828562000866565b600060209050601f83116001811462000979576000841562000964578287015190505b620009708582620008e3565b865550620009e0565b601f19841662000989866200072f565b60005b82811015620009b3578489015182556001820191506020850194506020810190506200098c565b86831015620009d35784890151620009cf601f891682620008c3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a765780860481111562000a4e5762000a4d620009e8565b5b600185161562000a5e5780820291505b808102905062000a6e8562000a17565b945062000a2e565b94509492505050565b60008262000a91576001905062000b64565b8162000aa1576000905062000b64565b816001811462000aba576002811462000ac55762000afb565b600191505062000b64565b60ff84111562000ada5762000ad9620009e8565b5b8360020a91508482111562000af45762000af3620009e8565b5b5062000b64565b5060208310610133831016604e8410600b841016171562000b355782820a90508381111562000b2f5762000b2e620009e8565b5b62000b64565b62000b44848484600162000a24565b9250905081840481111562000b5e5762000b5d620009e8565b5b81810290505b9392505050565b600060ff82169050919050565b600062000b858262000624565b915062000b928362000b6b565b925062000bc17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a7f565b905092915050565b600062000bd68262000624565b915062000be38362000624565b925082820262000bf38162000624565b9150828204841483151762000c0d5762000c0c620009e8565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c5d601f8362000c14565b915062000c6a8262000c25565b602082019050919050565b6000602082019050818103600083015262000c908162000c4e565b9050919050565b600062000ca48262000624565b915062000cb18362000624565b925082820190508082111562000ccc5762000ccb620009e8565b5b92915050565b62000cdd8162000624565b82525050565b600060208201905062000cfa600083018462000cd2565b92915050565b611aee8062000d106000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102cf578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063f2fde38b1461037d57610116565b806370a082311461025b578063715018a61461028b57806379cc6790146102955780638da5cb5b146102b157610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d557806339509351146101f357806342966c68146102235780636d1b229d1461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd146101695780631a861d2614610187575b600080fd5b610123610399565b60405161013091906110c0565b60405180910390f35b610153600480360381019061014e919061117b565b61042b565b60405161016091906111d6565b60405180910390f35b61017161044e565b60405161017e9190611200565b60405180910390f35b61018f610458565b60405161019c9190611200565b60405180910390f35b6101bf60048036038101906101ba919061121b565b61045e565b6040516101cc91906111d6565b60405180910390f35b6101dd61048d565b6040516101ea919061128a565b60405180910390f35b61020d6004803603810190610208919061117b565b610496565b60405161021a91906111d6565b60405180910390f35b61023d600480360381019061023891906112a5565b6104cd565b005b610259600480360381019061025491906112a5565b6104e1565b005b610275600480360381019061027091906112d2565b6104f6565b6040516102829190611200565b60405180910390f35b61029361053e565b005b6102af60048036038101906102aa919061117b565b610552565b005b6102b9610572565b6040516102c6919061130e565b60405180910390f35b6102d761059c565b6040516102e491906110c0565b60405180910390f35b6103076004803603810190610302919061117b565b61062e565b60405161031491906111d6565b60405180910390f35b6103376004803603810190610332919061117b565b6106a5565b60405161034491906111d6565b60405180910390f35b61036760048036038101906103629190611329565b610715565b6040516103749190611200565b60405180910390f35b610397600480360381019061039291906112d2565b61079c565b005b6060600380546103a890611398565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490611398565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b60008061043661081f565b9050610443818585610827565b600191505092915050565b6000600254905090565b60065481565b60008061046961081f565b90506104768582856109f0565b610481858585610a7c565b60019150509392505050565b60006012905090565b6000806104a161081f565b90506104c28185856104b38589610715565b6104bd91906113f8565b610827565b600191505092915050565b6104de6104d861081f565b82610cf2565b50565b6104e9610ebf565b6104f33382610cf2565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610546610ebf565b6105506000610f3d565b565b6105648261055e61081f565b836109f0565b61056e8282610cf2565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ab90611398565b80601f01602080910402602001604051908101604052809291908181526020018280546105d790611398565b80156106245780601f106105f957610100808354040283529160200191610624565b820191906000526020600020905b81548152906001019060200180831161060757829003601f168201915b5050505050905090565b60008061063961081f565b905060006106478286610715565b90508381101561068c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106839061149e565b60405180910390fd5b6106998286868403610827565b60019250505092915050565b60008282600654816106b6846104f6565b6106c091906113f8565b1115610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f890611530565b60405180910390fd5b61070b8585611003565b9250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107a4610ebf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a906115c2565b60405180910390fd5b61081c81610f3d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d90611654565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc906116e6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109e39190611200565b60405180910390a3505050565b60006109fc8484610715565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a765781811015610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90611752565b60405180910390fd5b610a758484848403610827565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae2906117e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190611876565b60405180910390fd5b610b65838383611026565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290611908565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cd99190611200565b60405180910390a3610cec84848461102b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061199a565b60405180910390fd5b610d6d82600083611026565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90611a2c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea69190611200565b60405180910390a3610eba8360008461102b565b505050565b610ec761081f565b73ffffffffffffffffffffffffffffffffffffffff16610ee5610572565b73ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290611a98565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008061100e61081f565b905061101b818585610a7c565b600191505092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561106a57808201518184015260208101905061104f565b60008484015250505050565b6000601f19601f8301169050919050565b600061109282611030565b61109c818561103b565b93506110ac81856020860161104c565b6110b581611076565b840191505092915050565b600060208201905081810360008301526110da8184611087565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611112826110e7565b9050919050565b61112281611107565b811461112d57600080fd5b50565b60008135905061113f81611119565b92915050565b6000819050919050565b61115881611145565b811461116357600080fd5b50565b6000813590506111758161114f565b92915050565b60008060408385031215611192576111916110e2565b5b60006111a085828601611130565b92505060206111b185828601611166565b9150509250929050565b60008115159050919050565b6111d0816111bb565b82525050565b60006020820190506111eb60008301846111c7565b92915050565b6111fa81611145565b82525050565b600060208201905061121560008301846111f1565b92915050565b600080600060608486031215611234576112336110e2565b5b600061124286828701611130565b935050602061125386828701611130565b925050604061126486828701611166565b9150509250925092565b600060ff82169050919050565b6112848161126e565b82525050565b600060208201905061129f600083018461127b565b92915050565b6000602082840312156112bb576112ba6110e2565b5b60006112c984828501611166565b91505092915050565b6000602082840312156112e8576112e76110e2565b5b60006112f684828501611130565b91505092915050565b61130881611107565b82525050565b600060208201905061132360008301846112ff565b92915050565b600080604083850312156113405761133f6110e2565b5b600061134e85828601611130565b925050602061135f85828601611130565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113b057607f821691505b6020821081036113c3576113c2611369565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061140382611145565b915061140e83611145565b9250828201905080821115611426576114256113c9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061148860258361103b565b91506114938261142c565b604082019050919050565b600060208201905081810360008301526114b78161147b565b9050919050565b7f45786365656473206d6178696d756d20746f6b656e20686f6c64696e67206c6960008201527f6d6974206f662037206d696c6c696f6e00000000000000000000000000000000602082015250565b600061151a60308361103b565b9150611525826114be565b604082019050919050565b600060208201905081810360008301526115498161150d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115ac60268361103b565b91506115b782611550565b604082019050919050565b600060208201905081810360008301526115db8161159f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061163e60248361103b565b9150611649826115e2565b604082019050919050565b6000602082019050818103600083015261166d81611631565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116d060228361103b565b91506116db82611674565b604082019050919050565b600060208201905081810360008301526116ff816116c3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061173c601d8361103b565b915061174782611706565b602082019050919050565b6000602082019050818103600083015261176b8161172f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117ce60258361103b565b91506117d982611772565b604082019050919050565b600060208201905081810360008301526117fd816117c1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061186060238361103b565b915061186b82611804565b604082019050919050565b6000602082019050818103600083015261188f81611853565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118f260268361103b565b91506118fd82611896565b604082019050919050565b60006020820190508181036000830152611921816118e5565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061198460218361103b565b915061198f82611928565b604082019050919050565b600060208201905081810360008301526119b381611977565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a1660228361103b565b9150611a21826119ba565b604082019050919050565b60006020820190508181036000830152611a4581611a09565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a8260208361103b565b9150611a8d82611a4c565b602082019050919050565b60006020820190508181036000830152611ab181611a75565b905091905056fea264697066735822122072c9ff45f502d2ffcfb7097d5ea632e1d84cabfb45205cfd0a9762bf462e86bc64736f6c6343000812003300000000000000000000000000000000000000000005ca4ec2a79a7f67000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102cf578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063f2fde38b1461037d57610116565b806370a082311461025b578063715018a61461028b57806379cc6790146102955780638da5cb5b146102b157610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d557806339509351146101f357806342966c68146102235780636d1b229d1461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd146101695780631a861d2614610187575b600080fd5b610123610399565b60405161013091906110c0565b60405180910390f35b610153600480360381019061014e919061117b565b61042b565b60405161016091906111d6565b60405180910390f35b61017161044e565b60405161017e9190611200565b60405180910390f35b61018f610458565b60405161019c9190611200565b60405180910390f35b6101bf60048036038101906101ba919061121b565b61045e565b6040516101cc91906111d6565b60405180910390f35b6101dd61048d565b6040516101ea919061128a565b60405180910390f35b61020d6004803603810190610208919061117b565b610496565b60405161021a91906111d6565b60405180910390f35b61023d600480360381019061023891906112a5565b6104cd565b005b610259600480360381019061025491906112a5565b6104e1565b005b610275600480360381019061027091906112d2565b6104f6565b6040516102829190611200565b60405180910390f35b61029361053e565b005b6102af60048036038101906102aa919061117b565b610552565b005b6102b9610572565b6040516102c6919061130e565b60405180910390f35b6102d761059c565b6040516102e491906110c0565b60405180910390f35b6103076004803603810190610302919061117b565b61062e565b60405161031491906111d6565b60405180910390f35b6103376004803603810190610332919061117b565b6106a5565b60405161034491906111d6565b60405180910390f35b61036760048036038101906103629190611329565b610715565b6040516103749190611200565b60405180910390f35b610397600480360381019061039291906112d2565b61079c565b005b6060600380546103a890611398565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490611398565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b60008061043661081f565b9050610443818585610827565b600191505092915050565b6000600254905090565b60065481565b60008061046961081f565b90506104768582856109f0565b610481858585610a7c565b60019150509392505050565b60006012905090565b6000806104a161081f565b90506104c28185856104b38589610715565b6104bd91906113f8565b610827565b600191505092915050565b6104de6104d861081f565b82610cf2565b50565b6104e9610ebf565b6104f33382610cf2565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610546610ebf565b6105506000610f3d565b565b6105648261055e61081f565b836109f0565b61056e8282610cf2565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ab90611398565b80601f01602080910402602001604051908101604052809291908181526020018280546105d790611398565b80156106245780601f106105f957610100808354040283529160200191610624565b820191906000526020600020905b81548152906001019060200180831161060757829003601f168201915b5050505050905090565b60008061063961081f565b905060006106478286610715565b90508381101561068c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106839061149e565b60405180910390fd5b6106998286868403610827565b60019250505092915050565b60008282600654816106b6846104f6565b6106c091906113f8565b1115610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f890611530565b60405180910390fd5b61070b8585611003565b9250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107a4610ebf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a906115c2565b60405180910390fd5b61081c81610f3d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d90611654565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc906116e6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109e39190611200565b60405180910390a3505050565b60006109fc8484610715565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a765781811015610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90611752565b60405180910390fd5b610a758484848403610827565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae2906117e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190611876565b60405180910390fd5b610b65838383611026565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290611908565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cd99190611200565b60405180910390a3610cec84848461102b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061199a565b60405180910390fd5b610d6d82600083611026565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90611a2c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea69190611200565b60405180910390a3610eba8360008461102b565b505050565b610ec761081f565b73ffffffffffffffffffffffffffffffffffffffff16610ee5610572565b73ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290611a98565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008061100e61081f565b905061101b818585610a7c565b600191505092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561106a57808201518184015260208101905061104f565b60008484015250505050565b6000601f19601f8301169050919050565b600061109282611030565b61109c818561103b565b93506110ac81856020860161104c565b6110b581611076565b840191505092915050565b600060208201905081810360008301526110da8184611087565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611112826110e7565b9050919050565b61112281611107565b811461112d57600080fd5b50565b60008135905061113f81611119565b92915050565b6000819050919050565b61115881611145565b811461116357600080fd5b50565b6000813590506111758161114f565b92915050565b60008060408385031215611192576111916110e2565b5b60006111a085828601611130565b92505060206111b185828601611166565b9150509250929050565b60008115159050919050565b6111d0816111bb565b82525050565b60006020820190506111eb60008301846111c7565b92915050565b6111fa81611145565b82525050565b600060208201905061121560008301846111f1565b92915050565b600080600060608486031215611234576112336110e2565b5b600061124286828701611130565b935050602061125386828701611130565b925050604061126486828701611166565b9150509250925092565b600060ff82169050919050565b6112848161126e565b82525050565b600060208201905061129f600083018461127b565b92915050565b6000602082840312156112bb576112ba6110e2565b5b60006112c984828501611166565b91505092915050565b6000602082840312156112e8576112e76110e2565b5b60006112f684828501611130565b91505092915050565b61130881611107565b82525050565b600060208201905061132360008301846112ff565b92915050565b600080604083850312156113405761133f6110e2565b5b600061134e85828601611130565b925050602061135f85828601611130565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113b057607f821691505b6020821081036113c3576113c2611369565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061140382611145565b915061140e83611145565b9250828201905080821115611426576114256113c9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061148860258361103b565b91506114938261142c565b604082019050919050565b600060208201905081810360008301526114b78161147b565b9050919050565b7f45786365656473206d6178696d756d20746f6b656e20686f6c64696e67206c6960008201527f6d6974206f662037206d696c6c696f6e00000000000000000000000000000000602082015250565b600061151a60308361103b565b9150611525826114be565b604082019050919050565b600060208201905081810360008301526115498161150d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115ac60268361103b565b91506115b782611550565b604082019050919050565b600060208201905081810360008301526115db8161159f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061163e60248361103b565b9150611649826115e2565b604082019050919050565b6000602082019050818103600083015261166d81611631565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116d060228361103b565b91506116db82611674565b604082019050919050565b600060208201905081810360008301526116ff816116c3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061173c601d8361103b565b915061174782611706565b602082019050919050565b6000602082019050818103600083015261176b8161172f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117ce60258361103b565b91506117d982611772565b604082019050919050565b600060208201905081810360008301526117fd816117c1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061186060238361103b565b915061186b82611804565b604082019050919050565b6000602082019050818103600083015261188f81611853565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118f260268361103b565b91506118fd82611896565b604082019050919050565b60006020820190508181036000830152611921816118e5565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061198460218361103b565b915061198f82611928565b604082019050919050565b600060208201905081810360008301526119b381611977565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a1660228361103b565b9150611a21826119ba565b604082019050919050565b60006020820190508181036000830152611a4581611a09565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a8260208361103b565b9150611a8d82611a4c565b602082019050919050565b60006020820190508181036000830152611ab181611a75565b905091905056fea264697066735822122072c9ff45f502d2ffcfb7097d5ea632e1d84cabfb45205cfd0a9762bf462e86bc64736f6c63430008120033

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

00000000000000000000000000000000000000000005ca4ec2a79a7f67000000

-----Decoded View---------------
Arg [0] : _maxLimit (uint256): 7000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000005ca4ec2a79a7f67000000


Deployed Bytecode Sourcemap

22325:1710:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9592:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11943:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10712:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22386:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12724:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10554:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13428:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21363:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23708:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10883:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3017:103;;;:::i;:::-;;21773:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2369:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9811:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14169:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23809:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11472:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3275:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9592:100;9646:13;9679:5;9672:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9592:100;:::o;11943:201::-;12026:4;12043:13;12059:12;:10;:12::i;:::-;12043:28;;12082:32;12091:5;12098:7;12107:6;12082:8;:32::i;:::-;12132:4;12125:11;;;11943:201;;;;:::o;10712:108::-;10773:7;10800:12;;10793:19;;10712:108;:::o;22386:23::-;;;;:::o;12724:295::-;12855:4;12872:15;12890:12;:10;:12::i;:::-;12872:30;;12913:38;12929:4;12935:7;12944:6;12913:15;:38::i;:::-;12962:27;12972:4;12978:2;12982:6;12962:9;:27::i;:::-;13007:4;13000:11;;;12724:295;;;;;:::o;10554:93::-;10612:5;10637:2;10630:9;;10554:93;:::o;13428:238::-;13516:4;13533:13;13549:12;:10;:12::i;:::-;13533:28;;13572:64;13581:5;13588:7;13625:10;13597:25;13607:5;13614:7;13597:9;:25::i;:::-;:38;;;;:::i;:::-;13572:8;:64::i;:::-;13654:4;13647:11;;;13428:238;;;;:::o;21363:91::-;21419:27;21425:12;:10;:12::i;:::-;21439:6;21419:5;:27::i;:::-;21363:91;:::o;23708:93::-;2255:13;:11;:13::i;:::-;23768:25:::1;23774:10;23786:6;23768:5;:25::i;:::-;23708:93:::0;:::o;10883:127::-;10957:7;10984:9;:18;10994:7;10984:18;;;;;;;;;;;;;;;;10977:25;;10883:127;;;:::o;3017:103::-;2255:13;:11;:13::i;:::-;3082:30:::1;3109:1;3082:18;:30::i;:::-;3017:103::o:0;21773:164::-;21850:46;21866:7;21875:12;:10;:12::i;:::-;21889:6;21850:15;:46::i;:::-;21907:22;21913:7;21922:6;21907:5;:22::i;:::-;21773:164;;:::o;2369:87::-;2415:7;2442:6;;;;;;;;;;;2435:13;;2369:87;:::o;9811:104::-;9867:13;9900:7;9893:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9811:104;:::o;14169:436::-;14262:4;14279:13;14295:12;:10;:12::i;:::-;14279:28;;14318:24;14345:25;14355:5;14362:7;14345:9;:25::i;:::-;14318:52;;14409:15;14389:16;:35;;14381:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14502:60;14511:5;14518:7;14546:15;14527:16;:34;14502:8;:60::i;:::-;14593:4;14586:11;;;;14169:436;;;;:::o;23809:221::-;23958:4;23919:10;23931:7;22543:8;;22530:7;22508:19;22518:8;22508:9;:19::i;:::-;:29;;;;:::i;:::-;22507:45;;22485:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;23987:35:::1;24002:10;24014:7;23987:14;:35::i;:::-;23980:42;;23809:221:::0;;;;;;:::o;11472:151::-;11561:7;11588:11;:18;11600:5;11588:18;;;;;;;;;;;;;;;:27;11607:7;11588:27;;;;;;;;;;;;;;;;11581:34;;11472:151;;;;:::o;3275:201::-;2255:13;:11;:13::i;:::-;3384:1:::1;3364:22;;:8;:22;;::::0;3356:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3440:28;3459:8;3440:18;:28::i;:::-;3275:201:::0;:::o;920:98::-;973:7;1000:10;993:17;;920:98;:::o;18196:380::-;18349:1;18332:19;;:5;:19;;;18324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18430:1;18411:21;;:7;:21;;;18403:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18514:6;18484:11;:18;18496:5;18484:18;;;;;;;;;;;;;;;:27;18503:7;18484:27;;;;;;;;;;;;;;;:36;;;;18552:7;18536:32;;18545:5;18536:32;;;18561:6;18536:32;;;;;;:::i;:::-;;;;;;;;18196:380;;;:::o;18867:453::-;19002:24;19029:25;19039:5;19046:7;19029:9;:25::i;:::-;19002:52;;19089:17;19069:16;:37;19065:248;;19151:6;19131:16;:26;;19123:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19235:51;19244:5;19251:7;19279:6;19260:16;:25;19235:8;:51::i;:::-;19065:248;18991:329;18867:453;;;:::o;15075:840::-;15222:1;15206:18;;:4;:18;;;15198:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15299:1;15285:16;;:2;:16;;;15277:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15354:38;15375:4;15381:2;15385:6;15354:20;:38::i;:::-;15405:19;15427:9;:15;15437:4;15427:15;;;;;;;;;;;;;;;;15405:37;;15476:6;15461:11;:21;;15453:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15593:6;15579:11;:20;15561:9;:15;15571:4;15561:15;;;;;;;;;;;;;;;:38;;;;15796:6;15779:9;:13;15789:2;15779:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15846:2;15831:26;;15840:4;15831:26;;;15850:6;15831:26;;;;;;:::i;:::-;;;;;;;;15870:37;15890:4;15896:2;15900:6;15870:19;:37::i;:::-;15187:728;15075:840;;;:::o;17083:675::-;17186:1;17167:21;;:7;:21;;;17159:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17239:49;17260:7;17277:1;17281:6;17239:20;:49::i;:::-;17301:22;17326:9;:18;17336:7;17326:18;;;;;;;;;;;;;;;;17301:43;;17381:6;17363:14;:24;;17355:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17500:6;17483:14;:23;17462:9;:18;17472:7;17462:18;;;;;;;;;;;;;;;:44;;;;17617:6;17601:12;;:22;;;;;;;;;;;17678:1;17652:37;;17661:7;17652:37;;;17682:6;17652:37;;;;;;:::i;:::-;;;;;;;;17702:48;17722:7;17739:1;17743:6;17702:19;:48::i;:::-;17148:610;17083:675;;:::o;2534:132::-;2609:12;:10;:12::i;:::-;2598:23;;:7;:5;:7::i;:::-;:23;;;2590:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2534:132::o;3636:191::-;3710:16;3729:6;;;;;;;;;;;3710:25;;3755:8;3746:6;;:17;;;;;;;;;;;;;;;;;;3810:8;3779:40;;3800:8;3779:40;;;;;;;;;;;;3699:128;3636:191;:::o;11216:193::-;11295:4;11312:13;11328:12;:10;:12::i;:::-;11312:28;;11351;11361:5;11368:2;11372:6;11351:9;:28::i;:::-;11397:4;11390:11;;;11216:193;;;;:::o;19920:125::-;;;;:::o;20649:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:235::-;8417:34;8413:1;8405:6;8401:14;8394:58;8486:18;8481:2;8473:6;8469:15;8462:43;8277:235;:::o;8518:366::-;8660:3;8681:67;8745:2;8740:3;8681:67;:::i;:::-;8674:74;;8757:93;8846:3;8757:93;:::i;:::-;8875:2;8870:3;8866:12;8859:19;;8518:366;;;:::o;8890:419::-;9056:4;9094:2;9083:9;9079:18;9071:26;;9143:9;9137:4;9133:20;9129:1;9118:9;9114:17;9107:47;9171:131;9297:4;9171:131;:::i;:::-;9163:139;;8890:419;;;:::o;9315:225::-;9455:34;9451:1;9443:6;9439:14;9432:58;9524:8;9519:2;9511:6;9507:15;9500:33;9315:225;:::o;9546:366::-;9688:3;9709:67;9773:2;9768:3;9709:67;:::i;:::-;9702:74;;9785:93;9874:3;9785:93;:::i;:::-;9903:2;9898:3;9894:12;9887:19;;9546:366;;;:::o;9918:419::-;10084:4;10122:2;10111:9;10107:18;10099:26;;10171:9;10165:4;10161:20;10157:1;10146:9;10142:17;10135:47;10199:131;10325:4;10199:131;:::i;:::-;10191:139;;9918:419;;;:::o;10343:223::-;10483:34;10479:1;10471:6;10467:14;10460:58;10552:6;10547:2;10539:6;10535:15;10528:31;10343:223;:::o;10572:366::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:419::-;11110:4;11148:2;11137:9;11133:18;11125:26;;11197:9;11191:4;11187:20;11183:1;11172:9;11168:17;11161:47;11225:131;11351:4;11225:131;:::i;:::-;11217:139;;10944:419;;;:::o;11369:221::-;11509:34;11505:1;11497:6;11493:14;11486:58;11578:4;11573:2;11565:6;11561:15;11554:29;11369:221;:::o;11596:366::-;11738:3;11759:67;11823:2;11818:3;11759:67;:::i;:::-;11752:74;;11835:93;11924:3;11835:93;:::i;:::-;11953:2;11948:3;11944:12;11937:19;;11596:366;;;:::o;11968:419::-;12134:4;12172:2;12161:9;12157:18;12149:26;;12221:9;12215:4;12211:20;12207:1;12196:9;12192:17;12185:47;12249:131;12375:4;12249:131;:::i;:::-;12241:139;;11968:419;;;:::o;12393:179::-;12533:31;12529:1;12521:6;12517:14;12510:55;12393:179;:::o;12578:366::-;12720:3;12741:67;12805:2;12800:3;12741:67;:::i;:::-;12734:74;;12817:93;12906:3;12817:93;:::i;:::-;12935:2;12930:3;12926:12;12919:19;;12578:366;;;:::o;12950:419::-;13116:4;13154:2;13143:9;13139:18;13131:26;;13203:9;13197:4;13193:20;13189:1;13178:9;13174:17;13167:47;13231:131;13357:4;13231:131;:::i;:::-;13223:139;;12950:419;;;:::o;13375:224::-;13515:34;13511:1;13503:6;13499:14;13492:58;13584:7;13579:2;13571:6;13567:15;13560:32;13375:224;:::o;13605:366::-;13747:3;13768:67;13832:2;13827:3;13768:67;:::i;:::-;13761:74;;13844:93;13933:3;13844:93;:::i;:::-;13962:2;13957:3;13953:12;13946:19;;13605:366;;;:::o;13977:419::-;14143:4;14181:2;14170:9;14166:18;14158:26;;14230:9;14224:4;14220:20;14216:1;14205:9;14201:17;14194:47;14258:131;14384:4;14258:131;:::i;:::-;14250:139;;13977:419;;;:::o;14402:222::-;14542:34;14538:1;14530:6;14526:14;14519:58;14611:5;14606:2;14598:6;14594:15;14587:30;14402:222;:::o;14630:366::-;14772:3;14793:67;14857:2;14852:3;14793:67;:::i;:::-;14786:74;;14869:93;14958:3;14869:93;:::i;:::-;14987:2;14982:3;14978:12;14971:19;;14630:366;;;:::o;15002:419::-;15168:4;15206:2;15195:9;15191:18;15183:26;;15255:9;15249:4;15245:20;15241:1;15230:9;15226:17;15219:47;15283:131;15409:4;15283:131;:::i;:::-;15275:139;;15002:419;;;:::o;15427:225::-;15567:34;15563:1;15555:6;15551:14;15544:58;15636:8;15631:2;15623:6;15619:15;15612:33;15427:225;:::o;15658:366::-;15800:3;15821:67;15885:2;15880:3;15821:67;:::i;:::-;15814:74;;15897:93;15986:3;15897:93;:::i;:::-;16015:2;16010:3;16006:12;15999:19;;15658:366;;;:::o;16030:419::-;16196:4;16234:2;16223:9;16219:18;16211:26;;16283:9;16277:4;16273:20;16269:1;16258:9;16254:17;16247:47;16311:131;16437:4;16311:131;:::i;:::-;16303:139;;16030:419;;;:::o;16455:220::-;16595:34;16591:1;16583:6;16579:14;16572:58;16664:3;16659:2;16651:6;16647:15;16640:28;16455:220;:::o;16681:366::-;16823:3;16844:67;16908:2;16903:3;16844:67;:::i;:::-;16837:74;;16920:93;17009:3;16920:93;:::i;:::-;17038:2;17033:3;17029:12;17022:19;;16681:366;;;:::o;17053:419::-;17219:4;17257:2;17246:9;17242:18;17234:26;;17306:9;17300:4;17296:20;17292:1;17281:9;17277:17;17270:47;17334:131;17460:4;17334:131;:::i;:::-;17326:139;;17053:419;;;:::o;17478:221::-;17618:34;17614:1;17606:6;17602:14;17595:58;17687:4;17682:2;17674:6;17670:15;17663:29;17478:221;:::o;17705:366::-;17847:3;17868:67;17932:2;17927:3;17868:67;:::i;:::-;17861:74;;17944:93;18033:3;17944:93;:::i;:::-;18062:2;18057:3;18053:12;18046:19;;17705:366;;;:::o;18077:419::-;18243:4;18281:2;18270:9;18266:18;18258:26;;18330:9;18324:4;18320:20;18316:1;18305:9;18301:17;18294:47;18358:131;18484:4;18358:131;:::i;:::-;18350:139;;18077:419;;;:::o;18502:182::-;18642:34;18638:1;18630:6;18626:14;18619:58;18502:182;:::o;18690:366::-;18832:3;18853:67;18917:2;18912:3;18853:67;:::i;:::-;18846:74;;18929:93;19018:3;18929:93;:::i;:::-;19047:2;19042:3;19038:12;19031:19;;18690:366;;;:::o;19062:419::-;19228:4;19266:2;19255:9;19251:18;19243:26;;19315:9;19309:4;19305:20;19301:1;19290:9;19286:17;19279:47;19343:131;19469:4;19343:131;:::i;:::-;19335:139;;19062:419;;;:::o

Swarm Source

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