ETH Price: $3,274.20 (-4.15%)
Gas: 12 Gwei

Token

TrumpIsNotGuilty (FCKGOV)
 

Overview

Max Total Supply

1,000,000,000 FCKGOV

Holders

85

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
245,598.651093086059404726 FCKGOV

Value
$0.00
0x90573449348cf14e4e9a4bb5050C1F83AEDE4E2E
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:
TrumpIsNotGuilty

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-31
*/

/**
 *Submitted for verification at Etherscan.io on 2024-05-31
*/

// File: @openzeppelin/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @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:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/TrumpIsNotGuilty.sol


pragma solidity ^0.8.0;

// Website: https://fkgov.com
// Tax 0%


contract TrumpIsNotGuilty is ERC20, ERC20Burnable, Ownable {
    uint256 private constant INITIAL_SUPPLY = 1000000000 * 10**18;

    constructor() ERC20("TrumpIsNotGuilty", "FCKGOV") {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"distributionWallet","type":"address"}],"name":"distributeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b506040518060400160405280601081526020017f5472756d7049734e6f744775696c7479000000000000000000000000000000008152506040518060400160405280600681526020017f46434b474f560000000000000000000000000000000000000000000000000000815250816003908161008b9190610543565b50806004908161009b9190610543565b5050506100ba6100af6100db60201b60201c565b6100e260201b60201c565b6100d6336b033b2e3c9fd0803ce80000006101a560201b60201c565b610712565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161020a9061066c565b60405180910390fd5b6102245f83836102ff60201b60201c565b8060025f82825461023591906106b7565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102e291906106f9565b60405180910390a36102fb5f838361030460201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061038457607f821691505b60208210810361039757610396610340565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826103be565b61040386836103be565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61044761044261043d8461041b565b610424565b61041b565b9050919050565b5f819050919050565b6104608361042d565b61047461046c8261044e565b8484546103ca565b825550505050565b5f90565b61048861047c565b610493818484610457565b505050565b5b818110156104b6576104ab5f82610480565b600181019050610499565b5050565b601f8211156104fb576104cc8161039d565b6104d5846103af565b810160208510156104e4578190505b6104f86104f0856103af565b830182610498565b50505b505050565b5f82821c905092915050565b5f61051b5f1984600802610500565b1980831691505092915050565b5f610533838361050c565b9150826002028217905092915050565b61054c82610309565b67ffffffffffffffff81111561056557610564610313565b5b61056f825461036d565b61057a8282856104ba565b5f60209050601f8311600181146105ab575f8415610599578287015190505b6105a38582610528565b86555061060a565b601f1984166105b98661039d565b5f5b828110156105e0578489015182556001820191506020850194506020810190506105bb565b868310156105fd57848901516105f9601f89168261050c565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610656601f83610612565b915061066182610622565b602082019050919050565b5f6020820190508181035f8301526106838161064a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6106c18261041b565b91506106cc8361041b565b92508282019050808211156106e4576106e361068a565b5b92915050565b6106f38161041b565b82525050565b5f60208201905061070c5f8301846106ea565b92915050565b6119d68061071f5f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a457c2d71161006f578063a457c2d7146102a5578063a9059cbb146102d5578063b1d17c9814610305578063dd62ed3e14610321578063f2fde38b1461035157610109565b8063715018a61461024357806379cc67901461024d5780638da5cb5b1461026957806395d89b411461028757610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561036d565b6040516101229190611023565b60405180910390f35b610145600480360381019061014091906110d4565b6103fd565b604051610152919061112c565b60405180910390f35b61016361041f565b6040516101709190611154565b60405180910390f35b610193600480360381019061018e919061116d565b610428565b6040516101a0919061112c565b60405180910390f35b6101b1610456565b6040516101be91906111d8565b60405180910390f35b6101e160048036038101906101dc91906110d4565b61045e565b6040516101ee919061112c565b60405180910390f35b610211600480360381019061020c91906111f1565b610494565b005b61022d6004803603810190610228919061121c565b6104a8565b60405161023a9190611154565b60405180910390f35b61024b6104ed565b005b610267600480360381019061026291906110d4565b610500565b005b610271610520565b60405161027e9190611256565b60405180910390f35b61028f610548565b60405161029c9190611023565b60405180910390f35b6102bf60048036038101906102ba91906110d4565b6105d8565b6040516102cc919061112c565b60405180910390f35b6102ef60048036038101906102ea91906110d4565b61064d565b6040516102fc919061112c565b60405180910390f35b61031f600480360381019061031a919061121c565b61066f565b005b61033b6004803603810190610336919061126f565b6106e0565b6040516103489190611154565b60405180910390f35b61036b6004803603810190610366919061121c565b610762565b005b60606003805461037c906112da565b80601f01602080910402602001604051908101604052809291908181526020018280546103a8906112da565b80156103f35780601f106103ca576101008083540402835291602001916103f3565b820191905f5260205f20905b8154815290600101906020018083116103d657829003601f168201915b5050505050905090565b5f806104076107e4565b90506104148185856107eb565b600191505092915050565b5f600254905090565b5f806104326107e4565b905061043f8582856109ae565b61044a858585610a39565b60019150509392505050565b5f6012905090565b5f806104686107e4565b905061048981858561047a85896106e0565b6104849190611337565b6107eb565b600191505092915050565b6104a561049f6107e4565b82610ca5565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104f5610e68565b6104fe5f610ee6565b565b6105128261050c6107e4565b836109ae565b61051c8282610ca5565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610557906112da565b80601f0160208091040260200160405190810160405280929190818152602001828054610583906112da565b80156105ce5780601f106105a5576101008083540402835291602001916105ce565b820191905f5260205f20905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b5f806105e26107e4565b90505f6105ef82866106e0565b905083811015610634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062b906113da565b60405180910390fd5b61064182868684036107eb565b60019250505092915050565b5f806106576107e4565b9050610664818585610a39565b600191505092915050565b610677610e68565b5f610681336104a8565b90506b033b2e3c9fd0803ce800000081146106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c890611442565b60405180910390fd5b6106dc338383610a39565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61076a610e68565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cf906114d0565b60405180910390fd5b6107e181610ee6565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108509061155e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be906115ec565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109a19190611154565b60405180910390a3505050565b5f6109b984846106e0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a335781811015610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90611654565b60405180910390fd5b610a3284848484036107eb565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e906116e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90611770565b60405180910390fd5b610b20838383610fa9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a906117fe565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c8c9190611154565b60405180910390a3610c9f848484610fae565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a9061188c565b60405180910390fd5b610d1e825f83610fa9565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d989061191a565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e509190611154565b60405180910390a3610e63835f84610fae565b505050565b610e706107e4565b73ffffffffffffffffffffffffffffffffffffffff16610e8e610520565b73ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90611982565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610ff582610fb3565b610fff8185610fbd565b935061100f818560208601610fcd565b61101881610fdb565b840191505092915050565b5f6020820190508181035f83015261103b8184610feb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61107082611047565b9050919050565b61108081611066565b811461108a575f80fd5b50565b5f8135905061109b81611077565b92915050565b5f819050919050565b6110b3816110a1565b81146110bd575f80fd5b50565b5f813590506110ce816110aa565b92915050565b5f80604083850312156110ea576110e9611043565b5b5f6110f78582860161108d565b9250506020611108858286016110c0565b9150509250929050565b5f8115159050919050565b61112681611112565b82525050565b5f60208201905061113f5f83018461111d565b92915050565b61114e816110a1565b82525050565b5f6020820190506111675f830184611145565b92915050565b5f805f6060848603121561118457611183611043565b5b5f6111918682870161108d565b93505060206111a28682870161108d565b92505060406111b3868287016110c0565b9150509250925092565b5f60ff82169050919050565b6111d2816111bd565b82525050565b5f6020820190506111eb5f8301846111c9565b92915050565b5f6020828403121561120657611205611043565b5b5f611213848285016110c0565b91505092915050565b5f6020828403121561123157611230611043565b5b5f61123e8482850161108d565b91505092915050565b61125081611066565b82525050565b5f6020820190506112695f830184611247565b92915050565b5f806040838503121561128557611284611043565b5b5f6112928582860161108d565b92505060206112a38582860161108d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112f157607f821691505b602082108103611304576113036112ad565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611341826110a1565b915061134c836110a1565b92508282019050808211156113645761136361130a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113c4602583610fbd565b91506113cf8261136a565b604082019050919050565b5f6020820190508181035f8301526113f1816113b8565b9050919050565b7f546f6b656e7320616c72656164792064697374726962757465640000000000005f82015250565b5f61142c601a83610fbd565b9150611437826113f8565b602082019050919050565b5f6020820190508181035f83015261145981611420565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6114ba602683610fbd565b91506114c582611460565b604082019050919050565b5f6020820190508181035f8301526114e7816114ae565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611548602483610fbd565b9150611553826114ee565b604082019050919050565b5f6020820190508181035f8301526115758161153c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6115d6602283610fbd565b91506115e18261157c565b604082019050919050565b5f6020820190508181035f830152611603816115ca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61163e601d83610fbd565b91506116498261160a565b602082019050919050565b5f6020820190508181035f83015261166b81611632565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6116cc602583610fbd565b91506116d782611672565b604082019050919050565b5f6020820190508181035f8301526116f9816116c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61175a602383610fbd565b915061176582611700565b604082019050919050565b5f6020820190508181035f8301526117878161174e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6117e8602683610fbd565b91506117f38261178e565b604082019050919050565b5f6020820190508181035f830152611815816117dc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611876602183610fbd565b91506118818261181c565b604082019050919050565b5f6020820190508181035f8301526118a38161186a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611904602283610fbd565b915061190f826118aa565b604082019050919050565b5f6020820190508181035f830152611931816118f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61196c602083610fbd565b915061197782611938565b602082019050919050565b5f6020820190508181035f83015261199981611960565b905091905056fea2646970667358221220ff57baa5ada292a57a0d5610ec6ffc63d447f6e148eaaafccb8bb7b0dc65d0a664736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a457c2d71161006f578063a457c2d7146102a5578063a9059cbb146102d5578063b1d17c9814610305578063dd62ed3e14610321578063f2fde38b1461035157610109565b8063715018a61461024357806379cc67901461024d5780638da5cb5b1461026957806395d89b411461028757610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561036d565b6040516101229190611023565b60405180910390f35b610145600480360381019061014091906110d4565b6103fd565b604051610152919061112c565b60405180910390f35b61016361041f565b6040516101709190611154565b60405180910390f35b610193600480360381019061018e919061116d565b610428565b6040516101a0919061112c565b60405180910390f35b6101b1610456565b6040516101be91906111d8565b60405180910390f35b6101e160048036038101906101dc91906110d4565b61045e565b6040516101ee919061112c565b60405180910390f35b610211600480360381019061020c91906111f1565b610494565b005b61022d6004803603810190610228919061121c565b6104a8565b60405161023a9190611154565b60405180910390f35b61024b6104ed565b005b610267600480360381019061026291906110d4565b610500565b005b610271610520565b60405161027e9190611256565b60405180910390f35b61028f610548565b60405161029c9190611023565b60405180910390f35b6102bf60048036038101906102ba91906110d4565b6105d8565b6040516102cc919061112c565b60405180910390f35b6102ef60048036038101906102ea91906110d4565b61064d565b6040516102fc919061112c565b60405180910390f35b61031f600480360381019061031a919061121c565b61066f565b005b61033b6004803603810190610336919061126f565b6106e0565b6040516103489190611154565b60405180910390f35b61036b6004803603810190610366919061121c565b610762565b005b60606003805461037c906112da565b80601f01602080910402602001604051908101604052809291908181526020018280546103a8906112da565b80156103f35780601f106103ca576101008083540402835291602001916103f3565b820191905f5260205f20905b8154815290600101906020018083116103d657829003601f168201915b5050505050905090565b5f806104076107e4565b90506104148185856107eb565b600191505092915050565b5f600254905090565b5f806104326107e4565b905061043f8582856109ae565b61044a858585610a39565b60019150509392505050565b5f6012905090565b5f806104686107e4565b905061048981858561047a85896106e0565b6104849190611337565b6107eb565b600191505092915050565b6104a561049f6107e4565b82610ca5565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104f5610e68565b6104fe5f610ee6565b565b6105128261050c6107e4565b836109ae565b61051c8282610ca5565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610557906112da565b80601f0160208091040260200160405190810160405280929190818152602001828054610583906112da565b80156105ce5780601f106105a5576101008083540402835291602001916105ce565b820191905f5260205f20905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b5f806105e26107e4565b90505f6105ef82866106e0565b905083811015610634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062b906113da565b60405180910390fd5b61064182868684036107eb565b60019250505092915050565b5f806106576107e4565b9050610664818585610a39565b600191505092915050565b610677610e68565b5f610681336104a8565b90506b033b2e3c9fd0803ce800000081146106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c890611442565b60405180910390fd5b6106dc338383610a39565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61076a610e68565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cf906114d0565b60405180910390fd5b6107e181610ee6565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108509061155e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be906115ec565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109a19190611154565b60405180910390a3505050565b5f6109b984846106e0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a335781811015610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90611654565b60405180910390fd5b610a3284848484036107eb565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e906116e2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90611770565b60405180910390fd5b610b20838383610fa9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a906117fe565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c8c9190611154565b60405180910390a3610c9f848484610fae565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a9061188c565b60405180910390fd5b610d1e825f83610fa9565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d989061191a565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e509190611154565b60405180910390a3610e63835f84610fae565b505050565b610e706107e4565b73ffffffffffffffffffffffffffffffffffffffff16610e8e610520565b73ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90611982565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610ff582610fb3565b610fff8185610fbd565b935061100f818560208601610fcd565b61101881610fdb565b840191505092915050565b5f6020820190508181035f83015261103b8184610feb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61107082611047565b9050919050565b61108081611066565b811461108a575f80fd5b50565b5f8135905061109b81611077565b92915050565b5f819050919050565b6110b3816110a1565b81146110bd575f80fd5b50565b5f813590506110ce816110aa565b92915050565b5f80604083850312156110ea576110e9611043565b5b5f6110f78582860161108d565b9250506020611108858286016110c0565b9150509250929050565b5f8115159050919050565b61112681611112565b82525050565b5f60208201905061113f5f83018461111d565b92915050565b61114e816110a1565b82525050565b5f6020820190506111675f830184611145565b92915050565b5f805f6060848603121561118457611183611043565b5b5f6111918682870161108d565b93505060206111a28682870161108d565b92505060406111b3868287016110c0565b9150509250925092565b5f60ff82169050919050565b6111d2816111bd565b82525050565b5f6020820190506111eb5f8301846111c9565b92915050565b5f6020828403121561120657611205611043565b5b5f611213848285016110c0565b91505092915050565b5f6020828403121561123157611230611043565b5b5f61123e8482850161108d565b91505092915050565b61125081611066565b82525050565b5f6020820190506112695f830184611247565b92915050565b5f806040838503121561128557611284611043565b5b5f6112928582860161108d565b92505060206112a38582860161108d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112f157607f821691505b602082108103611304576113036112ad565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611341826110a1565b915061134c836110a1565b92508282019050808211156113645761136361130a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113c4602583610fbd565b91506113cf8261136a565b604082019050919050565b5f6020820190508181035f8301526113f1816113b8565b9050919050565b7f546f6b656e7320616c72656164792064697374726962757465640000000000005f82015250565b5f61142c601a83610fbd565b9150611437826113f8565b602082019050919050565b5f6020820190508181035f83015261145981611420565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6114ba602683610fbd565b91506114c582611460565b604082019050919050565b5f6020820190508181035f8301526114e7816114ae565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611548602483610fbd565b9150611553826114ee565b604082019050919050565b5f6020820190508181035f8301526115758161153c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6115d6602283610fbd565b91506115e18261157c565b604082019050919050565b5f6020820190508181035f830152611603816115ca565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61163e601d83610fbd565b91506116498261160a565b602082019050919050565b5f6020820190508181035f83015261166b81611632565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6116cc602583610fbd565b91506116d782611672565b604082019050919050565b5f6020820190508181035f8301526116f9816116c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61175a602383610fbd565b915061176582611700565b604082019050919050565b5f6020820190508181035f8301526117878161174e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6117e8602683610fbd565b91506117f38261178e565b604082019050919050565b5f6020820190508181035f830152611815816117dc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611876602183610fbd565b91506118818261181c565b604082019050919050565b5f6020820190508181035f8301526118a38161186a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611904602283610fbd565b915061190f826118aa565b604082019050919050565b5f6020820190508181035f830152611931816118f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61196c602083610fbd565b915061197782611938565b602082019050919050565b5f6020820190508181035f83015261199981611960565b905091905056fea2646970667358221220ff57baa5ada292a57a0d5610ec6ffc63d447f6e148eaaafccb8bb7b0dc65d0a664736f6c634300081a0033

