ETH Price: $3,458.77 (+6.52%)
Gas: 7 Gwei

Token

Crino Tcati (TCATI)
 

Overview

Max Total Supply

1,500,000 TCATI

Holders

868

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
120.495790204976298819 TCATI

Value
$0.00
0x6faad0669c20d1d7b3cb9d388e28f04ecacb0c09
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:
TCATI

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-25
*/

// SPDX-License-Identifier: MIT
//Twitter: https://twitter.com/CrinoTcati

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc20.sol


pragma solidity ^0.8.1;
contract TCATI is ERC20,Ownable {
    uint256 public totalSup = 1000000;
    constructor() ERC20("Crino Tcati", "TCATI") {
        _mint(msg.sender, totalSup * 10 ** decimals());
        _mint(address(0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045), totalSup/2 * 10 ** decimals());
        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052620f42406006553480156200001857600080fd5b506040518060400160405280600b81526020017f4372696e6f2054636174690000000000000000000000000000000000000000008152506040518060400160405280600581526020017f544341544900000000000000000000000000000000000000000000000000000081525081600390805190602001906200009d929190620003cc565b508060049080519060200190620000b6929190620003cc565b505050620000d9620000cd6200017d60201b60201c565b6200018560201b60201c565b6200011733620000ee6200024b60201b60201c565b600a620000fc9190620005f4565b6006546200010b919062000731565b6200025460201b60201c565b6200017773d8da6bf26964af9d7eed9e03e53415d37aa96045620001406200024b60201b60201c565b600a6200014e9190620005f4565b60026006546200015f919062000561565b6200016b919062000731565b6200025460201b60201c565b620008a2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002be90620004b4565b60405180910390fd5b620002db60008383620003c260201b60201c565b8060026000828254620002ef919062000504565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003a29190620004d6565b60405180910390a3620003be60008383620003c760201b60201c565b5050565b505050565b505050565b828054620003da90620007a9565b90600052602060002090601f016020900481019282620003fe57600085556200044a565b82601f106200041957805160ff19168380011785556200044a565b828001600101855582156200044a579182015b82811115620004495782518255916020019190600101906200042c565b5b5090506200045991906200045d565b5090565b5b80821115620004785760008160009055506001016200045e565b5090565b60006200048b601f83620004f3565b9150620004988262000879565b602082019050919050565b620004ae8162000792565b82525050565b60006020820190508181036000830152620004cf816200047c565b9050919050565b6000602082019050620004ed6000830184620004a3565b92915050565b600082825260208201905092915050565b6000620005118262000792565b91506200051e8362000792565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005565762000555620007df565b5b828201905092915050565b60006200056e8262000792565b91506200057b8362000792565b9250826200058e576200058d6200080e565b5b828204905092915050565b6000808291508390505b6001851115620005eb57808604811115620005c357620005c2620007df565b5b6001851615620005d35780820291505b8081029050620005e3856200086c565b9450620005a3565b94509492505050565b6000620006018262000792565b91506200060e836200079c565b92506200063d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000645565b905092915050565b6000826200065757600190506200072a565b816200066757600090506200072a565b81600181146200068057600281146200068b57620006c1565b60019150506200072a565b60ff841115620006a0576200069f620007df565b5b8360020a915084821115620006ba57620006b9620007df565b5b506200072a565b5060208310610133831016604e8410600b8410161715620006fb5782820a905083811115620006f557620006f4620007df565b5b6200072a565b6200070a848484600162000599565b92509050818404811115620007245762000723620007df565b5b81810290505b9392505050565b60006200073e8262000792565b91506200074b8362000792565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007875762000786620007df565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620007c257607f821691505b60208210811415620007d957620007d86200083d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61164180620008b26000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610278578063a9059cbb146102a8578063dd62ed3e146102d8578063f2fde38b14610308576100f5565b8063715018a61461021457806380fc5d171461021e5780638da5cb5b1461023c57806395d89b411461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610324565b60405161010f919061104a565b60405180910390f35b610132600480360381019061012d9190610e24565b6103b6565b60405161013f919061102f565b60405180910390f35b6101506103d9565b60405161015d919061118c565b60405180910390f35b610180600480360381019061017b9190610dd1565b6103e3565b60405161018d919061102f565b60405180910390f35b61019e610412565b6040516101ab91906111a7565b60405180910390f35b6101ce60048036038101906101c99190610e24565b61041b565b6040516101db919061102f565b60405180910390f35b6101fe60048036038101906101f99190610d64565b610452565b60405161020b919061118c565b60405180910390f35b61021c61049a565b005b6102266104ae565b604051610233919061118c565b60405180910390f35b6102446104b4565b6040516102519190611014565b60405180910390f35b6102626104de565b60405161026f919061104a565b60405180910390f35b610292600480360381019061028d9190610e24565b610570565b60405161029f919061102f565b60405180910390f35b6102c260048036038101906102bd9190610e24565b6105e7565b6040516102cf919061102f565b60405180910390f35b6102f260048036038101906102ed9190610d91565b61060a565b6040516102ff919061118c565b60405180910390f35b610322600480360381019061031d9190610d64565b610691565b005b606060038054610333906112bc565b80601f016020809104026020016040519081016040528092919081815260200182805461035f906112bc565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b6000806103c1610715565b90506103ce81858561071d565b600191505092915050565b6000600254905090565b6000806103ee610715565b90506103fb8582856108e8565b610406858585610974565b60019150509392505050565b60006012905090565b600080610426610715565b9050610447818585610438858961060a565b61044291906111de565b61071d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a2610bec565b6104ac6000610c6a565b565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104ed906112bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610519906112bc565b80156105665780601f1061053b57610100808354040283529160200191610566565b820191906000526020600020905b81548152906001019060200180831161054957829003601f168201915b5050505050905090565b60008061057b610715565b90506000610589828661060a565b9050838110156105ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c59061116c565b60405180910390fd5b6105db828686840361071d565b60019250505092915050565b6000806105f2610715565b90506105ff818585610974565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610699610bec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107009061108c565b60405180910390fd5b61071281610c6a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561078d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107849061114c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f4906110ac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108db919061118c565b60405180910390a3505050565b60006108f4848461060a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461096e5781811015610960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610957906110cc565b60405180910390fd5b61096d848484840361071d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db9061112c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b9061106c565b60405180910390fd5b610a5f838383610d30565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc906110ec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bd3919061118c565b60405180910390a3610be6848484610d35565b50505050565b610bf4610715565b73ffffffffffffffffffffffffffffffffffffffff16610c126104b4565b73ffffffffffffffffffffffffffffffffffffffff1614610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f9061110c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610d49816115dd565b92915050565b600081359050610d5e816115f4565b92915050565b600060208284031215610d7a57610d7961134c565b5b6000610d8884828501610d3a565b91505092915050565b60008060408385031215610da857610da761134c565b5b6000610db685828601610d3a565b9250506020610dc785828601610d3a565b9150509250929050565b600080600060608486031215610dea57610de961134c565b5b6000610df886828701610d3a565b9350506020610e0986828701610d3a565b9250506040610e1a86828701610d4f565b9150509250925092565b60008060408385031215610e3b57610e3a61134c565b5b6000610e4985828601610d3a565b9250506020610e5a85828601610d4f565b9150509250929050565b610e6d81611234565b82525050565b610e7c81611246565b82525050565b6000610e8d826111c2565b610e9781856111cd565b9350610ea7818560208601611289565b610eb081611351565b840191505092915050565b6000610ec86023836111cd565b9150610ed382611362565b604082019050919050565b6000610eeb6026836111cd565b9150610ef6826113b1565b604082019050919050565b6000610f0e6022836111cd565b9150610f1982611400565b604082019050919050565b6000610f31601d836111cd565b9150610f3c8261144f565b602082019050919050565b6000610f546026836111cd565b9150610f5f82611478565b604082019050919050565b6000610f776020836111cd565b9150610f82826114c7565b602082019050919050565b6000610f9a6025836111cd565b9150610fa5826114f0565b604082019050919050565b6000610fbd6024836111cd565b9150610fc88261153f565b604082019050919050565b6000610fe06025836111cd565b9150610feb8261158e565b604082019050919050565b610fff81611272565b82525050565b61100e8161127c565b82525050565b60006020820190506110296000830184610e64565b92915050565b60006020820190506110446000830184610e73565b92915050565b600060208201905081810360008301526110648184610e82565b905092915050565b6000602082019050818103600083015261108581610ebb565b9050919050565b600060208201905081810360008301526110a581610ede565b9050919050565b600060208201905081810360008301526110c581610f01565b9050919050565b600060208201905081810360008301526110e581610f24565b9050919050565b6000602082019050818103600083015261110581610f47565b9050919050565b6000602082019050818103600083015261112581610f6a565b9050919050565b6000602082019050818103600083015261114581610f8d565b9050919050565b6000602082019050818103600083015261116581610fb0565b9050919050565b6000602082019050818103600083015261118581610fd3565b9050919050565b60006020820190506111a16000830184610ff6565b92915050565b60006020820190506111bc6000830184611005565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111e982611272565b91506111f483611272565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611229576112286112ee565b5b828201905092915050565b600061123f82611252565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156112a757808201518184015260208101905061128c565b838111156112b6576000848401525b50505050565b600060028204905060018216806112d457607f821691505b602082108114156112e8576112e761131d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6115e681611234565b81146115f157600080fd5b50565b6115fd81611272565b811461160857600080fd5b5056fea2646970667358221220eaee4f8b44b867a2a91277ad743c619a71ae4585597e1acec7490752ae1232bf64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610278578063a9059cbb146102a8578063dd62ed3e146102d8578063f2fde38b14610308576100f5565b8063715018a61461021457806380fc5d171461021e5780638da5cb5b1461023c57806395d89b411461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610324565b60405161010f919061104a565b60405180910390f35b610132600480360381019061012d9190610e24565b6103b6565b60405161013f919061102f565b60405180910390f35b6101506103d9565b60405161015d919061118c565b60405180910390f35b610180600480360381019061017b9190610dd1565b6103e3565b60405161018d919061102f565b60405180910390f35b61019e610412565b6040516101ab91906111a7565b60405180910390f35b6101ce60048036038101906101c99190610e24565b61041b565b6040516101db919061102f565b60405180910390f35b6101fe60048036038101906101f99190610d64565b610452565b60405161020b919061118c565b60405180910390f35b61021c61049a565b005b6102266104ae565b604051610233919061118c565b60405180910390f35b6102446104b4565b6040516102519190611014565b60405180910390f35b6102626104de565b60405161026f919061104a565b60405180910390f35b610292600480360381019061028d9190610e24565b610570565b60405161029f919061102f565b60405180910390f35b6102c260048036038101906102bd9190610e24565b6105e7565b6040516102cf919061102f565b60405180910390f35b6102f260048036038101906102ed9190610d91565b61060a565b6040516102ff919061118c565b60405180910390f35b610322600480360381019061031d9190610d64565b610691565b005b606060038054610333906112bc565b80601f016020809104026020016040519081016040528092919081815260200182805461035f906112bc565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b6000806103c1610715565b90506103ce81858561071d565b600191505092915050565b6000600254905090565b6000806103ee610715565b90506103fb8582856108e8565b610406858585610974565b60019150509392505050565b60006012905090565b600080610426610715565b9050610447818585610438858961060a565b61044291906111de565b61071d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a2610bec565b6104ac6000610c6a565b565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104ed906112bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610519906112bc565b80156105665780601f1061053b57610100808354040283529160200191610566565b820191906000526020600020905b81548152906001019060200180831161054957829003601f168201915b5050505050905090565b60008061057b610715565b90506000610589828661060a565b9050838110156105ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c59061116c565b60405180910390fd5b6105db828686840361071d565b60019250505092915050565b6000806105f2610715565b90506105ff818585610974565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610699610bec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107009061108c565b60405180910390fd5b61071281610c6a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561078d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107849061114c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f4906110ac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108db919061118c565b60405180910390a3505050565b60006108f4848461060a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461096e5781811015610960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610957906110cc565b60405180910390fd5b61096d848484840361071d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db9061112c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b9061106c565b60405180910390fd5b610a5f838383610d30565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc906110ec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bd3919061118c565b60405180910390a3610be6848484610d35565b50505050565b610bf4610715565b73ffffffffffffffffffffffffffffffffffffffff16610c126104b4565b73ffffffffffffffffffffffffffffffffffffffff1614610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f9061110c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610d49816115dd565b92915050565b600081359050610d5e816115f4565b92915050565b600060208284031215610d7a57610d7961134c565b5b6000610d8884828501610d3a565b91505092915050565b60008060408385031215610da857610da761134c565b5b6000610db685828601610d3a565b9250506020610dc785828601610d3a565b9150509250929050565b600080600060608486031215610dea57610de961134c565b5b6000610df886828701610d3a565b9350506020610e0986828701610d3a565b9250506040610e1a86828701610d4f565b9150509250925092565b60008060408385031215610e3b57610e3a61134c565b5b6000610e4985828601610d3a565b9250506020610e5a85828601610d4f565b9150509250929050565b610e6d81611234565b82525050565b610e7c81611246565b82525050565b6000610e8d826111c2565b610e9781856111cd565b9350610ea7818560208601611289565b610eb081611351565b840191505092915050565b6000610ec86023836111cd565b9150610ed382611362565b604082019050919050565b6000610eeb6026836111cd565b9150610ef6826113b1565b604082019050919050565b6000610f0e6022836111cd565b9150610f1982611400565b604082019050919050565b6000610f31601d836111cd565b9150610f3c8261144f565b602082019050919050565b6000610f546026836111cd565b9150610f5f82611478565b604082019050919050565b6000610f776020836111cd565b9150610f82826114c7565b602082019050919050565b6000610f9a6025836111cd565b9150610fa5826114f0565b604082019050919050565b6000610fbd6024836111cd565b9150610fc88261153f565b604082019050919050565b6000610fe06025836111cd565b9150610feb8261158e565b604082019050919050565b610fff81611272565b82525050565b61100e8161127c565b82525050565b60006020820190506110296000830184610e64565b92915050565b60006020820190506110446000830184610e73565b92915050565b600060208201905081810360008301526110648184610e82565b905092915050565b6000602082019050818103600083015261108581610ebb565b9050919050565b600060208201905081810360008301526110a581610ede565b9050919050565b600060208201905081810360008301526110c581610f01565b9050919050565b600060208201905081810360008301526110e581610f24565b9050919050565b6000602082019050818103600083015261110581610f47565b9050919050565b6000602082019050818103600083015261112581610f6a565b9050919050565b6000602082019050818103600083015261114581610f8d565b9050919050565b6000602082019050818103600083015261116581610fb0565b9050919050565b6000602082019050818103600083015261118581610fd3565b9050919050565b60006020820190506111a16000830184610ff6565b92915050565b60006020820190506111bc6000830184611005565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111e982611272565b91506111f483611272565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611229576112286112ee565b5b828201905092915050565b600061123f82611252565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156112a757808201518184015260208101905061128c565b838111156112b6576000848401525b50505050565b600060028204905060018216806112d457607f821691505b602082108114156112e8576112e761131d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6115e681611234565b81146115f157600080fd5b50565b6115fd81611272565b811461160857600080fd5b5056fea2646970667358221220eaee4f8b44b867a2a91277ad743c619a71ae4585597e1acec7490752ae1232bf64736f6c63430008070033

Deployed Bytecode Sourcemap

20666:301:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9429:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11780:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10549:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12561:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10391:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13265:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10720:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2854:103;;;:::i;:::-;;20705:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2206:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9648:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14006:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11053:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11309:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3112:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9429:100;9483:13;9516:5;9509:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9429:100;:::o;11780:201::-;11863:4;11880:13;11896:12;:10;:12::i;:::-;11880:28;;11919:32;11928:5;11935:7;11944:6;11919:8;:32::i;:::-;11969:4;11962:11;;;11780:201;;;;:::o;10549:108::-;10610:7;10637:12;;10630:19;;10549:108;:::o;12561:295::-;12692:4;12709:15;12727:12;:10;:12::i;:::-;12709:30;;12750:38;12766:4;12772:7;12781:6;12750:15;:38::i;:::-;12799:27;12809:4;12815:2;12819:6;12799:9;:27::i;:::-;12844:4;12837:11;;;12561:295;;;;;:::o;10391:93::-;10449:5;10474:2;10467:9;;10391:93;:::o;13265:238::-;13353:4;13370:13;13386:12;:10;:12::i;:::-;13370:28;;13409:64;13418:5;13425:7;13462:10;13434:25;13444:5;13451:7;13434:9;:25::i;:::-;:38;;;;:::i;:::-;13409:8;:64::i;:::-;13491:4;13484:11;;;13265:238;;;;:::o;10720:127::-;10794:7;10821:9;:18;10831:7;10821:18;;;;;;;;;;;;;;;;10814:25;;10720:127;;;:::o;2854:103::-;2092:13;:11;:13::i;:::-;2919:30:::1;2946:1;2919:18;:30::i;:::-;2854:103::o:0;20705:33::-;;;;:::o;2206:87::-;2252:7;2279:6;;;;;;;;;;;2272:13;;2206:87;:::o;9648:104::-;9704:13;9737:7;9730:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9648:104;:::o;14006:436::-;14099:4;14116:13;14132:12;:10;:12::i;:::-;14116:28;;14155:24;14182:25;14192:5;14199:7;14182:9;:25::i;:::-;14155:52;;14246:15;14226:16;:35;;14218:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14339:60;14348:5;14355:7;14383:15;14364:16;:34;14339:8;:60::i;:::-;14430:4;14423:11;;;;14006:436;;;;:::o;11053:193::-;11132:4;11149:13;11165:12;:10;:12::i;:::-;11149:28;;11188;11198:5;11205:2;11209:6;11188:9;:28::i;:::-;11234:4;11227:11;;;11053:193;;;;:::o;11309:151::-;11398:7;11425:11;:18;11437:5;11425:18;;;;;;;;;;;;;;;:27;11444:7;11425:27;;;;;;;;;;;;;;;;11418:34;;11309:151;;;;:::o;3112:201::-;2092:13;:11;:13::i;:::-;3221:1:::1;3201:22;;:8;:22;;;;3193:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3277:28;3296:8;3277:18;:28::i;:::-;3112:201:::0;:::o;757:98::-;810:7;837:10;830:17;;757:98;:::o;18033:380::-;18186:1;18169:19;;:5;:19;;;;18161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18267:1;18248:21;;:7;:21;;;;18240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18351:6;18321:11;:18;18333:5;18321:18;;;;;;;;;;;;;;;:27;18340:7;18321:27;;;;;;;;;;;;;;;:36;;;;18389:7;18373:32;;18382:5;18373:32;;;18398:6;18373:32;;;;;;:::i;:::-;;;;;;;;18033:380;;;:::o;18704:453::-;18839:24;18866:25;18876:5;18883:7;18866:9;:25::i;:::-;18839:52;;18926:17;18906:16;:37;18902:248;;18988:6;18968:16;:26;;18960:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19072:51;19081:5;19088:7;19116:6;19097:16;:25;19072:8;:51::i;:::-;18902:248;18828:329;18704:453;;;:::o;14912:840::-;15059:1;15043:18;;:4;:18;;;;15035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15136:1;15122:16;;:2;:16;;;;15114:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15191:38;15212:4;15218:2;15222:6;15191:20;:38::i;:::-;15242:19;15264:9;:15;15274:4;15264:15;;;;;;;;;;;;;;;;15242:37;;15313:6;15298:11;:21;;15290:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15430:6;15416:11;:20;15398:9;:15;15408:4;15398:15;;;;;;;;;;;;;;;:38;;;;15633:6;15616:9;:13;15626:2;15616:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15683:2;15668:26;;15677:4;15668:26;;;15687:6;15668:26;;;;;;:::i;:::-;;;;;;;;15707:37;15727:4;15733:2;15737:6;15707:19;:37::i;:::-;15024:728;14912:840;;;:::o;2371:132::-;2446:12;:10;:12::i;:::-;2435:23;;:7;:5;:7::i;:::-;:23;;;2427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2371:132::o;3473:191::-;3547:16;3566:6;;;;;;;;;;;3547:25;;3592:8;3583:6;;:17;;;;;;;;;;;;;;;;;;3647:8;3616:40;;3637:8;3616:40;;;;;;;;;;;;3536:128;3473:191;:::o;19757:125::-;;;;:::o;20486:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;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;2456:364;;;;:::o;2826:366::-;2968:3;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;;2826:366;;;:::o;3198:::-;3340:3;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;;3198:366;;;:::o;3570:::-;3712:3;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;;3570:366;;;:::o;3942:::-;4084:3;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;;3942:366;;;:::o;4314:::-;4456:3;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;;4314:366;;;:::o;4686:::-;4828:3;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;;4686:366;;;:::o;5058:::-;5200:3;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;;5058:366;;;:::o;5430:::-;5572:3;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;;5430:366;;;:::o;5802:::-;5944:3;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;;5802:366;;;:::o;6174:118::-;6261:24;6279:5;6261:24;:::i;:::-;6256:3;6249:37;6174:118;;:::o;6298:112::-;6381:22;6397:5;6381:22;:::i;:::-;6376:3;6369:35;6298:112;;:::o;6416:222::-;6509:4;6547:2;6536:9;6532:18;6524:26;;6560:71;6628:1;6617:9;6613:17;6604:6;6560:71;:::i;:::-;6416:222;;;;:::o;6644:210::-;6731:4;6769:2;6758:9;6754:18;6746:26;;6782:65;6844:1;6833:9;6829:17;6820:6;6782:65;:::i;:::-;6644:210;;;;:::o;6860:313::-;6973:4;7011:2;7000:9;6996:18;6988:26;;7060:9;7054:4;7050:20;7046:1;7035:9;7031:17;7024:47;7088:78;7161:4;7152:6;7088:78;:::i;:::-;7080:86;;6860:313;;;;:::o;7179:419::-;7345:4;7383:2;7372:9;7368:18;7360:26;;7432:9;7426:4;7422:20;7418:1;7407:9;7403:17;7396:47;7460:131;7586:4;7460:131;:::i;:::-;7452:139;;7179:419;;;:::o;7604:::-;7770:4;7808:2;7797:9;7793:18;7785:26;;7857:9;7851:4;7847:20;7843:1;7832:9;7828:17;7821:47;7885:131;8011:4;7885:131;:::i;:::-;7877:139;;7604:419;;;:::o;8029:::-;8195:4;8233:2;8222:9;8218:18;8210:26;;8282:9;8276:4;8272:20;8268:1;8257:9;8253:17;8246:47;8310:131;8436:4;8310:131;:::i;:::-;8302:139;;8029:419;;;:::o;8454:::-;8620:4;8658:2;8647:9;8643:18;8635:26;;8707:9;8701:4;8697:20;8693:1;8682:9;8678:17;8671:47;8735:131;8861:4;8735:131;:::i;:::-;8727:139;;8454:419;;;:::o;8879:::-;9045:4;9083:2;9072:9;9068:18;9060:26;;9132:9;9126:4;9122:20;9118:1;9107:9;9103:17;9096:47;9160:131;9286:4;9160:131;:::i;:::-;9152:139;;8879:419;;;:::o;9304:::-;9470:4;9508:2;9497:9;9493:18;9485:26;;9557:9;9551:4;9547:20;9543:1;9532:9;9528:17;9521:47;9585:131;9711:4;9585:131;:::i;:::-;9577:139;;9304:419;;;:::o;9729:::-;9895:4;9933:2;9922:9;9918:18;9910:26;;9982:9;9976:4;9972:20;9968:1;9957:9;9953:17;9946:47;10010:131;10136:4;10010:131;:::i;:::-;10002:139;;9729:419;;;:::o;10154:::-;10320:4;10358:2;10347:9;10343:18;10335:26;;10407:9;10401:4;10397:20;10393:1;10382:9;10378:17;10371:47;10435:131;10561:4;10435:131;:::i;:::-;10427:139;;10154:419;;;:::o;10579:::-;10745:4;10783:2;10772:9;10768:18;10760:26;;10832:9;10826:4;10822:20;10818:1;10807:9;10803:17;10796:47;10860:131;10986:4;10860:131;:::i;:::-;10852:139;;10579:419;;;:::o;11004:222::-;11097:4;11135:2;11124:9;11120:18;11112:26;;11148:71;11216:1;11205:9;11201:17;11192:6;11148:71;:::i;:::-;11004:222;;;;:::o;11232:214::-;11321:4;11359:2;11348:9;11344:18;11336:26;;11372:67;11436:1;11425:9;11421:17;11412:6;11372:67;:::i;:::-;11232:214;;;;:::o;11533:99::-;11585:6;11619:5;11613:12;11603:22;;11533:99;;;:::o;11638:169::-;11722:11;11756:6;11751:3;11744:19;11796:4;11791:3;11787:14;11772:29;;11638:169;;;;:::o;11813:305::-;11853:3;11872:20;11890:1;11872:20;:::i;:::-;11867:25;;11906:20;11924:1;11906:20;:::i;:::-;11901:25;;12060:1;11992:66;11988:74;11985:1;11982:81;11979:107;;;12066:18;;:::i;:::-;11979:107;12110:1;12107;12103:9;12096:16;;11813:305;;;;:::o;12124:96::-;12161:7;12190:24;12208:5;12190:24;:::i;:::-;12179:35;;12124:96;;;:::o;12226:90::-;12260:7;12303:5;12296:13;12289:21;12278:32;;12226:90;;;:::o;12322:126::-;12359:7;12399:42;12392:5;12388:54;12377:65;;12322:126;;;:::o;12454:77::-;12491:7;12520:5;12509:16;;12454:77;;;:::o;12537:86::-;12572:7;12612:4;12605:5;12601:16;12590:27;;12537:86;;;:::o;12629:307::-;12697:1;12707:113;12721:6;12718:1;12715:13;12707:113;;;12806:1;12801:3;12797:11;12791:18;12787:1;12782:3;12778:11;12771:39;12743:2;12740:1;12736:10;12731:15;;12707:113;;;12838:6;12835:1;12832:13;12829:101;;;12918:1;12909:6;12904:3;12900:16;12893:27;12829:101;12678:258;12629:307;;;:::o;12942:320::-;12986:6;13023:1;13017:4;13013:12;13003:22;;13070:1;13064:4;13060:12;13091:18;13081:81;;13147:4;13139:6;13135:17;13125:27;;13081:81;13209:2;13201:6;13198:14;13178:18;13175:38;13172:84;;;13228:18;;:::i;:::-;13172:84;12993:269;12942:320;;;:::o;13268:180::-;13316:77;13313:1;13306:88;13413:4;13410:1;13403:15;13437:4;13434:1;13427:15;13454:180;13502:77;13499:1;13492:88;13599:4;13596:1;13589:15;13623:4;13620:1;13613:15;13763:117;13872:1;13869;13862:12;13886:102;13927:6;13978:2;13974:7;13969:2;13962:5;13958:14;13954:28;13944:38;;13886:102;;;:::o;13994:222::-;14134:34;14130:1;14122:6;14118:14;14111:58;14203:5;14198:2;14190:6;14186:15;14179:30;13994:222;:::o;14222:225::-;14362:34;14358:1;14350:6;14346:14;14339:58;14431:8;14426:2;14418:6;14414:15;14407:33;14222:225;:::o;14453:221::-;14593:34;14589:1;14581:6;14577:14;14570:58;14662:4;14657:2;14649:6;14645:15;14638:29;14453:221;:::o;14680:179::-;14820:31;14816:1;14808:6;14804:14;14797:55;14680:179;:::o;14865:225::-;15005:34;15001:1;14993:6;14989:14;14982:58;15074:8;15069:2;15061:6;15057:15;15050:33;14865:225;:::o;15096:182::-;15236:34;15232:1;15224:6;15220:14;15213:58;15096:182;:::o;15284:224::-;15424:34;15420:1;15412:6;15408:14;15401:58;15493:7;15488:2;15480:6;15476:15;15469:32;15284:224;:::o;15514:223::-;15654:34;15650:1;15642:6;15638:14;15631:58;15723:6;15718:2;15710:6;15706:15;15699:31;15514:223;:::o;15743:224::-;15883:34;15879:1;15871:6;15867:14;15860:58;15952:7;15947:2;15939:6;15935:15;15928:32;15743:224;:::o;15973:122::-;16046:24;16064:5;16046:24;:::i;:::-;16039:5;16036:35;16026:63;;16085:1;16082;16075:12;16026:63;15973:122;:::o;16101:::-;16174:24;16192:5;16174:24;:::i;:::-;16167:5;16164:35;16154:63;;16213:1;16210;16203:12;16154:63;16101:122;:::o

Swarm Source

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