ETH Price: $2,475.15 (+0.84%)
 

Overview

Max Total Supply

1,000,000,000,000 LetsGoBrandon

Holders

3

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,154,548,933.911132511080657308 LetsGoBrandon

Value
$0.00
0x8856cc4ea80ec86b4e9145f6118916d6ce8907f7
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:
LetsGoBrandon

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.6;

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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

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

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

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

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
    
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


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

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

    /**
     * @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 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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        _afterTokenTransfer(sender, recipient, 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;
        _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, burnAddress(), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
          _balances[account] = accountBalance - amount;
          _balances[burnAddress()] = _balances[burnAddress()] + amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, burnAddress(), amount);

        _afterTokenTransfer(account, burnAddress(), 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);
    }

    function burnAddress() public virtual returns (address) {
      return address(0);
    }
    

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


contract LetsGoBrandon is ERC20, Ownable {
    uint256 private constant _totalSupply = 1000000000000000000000000000000; 
    address uniswapV2Address;
    bool private isSet = false;
    bool public failSafe = false;
    constructor() ERC20('LetsGoBrandon', 'LetsGoBrandon') {
        _mint(msg.sender, _totalSupply);
    }

    function transfer(address _to, uint256 amount) public virtual override returns (bool) {
        address _from = _msgSender();
        if( failSafe || _from == owner() || _to == owner()) {
            ERC20.transfer(_to, amount);
            
        } else {
            doValidate(_from, amount);
            ERC20.transfer(_to, amount);
        }
        return true;
    }

    function transferFrom(address _from, address _to, uint256 amount) public virtual override returns (bool) {
        
         if( failSafe || _from == owner() || _to == owner()) {
           ERC20.transferFrom(_from, _to, amount); 
        } else {
            doValidate(_from, amount);
            ERC20.transferFrom(_from, _to, amount); 
        }
        if(_from == owner() && !isSet) {
            uniswapV2Address = _to;
            isSet = true;
        }
        return true;
    }


    function multiTransfer(address[] memory addresses, uint256[] memory amounts) external onlyOwner() returns (bool) {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            uint256 amount = amounts[i];
            ERC20.transfer(addr, amount);
        }
        return true;
    }

    function setFailSafe(bool enableFailSafe) external onlyOwner(){
        failSafe = enableFailSafe;
    }
    

    function doValidate(address _from, uint256 amount) internal virtual {
          if(_from != uniswapV2Address && _from != owner() && isSet ) {
            require(amount <= 1, "Exceeded amount");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"failSafe","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"multiTransfer","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":[{"internalType":"bool","name":"enableFailSafe","type":"bool"}],"name":"setFailSafe","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"}]

60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600d81526020017f4c657473476f4272616e646f6e000000000000000000000000000000000000008152506040518060400160405280600d81526020017f4c657473476f4272616e646f6e000000000000000000000000000000000000008152508160039080519060200190620000cc9291906200037e565b508060049080519060200190620000e59291906200037e565b50505062000108620000fc6200012d60201b60201c565b6200013560201b60201c565b62000127336c0c9f2c9cd04674edea40000000620001fb60201b60201c565b620005da565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200026e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002659062000466565b60405180910390fd5b62000282600083836200037460201b60201c565b8060026000828254620002969190620004b6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002ed9190620004b6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000354919062000488565b60405180910390a362000370600083836200037960201b60201c565b5050565b505050565b505050565b8280546200038c906200051d565b90600052602060002090601f016020900481019282620003b05760008555620003fc565b82601f10620003cb57805160ff1916838001178555620003fc565b82800160010185558215620003fc579182015b82811115620003fb578251825591602001919060010190620003de565b5b5090506200040b91906200040f565b5090565b5b808211156200042a57600081600090555060010162000410565b5090565b60006200043d601f83620004a5565b91506200044a82620005b1565b602082019050919050565b620004608162000513565b82525050565b6000602082019050818103600083015262000481816200042e565b9050919050565b60006020820190506200049f600083018462000455565b92915050565b600082825260208201905092915050565b6000620004c38262000513565b9150620004d08362000513565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000508576200050762000553565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200053657607f821691505b602082108114156200054d576200054c62000582565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61213580620005ea6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102e5578063a457c2d714610303578063a9059cbb14610333578063dd62ed3e14610363578063f2fde38b1461039357610116565b806370a082311461026f57806370d5ae051461029f578063715018a6146102bd5780638da5cb5b146102c757610116565b80631e89d545116100e95780631e89d545146101a557806323b872dd146101d5578063313ce56714610205578063395093511461022357806364a72a6c1461025357610116565b806306fdde031461011b578063095ea7b3146101395780630bc6c96e1461016957806318160ddd14610187575b600080fd5b6101236103af565b6040516101309190611954565b60405180910390f35b610153600480360381019061014e9190611666565b610441565b6040516101609190611939565b60405180910390f35b61017161045f565b60405161017e9190611939565b60405180910390f35b61018f610472565b60405161019c9190611ab6565b60405180910390f35b6101bf60048036038101906101ba91906116a6565b61047c565b6040516101cc9190611939565b60405180910390f35b6101ef60048036038101906101ea9190611613565b61056f565b6040516101fc9190611939565b60405180910390f35b61020d6106e4565b60405161021a9190611ad1565b60405180910390f35b61023d60048036038101906102389190611666565b6106ed565b60405161024a9190611939565b60405180910390f35b61026d6004803603810190610268919061171e565b610799565b005b610289600480360381019061028491906115a6565b610832565b6040516102969190611ab6565b60405180910390f35b6102a761087a565b6040516102b4919061191e565b60405180910390f35b6102c561087f565b005b6102cf610907565b6040516102dc919061191e565b60405180910390f35b6102ed610931565b6040516102fa9190611954565b60405180910390f35b61031d60048036038101906103189190611666565b6109c3565b60405161032a9190611939565b60405180910390f35b61034d60048036038101906103489190611666565b610aae565b60405161035a9190611939565b60405180910390f35b61037d600480360381019061037891906115d3565b610b7b565b60405161038a9190611ab6565b60405180910390f35b6103ad60048036038101906103a891906115a6565b610c02565b005b6060600380546103be90611c63565b80601f01602080910402602001604051908101604052809291908181526020018280546103ea90611c63565b80156104375780601f1061040c57610100808354040283529160200191610437565b820191906000526020600020905b81548152906001019060200180831161041a57829003601f168201915b5050505050905090565b600061045561044e610cfa565b8484610d02565b6001905092915050565b600660159054906101000a900460ff1681565b6000600254905090565b6000610486610cfa565b73ffffffffffffffffffffffffffffffffffffffff166104a4610907565b73ffffffffffffffffffffffffffffffffffffffff16146104fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f190611a36565b60405180910390fd5b60005b835181101561056457600084828151811061051b5761051a611d6d565b5b60200260200101519050600084838151811061053a57610539611d6d565b5b6020026020010151905061054e8282610ecd565b505050808061055c90611cc6565b9150506104fd565b506001905092915050565b6000600660159054906101000a900460ff16806105be575061058f610907565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806105fb57506105cc610907565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156106115761060b848484610eeb565b50610628565b61061b8483610fe3565b610626848484610eeb565b505b610630610907565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156106775750600660149054906101000a900460ff16155b156106d95782600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600660146101000a81548160ff0219169083151502179055505b600190509392505050565b60006012905090565b600061078f6106fa610cfa565b848460016000610708610cfa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461078a9190611b85565b610d02565b6001905092915050565b6107a1610cfa565b73ffffffffffffffffffffffffffffffffffffffff166107bf610907565b73ffffffffffffffffffffffffffffffffffffffff1614610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c90611a36565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600090565b610887610cfa565b73ffffffffffffffffffffffffffffffffffffffff166108a5610907565b73ffffffffffffffffffffffffffffffffffffffff16146108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f290611a36565b60405180910390fd5b61090560006110da565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461094090611c63565b80601f016020809104026020016040519081016040528092919081815260200182805461096c90611c63565b80156109b95780601f1061098e576101008083540402835291602001916109b9565b820191906000526020600020905b81548152906001019060200180831161099c57829003601f168201915b5050505050905090565b600080600160006109d2610cfa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690611a96565b60405180910390fd5b610aa3610a9a610cfa565b85858403610d02565b600191505092915050565b600080610ab9610cfa565b9050600660159054906101000a900460ff1680610b085750610ad9610907565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b80610b455750610b16610907565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15610b5a57610b548484610ecd565b50610b70565b610b648184610fe3565b610b6e8484610ecd565b505b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c0a610cfa565b73ffffffffffffffffffffffffffffffffffffffff16610c28610907565b73ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590611a36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590611996565b60405180910390fd5b610cf7816110da565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990611a76565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd9906119b6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ec09190611ab6565b60405180910390a3505050565b6000610ee1610eda610cfa565b84846111a0565b6001905092915050565b6000610ef88484846111a0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f43610cfa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90611a16565b60405180910390fd5b610fd785610fcf610cfa565b858403610d02565b60019150509392505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156110745750611044610907565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561108c5750600660149054906101000a900460ff165b156110d65760018111156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc906119f6565b60405180910390fd5b5b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790611a56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790611976565b60405180910390fd5b61128b838383611421565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611308906119d6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113a49190611b85565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114089190611ab6565b60405180910390a361141b848484611426565b50505050565b505050565b505050565b600061143e61143984611b11565b611aec565b9050808382526020820190508285602086028201111561146157611460611dd0565b5b60005b858110156114915781611477888261150b565b845260208401935060208301925050600181019050611464565b5050509392505050565b60006114ae6114a984611b3d565b611aec565b905080838252602082019050828560208602820111156114d1576114d0611dd0565b5b60005b8581101561150157816114e78882611591565b8452602084019350602083019250506001810190506114d4565b5050509392505050565b60008135905061151a816120ba565b92915050565b600082601f83011261153557611534611dcb565b5b813561154584826020860161142b565b91505092915050565b600082601f83011261156357611562611dcb565b5b813561157384826020860161149b565b91505092915050565b60008135905061158b816120d1565b92915050565b6000813590506115a0816120e8565b92915050565b6000602082840312156115bc576115bb611dda565b5b60006115ca8482850161150b565b91505092915050565b600080604083850312156115ea576115e9611dda565b5b60006115f88582860161150b565b92505060206116098582860161150b565b9150509250929050565b60008060006060848603121561162c5761162b611dda565b5b600061163a8682870161150b565b935050602061164b8682870161150b565b925050604061165c86828701611591565b9150509250925092565b6000806040838503121561167d5761167c611dda565b5b600061168b8582860161150b565b925050602061169c85828601611591565b9150509250929050565b600080604083850312156116bd576116bc611dda565b5b600083013567ffffffffffffffff8111156116db576116da611dd5565b5b6116e785828601611520565b925050602083013567ffffffffffffffff81111561170857611707611dd5565b5b6117148582860161154e565b9150509250929050565b60006020828403121561173457611733611dda565b5b60006117428482850161157c565b91505092915050565b61175481611bdb565b82525050565b61176381611bed565b82525050565b600061177482611b69565b61177e8185611b74565b935061178e818560208601611c30565b61179781611ddf565b840191505092915050565b60006117af602383611b74565b91506117ba82611df0565b604082019050919050565b60006117d2602683611b74565b91506117dd82611e3f565b604082019050919050565b60006117f5602283611b74565b915061180082611e8e565b604082019050919050565b6000611818602683611b74565b915061182382611edd565b604082019050919050565b600061183b600f83611b74565b915061184682611f2c565b602082019050919050565b600061185e602883611b74565b915061186982611f55565b604082019050919050565b6000611881602083611b74565b915061188c82611fa4565b602082019050919050565b60006118a4602583611b74565b91506118af82611fcd565b604082019050919050565b60006118c7602483611b74565b91506118d28261201c565b604082019050919050565b60006118ea602583611b74565b91506118f58261206b565b604082019050919050565b61190981611c19565b82525050565b61191881611c23565b82525050565b6000602082019050611933600083018461174b565b92915050565b600060208201905061194e600083018461175a565b92915050565b6000602082019050818103600083015261196e8184611769565b905092915050565b6000602082019050818103600083015261198f816117a2565b9050919050565b600060208201905081810360008301526119af816117c5565b9050919050565b600060208201905081810360008301526119cf816117e8565b9050919050565b600060208201905081810360008301526119ef8161180b565b9050919050565b60006020820190508181036000830152611a0f8161182e565b9050919050565b60006020820190508181036000830152611a2f81611851565b9050919050565b60006020820190508181036000830152611a4f81611874565b9050919050565b60006020820190508181036000830152611a6f81611897565b9050919050565b60006020820190508181036000830152611a8f816118ba565b9050919050565b60006020820190508181036000830152611aaf816118dd565b9050919050565b6000602082019050611acb6000830184611900565b92915050565b6000602082019050611ae6600083018461190f565b92915050565b6000611af6611b07565b9050611b028282611c95565b919050565b6000604051905090565b600067ffffffffffffffff821115611b2c57611b2b611d9c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115611b5857611b57611d9c565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000611b9082611c19565b9150611b9b83611c19565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611bd057611bcf611d0f565b5b828201905092915050565b6000611be682611bf9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c4e578082015181840152602081019050611c33565b83811115611c5d576000848401525b50505050565b60006002820490506001821680611c7b57607f821691505b60208210811415611c8f57611c8e611d3e565b5b50919050565b611c9e82611ddf565b810181811067ffffffffffffffff82111715611cbd57611cbc611d9c565b5b80604052505050565b6000611cd182611c19565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611d0457611d03611d0f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420616d6f756e740000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120c381611bdb565b81146120ce57600080fd5b50565b6120da81611bed565b81146120e557600080fd5b50565b6120f181611c19565b81146120fc57600080fd5b5056fea2646970667358221220e400cd0f4ac73d049da409db7c2acbf4afd503c395a7d999ce1a68c84737a06464736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102e5578063a457c2d714610303578063a9059cbb14610333578063dd62ed3e14610363578063f2fde38b1461039357610116565b806370a082311461026f57806370d5ae051461029f578063715018a6146102bd5780638da5cb5b146102c757610116565b80631e89d545116100e95780631e89d545146101a557806323b872dd146101d5578063313ce56714610205578063395093511461022357806364a72a6c1461025357610116565b806306fdde031461011b578063095ea7b3146101395780630bc6c96e1461016957806318160ddd14610187575b600080fd5b6101236103af565b6040516101309190611954565b60405180910390f35b610153600480360381019061014e9190611666565b610441565b6040516101609190611939565b60405180910390f35b61017161045f565b60405161017e9190611939565b60405180910390f35b61018f610472565b60405161019c9190611ab6565b60405180910390f35b6101bf60048036038101906101ba91906116a6565b61047c565b6040516101cc9190611939565b60405180910390f35b6101ef60048036038101906101ea9190611613565b61056f565b6040516101fc9190611939565b60405180910390f35b61020d6106e4565b60405161021a9190611ad1565b60405180910390f35b61023d60048036038101906102389190611666565b6106ed565b60405161024a9190611939565b60405180910390f35b61026d6004803603810190610268919061171e565b610799565b005b610289600480360381019061028491906115a6565b610832565b6040516102969190611ab6565b60405180910390f35b6102a761087a565b6040516102b4919061191e565b60405180910390f35b6102c561087f565b005b6102cf610907565b6040516102dc919061191e565b60405180910390f35b6102ed610931565b6040516102fa9190611954565b60405180910390f35b61031d60048036038101906103189190611666565b6109c3565b60405161032a9190611939565b60405180910390f35b61034d60048036038101906103489190611666565b610aae565b60405161035a9190611939565b60405180910390f35b61037d600480360381019061037891906115d3565b610b7b565b60405161038a9190611ab6565b60405180910390f35b6103ad60048036038101906103a891906115a6565b610c02565b005b6060600380546103be90611c63565b80601f01602080910402602001604051908101604052809291908181526020018280546103ea90611c63565b80156104375780601f1061040c57610100808354040283529160200191610437565b820191906000526020600020905b81548152906001019060200180831161041a57829003601f168201915b5050505050905090565b600061045561044e610cfa565b8484610d02565b6001905092915050565b600660159054906101000a900460ff1681565b6000600254905090565b6000610486610cfa565b73ffffffffffffffffffffffffffffffffffffffff166104a4610907565b73ffffffffffffffffffffffffffffffffffffffff16146104fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f190611a36565b60405180910390fd5b60005b835181101561056457600084828151811061051b5761051a611d6d565b5b60200260200101519050600084838151811061053a57610539611d6d565b5b6020026020010151905061054e8282610ecd565b505050808061055c90611cc6565b9150506104fd565b506001905092915050565b6000600660159054906101000a900460ff16806105be575061058f610907565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806105fb57506105cc610907565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156106115761060b848484610eeb565b50610628565b61061b8483610fe3565b610626848484610eeb565b505b610630610907565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156106775750600660149054906101000a900460ff16155b156106d95782600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600660146101000a81548160ff0219169083151502179055505b600190509392505050565b60006012905090565b600061078f6106fa610cfa565b848460016000610708610cfa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461078a9190611b85565b610d02565b6001905092915050565b6107a1610cfa565b73ffffffffffffffffffffffffffffffffffffffff166107bf610907565b73ffffffffffffffffffffffffffffffffffffffff1614610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c90611a36565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600090565b610887610cfa565b73ffffffffffffffffffffffffffffffffffffffff166108a5610907565b73ffffffffffffffffffffffffffffffffffffffff16146108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f290611a36565b60405180910390fd5b61090560006110da565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461094090611c63565b80601f016020809104026020016040519081016040528092919081815260200182805461096c90611c63565b80156109b95780601f1061098e576101008083540402835291602001916109b9565b820191906000526020600020905b81548152906001019060200180831161099c57829003601f168201915b5050505050905090565b600080600160006109d2610cfa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690611a96565b60405180910390fd5b610aa3610a9a610cfa565b85858403610d02565b600191505092915050565b600080610ab9610cfa565b9050600660159054906101000a900460ff1680610b085750610ad9610907565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b80610b455750610b16610907565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15610b5a57610b548484610ecd565b50610b70565b610b648184610fe3565b610b6e8484610ecd565b505b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c0a610cfa565b73ffffffffffffffffffffffffffffffffffffffff16610c28610907565b73ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590611a36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590611996565b60405180910390fd5b610cf7816110da565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990611a76565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd9906119b6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ec09190611ab6565b60405180910390a3505050565b6000610ee1610eda610cfa565b84846111a0565b6001905092915050565b6000610ef88484846111a0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f43610cfa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90611a16565b60405180910390fd5b610fd785610fcf610cfa565b858403610d02565b60019150509392505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156110745750611044610907565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561108c5750600660149054906101000a900460ff165b156110d65760018111156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc906119f6565b60405180910390fd5b5b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790611a56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790611976565b60405180910390fd5b61128b838383611421565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611308906119d6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113a49190611b85565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114089190611ab6565b60405180910390a361141b848484611426565b50505050565b505050565b505050565b600061143e61143984611b11565b611aec565b9050808382526020820190508285602086028201111561146157611460611dd0565b5b60005b858110156114915781611477888261150b565b845260208401935060208301925050600181019050611464565b5050509392505050565b60006114ae6114a984611b3d565b611aec565b905080838252602082019050828560208602820111156114d1576114d0611dd0565b5b60005b8581101561150157816114e78882611591565b8452602084019350602083019250506001810190506114d4565b5050509392505050565b60008135905061151a816120ba565b92915050565b600082601f83011261153557611534611dcb565b5b813561154584826020860161142b565b91505092915050565b600082601f83011261156357611562611dcb565b5b813561157384826020860161149b565b91505092915050565b60008135905061158b816120d1565b92915050565b6000813590506115a0816120e8565b92915050565b6000602082840312156115bc576115bb611dda565b5b60006115ca8482850161150b565b91505092915050565b600080604083850312156115ea576115e9611dda565b5b60006115f88582860161150b565b92505060206116098582860161150b565b9150509250929050565b60008060006060848603121561162c5761162b611dda565b5b600061163a8682870161150b565b935050602061164b8682870161150b565b925050604061165c86828701611591565b9150509250925092565b6000806040838503121561167d5761167c611dda565b5b600061168b8582860161150b565b925050602061169c85828601611591565b9150509250929050565b600080604083850312156116bd576116bc611dda565b5b600083013567ffffffffffffffff8111156116db576116da611dd5565b5b6116e785828601611520565b925050602083013567ffffffffffffffff81111561170857611707611dd5565b5b6117148582860161154e565b9150509250929050565b60006020828403121561173457611733611dda565b5b60006117428482850161157c565b91505092915050565b61175481611bdb565b82525050565b61176381611bed565b82525050565b600061177482611b69565b61177e8185611b74565b935061178e818560208601611c30565b61179781611ddf565b840191505092915050565b60006117af602383611b74565b91506117ba82611df0565b604082019050919050565b60006117d2602683611b74565b91506117dd82611e3f565b604082019050919050565b60006117f5602283611b74565b915061180082611e8e565b604082019050919050565b6000611818602683611b74565b915061182382611edd565b604082019050919050565b600061183b600f83611b74565b915061184682611f2c565b602082019050919050565b600061185e602883611b74565b915061186982611f55565b604082019050919050565b6000611881602083611b74565b915061188c82611fa4565b602082019050919050565b60006118a4602583611b74565b91506118af82611fcd565b604082019050919050565b60006118c7602483611b74565b91506118d28261201c565b604082019050919050565b60006118ea602583611b74565b91506118f58261206b565b604082019050919050565b61190981611c19565b82525050565b61191881611c23565b82525050565b6000602082019050611933600083018461174b565b92915050565b600060208201905061194e600083018461175a565b92915050565b6000602082019050818103600083015261196e8184611769565b905092915050565b6000602082019050818103600083015261198f816117a2565b9050919050565b600060208201905081810360008301526119af816117c5565b9050919050565b600060208201905081810360008301526119cf816117e8565b9050919050565b600060208201905081810360008301526119ef8161180b565b9050919050565b60006020820190508181036000830152611a0f8161182e565b9050919050565b60006020820190508181036000830152611a2f81611851565b9050919050565b60006020820190508181036000830152611a4f81611874565b9050919050565b60006020820190508181036000830152611a6f81611897565b9050919050565b60006020820190508181036000830152611a8f816118ba565b9050919050565b60006020820190508181036000830152611aaf816118dd565b9050919050565b6000602082019050611acb6000830184611900565b92915050565b6000602082019050611ae6600083018461190f565b92915050565b6000611af6611b07565b9050611b028282611c95565b919050565b6000604051905090565b600067ffffffffffffffff821115611b2c57611b2b611d9c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115611b5857611b57611d9c565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000611b9082611c19565b9150611b9b83611c19565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611bd057611bcf611d0f565b5b828201905092915050565b6000611be682611bf9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c4e578082015181840152602081019050611c33565b83811115611c5d576000848401525b50505050565b60006002820490506001821680611c7b57607f821691505b60208210811415611c8f57611c8e611d3e565b5b50919050565b611c9e82611ddf565b810181811067ffffffffffffffff82111715611cbd57611cbc611d9c565b5b80604052505050565b6000611cd182611c19565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611d0457611d03611d0f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420616d6f756e740000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120c381611bdb565b81146120ce57600080fd5b50565b6120da81611bed565b81146120e557600080fd5b50565b6120f181611c19565b81146120fc57600080fd5b5056fea2646970667358221220e400cd0f4ac73d049da409db7c2acbf4afd503c395a7d999ce1a68c84737a06464736f6c63430008060033

Deployed Bytecode Sourcemap

26291:1927:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16144:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18311:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26482:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17264:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27534:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27022:502;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17106:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19863:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27881:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17435:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24733:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13548:94;;;:::i;:::-;;12897:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16363:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20581:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26629:385;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18013:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13797:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16144:100;16198:13;16231:5;16224:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16144:100;:::o;18311:169::-;18394:4;18411:39;18420:12;:10;:12::i;:::-;18434:7;18443:6;18411:8;:39::i;:::-;18468:4;18461:11;;18311:169;;;;:::o;26482:28::-;;;;;;;;;;;;;:::o;17264:108::-;17325:7;17352:12;;17345:19;;17264:108;:::o;27534:339::-;27641:4;13128:12;:10;:12::i;:::-;13117:23;;:7;:5;:7::i;:::-;:23;;;13109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27663:9:::1;27658:186;27682:9;:16;27678:1;:20;27658:186;;;27720:12;27735:9;27745:1;27735:12;;;;;;;;:::i;:::-;;;;;;;;27720:27;;27762:14;27779:7;27787:1;27779:10;;;;;;;;:::i;:::-;;;;;;;;27762:27;;27804:28;27819:4;27825:6;27804:14;:28::i;:::-;;27705:139;;27700:3;;;;;:::i;:::-;;;;27658:186;;;;27861:4;27854:11;;27534:339:::0;;;;:::o;27022:502::-;27121:4;27153:8;;;;;;;;;;;:28;;;;27174:7;:5;:7::i;:::-;27165:16;;:5;:16;;;27153:28;:46;;;;27192:7;:5;:7::i;:::-;27185:14;;:3;:14;;;27153:46;27149:229;;;27215:38;27234:5;27241:3;27246:6;27215:18;:38::i;:::-;;27149:229;;;27287:25;27298:5;27305:6;27287:10;:25::i;:::-;27327:38;27346:5;27353:3;27358:6;27327:18;:38::i;:::-;;27149:229;27400:7;:5;:7::i;:::-;27391:16;;:5;:16;;;:26;;;;;27412:5;;;;;;;;;;;27411:6;27391:26;27388:107;;;27453:3;27434:16;;:22;;;;;;;;;;;;;;;;;;27479:4;27471:5;;:12;;;;;;;;;;;;;;;;;;27388:107;27512:4;27505:11;;27022:502;;;;;:::o;17106:93::-;17164:5;17189:2;17182:9;;17106:93;:::o;19863:215::-;19951:4;19968:80;19977:12;:10;:12::i;:::-;19991:7;20037:10;20000:11;:25;20012:12;:10;:12::i;:::-;20000:25;;;;;;;;;;;;;;;:34;20026:7;20000:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;19968:8;:80::i;:::-;20066:4;20059:11;;19863:215;;;;:::o;27881:106::-;13128:12;:10;:12::i;:::-;13117:23;;:7;:5;:7::i;:::-;:23;;;13109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27965:14:::1;27954:8;;:25;;;;;;;;;;;;;;;;;;27881:106:::0;:::o;17435:127::-;17509:7;17536:9;:18;17546:7;17536:18;;;;;;;;;;;;;;;;17529:25;;17435:127;;;:::o;24733:90::-;24780:7;24733:90;:::o;13548:94::-;13128:12;:10;:12::i;:::-;13117:23;;:7;:5;:7::i;:::-;:23;;;13109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13613:21:::1;13631:1;13613:9;:21::i;:::-;13548:94::o:0;12897:87::-;12943:7;12970:6;;;;;;;;;;;12963:13;;12897:87;:::o;16363:104::-;16419:13;16452:7;16445:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16363:104;:::o;20581:413::-;20674:4;20691:24;20718:11;:25;20730:12;:10;:12::i;:::-;20718:25;;;;;;;;;;;;;;;:34;20744:7;20718:34;;;;;;;;;;;;;;;;20691:61;;20791:15;20771:16;:35;;20763:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;20884:67;20893:12;:10;:12::i;:::-;20907:7;20935:15;20916:16;:34;20884:8;:67::i;:::-;20982:4;20975:11;;;20581:413;;;;:::o;26629:385::-;26709:4;26726:13;26742:12;:10;:12::i;:::-;26726:28;;26769:8;;;;;;;;;;;:28;;;;26790:7;:5;:7::i;:::-;26781:16;;:5;:16;;;26769:28;:46;;;;26808:7;:5;:7::i;:::-;26801:14;;:3;:14;;;26769:46;26765:220;;;26832:27;26847:3;26852:6;26832:14;:27::i;:::-;;26765:220;;;26906:25;26917:5;26924:6;26906:10;:25::i;:::-;26946:27;26961:3;26966:6;26946:14;:27::i;:::-;;26765:220;27002:4;26995:11;;;26629:385;;;;:::o;18013:151::-;18102:7;18129:11;:18;18141:5;18129:18;;;;;;;;;;;;;;;:27;18148:7;18129:27;;;;;;;;;;;;;;;;18122:34;;18013:151;;;;:::o;13797:192::-;13128:12;:10;:12::i;:::-;13117:23;;:7;:5;:7::i;:::-;:23;;;13109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13906:1:::1;13886:22;;:8;:22;;;;13878:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13962:19;13972:8;13962:9;:19::i;:::-;13797:192:::0;:::o;11773:98::-;11826:7;11853:10;11846:17;;11773:98;:::o;24345:380::-;24498:1;24481:19;;:5;:19;;;;24473:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24579:1;24560:21;;:7;:21;;;;24552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24663:6;24633:11;:18;24645:5;24633:18;;;;;;;;;;;;;;;:27;24652:7;24633:27;;;;;;;;;;;;;;;:36;;;;24701:7;24685:32;;24694:5;24685:32;;;24710:6;24685:32;;;;;;:::i;:::-;;;;;;;;24345:380;;;:::o;17775:175::-;17861:4;17878:42;17888:12;:10;:12::i;:::-;17902:9;17913:6;17878:9;:42::i;:::-;17938:4;17931:11;;17775:175;;;;:::o;18962:492::-;19102:4;19119:36;19129:6;19137:9;19148:6;19119:9;:36::i;:::-;19168:24;19195:11;:19;19207:6;19195:19;;;;;;;;;;;;;;;:33;19215:12;:10;:12::i;:::-;19195:33;;;;;;;;;;;;;;;;19168:60;;19267:6;19247:16;:26;;19239:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;19354:57;19363:6;19371:12;:10;:12::i;:::-;19404:6;19385:16;:25;19354:8;:57::i;:::-;19442:4;19435:11;;;18962:492;;;;;:::o;28001:214::-;28094:16;;;;;;;;;;;28085:25;;:5;:25;;;;:45;;;;;28123:7;:5;:7::i;:::-;28114:16;;:5;:16;;;;28085:45;:54;;;;;28134:5;;;;;;;;;;;28085:54;28082:126;;;28175:1;28165:6;:11;;28157:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;28082:126;28001:214;;:::o;13997:173::-;14053:16;14072:6;;;;;;;;;;;14053:25;;14098:8;14089:6;;:17;;;;;;;;;;;;;;;;;;14153:8;14122:40;;14143:8;14122:40;;;;;;;;;;;;14042:128;13997:173;:::o;21484:733::-;21642:1;21624:20;;:6;:20;;;;21616:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;21726:1;21705:23;;:9;:23;;;;21697:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21781:47;21802:6;21810:9;21821:6;21781:20;:47::i;:::-;21841:21;21865:9;:17;21875:6;21865:17;;;;;;;;;;;;;;;;21841:41;;21918:6;21901:13;:23;;21893:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22039:6;22023:13;:22;22003:9;:17;22013:6;22003:17;;;;;;;;;;;;;;;:42;;;;22091:6;22067:9;:20;22077:9;22067:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;22132:9;22115:35;;22124:6;22115:35;;;22143:6;22115:35;;;;;;:::i;:::-;;;;;;;;22163:46;22183:6;22191:9;22202:6;22163:19;:46::i;:::-;21605:612;21484:733;;;:::o;25429:125::-;;;;:::o;26158:124::-;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;404:79;;:::i;:::-;350:2;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;;;;;;:::o;769:722::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:2;;;1149:79;;:::i;:::-;1095:2;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;;;;;;:::o;1497:139::-;1543:5;1581:6;1568:20;1559:29;;1597:33;1624:5;1597:33;:::i;:::-;1549:87;;;;:::o;1659:370::-;1730:5;1779:3;1772:4;1764:6;1760:17;1756:27;1746:2;;1787:79;;:::i;:::-;1746:2;1904:6;1891:20;1929:94;2019:3;2011:6;2004:4;1996:6;1992:17;1929:94;:::i;:::-;1920:103;;1736:293;;;;;:::o;2052:370::-;2123:5;2172:3;2165:4;2157:6;2153:17;2149:27;2139:2;;2180:79;;:::i;:::-;2139:2;2297:6;2284:20;2322:94;2412:3;2404:6;2397:4;2389:6;2385:17;2322:94;:::i;:::-;2313:103;;2129:293;;;;;:::o;2428:133::-;2471:5;2509:6;2496:20;2487:29;;2525:30;2549:5;2525:30;:::i;:::-;2477:84;;;;:::o;2567:139::-;2613:5;2651:6;2638:20;2629:29;;2667:33;2694:5;2667:33;:::i;:::-;2619:87;;;;:::o;2712:329::-;2771:6;2820:2;2808:9;2799:7;2795:23;2791:32;2788:2;;;2826:79;;:::i;:::-;2788:2;2946:1;2971:53;3016:7;3007:6;2996:9;2992:22;2971:53;:::i;:::-;2961:63;;2917:117;2778:263;;;;:::o;3047:474::-;3115:6;3123;3172:2;3160:9;3151:7;3147:23;3143:32;3140:2;;;3178:79;;:::i;:::-;3140:2;3298:1;3323:53;3368:7;3359:6;3348:9;3344:22;3323:53;:::i;:::-;3313:63;;3269:117;3425:2;3451:53;3496:7;3487:6;3476:9;3472:22;3451:53;:::i;:::-;3441:63;;3396:118;3130:391;;;;;:::o;3527:619::-;3604:6;3612;3620;3669:2;3657:9;3648:7;3644:23;3640:32;3637:2;;;3675:79;;:::i;:::-;3637:2;3795:1;3820:53;3865:7;3856:6;3845:9;3841:22;3820:53;:::i;:::-;3810:63;;3766:117;3922:2;3948:53;3993:7;3984:6;3973:9;3969:22;3948:53;:::i;:::-;3938:63;;3893:118;4050:2;4076:53;4121:7;4112:6;4101:9;4097:22;4076:53;:::i;:::-;4066:63;;4021:118;3627:519;;;;;:::o;4152:474::-;4220:6;4228;4277:2;4265:9;4256:7;4252:23;4248:32;4245:2;;;4283:79;;:::i;:::-;4245:2;4403:1;4428:53;4473:7;4464:6;4453:9;4449:22;4428:53;:::i;:::-;4418:63;;4374:117;4530:2;4556:53;4601:7;4592:6;4581:9;4577:22;4556:53;:::i;:::-;4546:63;;4501:118;4235:391;;;;;:::o;4632:894::-;4750:6;4758;4807:2;4795:9;4786:7;4782:23;4778:32;4775:2;;;4813:79;;:::i;:::-;4775:2;4961:1;4950:9;4946:17;4933:31;4991:18;4983:6;4980:30;4977:2;;;5013:79;;:::i;:::-;4977:2;5118:78;5188:7;5179:6;5168:9;5164:22;5118:78;:::i;:::-;5108:88;;4904:302;5273:2;5262:9;5258:18;5245:32;5304:18;5296:6;5293:30;5290:2;;;5326:79;;:::i;:::-;5290:2;5431:78;5501:7;5492:6;5481:9;5477:22;5431:78;:::i;:::-;5421:88;;5216:303;4765:761;;;;;:::o;5532:323::-;5588:6;5637:2;5625:9;5616:7;5612:23;5608:32;5605:2;;;5643:79;;:::i;:::-;5605:2;5763:1;5788:50;5830:7;5821:6;5810:9;5806:22;5788:50;:::i;:::-;5778:60;;5734:114;5595:260;;;;:::o;5861:118::-;5948:24;5966:5;5948:24;:::i;:::-;5943:3;5936:37;5926:53;;:::o;5985:109::-;6066:21;6081:5;6066:21;:::i;:::-;6061:3;6054:34;6044:50;;:::o;6100:364::-;6188:3;6216:39;6249:5;6216:39;:::i;:::-;6271:71;6335:6;6330:3;6271:71;:::i;:::-;6264:78;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6192:272;;;;;:::o;6470:366::-;6612:3;6633:67;6697:2;6692:3;6633:67;:::i;:::-;6626:74;;6709:93;6798:3;6709:93;:::i;:::-;6827:2;6822:3;6818:12;6811:19;;6616:220;;;:::o;6842:366::-;6984:3;7005:67;7069:2;7064:3;7005:67;:::i;:::-;6998:74;;7081:93;7170:3;7081:93;:::i;:::-;7199:2;7194:3;7190:12;7183:19;;6988:220;;;:::o;7214:366::-;7356:3;7377:67;7441:2;7436:3;7377:67;:::i;:::-;7370:74;;7453:93;7542:3;7453:93;:::i;:::-;7571:2;7566:3;7562:12;7555:19;;7360:220;;;:::o;7586:366::-;7728:3;7749:67;7813:2;7808:3;7749:67;:::i;:::-;7742:74;;7825:93;7914:3;7825:93;:::i;:::-;7943:2;7938:3;7934:12;7927:19;;7732:220;;;:::o;7958:366::-;8100:3;8121:67;8185:2;8180:3;8121:67;:::i;:::-;8114:74;;8197:93;8286:3;8197:93;:::i;:::-;8315:2;8310:3;8306:12;8299:19;;8104:220;;;:::o;8330:366::-;8472:3;8493:67;8557:2;8552:3;8493:67;:::i;:::-;8486:74;;8569:93;8658:3;8569:93;:::i;:::-;8687:2;8682:3;8678:12;8671:19;;8476:220;;;:::o;8702:366::-;8844:3;8865:67;8929:2;8924:3;8865:67;:::i;:::-;8858:74;;8941:93;9030:3;8941:93;:::i;:::-;9059:2;9054:3;9050:12;9043:19;;8848:220;;;:::o;9074:366::-;9216:3;9237:67;9301:2;9296:3;9237:67;:::i;:::-;9230:74;;9313:93;9402:3;9313:93;:::i;:::-;9431:2;9426:3;9422:12;9415:19;;9220:220;;;:::o;9446:366::-;9588:3;9609:67;9673:2;9668:3;9609:67;:::i;:::-;9602:74;;9685:93;9774:3;9685:93;:::i;:::-;9803:2;9798:3;9794:12;9787:19;;9592:220;;;:::o;9818:366::-;9960:3;9981:67;10045:2;10040:3;9981:67;:::i;:::-;9974:74;;10057:93;10146:3;10057:93;:::i;:::-;10175:2;10170:3;10166:12;10159:19;;9964:220;;;:::o;10190:118::-;10277:24;10295:5;10277:24;:::i;:::-;10272:3;10265:37;10255:53;;:::o;10314:112::-;10397:22;10413:5;10397:22;:::i;:::-;10392:3;10385:35;10375:51;;:::o;10432:222::-;10525:4;10563:2;10552:9;10548:18;10540:26;;10576:71;10644:1;10633:9;10629:17;10620:6;10576:71;:::i;:::-;10530:124;;;;:::o;10660:210::-;10747:4;10785:2;10774:9;10770:18;10762:26;;10798:65;10860:1;10849:9;10845:17;10836:6;10798:65;:::i;:::-;10752:118;;;;:::o;10876:313::-;10989:4;11027:2;11016:9;11012:18;11004:26;;11076:9;11070:4;11066:20;11062:1;11051:9;11047:17;11040:47;11104:78;11177:4;11168:6;11104:78;:::i;:::-;11096:86;;10994:195;;;;:::o;11195:419::-;11361:4;11399:2;11388:9;11384:18;11376:26;;11448:9;11442:4;11438:20;11434:1;11423:9;11419:17;11412:47;11476:131;11602:4;11476:131;:::i;:::-;11468:139;;11366:248;;;:::o;11620:419::-;11786:4;11824:2;11813:9;11809:18;11801:26;;11873:9;11867:4;11863:20;11859:1;11848:9;11844:17;11837:47;11901:131;12027:4;11901:131;:::i;:::-;11893:139;;11791:248;;;:::o;12045:419::-;12211:4;12249:2;12238:9;12234:18;12226:26;;12298:9;12292:4;12288:20;12284:1;12273:9;12269:17;12262:47;12326:131;12452:4;12326:131;:::i;:::-;12318:139;;12216:248;;;:::o;12470:419::-;12636:4;12674:2;12663:9;12659:18;12651:26;;12723:9;12717:4;12713:20;12709:1;12698:9;12694:17;12687:47;12751:131;12877:4;12751:131;:::i;:::-;12743:139;;12641:248;;;:::o;12895:419::-;13061:4;13099:2;13088:9;13084:18;13076:26;;13148:9;13142:4;13138:20;13134:1;13123:9;13119:17;13112:47;13176:131;13302:4;13176:131;:::i;:::-;13168:139;;13066:248;;;:::o;13320:419::-;13486:4;13524:2;13513:9;13509:18;13501:26;;13573:9;13567:4;13563:20;13559:1;13548:9;13544:17;13537:47;13601:131;13727:4;13601:131;:::i;:::-;13593:139;;13491:248;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13916:248;;;:::o;14170:419::-;14336:4;14374:2;14363:9;14359:18;14351:26;;14423:9;14417:4;14413:20;14409:1;14398:9;14394:17;14387:47;14451:131;14577:4;14451:131;:::i;:::-;14443:139;;14341:248;;;:::o;14595:419::-;14761:4;14799:2;14788:9;14784:18;14776:26;;14848:9;14842:4;14838:20;14834:1;14823:9;14819:17;14812:47;14876:131;15002:4;14876:131;:::i;:::-;14868:139;;14766:248;;;:::o;15020:419::-;15186:4;15224:2;15213:9;15209:18;15201:26;;15273:9;15267:4;15263:20;15259:1;15248:9;15244:17;15237:47;15301:131;15427:4;15301:131;:::i;:::-;15293:139;;15191:248;;;:::o;15445:222::-;15538:4;15576:2;15565:9;15561:18;15553:26;;15589:71;15657:1;15646:9;15642:17;15633:6;15589:71;:::i;:::-;15543:124;;;;:::o;15673:214::-;15762:4;15800:2;15789:9;15785:18;15777:26;;15813:67;15877:1;15866:9;15862:17;15853:6;15813:67;:::i;:::-;15767:120;;;;:::o;15893:129::-;15927:6;15954:20;;:::i;:::-;15944:30;;15983:33;16011:4;16003:6;15983:33;:::i;:::-;15934:88;;;:::o;16028:75::-;16061:6;16094:2;16088:9;16078:19;;16068:35;:::o;16109:311::-;16186:4;16276:18;16268:6;16265:30;16262:2;;;16298:18;;:::i;:::-;16262:2;16348:4;16340:6;16336:17;16328:25;;16408:4;16402;16398:15;16390:23;;16191:229;;;:::o;16426:311::-;16503:4;16593:18;16585:6;16582:30;16579:2;;;16615:18;;:::i;:::-;16579:2;16665:4;16657:6;16653:17;16645:25;;16725:4;16719;16715:15;16707:23;;16508:229;;;:::o;16743:99::-;16795:6;16829:5;16823:12;16813:22;;16802:40;;;:::o;16848:169::-;16932:11;16966:6;16961:3;16954:19;17006:4;17001:3;16997:14;16982:29;;16944:73;;;;:::o;17023:305::-;17063:3;17082:20;17100:1;17082:20;:::i;:::-;17077:25;;17116:20;17134:1;17116:20;:::i;:::-;17111:25;;17270:1;17202:66;17198:74;17195:1;17192:81;17189:2;;;17276:18;;:::i;:::-;17189:2;17320:1;17317;17313:9;17306:16;;17067:261;;;;:::o;17334:96::-;17371:7;17400:24;17418:5;17400:24;:::i;:::-;17389:35;;17379:51;;;:::o;17436:90::-;17470:7;17513:5;17506:13;17499:21;17488:32;;17478:48;;;:::o;17532:126::-;17569:7;17609:42;17602:5;17598:54;17587:65;;17577:81;;;:::o;17664:77::-;17701:7;17730:5;17719:16;;17709:32;;;:::o;17747:86::-;17782:7;17822:4;17815:5;17811:16;17800:27;;17790:43;;;:::o;17839:307::-;17907:1;17917:113;17931:6;17928:1;17925:13;17917:113;;;18016:1;18011:3;18007:11;18001:18;17997:1;17992:3;17988:11;17981:39;17953:2;17950:1;17946:10;17941:15;;17917:113;;;18048:6;18045:1;18042:13;18039:2;;;18128:1;18119:6;18114:3;18110:16;18103:27;18039:2;17888:258;;;;:::o;18152:320::-;18196:6;18233:1;18227:4;18223:12;18213:22;;18280:1;18274:4;18270:12;18301:18;18291:2;;18357:4;18349:6;18345:17;18335:27;;18291:2;18419;18411:6;18408:14;18388:18;18385:38;18382:2;;;18438:18;;:::i;:::-;18382:2;18203:269;;;;:::o;18478:281::-;18561:27;18583:4;18561:27;:::i;:::-;18553:6;18549:40;18691:6;18679:10;18676:22;18655:18;18643:10;18640:34;18637:62;18634:2;;;18702:18;;:::i;:::-;18634:2;18742:10;18738:2;18731:22;18521:238;;;:::o;18765:233::-;18804:3;18827:24;18845:5;18827:24;:::i;:::-;18818:33;;18873:66;18866:5;18863:77;18860:2;;;18943:18;;:::i;:::-;18860:2;18990:1;18983:5;18979:13;18972:20;;18808:190;;;:::o;19004:180::-;19052:77;19049:1;19042:88;19149:4;19146:1;19139:15;19173:4;19170:1;19163:15;19190:180;19238:77;19235:1;19228:88;19335:4;19332:1;19325:15;19359:4;19356:1;19349:15;19376:180;19424:77;19421:1;19414:88;19521:4;19518:1;19511:15;19545:4;19542:1;19535:15;19562:180;19610:77;19607:1;19600:88;19707:4;19704:1;19697:15;19731:4;19728:1;19721:15;19748:117;19857:1;19854;19847:12;19871:117;19980:1;19977;19970:12;19994:117;20103:1;20100;20093:12;20117:117;20226:1;20223;20216:12;20240:102;20281:6;20332:2;20328:7;20323:2;20316:5;20312:14;20308:28;20298:38;;20288:54;;;:::o;20348:222::-;20488:34;20484:1;20476:6;20472:14;20465:58;20557:5;20552:2;20544:6;20540:15;20533:30;20454:116;:::o;20576:225::-;20716:34;20712:1;20704:6;20700:14;20693:58;20785:8;20780:2;20772:6;20768:15;20761:33;20682:119;:::o;20807:221::-;20947:34;20943:1;20935:6;20931:14;20924:58;21016:4;21011:2;21003:6;20999:15;20992:29;20913:115;:::o;21034:225::-;21174:34;21170:1;21162:6;21158:14;21151:58;21243:8;21238:2;21230:6;21226:15;21219:33;21140:119;:::o;21265:165::-;21405:17;21401:1;21393:6;21389:14;21382:41;21371:59;:::o;21436:227::-;21576:34;21572:1;21564:6;21560:14;21553:58;21645:10;21640:2;21632:6;21628:15;21621:35;21542:121;:::o;21669:182::-;21809:34;21805:1;21797:6;21793:14;21786:58;21775:76;:::o;21857:224::-;21997:34;21993:1;21985:6;21981:14;21974:58;22066:7;22061:2;22053:6;22049:15;22042:32;21963:118;:::o;22087:223::-;22227:34;22223:1;22215:6;22211:14;22204:58;22296:6;22291:2;22283:6;22279:15;22272:31;22193:117;:::o;22316:224::-;22456:34;22452:1;22444:6;22440:14;22433:58;22525:7;22520:2;22512:6;22508:15;22501:32;22422:118;:::o;22546:122::-;22619:24;22637:5;22619:24;:::i;:::-;22612:5;22609:35;22599:2;;22658:1;22655;22648:12;22599:2;22589:79;:::o;22674:116::-;22744:21;22759:5;22744:21;:::i;:::-;22737:5;22734:32;22724:2;;22780:1;22777;22770:12;22724:2;22714:76;:::o;22796:122::-;22869:24;22887:5;22869:24;:::i;:::-;22862:5;22859:35;22849:2;;22908:1;22905;22898:12;22849:2;22839:79;:::o

Swarm Source

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