Deployed Bytecode Sourcemap

21927:515:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9457:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11808:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10577:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12589:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10419:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13293:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21228:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10748:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2882:103;;;:::i;:::-;;21638:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2234:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9676:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14034:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11081:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22173:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11337:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3140:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9457:100;9511:13;9544:5;9537:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9457:100;:::o;11808:201::-;11891:4;11908:13;11924:12;:10;:12::i;:::-;11908:28;;11947:32;11956:5;11963:7;11972:6;11947:8;:32::i;:::-;11997:4;11990:11;;;11808:201;;;;:::o;10577:108::-;10638:7;10665:12;;10658:19;;10577:108;:::o;12589:295::-;12720:4;12737:15;12755:12;:10;:12::i;:::-;12737:30;;12778:38;12794:4;12800:7;12809:6;12778:15;:38::i;:::-;12827:27;12837:4;12843:2;12847:6;12827:9;:27::i;:::-;12872:4;12865:11;;;12589:295;;;;;:::o;10419:93::-;10477:5;10502:2;10495:9;;10419:93;:::o;13293:238::-;13381:4;13398:13;13414:12;:10;:12::i;:::-;13398:28;;13437:64;13446:5;13453:7;13490:10;13462:25;13472:5;13479:7;13462:9;:25::i;:::-;:38;;;;:::i;:::-;13437:8;:64::i;:::-;13519:4;13512:11;;;13293:238;;;;:::o;21228:91::-;21284:27;21290:12;:10;:12::i;:::-;21304:6;21284:5;:27::i;:::-;21228:91;:::o;10748:127::-;10822:7;10849:9;:18;10859:7;10849:18;;;;;;;;;;;;;;;;10842:25;;10748:127;;;:::o;2882:103::-;2120:13;:11;:13::i;:::-;2947:30:::1;2974:1;2947:18;:30::i;:::-;2882:103::o:0;21638:164::-;21715:46;21731:7;21740:12;:10;:12::i;:::-;21754:6;21715:15;:46::i;:::-;21772:22;21778:7;21787:6;21772:5;:22::i;:::-;21638:164;;:::o;2234:87::-;2280:7;2307:6;;;;;;;;;;;2300:13;;2234:87;:::o;9676:104::-;9732:13;9765:7;9758:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9676:104;:::o;14034:436::-;14127:4;14144:13;14160:12;:10;:12::i;:::-;14144:28;;14183:24;14210:25;14220:5;14227:7;14210:9;:25::i;:::-;14183:52;;14274:15;14254:16;:35;;14246:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14367:60;14376:5;14383:7;14411:15;14392:16;:34;14367:8;:60::i;:::-;14458:4;14451:11;;;;14034:436;;;;:::o;11081:193::-;11160:4;11177:13;11193:12;:10;:12::i;:::-;11177:28;;11216;11226:5;11233:2;11237:6;11216:9;:28::i;:::-;11262:4;11255:11;;;11081:193;;;;:::o;22173:266::-;2120:13;:11;:13::i;:::-;22257:14:::1;22274:21;22284:10;22274:9;:21::i;:::-;22257:38;;22035:19;22314:6;:24;22306:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22382:49;22392:10;22404:18;22424:6;22382:9;:49::i;:::-;22246:193;22173:266:::0;:::o;11337:151::-;11426:7;11453:11;:18;11465:5;11453:18;;;;;;;;;;;;;;;:27;11472:7;11453:27;;;;;;;;;;;;;;;;11446:34;;11337:151;;;;:::o;3140:201::-;2120:13;:11;:13::i;:::-;3249:1:::1;3229:22;;:8;:22;;::::0;3221:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3305:28;3324:8;3305:18;:28::i;:::-;3140:201:::0;:::o;785:98::-;838:7;865:10;858:17;;785:98;:::o;18061:380::-;18214:1;18197:19;;:5;:19;;;18189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18295:1;18276:21;;:7;:21;;;18268:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18379:6;18349:11;:18;18361:5;18349:18;;;;;;;;;;;;;;;:27;18368:7;18349:27;;;;;;;;;;;;;;;:36;;;;18417:7;18401:32;;18410:5;18401:32;;;18426:6;18401:32;;;;;;:::i;:::-;;;;;;;;18061:380;;;:::o;18732:453::-;18867:24;18894:25;18904:5;18911:7;18894:9;:25::i;:::-;18867:52;;18954:17;18934:16;:37;18930:248;;19016:6;18996:16;:26;;18988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19100:51;19109:5;19116:7;19144:6;19125:16;:25;19100:8;:51::i;:::-;18930:248;18856:329;18732:453;;;:::o;14940:840::-;15087:1;15071:18;;:4;:18;;;15063:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15164:1;15150:16;;:2;:16;;;15142:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15219:38;15240:4;15246:2;15250:6;15219:20;:38::i;:::-;15270:19;15292:9;:15;15302:4;15292:15;;;;;;;;;;;;;;;;15270:37;;15341:6;15326:11;:21;;15318:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15458:6;15444:11;:20;15426:9;:15;15436:4;15426:15;;;;;;;;;;;;;;;:38;;;;15661:6;15644:9;:13;15654:2;15644:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15711:2;15696:26;;15705:4;15696:26;;;15715:6;15696:26;;;;;;:::i;:::-;;;;;;;;15735:37;15755:4;15761:2;15765:6;15735:19;:37::i;:::-;15052:728;14940:840;;;:::o;16948:675::-;17051:1;17032:21;;:7;:21;;;17024:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17104:49;17125:7;17142:1;17146:6;17104:20;:49::i;:::-;17166:22;17191:9;:18;17201:7;17191:18;;;;;;;;;;;;;;;;17166:43;;17246:6;17228:14;:24;;17220:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17365:6;17348:14;:23;17327:9;:18;17337:7;17327:18;;;;;;;;;;;;;;;:44;;;;17482:6;17466:12;;:22;;;;;;;;;;;17543:1;17517:37;;17526:7;17517:37;;;17547:6;17517:37;;;;;;:::i;:::-;;;;;;;;17567:48;17587:7;17604:1;17608:6;17567:19;:48::i;:::-;17013:610;16948:675;;:::o;2399:132::-;2474:12;:10;:12::i;:::-;2463:23;;:7;:5;:7::i;:::-;:23;;;2455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2399:132::o;3501:191::-;3575:16;3594:6;;;;;;;;;;;3575:25;;3620:8;3611:6;;:17;;;;;;;;;;;;;;;;;;3675:8;3644:40;;3665:8;3644:40;;;;;;;;;;;;3564:128;3501:191;:::o;19785:125::-;;;;:::o;20514:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:180::-;6808:77;6805:1;6798:88;6905:4;6902:1;6895:15;6929:4;6926:1;6919:15;6946:191;6986:3;7005:20;7023:1;7005:20;:::i;:::-;7000:25;;7039:20;7057:1;7039:20;:::i;:::-;7034:25;;7082:1;7079;7075:9;7068:16;;7103:3;7100:1;7097:10;7094:36;;;7110:18;;:::i;:::-;7094:36;6946:191;;;;:::o;7143:224::-;7283:34;7279:1;7271:6;7267:14;7260:58;7352:7;7347:2;7339:6;7335:15;7328:32;7143:224;:::o;7373:366::-;7515:3;7536:67;7600:2;7595:3;7536:67;:::i;:::-;7529:74;;7612:93;7701:3;7612:93;:::i;:::-;7730:2;7725:3;7721:12;7714:19;;7373:366;;;:::o;7745:419::-;7911:4;7949:2;7938:9;7934:18;7926:26;;7998:9;7992:4;7988:20;7984:1;7973:9;7969:17;7962:47;8026:131;8152:4;8026:131;:::i;:::-;8018:139;;7745:419;;;:::o;8170:176::-;8310:28;8306:1;8298:6;8294:14;8287:52;8170:176;:::o;8352:366::-;8494:3;8515:67;8579:2;8574:3;8515:67;:::i;:::-;8508:74;;8591:93;8680:3;8591:93;:::i;:::-;8709:2;8704:3;8700:12;8693:19;;8352:366;;;:::o;8724:419::-;8890:4;8928:2;8917:9;8913:18;8905:26;;8977:9;8971:4;8967:20;8963:1;8952:9;8948:17;8941:47;9005:131;9131:4;9005:131;:::i;:::-;8997:139;;8724:419;;;:::o;9149:225::-;9289:34;9285:1;9277:6;9273:14;9266:58;9358:8;9353:2;9345:6;9341:15;9334:33;9149:225;:::o;9380:366::-;9522:3;9543:67;9607:2;9602:3;9543:67;:::i;:::-;9536:74;;9619:93;9708:3;9619:93;:::i;:::-;9737:2;9732:3;9728:12;9721:19;;9380:366;;;:::o;9752:419::-;9918:4;9956:2;9945:9;9941:18;9933:26;;10005:9;9999:4;9995:20;9991:1;9980:9;9976:17;9969:47;10033:131;10159:4;10033:131;:::i;:::-;10025:139;;9752:419;;;:::o;10177:223::-;10317:34;10313:1;10305:6;10301:14;10294:58;10386:6;10381:2;10373:6;10369:15;10362:31;10177:223;:::o;10406:366::-;10548:3;10569:67;10633:2;10628:3;10569:67;:::i;:::-;10562:74;;10645:93;10734:3;10645:93;:::i;:::-;10763:2;10758:3;10754:12;10747:19;;10406:366;;;:::o;10778:419::-;10944:4;10982:2;10971:9;10967:18;10959:26;;11031:9;11025:4;11021:20;11017:1;11006:9;11002:17;10995:47;11059:131;11185:4;11059:131;:::i;:::-;11051:139;;10778:419;;;:::o;11203:221::-;11343:34;11339:1;11331:6;11327:14;11320:58;11412:4;11407:2;11399:6;11395:15;11388:29;11203:221;:::o;11430:366::-;11572:3;11593:67;11657:2;11652:3;11593:67;:::i;:::-;11586:74;;11669:93;11758:3;11669:93;:::i;:::-;11787:2;11782:3;11778:12;11771:19;;11430:366;;;:::o;11802:419::-;11968:4;12006:2;11995:9;11991:18;11983:26;;12055:9;12049:4;12045:20;12041:1;12030:9;12026:17;12019:47;12083:131;12209:4;12083:131;:::i;:::-;12075:139;;11802:419;;;:::o;12227:179::-;12367:31;12363:1;12355:6;12351:14;12344:55;12227:179;:::o;12412:366::-;12554:3;12575:67;12639:2;12634:3;12575:67;:::i;:::-;12568:74;;12651:93;12740:3;12651:93;:::i;:::-;12769:2;12764:3;12760:12;12753:19;;12412:366;;;:::o;12784:419::-;12950:4;12988:2;12977:9;12973:18;12965:26;;13037:9;13031:4;13027:20;13023:1;13012:9;13008:17;13001:47;13065:131;13191:4;13065:131;:::i;:::-;13057:139;;12784:419;;;:::o;13209:224::-;13349:34;13345:1;13337:6;13333:14;13326:58;13418:7;13413:2;13405:6;13401:15;13394:32;13209:224;:::o;13439:366::-;13581:3;13602:67;13666:2;13661:3;13602:67;:::i;:::-;13595:74;;13678:93;13767:3;13678:93;:::i;:::-;13796:2;13791:3;13787:12;13780:19;;13439:366;;;:::o;13811:419::-;13977:4;14015:2;14004:9;14000:18;13992:26;;14064:9;14058:4;14054:20;14050:1;14039:9;14035:17;14028:47;14092:131;14218:4;14092:131;:::i;:::-;14084:139;;13811:419;;;:::o;14236:222::-;14376:34;14372:1;14364:6;14360:14;14353:58;14445:5;14440:2;14432:6;14428:15;14421:30;14236:222;:::o;14464:366::-;14606:3;14627:67;14691:2;14686:3;14627:67;:::i;:::-;14620:74;;14703:93;14792:3;14703:93;:::i;:::-;14821:2;14816:3;14812:12;14805:19;;14464:366;;;:::o;14836:419::-;15002:4;15040:2;15029:9;15025:18;15017:26;;15089:9;15083:4;15079:20;15075:1;15064:9;15060:17;15053:47;15117:131;15243:4;15117:131;:::i;:::-;15109:139;;14836:419;;;:::o;15261:225::-;15401:34;15397:1;15389:6;15385:14;15378:58;15470:8;15465:2;15457:6;15453:15;15446:33;15261:225;:::o;15492:366::-;15634:3;15655:67;15719:2;15714:3;15655:67;:::i;:::-;15648:74;;15731:93;15820:3;15731:93;:::i;:::-;15849:2;15844:3;15840:12;15833:19;;15492:366;;;:::o;15864:419::-;16030:4;16068:2;16057:9;16053:18;16045:26;;16117:9;16111:4;16107:20;16103:1;16092:9;16088:17;16081:47;16145:131;16271:4;16145:131;:::i;:::-;16137:139;;15864:419;;;:::o;16289:220::-;16429:34;16425:1;16417:6;16413:14;16406:58;16498:3;16493:2;16485:6;16481:15;16474:28;16289:220;:::o;16515:366::-;16657:3;16678:67;16742:2;16737:3;16678:67;:::i;:::-;16671:74;;16754:93;16843:3;16754:93;:::i;:::-;16872:2;16867:3;16863:12;16856:19;;16515:366;;;:::o;16887:419::-;17053:4;17091:2;17080:9;17076:18;17068:26;;17140:9;17134:4;17130:20;17126:1;17115:9;17111:17;17104:47;17168:131;17294:4;17168:131;:::i;:::-;17160:139;;16887:419;;;:::o;17312:221::-;17452:34;17448:1;17440:6;17436:14;17429:58;17521:4;17516:2;17508:6;17504:15;17497:29;17312:221;:::o;17539:366::-;17681:3;17702:67;17766:2;17761:3;17702:67;:::i;:::-;17695:74;;17778:93;17867:3;17778:93;:::i;:::-;17896:2;17891:3;17887:12;17880:19;;17539:366;;;:::o;17911:419::-;18077:4;18115:2;18104:9;18100:18;18092:26;;18164:9;18158:4;18154:20;18150:1;18139:9;18135:17;18128:47;18192:131;18318:4;18192:131;:::i;:::-;18184:139;;17911:419;;;:::o;18336:182::-;18476:34;18472:1;18464:6;18460:14;18453:58;18336:182;:::o;18524:366::-;18666:3;18687:67;18751:2;18746:3;18687:67;:::i;:::-;18680:74;;18763:93;18852:3;18763:93;:::i;:::-;18881:2;18876:3;18872:12;18865:19;;18524:366;;;:::o;18896:419::-;19062:4;19100:2;19089:9;19085:18;19077:26;;19149:9;19143:4;19139:20;19135:1;19124:9;19120:17;19113:47;19177:131;19303:4;19177:131;:::i;:::-;19169:139;;18896:419;;;:::o

Swarm Source

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