ETH Price: $3,337.60 (-1.10%)
Gas: 9 Gwei

Token

The7Chakras (CHAKRAS)
 

Overview

Max Total Supply

7,953,950,000 CHAKRAS

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
fomoplz.eth
Balance
5,108,048.018029440226256178 CHAKRAS

Value
$0.00
0x87f8652128dd9ddc7938b277b14311dbf05240ab
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:
THE7CHAKRAS

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2022-07-28
*/

// SPDX-License-Identifier: GPL-3.0

//                            _
//                         _ooOoo_
//                        o8888888o
//                        88" . "88
//                        (| -_- |)
//                        O\  =  /O
//                     ____/`---'\____
//                   .'  \\|     |//  `.
//                  /  \\|||  :  |||//  \
//                 /  _||||| -:- |||||_  \
//                 |   | \\\  -  /'| |   |
//                 | \_|  `\`---'//  |_/ |
//                 \  .-\__ `-. -'__/-.  /
//               ___`. .'  /--.--\  `. .'___
//            ."" '<  `.___\_<|>_/___.' _> \"".
//           | | :  `- \`. ;`. _/; .'/ /  .' ; |
//           \  \ `-.   \_\_`. _.'_/_/  -' _.' /
// ===========`-.`___`-.__\ \___  /__.-'_.'_.-'================
//                         `=--=-'                    

//The7chakras is more than a simple token but a philosophy of life to be shared through a totally decentralized token belonging to this community!

//Twitter: https://twitter.com/the_7chakras
//Telegram: https://t.me/the_7chakras
//Website: https://the7chakras.io/

 
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/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/token/ERC20/ERC20.sol
 
// OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, 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;
        }
        _balances[to] += amount;
 
        emit Transfer(from, to, amount);
 
        _afterTokenTransfer(from, to, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
 
        _afterTokenTransfer(address(0), account, amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;
 
        emit Transfer(account, address(0), amount);
 
        _afterTokenTransfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev 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 {}
}
 
contract THE7CHAKRAS is ERC20{
    constructor() ERC20("The7Chakras", "CHAKRAS"){
        _mint(msg.sender,7953950000*10**18);
    }
 
    mapping(address => string) public chakras;
 
    function selectYourChakra(uint id) public {
        require(bytes(chakras[msg.sender]).length == 0, "You already chosen your chakra");
        require(id > 0 && 8 > id, "Select a number between 1 and 7");
        if(id == 1) {
            chakras[msg.sender] = "Muladhara";
        }
        if(id == 2) {
            chakras[msg.sender] = "Svadhishthana";
        }
        if(id == 3) {
            chakras[msg.sender] = "Manipura";
        }
        if(id == 4) {
            chakras[msg.sender] = "Anahata";
        }
        if(id == 5) {
            chakras[msg.sender] = "Vishuddha";
        }
        if(id == 6) {
            chakras[msg.sender] = "Ajna";
        }
        if(id == 7) {
            chakras[msg.sender] = "Sahasrara";
        }
 
    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"chakras","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"selectYourChakra","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f546865374368616b7261730000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4348414b5241530000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000259565b508060049080519060200190620000af92919062000259565b505050620000d0336b19b35a6d7df73e8ed6c00000620000d660201b60201c565b620004a7565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000140906200035c565b60405180910390fd5b6200015d600083836200024f60201b60201c565b8060026000828254620001719190620003ac565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001c89190620003ac565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200022f91906200037e565b60405180910390a36200024b600083836200025460201b60201c565b5050565b505050565b505050565b828054620002679062000413565b90600052602060002090601f0160209004810192826200028b5760008555620002d7565b82601f10620002a657805160ff1916838001178555620002d7565b82800160010185558215620002d7579182015b82811115620002d6578251825591602001919060010190620002b9565b5b509050620002e69190620002ea565b5090565b5b8082111562000305576000816000905550600101620002eb565b5090565b600062000318601f836200039b565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620003568162000409565b82525050565b60006020820190508181036000830152620003778162000309565b9050919050565b60006020820190506200039560008301846200034b565b92915050565b600082825260208201905092915050565b6000620003b98262000409565b9150620003c68362000409565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003fe57620003fd62000449565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200042c57607f821691505b6020821081141562000443576200044262000478565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61198280620004b76000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80634a259a8e1161008c578063a457c2d711610066578063a457c2d714610228578063a9059cbb14610258578063dd62ed3e14610288578063e998d34e146102b8576100cf565b80634a259a8e146101be57806370a08231146101da57806395d89b411461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102e8565b6040516100e9919061160b565b60405180910390f35b61010c60048036038101906101079190611201565b61037a565b60405161011991906115f0565b60405180910390f35b61012a61039d565b604051610137919061174d565b60405180910390f35b61015a600480360381019061015591906111b2565b6103a7565b60405161016791906115f0565b60405180910390f35b6101786103d6565b6040516101859190611768565b60405180910390f35b6101a860048036038101906101a39190611201565b6103df565b6040516101b591906115f0565b60405180910390f35b6101d860048036038101906101d3919061123d565b610416565b005b6101f460048036038101906101ef919061114d565b6108fb565b604051610201919061174d565b60405180910390f35b610212610943565b60405161021f919061160b565b60405180910390f35b610242600480360381019061023d9190611201565b6109d5565b60405161024f91906115f0565b60405180910390f35b610272600480360381019061026d9190611201565b610a4c565b60405161027f91906115f0565b60405180910390f35b6102a2600480360381019061029d9190611176565b610a6f565b6040516102af919061174d565b60405180910390f35b6102d260048036038101906102cd919061114d565b610af6565b6040516102df919061160b565b60405180910390f35b6060600380546102f79061187d565b80601f01602080910402602001604051908101604052809291908181526020018280546103239061187d565b80156103705780601f1061034557610100808354040283529160200191610370565b820191906000526020600020905b81548152906001019060200180831161035357829003601f168201915b5050505050905090565b600080610385610b96565b9050610392818585610b9e565b600191505092915050565b6000600254905090565b6000806103b2610b96565b90506103bf858285610d69565b6103ca858585610df5565b60019150509392505050565b60006012905090565b6000806103ea610b96565b905061040b8185856103fc8589610a6f565b610406919061179f565b610b9e565b600191505092915050565b6000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080546104629061187d565b9050146104a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049b906116ad565b60405180910390fd5b6000811180156104b45750806008115b6104f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ea9061170d565b60405180910390fd5b6001811415610586576040518060400160405280600981526020017f4d756c6164686172610000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209080519060200190610584929190611080565b505b6002811415610619576040518060400160405280600d81526020017f53766164686973687468616e6100000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209080519060200190610617929190611080565b505b60038114156106ac576040518060400160405280600881526020017f4d616e6970757261000000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090805190602001906106aa929190611080565b505b600481141561073f576040518060400160405280600781526020017f416e616861746100000000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020908051906020019061073d929190611080565b505b60058114156107d2576040518060400160405280600981526020017f5669736875646468610000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090805190602001906107d0929190611080565b505b6006811415610865576040518060400160405280600481526020017f416a6e6100000000000000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209080519060200190610863929190611080565b505b60078114156108f8576040518060400160405280600981526020017f5361686173726172610000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090805190602001906108f6929190611080565b505b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546109529061187d565b80601f016020809104026020016040519081016040528092919081815260200182805461097e9061187d565b80156109cb5780601f106109a0576101008083540402835291602001916109cb565b820191906000526020600020905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b6000806109e0610b96565b905060006109ee8286610a6f565b905083811015610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a9061172d565b60405180910390fd5b610a408286868403610b9e565b60019250505092915050565b600080610a57610b96565b9050610a64818585610df5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60056020528060005260406000206000915090508054610b159061187d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b419061187d565b8015610b8e5780601f10610b6357610100808354040283529160200191610b8e565b820191906000526020600020905b815481529060010190602001808311610b7157829003601f168201915b505050505081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c05906116ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c759061164d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d5c919061174d565b60405180910390a3505050565b6000610d758484610a6f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610def5781811015610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd89061166d565b60405180910390fd5b610dee8484848403610b9e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906116cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc9061162d565b60405180910390fd5b610ee0838383611076565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d9061168d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff9919061179f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161105d919061174d565b60405180910390a361107084848461107b565b50505050565b505050565b505050565b82805461108c9061187d565b90600052602060002090601f0160209004810192826110ae57600085556110f5565b82601f106110c757805160ff19168380011785556110f5565b828001600101855582156110f5579182015b828111156110f45782518255916020019190600101906110d9565b5b5090506111029190611106565b5090565b5b8082111561111f576000816000905550600101611107565b5090565b6000813590506111328161191e565b92915050565b60008135905061114781611935565b92915050565b60006020828403121561115f57600080fd5b600061116d84828501611123565b91505092915050565b6000806040838503121561118957600080fd5b600061119785828601611123565b92505060206111a885828601611123565b9150509250929050565b6000806000606084860312156111c757600080fd5b60006111d586828701611123565b93505060206111e686828701611123565b92505060406111f786828701611138565b9150509250925092565b6000806040838503121561121457600080fd5b600061122285828601611123565b925050602061123385828601611138565b9150509250929050565b60006020828403121561124f57600080fd5b600061125d84828501611138565b91505092915050565b61126f81611807565b82525050565b600061128082611783565b61128a818561178e565b935061129a81856020860161184a565b6112a38161190d565b840191505092915050565b60006112bb60238361178e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061132160228361178e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611387601d8361178e565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006113c760268361178e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061142d601e8361178e565b91507f596f7520616c72656164792063686f73656e20796f7572206368616b726100006000830152602082019050919050565b600061146d60258361178e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114d360248361178e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611539601f8361178e565b91507f53656c6563742061206e756d626572206265747765656e203120616e642037006000830152602082019050919050565b600061157960258361178e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6115db81611833565b82525050565b6115ea8161183d565b82525050565b60006020820190506116056000830184611266565b92915050565b600060208201905081810360008301526116258184611275565b905092915050565b60006020820190508181036000830152611646816112ae565b9050919050565b6000602082019050818103600083015261166681611314565b9050919050565b600060208201905081810360008301526116868161137a565b9050919050565b600060208201905081810360008301526116a6816113ba565b9050919050565b600060208201905081810360008301526116c681611420565b9050919050565b600060208201905081810360008301526116e681611460565b9050919050565b60006020820190508181036000830152611706816114c6565b9050919050565b600060208201905081810360008301526117268161152c565b9050919050565b600060208201905081810360008301526117468161156c565b9050919050565b600060208201905061176260008301846115d2565b92915050565b600060208201905061177d60008301846115e1565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117aa82611833565b91506117b583611833565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117ea576117e96118af565b5b828201905092915050565b600061180082611813565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561186857808201518184015260208101905061184d565b83811115611877576000848401525b50505050565b6000600282049050600182168061189557607f821691505b602082108114156118a9576118a86118de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611927816117f5565b811461193257600080fd5b50565b61193e81611833565b811461194957600080fd5b5056fea2646970667358221220dcb9c0c1875c29dba025e8233945ea5b6d8641a3981a1cbdf2bd9b74ccd42cc964736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80634a259a8e1161008c578063a457c2d711610066578063a457c2d714610228578063a9059cbb14610258578063dd62ed3e14610288578063e998d34e146102b8576100cf565b80634a259a8e146101be57806370a08231146101da57806395d89b411461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102e8565b6040516100e9919061160b565b60405180910390f35b61010c60048036038101906101079190611201565b61037a565b60405161011991906115f0565b60405180910390f35b61012a61039d565b604051610137919061174d565b60405180910390f35b61015a600480360381019061015591906111b2565b6103a7565b60405161016791906115f0565b60405180910390f35b6101786103d6565b6040516101859190611768565b60405180910390f35b6101a860048036038101906101a39190611201565b6103df565b6040516101b591906115f0565b60405180910390f35b6101d860048036038101906101d3919061123d565b610416565b005b6101f460048036038101906101ef919061114d565b6108fb565b604051610201919061174d565b60405180910390f35b610212610943565b60405161021f919061160b565b60405180910390f35b610242600480360381019061023d9190611201565b6109d5565b60405161024f91906115f0565b60405180910390f35b610272600480360381019061026d9190611201565b610a4c565b60405161027f91906115f0565b60405180910390f35b6102a2600480360381019061029d9190611176565b610a6f565b6040516102af919061174d565b60405180910390f35b6102d260048036038101906102cd919061114d565b610af6565b6040516102df919061160b565b60405180910390f35b6060600380546102f79061187d565b80601f01602080910402602001604051908101604052809291908181526020018280546103239061187d565b80156103705780601f1061034557610100808354040283529160200191610370565b820191906000526020600020905b81548152906001019060200180831161035357829003601f168201915b5050505050905090565b600080610385610b96565b9050610392818585610b9e565b600191505092915050565b6000600254905090565b6000806103b2610b96565b90506103bf858285610d69565b6103ca858585610df5565b60019150509392505050565b60006012905090565b6000806103ea610b96565b905061040b8185856103fc8589610a6f565b610406919061179f565b610b9e565b600191505092915050565b6000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080546104629061187d565b9050146104a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049b906116ad565b60405180910390fd5b6000811180156104b45750806008115b6104f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ea9061170d565b60405180910390fd5b6001811415610586576040518060400160405280600981526020017f4d756c6164686172610000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209080519060200190610584929190611080565b505b6002811415610619576040518060400160405280600d81526020017f53766164686973687468616e6100000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209080519060200190610617929190611080565b505b60038114156106ac576040518060400160405280600881526020017f4d616e6970757261000000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090805190602001906106aa929190611080565b505b600481141561073f576040518060400160405280600781526020017f416e616861746100000000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020908051906020019061073d929190611080565b505b60058114156107d2576040518060400160405280600981526020017f5669736875646468610000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090805190602001906107d0929190611080565b505b6006811415610865576040518060400160405280600481526020017f416a6e6100000000000000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209080519060200190610863929190611080565b505b60078114156108f8576040518060400160405280600981526020017f5361686173726172610000000000000000000000000000000000000000000000815250600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090805190602001906108f6929190611080565b505b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546109529061187d565b80601f016020809104026020016040519081016040528092919081815260200182805461097e9061187d565b80156109cb5780601f106109a0576101008083540402835291602001916109cb565b820191906000526020600020905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b6000806109e0610b96565b905060006109ee8286610a6f565b905083811015610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a9061172d565b60405180910390fd5b610a408286868403610b9e565b60019250505092915050565b600080610a57610b96565b9050610a64818585610df5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60056020528060005260406000206000915090508054610b159061187d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b419061187d565b8015610b8e5780601f10610b6357610100808354040283529160200191610b8e565b820191906000526020600020905b815481529060010190602001808311610b7157829003601f168201915b505050505081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c05906116ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c759061164d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d5c919061174d565b60405180910390a3505050565b6000610d758484610a6f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610def5781811015610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd89061166d565b60405180910390fd5b610dee8484848403610b9e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906116cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc9061162d565b60405180910390fd5b610ee0838383611076565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d9061168d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff9919061179f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161105d919061174d565b60405180910390a361107084848461107b565b50505050565b505050565b505050565b82805461108c9061187d565b90600052602060002090601f0160209004810192826110ae57600085556110f5565b82601f106110c757805160ff19168380011785556110f5565b828001600101855582156110f5579182015b828111156110f45782518255916020019190600101906110d9565b5b5090506111029190611106565b5090565b5b8082111561111f576000816000905550600101611107565b5090565b6000813590506111328161191e565b92915050565b60008135905061114781611935565b92915050565b60006020828403121561115f57600080fd5b600061116d84828501611123565b91505092915050565b6000806040838503121561118957600080fd5b600061119785828601611123565b92505060206111a885828601611123565b9150509250929050565b6000806000606084860312156111c757600080fd5b60006111d586828701611123565b93505060206111e686828701611123565b92505060406111f786828701611138565b9150509250925092565b6000806040838503121561121457600080fd5b600061122285828601611123565b925050602061123385828601611138565b9150509250929050565b60006020828403121561124f57600080fd5b600061125d84828501611138565b91505092915050565b61126f81611807565b82525050565b600061128082611783565b61128a818561178e565b935061129a81856020860161184a565b6112a38161190d565b840191505092915050565b60006112bb60238361178e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061132160228361178e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611387601d8361178e565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006113c760268361178e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061142d601e8361178e565b91507f596f7520616c72656164792063686f73656e20796f7572206368616b726100006000830152602082019050919050565b600061146d60258361178e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114d360248361178e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611539601f8361178e565b91507f53656c6563742061206e756d626572206265747765656e203120616e642037006000830152602082019050919050565b600061157960258361178e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6115db81611833565b82525050565b6115ea8161183d565b82525050565b60006020820190506116056000830184611266565b92915050565b600060208201905081810360008301526116258184611275565b905092915050565b60006020820190508181036000830152611646816112ae565b9050919050565b6000602082019050818103600083015261166681611314565b9050919050565b600060208201905081810360008301526116868161137a565b9050919050565b600060208201905081810360008301526116a6816113ba565b9050919050565b600060208201905081810360008301526116c681611420565b9050919050565b600060208201905081810360008301526116e681611460565b9050919050565b60006020820190508181036000830152611706816114c6565b9050919050565b600060208201905081810360008301526117268161152c565b9050919050565b600060208201905081810360008301526117468161156c565b9050919050565b600060208201905061176260008301846115d2565b92915050565b600060208201905061177d60008301846115e1565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117aa82611833565b91506117b583611833565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117ea576117e96118af565b5b828201905092915050565b600061180082611813565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561186857808201518184015260208101905061184d565b83811115611877576000848401525b50505050565b6000600282049050600182168061189557607f821691505b602082108114156118a9576118a86118de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611927816117f5565b811461193257600080fd5b50565b61193e81611833565b811461194957600080fd5b5056fea2646970667358221220dcb9c0c1875c29dba025e8233945ea5b6d8641a3981a1cbdf2bd9b74ccd42cc964736f6c63430008000033

Deployed Bytecode Sourcemap

18503:984:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7686:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10044:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8809:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10826:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8650:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11531:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18698:786;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8981:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7906:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12273:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9315:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9572:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18647:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7686:100;7740:13;7773:5;7766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7686:100;:::o;10044:201::-;10127:4;10144:13;10160:12;:10;:12::i;:::-;10144:28;;10183:32;10192:5;10199:7;10208:6;10183:8;:32::i;:::-;10233:4;10226:11;;;10044:201;;;;:::o;8809:108::-;8870:7;8897:12;;8890:19;;8809:108;:::o;10826:295::-;10957:4;10974:15;10992:12;:10;:12::i;:::-;10974:30;;11015:38;11031:4;11037:7;11046:6;11015:15;:38::i;:::-;11064:27;11074:4;11080:2;11084:6;11064:9;:27::i;:::-;11109:4;11102:11;;;10826:295;;;;;:::o;8650:93::-;8708:5;8733:2;8726:9;;8650:93;:::o;11531:238::-;11619:4;11636:13;11652:12;:10;:12::i;:::-;11636:28;;11675:64;11684:5;11691:7;11728:10;11700:25;11710:5;11717:7;11700:9;:25::i;:::-;:38;;;;:::i;:::-;11675:8;:64::i;:::-;11757:4;11750:11;;;11531:238;;;;:::o;18698:786::-;18796:1;18765:7;:19;18773:10;18765:19;;;;;;;;;;;;;;;18759:33;;;;;:::i;:::-;;;:38;18751:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;18856:1;18851:2;:6;:16;;;;;18865:2;18861:1;:6;18851:16;18843:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;18923:1;18917:2;:7;18914:72;;;18941:33;;;;;;;;;;;;;;;;;:7;:19;18949:10;18941:19;;;;;;;;;;;;;;;:33;;;;;;;;;;;;:::i;:::-;;18914:72;19005:1;18999:2;:7;18996:76;;;19023:37;;;;;;;;;;;;;;;;;:7;:19;19031:10;19023:19;;;;;;;;;;;;;;;:37;;;;;;;;;;;;:::i;:::-;;18996:76;19091:1;19085:2;:7;19082:71;;;19109:32;;;;;;;;;;;;;;;;;:7;:19;19117:10;19109:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;:::i;:::-;;19082:71;19172:1;19166:2;:7;19163:70;;;19190:31;;;;;;;;;;;;;;;;;:7;:19;19198:10;19190:19;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;19163:70;19252:1;19246:2;:7;19243:72;;;19270:33;;;;;;;;;;;;;;;;;:7;:19;19278:10;19270:19;;;;;;;;;;;;;;;:33;;;;;;;;;;;;:::i;:::-;;19243:72;19334:1;19328:2;:7;19325:67;;;19352:28;;;;;;;;;;;;;;;;;:7;:19;19360:10;19352:19;;;;;;;;;;;;;;;:28;;;;;;;;;;;;:::i;:::-;;19325:67;19411:1;19405:2;:7;19402:72;;;19429:33;;;;;;;;;;;;;;;;;:7;:19;19437:10;19429:19;;;;;;;;;;;;;;;:33;;;;;;;;;;;;:::i;:::-;;19402:72;18698:786;:::o;8981:127::-;9055:7;9082:9;:18;9092:7;9082:18;;;;;;;;;;;;;;;;9075:25;;8981:127;;;:::o;7906:104::-;7962:13;7995:7;7988:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7906:104;:::o;12273:437::-;12366:4;12383:13;12399:12;:10;:12::i;:::-;12383:28;;12422:24;12449:25;12459:5;12466:7;12449:9;:25::i;:::-;12422:52;;12513:15;12493:16;:35;;12485:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12606:60;12615:5;12622:7;12650:15;12631:16;:34;12606:8;:60::i;:::-;12698:4;12691:11;;;;12273:437;;;;:::o;9315:193::-;9394:4;9411:13;9427:12;:10;:12::i;:::-;9411:28;;9450;9460:5;9467:2;9471:6;9450:9;:28::i;:::-;9496:4;9489:11;;;9315:193;;;;:::o;9572:151::-;9661:7;9688:11;:18;9700:5;9688:18;;;;;;;;;;;;;;;:27;9707:7;9688:27;;;;;;;;;;;;;;;;9681:34;;9572:151;;;;:::o;18647:41::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5318:98::-;5371:7;5398:10;5391:17;;5318:98;:::o;15914:381::-;16067:1;16050:19;;:5;:19;;;;16042:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16148:1;16129:21;;:7;:21;;;;16121:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16233:6;16203:11;:18;16215:5;16203:18;;;;;;;;;;;;;;;:27;16222:7;16203:27;;;;;;;;;;;;;;;:36;;;;16271:7;16255:32;;16264:5;16255:32;;;16280:6;16255:32;;;;;;:::i;:::-;;;;;;;;15914:381;;;:::o;16587:453::-;16722:24;16749:25;16759:5;16766:7;16749:9;:25::i;:::-;16722:52;;16809:17;16789:16;:37;16785:248;;16871:6;16851:16;:26;;16843:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16955:51;16964:5;16971:7;16999:6;16980:16;:25;16955:8;:51::i;:::-;16785:248;16587:453;;;;:::o;13181:675::-;13328:1;13312:18;;:4;:18;;;;13304:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13405:1;13391:16;;:2;:16;;;;13383:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;13461:38;13482:4;13488:2;13492:6;13461:20;:38::i;:::-;13513:19;13535:9;:15;13545:4;13535:15;;;;;;;;;;;;;;;;13513:37;;13584:6;13569:11;:21;;13561:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13701:6;13687:11;:20;13669:9;:15;13679:4;13669:15;;;;;;;;;;;;;;;:38;;;;13746:6;13729:9;:13;13739:2;13729:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;13786:2;13771:26;;13780:4;13771:26;;;13790:6;13771:26;;;;;;:::i;:::-;;;;;;;;13811:37;13831:4;13837:2;13841:6;13811:19;:37::i;:::-;13181:675;;;;:::o;17641:125::-;;;;:::o;18371:124::-;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;;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:109::-;2298:21;2313:5;2298:21;:::i;:::-;2293:3;2286:34;2276:50;;:::o;2332:364::-;;2448:39;2481:5;2448:39;:::i;:::-;2503:71;2567:6;2562:3;2503:71;:::i;:::-;2496:78;;2583:52;2628:6;2623:3;2616:4;2609:5;2605:16;2583:52;:::i;:::-;2660:29;2682:6;2660:29;:::i;:::-;2655:3;2651:39;2644:46;;2424:272;;;;;:::o;2702:367::-;;2865:67;2929:2;2924:3;2865:67;:::i;:::-;2858:74;;2962:34;2958:1;2953:3;2949:11;2942:55;3028:5;3023:2;3018:3;3014:12;3007:27;3060:2;3055:3;3051:12;3044:19;;2848:221;;;:::o;3075:366::-;;3238:67;3302:2;3297:3;3238:67;:::i;:::-;3231:74;;3335:34;3331:1;3326:3;3322:11;3315:55;3401:4;3396:2;3391:3;3387:12;3380:26;3432:2;3427:3;3423:12;3416:19;;3221:220;;;:::o;3447:327::-;;3610:67;3674:2;3669:3;3610:67;:::i;:::-;3603:74;;3707:31;3703:1;3698:3;3694:11;3687:52;3765:2;3760:3;3756:12;3749:19;;3593:181;;;:::o;3780:370::-;;3943:67;4007:2;4002:3;3943:67;:::i;:::-;3936:74;;4040:34;4036:1;4031:3;4027:11;4020:55;4106:8;4101:2;4096:3;4092:12;4085:30;4141:2;4136:3;4132:12;4125:19;;3926:224;;;:::o;4156:328::-;;4319:67;4383:2;4378:3;4319:67;:::i;:::-;4312:74;;4416:32;4412:1;4407:3;4403:11;4396:53;4475:2;4470:3;4466:12;4459:19;;4302:182;;;:::o;4490:369::-;;4653:67;4717:2;4712:3;4653:67;:::i;:::-;4646:74;;4750:34;4746:1;4741:3;4737:11;4730:55;4816:7;4811:2;4806:3;4802:12;4795:29;4850:2;4845:3;4841:12;4834:19;;4636:223;;;:::o;4865:368::-;;5028:67;5092:2;5087:3;5028:67;:::i;:::-;5021:74;;5125:34;5121:1;5116:3;5112:11;5105:55;5191:6;5186:2;5181:3;5177:12;5170:28;5224:2;5219:3;5215:12;5208:19;;5011:222;;;:::o;5239:329::-;;5402:67;5466:2;5461:3;5402:67;:::i;:::-;5395:74;;5499:33;5495:1;5490:3;5486:11;5479:54;5559:2;5554:3;5550:12;5543:19;;5385:183;;;:::o;5574:369::-;;5737:67;5801:2;5796:3;5737:67;:::i;:::-;5730:74;;5834:34;5830:1;5825:3;5821:11;5814:55;5900:7;5895:2;5890:3;5886:12;5879:29;5934:2;5929:3;5925:12;5918:19;;5720:223;;;:::o;5949:118::-;6036:24;6054:5;6036:24;:::i;:::-;6031:3;6024:37;6014:53;;:::o;6073:112::-;6156:22;6172:5;6156:22;:::i;:::-;6151:3;6144:35;6134:51;;:::o;6191:210::-;;6316:2;6305:9;6301:18;6293:26;;6329:65;6391:1;6380:9;6376:17;6367:6;6329:65;:::i;:::-;6283:118;;;;:::o;6407:313::-;;6558:2;6547:9;6543:18;6535:26;;6607:9;6601:4;6597:20;6593:1;6582:9;6578:17;6571:47;6635:78;6708:4;6699:6;6635:78;:::i;:::-;6627:86;;6525:195;;;;:::o;6726:419::-;;6930:2;6919:9;6915:18;6907:26;;6979:9;6973:4;6969:20;6965:1;6954:9;6950:17;6943:47;7007:131;7133:4;7007:131;:::i;:::-;6999:139;;6897:248;;;:::o;7151:419::-;;7355:2;7344:9;7340:18;7332:26;;7404:9;7398:4;7394:20;7390:1;7379:9;7375:17;7368:47;7432:131;7558:4;7432:131;:::i;:::-;7424:139;;7322:248;;;:::o;7576:419::-;;7780:2;7769:9;7765:18;7757:26;;7829:9;7823:4;7819:20;7815:1;7804:9;7800:17;7793:47;7857:131;7983:4;7857:131;:::i;:::-;7849:139;;7747:248;;;:::o;8001:419::-;;8205:2;8194:9;8190:18;8182:26;;8254:9;8248:4;8244:20;8240:1;8229:9;8225:17;8218:47;8282:131;8408:4;8282:131;:::i;:::-;8274:139;;8172:248;;;:::o;8426:419::-;;8630:2;8619:9;8615:18;8607:26;;8679:9;8673:4;8669:20;8665:1;8654:9;8650:17;8643:47;8707:131;8833:4;8707:131;:::i;:::-;8699:139;;8597:248;;;:::o;8851:419::-;;9055:2;9044:9;9040:18;9032:26;;9104:9;9098:4;9094:20;9090:1;9079:9;9075:17;9068:47;9132:131;9258:4;9132:131;:::i;:::-;9124:139;;9022:248;;;:::o;9276:419::-;;9480:2;9469:9;9465:18;9457:26;;9529:9;9523:4;9519:20;9515:1;9504:9;9500:17;9493:47;9557:131;9683:4;9557:131;:::i;:::-;9549:139;;9447:248;;;:::o;9701:419::-;;9905:2;9894:9;9890:18;9882:26;;9954:9;9948:4;9944:20;9940:1;9929:9;9925:17;9918:47;9982:131;10108:4;9982:131;:::i;:::-;9974:139;;9872:248;;;:::o;10126:419::-;;10330:2;10319:9;10315:18;10307:26;;10379:9;10373:4;10369:20;10365:1;10354:9;10350:17;10343:47;10407:131;10533:4;10407:131;:::i;:::-;10399:139;;10297:248;;;:::o;10551:222::-;;10682:2;10671:9;10667:18;10659:26;;10695:71;10763:1;10752:9;10748:17;10739:6;10695:71;:::i;:::-;10649:124;;;;:::o;10779:214::-;;10906:2;10895:9;10891:18;10883:26;;10919:67;10983:1;10972:9;10968:17;10959:6;10919:67;:::i;:::-;10873:120;;;;:::o;10999:99::-;;11085:5;11079:12;11069:22;;11058:40;;;:::o;11104:169::-;;11222:6;11217:3;11210:19;11262:4;11257:3;11253:14;11238:29;;11200:73;;;;:::o;11279:305::-;;11338:20;11356:1;11338:20;:::i;:::-;11333:25;;11372:20;11390:1;11372:20;:::i;:::-;11367:25;;11526:1;11458:66;11454:74;11451:1;11448:81;11445:2;;;11532:18;;:::i;:::-;11445:2;11576:1;11573;11569:9;11562:16;;11323:261;;;;:::o;11590:96::-;;11656:24;11674:5;11656:24;:::i;:::-;11645:35;;11635:51;;;:::o;11692:90::-;;11769:5;11762:13;11755:21;11744:32;;11734:48;;;:::o;11788:126::-;;11865:42;11858:5;11854:54;11843:65;;11833:81;;;:::o;11920:77::-;;11986:5;11975:16;;11965:32;;;:::o;12003:86::-;;12078:4;12071:5;12067:16;12056:27;;12046:43;;;:::o;12095:307::-;12163:1;12173:113;12187:6;12184:1;12181:13;12173:113;;;12272:1;12267:3;12263:11;12257:18;12253:1;12248:3;12244:11;12237:39;12209:2;12206:1;12202:10;12197:15;;12173:113;;;12304:6;12301:1;12298:13;12295:2;;;12384:1;12375:6;12370:3;12366:16;12359:27;12295:2;12144:258;;;;:::o;12408:320::-;;12489:1;12483:4;12479:12;12469:22;;12536:1;12530:4;12526:12;12557:18;12547:2;;12613:4;12605:6;12601:17;12591:27;;12547:2;12675;12667:6;12664:14;12644:18;12641:38;12638:2;;;12694:18;;:::i;:::-;12638:2;12459:269;;;;:::o;12734:180::-;12782:77;12779:1;12772:88;12879:4;12876:1;12869:15;12903:4;12900:1;12893:15;12920:180;12968:77;12965:1;12958:88;13065:4;13062:1;13055:15;13089:4;13086:1;13079:15;13106:102;;13198:2;13194:7;13189:2;13182:5;13178:14;13174:28;13164:38;;13154:54;;;:::o;13214:122::-;13287:24;13305:5;13287:24;:::i;:::-;13280:5;13277:35;13267:2;;13326:1;13323;13316:12;13267:2;13257:79;:::o;13342:122::-;13415:24;13433:5;13415:24;:::i;:::-;13408:5;13405:35;13395:2;;13454:1;13451;13444:12;13395:2;13385:79;:::o

Swarm Source

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