ETH Price: $2,508.05 (+0.25%)

Token

LlamaHold (LLAMA)
 

Overview

Max Total Supply

700,000,000,000 LLAMA

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.18377217727036988 LLAMA

Value
$0.00
0x137D9341d2d5311d5008D1ecA56cE495EBAd9538
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:
LlamaHold

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-01
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}


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


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


// OpenZeppelin Contracts (last updated v4.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 {}
}


// OpenZeppelin Contracts (last updated v4.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
 */


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


// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function 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);
    }
}


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


pragma solidity >=0.8.0 <0.9.0;
contract LlamaHold is Ownable, Pausable, ERC20, ERC20Burnable {
    uint256 private constant TOTAL_SUPPLY = 700_000_000_000 ether;
    uint256 private constant MARKETING_WALLET_ALLOCATION = 21_000_000_000 ether; // 3% of total supply
    uint256 private constant EXCHANGE_LISTING_ALLOCATION = 49_000_000_000 ether; // 7% of total supply
    uint256 private constant MAX_BUY = 137_500_000 ether;
    uint256 public constant DEADBLOCK_COUNT = 3;

    address private constant MARKETING_WALLET_ADDRESS = address(0x9A5dD17e255270Fee2C8D59A10bA3eD694628849);
    address private constant EXCHANGE_LISTING_ADDRESS = address(0x71D36aFD52f66f3230Bdf73a4ce3DcdeF17A73d1);

    mapping(address => bool) private whitelist;
    mapping(address => bool) private poolList;
    mapping(address => uint) private _lastBlockTransfer;

    uint256 public deadblockStart;
    bool private _blockContracts;
    bool private _limitBuys;
    bool private _unrestricted;

    event LiquidityPoolSet(address);

    error NoZeroTransfers();
    error LimitExceeded();
    error NotAllowed();
    error ContractPaused();
    error IncorrectSum();

    constructor() ERC20("LlamaHold", "LLAMA") Ownable() {
        whitelist[msg.sender] = true;
        whitelist[MARKETING_WALLET_ADDRESS] = true;
        whitelist[EXCHANGE_LISTING_ADDRESS] = true;

        _mint(msg.sender, TOTAL_SUPPLY - MARKETING_WALLET_ALLOCATION - EXCHANGE_LISTING_ALLOCATION);
        _mint(MARKETING_WALLET_ADDRESS, MARKETING_WALLET_ALLOCATION);
        _mint(EXCHANGE_LISTING_ADDRESS, EXCHANGE_LISTING_ALLOCATION);

        _blockContracts = true;
        _limitBuys = true;

        _pause();
    }

    function setPools(address[] calldata _val) external onlyOwner {
        for (uint256 i = 0; i < _val.length; i++) {
            address _pool = _val[i];
            poolList[_pool] = true;
            emit LiquidityPoolSet(address(_pool));
        }
    }

    function setAddressToWhiteList(address _address, bool _allow) external onlyOwner {
        whitelist[_address] = _allow;
    }

    function setBlockContracts(bool _val) external onlyOwner {
        _blockContracts = _val;
    }

    function setLimitBuys(bool _val) external onlyOwner {
        _limitBuys = _val;
    }

    function unleashLlamaHold() external onlyOwner {
        _unrestricted = true;
        renounceOwnership();
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        deadblockStart = block.number;
        _unpause();
    }

    function _isContract(address _address) internal view returns (bool) {
        uint32 size;
        assembly {
            size := extcodesize(_address)
        }
        return (size > 0);
    }

    function _checkIfBot(address _address) internal view returns (bool) {
        return (block.number < DEADBLOCK_COUNT + deadblockStart || _isContract(_address)) && !whitelist[_address];
    }

    function _beforeTokenTransfer(address sender, address recipient, uint256 amount) internal override {
        if (amount == 0) { revert NoZeroTransfers(); }
        super._beforeTokenTransfer(sender, recipient, amount);

        if (_unrestricted) { return; }
        if (paused() && !whitelist[sender]) { revert ContractPaused(); }

        if (block.number == _lastBlockTransfer[sender] || block.number == _lastBlockTransfer[recipient]) {
            revert NotAllowed();
        }

        bool isBuy = poolList[sender];

        if (isBuy) {
            if (_blockContracts && _checkIfBot(recipient)) { revert NotAllowed(); }
            if (_limitBuys && amount > MAX_BUY) { revert LimitExceeded(); }
            _lastBlockTransfer[recipient] = block.number;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"IncorrectSum","type":"error"},{"inputs":[],"name":"LimitExceeded","type":"error"},{"inputs":[],"name":"NoZeroTransfers","type":"error"},{"inputs":[],"name":"NotAllowed","type":"error"},{"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":false,"internalType":"address","name":"","type":"address"}],"name":"LiquidityPoolSet","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEADBLOCK_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"deadblockStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_allow","type":"bool"}],"name":"setAddressToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setBlockContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setLimitBuys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_val","type":"address[]"}],"name":"setPools","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"},{"inputs":[],"name":"unleashLlamaHold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f4c6c616d61486f6c6400000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c4c414d410000000000000000000000000000000000000000000000000000008152506200009e620000926200030f60201b60201c565b6200031760201b60201c565b60008060146101000a81548160ff0219169083151502179055508160049081620000c9919062000c82565b508060059081620000db919062000c82565b5050506001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000739a5dd17e255270fee2c8d59a10ba3ed69462884973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660007371d36afd52f66f3230bdf73a4ce3dcdef17a73d173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200025f336b9e53d99a96e88ba8680000006b43dacaf91c1a84ff080000006c08d5d26dc4fe1ea68a6000000062000247919062000d98565b62000253919062000d98565b620003db60201b60201c565b62000291739a5dd17e255270fee2c8d59a10ba3ed6946288496b43dacaf91c1a84ff08000000620003db60201b60201c565b620002c37371d36afd52f66f3230bdf73a4ce3dcdef17a73d16b9e53d99a96e88ba868000000620003db60201b60201c565b6001600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff021916908315150217905550620003096200054960201b60201c565b62000f93565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200044d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004449062000e34565b60405180910390fd5b6200046160008383620005be60201b60201c565b806003600082825462000475919062000e56565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000529919062000ea2565b60405180910390a36200054560008383620008ee60201b60201c565b5050565b62000559620008f360201b60201c565b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620005a56200030f60201b60201c565b604051620005b4919062000f04565b60405180910390a1565b60008103620005f9576040517f7713e26f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620006118383836200094860201b62000aed1760201c565b600a60029054906101000a900460ff16620008e957620006366200094d60201b60201c565b80156200068d5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15620006c5576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054431480620007515750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205443145b1562000789576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690508015620008e757600a60009054906101000a900460ff1680156200080b57506200080a836200096360201b60201c565b5b1562000843576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60019054906101000a900460ff1680156200086a57506a71bcc1ef9311a1f980000082115b15620008a2576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b43600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505b505050565b505050565b620009036200094d60201b60201c565b1562000946576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093d9062000f71565b60405180910390fd5b565b505050565b60008060149054906101000a900460ff16905090565b6000600954600362000976919062000e56565b4310806200099157506200099082620009ef60201b60201c565b5b8015620009e85750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050919050565b600080823b905060008163ffffffff1611915050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a8a57607f821691505b60208210810362000aa05762000a9f62000a42565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b0a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000acb565b62000b16868362000acb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b6362000b5d62000b578462000b2e565b62000b38565b62000b2e565b9050919050565b6000819050919050565b62000b7f8362000b42565b62000b9762000b8e8262000b6a565b84845462000ad8565b825550505050565b600090565b62000bae62000b9f565b62000bbb81848462000b74565b505050565b5b8181101562000be35762000bd760008262000ba4565b60018101905062000bc1565b5050565b601f82111562000c325762000bfc8162000aa6565b62000c078462000abb565b8101602085101562000c17578190505b62000c2f62000c268562000abb565b83018262000bc0565b50505b505050565b600082821c905092915050565b600062000c576000198460080262000c37565b1980831691505092915050565b600062000c72838362000c44565b9150826002028217905092915050565b62000c8d8262000a08565b67ffffffffffffffff81111562000ca95762000ca862000a13565b5b62000cb5825462000a71565b62000cc282828562000be7565b600060209050601f83116001811462000cfa576000841562000ce5578287015190505b62000cf1858262000c64565b86555062000d61565b601f19841662000d0a8662000aa6565b60005b8281101562000d345784890151825560018201915060208501945060208101905062000d0d565b8683101562000d54578489015162000d50601f89168262000c44565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000da58262000b2e565b915062000db28362000b2e565b925082820390508181111562000dcd5762000dcc62000d69565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e1c601f8362000dd3565b915062000e298262000de4565b602082019050919050565b6000602082019050818103600083015262000e4f8162000e0d565b9050919050565b600062000e638262000b2e565b915062000e708362000b2e565b925082820190508082111562000e8b5762000e8a62000d69565b5b92915050565b62000e9c8162000b2e565b82525050565b600060208201905062000eb9600083018462000e91565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000eec8262000ebf565b9050919050565b62000efe8162000edf565b82525050565b600060208201905062000f1b600083018462000ef3565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000f5960108362000dd3565b915062000f668262000f21565b602082019050919050565b6000602082019050818103600083015262000f8c8162000f4a565b9050919050565b6124a28062000fa36000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80638456cb59116100de578063b5e0315511610097578063e3b2396411610071578063e3b2396414610461578063ed66a0ad1461047d578063ee6dfa1814610499578063f2fde38b146104a35761018e565b8063b5e03155146103f5578063c459fbb814610413578063dd62ed3e146104315761018e565b80638456cb59146103335780638544c53b1461033d5780638da5cb5b1461035957806395d89b4114610377578063a457c2d714610395578063a9059cbb146103c55761018e565b80633f4ba83a1161014b5780635c975abb116101255780635c975abb146102bf57806370a08231146102dd578063715018a61461030d57806379cc6790146103175761018e565b80633f4ba83a1461027d57806342966c681461028757806353866824146102a35761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806323b872dd146101ff578063313ce5671461022f578063395093511461024d575b600080fd5b61019b6104bf565b6040516101a89190611867565b60405180910390f35b6101cb60048036038101906101c69190611927565b610551565b6040516101d89190611982565b60405180910390f35b6101e9610574565b6040516101f691906119ac565b60405180910390f35b610219600480360381019061021491906119c7565b61057e565b6040516102269190611982565b60405180910390f35b6102376105ad565b6040516102449190611a36565b60405180910390f35b61026760048036038101906102629190611927565b6105b6565b6040516102749190611982565b60405180910390f35b6102856105ed565b005b6102a1600480360381019061029c9190611a51565b610606565b005b6102bd60048036038101906102b89190611aaa565b61061a565b005b6102c761063f565b6040516102d49190611982565b60405180910390f35b6102f760048036038101906102f29190611ad7565b610655565b60405161030491906119ac565b60405180910390f35b61031561069e565b005b610331600480360381019061032c9190611927565b6106b2565b005b61033b6106d2565b005b61035760048036038101906103529190611b69565b6106e4565b005b6103616107ce565b60405161036e9190611bc5565b60405180910390f35b61037f6107f7565b60405161038c9190611867565b60405180910390f35b6103af60048036038101906103aa9190611927565b610889565b6040516103bc9190611982565b60405180910390f35b6103df60048036038101906103da9190611927565b610900565b6040516103ec9190611982565b60405180910390f35b6103fd610923565b60405161040a91906119ac565b60405180910390f35b61041b610928565b60405161042891906119ac565b60405180910390f35b61044b60048036038101906104469190611be0565b61092e565b60405161045891906119ac565b60405180910390f35b61047b60048036038101906104769190611aaa565b6109b5565b005b61049760048036038101906104929190611c20565b6109da565b005b6104a1610a3d565b005b6104bd60048036038101906104b89190611ad7565b610a6a565b005b6060600480546104ce90611c8f565b80601f01602080910402602001604051908101604052809291908181526020018280546104fa90611c8f565b80156105475780601f1061051c57610100808354040283529160200191610547565b820191906000526020600020905b81548152906001019060200180831161052a57829003601f168201915b5050505050905090565b60008061055c610af2565b9050610569818585610afa565b600191505092915050565b6000600354905090565b600080610589610af2565b9050610596858285610cc3565b6105a1858585610d4f565b60019150509392505050565b60006012905090565b6000806105c1610af2565b90506105e28185856105d3858961092e565b6105dd9190611cef565b610afa565b600191505092915050565b6105f5610fc8565b43600981905550610604611046565b565b610617610611610af2565b826110a8565b50565b610622610fc8565b80600a60006101000a81548160ff02191690831515021790555050565b60008060149054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a6610fc8565b6106b06000611277565b565b6106c4826106be610af2565b83610cc3565b6106ce82826110a8565b5050565b6106da610fc8565b6106e261133b565b565b6106ec610fc8565b60005b828290508110156107c957600083838381811061070f5761070e611d23565b5b90506020020160208101906107249190611ad7565b90506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fe57f71636571365571c0eaeaeb54e1d9e0065804f056a57a2a29448524f7d18a816040516107ad9190611bc5565b60405180910390a15080806107c190611d52565b9150506106ef565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461080690611c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461083290611c8f565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600080610894610af2565b905060006108a2828661092e565b9050838110156108e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108de90611e0c565b60405180910390fd5b6108f48286868403610afa565b60019250505092915050565b60008061090b610af2565b9050610918818585610d4f565b600191505092915050565b600381565b60095481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109bd610fc8565b80600a60016101000a81548160ff02191690831515021790555050565b6109e2610fc8565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610a45610fc8565b6001600a60026101000a81548160ff021916908315150217905550610a6861069e565b565b610a72610fc8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890611e9e565b60405180910390fd5b610aea81611277565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090611f30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90611fc2565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb691906119ac565b60405180910390a3505050565b6000610ccf848461092e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d495781811015610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d329061202e565b60405180910390fd5b610d488484848403610afa565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db5906120c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490612152565b60405180910390fd5b610e3883838361139e565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb6906121e4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610faf91906119ac565b60405180910390a3610fc28484846116a6565b50505050565b610fd0610af2565b73ffffffffffffffffffffffffffffffffffffffff16610fee6107ce565b73ffffffffffffffffffffffffffffffffffffffff1614611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90612250565b60405180910390fd5b565b61104e6116ab565b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611091610af2565b60405161109e9190611bc5565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e906122e2565b60405180910390fd5b6111238260008361139e565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190612374565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161125e91906119ac565b60405180910390a3611272836000846116a6565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6113436116f4565b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611387610af2565b6040516113949190611bc5565b60405180910390a1565b600081036113d8576040517f7713e26f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113e3838383610aed565b600a60029054906101000a900460ff166116a1576113ff61063f565b80156114555750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561148c576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544314806115175750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205443145b1561154e576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050801561169f57600a60009054906101000a900460ff1680156115c657506115c58361173e565b5b156115fd576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60019054906101000a900460ff16801561162357506a71bcc1ef9311a1f980000082115b1561165a576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b43600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505b505050565b505050565b6116b361063f565b6116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e9906123e0565b60405180910390fd5b565b6116fc61063f565b1561173c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117339061244c565b60405180910390fd5b565b6000600954600361174f9190611cef565b4310806117615750611760826117be565b5b80156117b75750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050919050565b600080823b905060008163ffffffff1611915050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118115780820151818401526020810190506117f6565b60008484015250505050565b6000601f19601f8301169050919050565b6000611839826117d7565b61184381856117e2565b93506118538185602086016117f3565b61185c8161181d565b840191505092915050565b60006020820190508181036000830152611881818461182e565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118be82611893565b9050919050565b6118ce816118b3565b81146118d957600080fd5b50565b6000813590506118eb816118c5565b92915050565b6000819050919050565b611904816118f1565b811461190f57600080fd5b50565b600081359050611921816118fb565b92915050565b6000806040838503121561193e5761193d611889565b5b600061194c858286016118dc565b925050602061195d85828601611912565b9150509250929050565b60008115159050919050565b61197c81611967565b82525050565b60006020820190506119976000830184611973565b92915050565b6119a6816118f1565b82525050565b60006020820190506119c1600083018461199d565b92915050565b6000806000606084860312156119e0576119df611889565b5b60006119ee868287016118dc565b93505060206119ff868287016118dc565b9250506040611a1086828701611912565b9150509250925092565b600060ff82169050919050565b611a3081611a1a565b82525050565b6000602082019050611a4b6000830184611a27565b92915050565b600060208284031215611a6757611a66611889565b5b6000611a7584828501611912565b91505092915050565b611a8781611967565b8114611a9257600080fd5b50565b600081359050611aa481611a7e565b92915050565b600060208284031215611ac057611abf611889565b5b6000611ace84828501611a95565b91505092915050565b600060208284031215611aed57611aec611889565b5b6000611afb848285016118dc565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611b2957611b28611b04565b5b8235905067ffffffffffffffff811115611b4657611b45611b09565b5b602083019150836020820283011115611b6257611b61611b0e565b5b9250929050565b60008060208385031215611b8057611b7f611889565b5b600083013567ffffffffffffffff811115611b9e57611b9d61188e565b5b611baa85828601611b13565b92509250509250929050565b611bbf816118b3565b82525050565b6000602082019050611bda6000830184611bb6565b92915050565b60008060408385031215611bf757611bf6611889565b5b6000611c05858286016118dc565b9250506020611c16858286016118dc565b9150509250929050565b60008060408385031215611c3757611c36611889565b5b6000611c45858286016118dc565b9250506020611c5685828601611a95565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ca757607f821691505b602082108103611cba57611cb9611c60565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cfa826118f1565b9150611d05836118f1565b9250828201905080821115611d1d57611d1c611cc0565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611d5d826118f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611d8f57611d8e611cc0565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611df66025836117e2565b9150611e0182611d9a565b604082019050919050565b60006020820190508181036000830152611e2581611de9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e886026836117e2565b9150611e9382611e2c565b604082019050919050565b60006020820190508181036000830152611eb781611e7b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f1a6024836117e2565b9150611f2582611ebe565b604082019050919050565b60006020820190508181036000830152611f4981611f0d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fac6022836117e2565b9150611fb782611f50565b604082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612018601d836117e2565b915061202382611fe2565b602082019050919050565b600060208201905081810360008301526120478161200b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120aa6025836117e2565b91506120b58261204e565b604082019050919050565b600060208201905081810360008301526120d98161209d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061213c6023836117e2565b9150612147826120e0565b604082019050919050565b6000602082019050818103600083015261216b8161212f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006121ce6026836117e2565b91506121d982612172565b604082019050919050565b600060208201905081810360008301526121fd816121c1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061223a6020836117e2565b915061224582612204565b602082019050919050565b600060208201905081810360008301526122698161222d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006122cc6021836117e2565b91506122d782612270565b604082019050919050565b600060208201905081810360008301526122fb816122bf565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061235e6022836117e2565b915061236982612302565b604082019050919050565b6000602082019050818103600083015261238d81612351565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006123ca6014836117e2565b91506123d582612394565b602082019050919050565b600060208201905081810360008301526123f9816123bd565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006124366010836117e2565b915061244182612400565b602082019050919050565b6000602082019050818103600083015261246581612429565b905091905056fea2646970667358221220537d51a1bf3f41905cf3442a4969e04f62e5ba3c9f815ae446a0c1fd7e38393264736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80638456cb59116100de578063b5e0315511610097578063e3b2396411610071578063e3b2396414610461578063ed66a0ad1461047d578063ee6dfa1814610499578063f2fde38b146104a35761018e565b8063b5e03155146103f5578063c459fbb814610413578063dd62ed3e146104315761018e565b80638456cb59146103335780638544c53b1461033d5780638da5cb5b1461035957806395d89b4114610377578063a457c2d714610395578063a9059cbb146103c55761018e565b80633f4ba83a1161014b5780635c975abb116101255780635c975abb146102bf57806370a08231146102dd578063715018a61461030d57806379cc6790146103175761018e565b80633f4ba83a1461027d57806342966c681461028757806353866824146102a35761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806323b872dd146101ff578063313ce5671461022f578063395093511461024d575b600080fd5b61019b6104bf565b6040516101a89190611867565b60405180910390f35b6101cb60048036038101906101c69190611927565b610551565b6040516101d89190611982565b60405180910390f35b6101e9610574565b6040516101f691906119ac565b60405180910390f35b610219600480360381019061021491906119c7565b61057e565b6040516102269190611982565b60405180910390f35b6102376105ad565b6040516102449190611a36565b60405180910390f35b61026760048036038101906102629190611927565b6105b6565b6040516102749190611982565b60405180910390f35b6102856105ed565b005b6102a1600480360381019061029c9190611a51565b610606565b005b6102bd60048036038101906102b89190611aaa565b61061a565b005b6102c761063f565b6040516102d49190611982565b60405180910390f35b6102f760048036038101906102f29190611ad7565b610655565b60405161030491906119ac565b60405180910390f35b61031561069e565b005b610331600480360381019061032c9190611927565b6106b2565b005b61033b6106d2565b005b61035760048036038101906103529190611b69565b6106e4565b005b6103616107ce565b60405161036e9190611bc5565b60405180910390f35b61037f6107f7565b60405161038c9190611867565b60405180910390f35b6103af60048036038101906103aa9190611927565b610889565b6040516103bc9190611982565b60405180910390f35b6103df60048036038101906103da9190611927565b610900565b6040516103ec9190611982565b60405180910390f35b6103fd610923565b60405161040a91906119ac565b60405180910390f35b61041b610928565b60405161042891906119ac565b60405180910390f35b61044b60048036038101906104469190611be0565b61092e565b60405161045891906119ac565b60405180910390f35b61047b60048036038101906104769190611aaa565b6109b5565b005b61049760048036038101906104929190611c20565b6109da565b005b6104a1610a3d565b005b6104bd60048036038101906104b89190611ad7565b610a6a565b005b6060600480546104ce90611c8f565b80601f01602080910402602001604051908101604052809291908181526020018280546104fa90611c8f565b80156105475780601f1061051c57610100808354040283529160200191610547565b820191906000526020600020905b81548152906001019060200180831161052a57829003601f168201915b5050505050905090565b60008061055c610af2565b9050610569818585610afa565b600191505092915050565b6000600354905090565b600080610589610af2565b9050610596858285610cc3565b6105a1858585610d4f565b60019150509392505050565b60006012905090565b6000806105c1610af2565b90506105e28185856105d3858961092e565b6105dd9190611cef565b610afa565b600191505092915050565b6105f5610fc8565b43600981905550610604611046565b565b610617610611610af2565b826110a8565b50565b610622610fc8565b80600a60006101000a81548160ff02191690831515021790555050565b60008060149054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a6610fc8565b6106b06000611277565b565b6106c4826106be610af2565b83610cc3565b6106ce82826110a8565b5050565b6106da610fc8565b6106e261133b565b565b6106ec610fc8565b60005b828290508110156107c957600083838381811061070f5761070e611d23565b5b90506020020160208101906107249190611ad7565b90506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fe57f71636571365571c0eaeaeb54e1d9e0065804f056a57a2a29448524f7d18a816040516107ad9190611bc5565b60405180910390a15080806107c190611d52565b9150506106ef565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461080690611c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461083290611c8f565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600080610894610af2565b905060006108a2828661092e565b9050838110156108e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108de90611e0c565b60405180910390fd5b6108f48286868403610afa565b60019250505092915050565b60008061090b610af2565b9050610918818585610d4f565b600191505092915050565b600381565b60095481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109bd610fc8565b80600a60016101000a81548160ff02191690831515021790555050565b6109e2610fc8565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610a45610fc8565b6001600a60026101000a81548160ff021916908315150217905550610a6861069e565b565b610a72610fc8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890611e9e565b60405180910390fd5b610aea81611277565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090611f30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90611fc2565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb691906119ac565b60405180910390a3505050565b6000610ccf848461092e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d495781811015610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d329061202e565b60405180910390fd5b610d488484848403610afa565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db5906120c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490612152565b60405180910390fd5b610e3883838361139e565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb6906121e4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610faf91906119ac565b60405180910390a3610fc28484846116a6565b50505050565b610fd0610af2565b73ffffffffffffffffffffffffffffffffffffffff16610fee6107ce565b73ffffffffffffffffffffffffffffffffffffffff1614611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90612250565b60405180910390fd5b565b61104e6116ab565b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611091610af2565b60405161109e9190611bc5565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e906122e2565b60405180910390fd5b6111238260008361139e565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190612374565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161125e91906119ac565b60405180910390a3611272836000846116a6565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6113436116f4565b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611387610af2565b6040516113949190611bc5565b60405180910390a1565b600081036113d8576040517f7713e26f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113e3838383610aed565b600a60029054906101000a900460ff166116a1576113ff61063f565b80156114555750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561148c576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544314806115175750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205443145b1561154e576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050801561169f57600a60009054906101000a900460ff1680156115c657506115c58361173e565b5b156115fd576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60019054906101000a900460ff16801561162357506a71bcc1ef9311a1f980000082115b1561165a576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b43600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505b505050565b505050565b6116b361063f565b6116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e9906123e0565b60405180910390fd5b565b6116fc61063f565b1561173c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117339061244c565b60405180910390fd5b565b6000600954600361174f9190611cef565b4310806117615750611760826117be565b5b80156117b75750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050919050565b600080823b905060008163ffffffff1611915050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118115780820151818401526020810190506117f6565b60008484015250505050565b6000601f19601f8301169050919050565b6000611839826117d7565b61184381856117e2565b93506118538185602086016117f3565b61185c8161181d565b840191505092915050565b60006020820190508181036000830152611881818461182e565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118be82611893565b9050919050565b6118ce816118b3565b81146118d957600080fd5b50565b6000813590506118eb816118c5565b92915050565b6000819050919050565b611904816118f1565b811461190f57600080fd5b50565b600081359050611921816118fb565b92915050565b6000806040838503121561193e5761193d611889565b5b600061194c858286016118dc565b925050602061195d85828601611912565b9150509250929050565b60008115159050919050565b61197c81611967565b82525050565b60006020820190506119976000830184611973565b92915050565b6119a6816118f1565b82525050565b60006020820190506119c1600083018461199d565b92915050565b6000806000606084860312156119e0576119df611889565b5b60006119ee868287016118dc565b93505060206119ff868287016118dc565b9250506040611a1086828701611912565b9150509250925092565b600060ff82169050919050565b611a3081611a1a565b82525050565b6000602082019050611a4b6000830184611a27565b92915050565b600060208284031215611a6757611a66611889565b5b6000611a7584828501611912565b91505092915050565b611a8781611967565b8114611a9257600080fd5b50565b600081359050611aa481611a7e565b92915050565b600060208284031215611ac057611abf611889565b5b6000611ace84828501611a95565b91505092915050565b600060208284031215611aed57611aec611889565b5b6000611afb848285016118dc565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611b2957611b28611b04565b5b8235905067ffffffffffffffff811115611b4657611b45611b09565b5b602083019150836020820283011115611b6257611b61611b0e565b5b9250929050565b60008060208385031215611b8057611b7f611889565b5b600083013567ffffffffffffffff811115611b9e57611b9d61188e565b5b611baa85828601611b13565b92509250509250929050565b611bbf816118b3565b82525050565b6000602082019050611bda6000830184611bb6565b92915050565b60008060408385031215611bf757611bf6611889565b5b6000611c05858286016118dc565b9250506020611c16858286016118dc565b9150509250929050565b60008060408385031215611c3757611c36611889565b5b6000611c45858286016118dc565b9250506020611c5685828601611a95565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ca757607f821691505b602082108103611cba57611cb9611c60565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cfa826118f1565b9150611d05836118f1565b9250828201905080821115611d1d57611d1c611cc0565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611d5d826118f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611d8f57611d8e611cc0565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611df66025836117e2565b9150611e0182611d9a565b604082019050919050565b60006020820190508181036000830152611e2581611de9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e886026836117e2565b9150611e9382611e2c565b604082019050919050565b60006020820190508181036000830152611eb781611e7b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f1a6024836117e2565b9150611f2582611ebe565b604082019050919050565b60006020820190508181036000830152611f4981611f0d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fac6022836117e2565b9150611fb782611f50565b604082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612018601d836117e2565b915061202382611fe2565b602082019050919050565b600060208201905081810360008301526120478161200b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120aa6025836117e2565b91506120b58261204e565b604082019050919050565b600060208201905081810360008301526120d98161209d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061213c6023836117e2565b9150612147826120e0565b604082019050919050565b6000602082019050818103600083015261216b8161212f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006121ce6026836117e2565b91506121d982612172565b604082019050919050565b600060208201905081810360008301526121fd816121c1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061223a6020836117e2565b915061224582612204565b602082019050919050565b600060208201905081810360008301526122698161222d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006122cc6021836117e2565b91506122d782612270565b604082019050919050565b600060208201905081810360008301526122fb816122bf565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061235e6022836117e2565b915061236982612302565b604082019050919050565b6000602082019050818103600083015261238d81612351565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006123ca6014836117e2565b91506123d582612394565b602082019050919050565b600060208201905081810360008301526123f9816123bd565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006124366010836117e2565b915061244182612400565b602082019050919050565b6000602082019050818103600083015261246581612429565b905091905056fea2646970667358221220537d51a1bf3f41905cf3442a4969e04f62e5ba3c9f815ae446a0c1fd7e38393264736f6c63430008120033

Deployed Bytecode Sourcemap

25183:3819:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6399:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8759:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7528:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9540:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7370:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10210:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27680:107;;;:::i;:::-;;19336:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27283:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24166:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7699:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21736:103;;;:::i;:::-;;19746:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27609:63;;;:::i;:::-;;26878:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21095:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6618:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10951:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25587:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26018:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8288:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27389:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27147:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27485:116;;;:::i;:::-;;21994:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6399:100;6453:13;6486:5;6479:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6399:100;:::o;8759:201::-;8842:4;8859:13;8875:12;:10;:12::i;:::-;8859:28;;8898:32;8907:5;8914:7;8923:6;8898:8;:32::i;:::-;8948:4;8941:11;;;8759:201;;;;:::o;7528:108::-;7589:7;7616:12;;7609:19;;7528:108;:::o;9540:261::-;9637:4;9654:15;9672:12;:10;:12::i;:::-;9654:30;;9695:38;9711:4;9717:7;9726:6;9695:15;:38::i;:::-;9744:27;9754:4;9760:2;9764:6;9744:9;:27::i;:::-;9789:4;9782:11;;;9540:261;;;;;:::o;7370:93::-;7428:5;7453:2;7446:9;;7370:93;:::o;10210:238::-;10298:4;10315:13;10331:12;:10;:12::i;:::-;10315:28;;10354:64;10363:5;10370:7;10407:10;10379:25;10389:5;10396:7;10379:9;:25::i;:::-;:38;;;;:::i;:::-;10354:8;:64::i;:::-;10436:4;10429:11;;;10210:238;;;;:::o;27680:107::-;20981:13;:11;:13::i;:::-;27746:12:::1;27729:14;:29;;;;27769:10;:8;:10::i;:::-;27680:107::o:0;19336:91::-;19392:27;19398:12;:10;:12::i;:::-;19412:6;19392:5;:27::i;:::-;19336:91;:::o;27283:98::-;20981:13;:11;:13::i;:::-;27369:4:::1;27351:15;;:22;;;;;;;;;;;;;;;;;;27283:98:::0;:::o;24166:86::-;24213:4;24237:7;;;;;;;;;;;24230:14;;24166:86;:::o;7699:127::-;7773:7;7800:9;:18;7810:7;7800:18;;;;;;;;;;;;;;;;7793:25;;7699:127;;;:::o;21736:103::-;20981:13;:11;:13::i;:::-;21801:30:::1;21828:1;21801:18;:30::i;:::-;21736:103::o:0;19746:164::-;19823:46;19839:7;19848:12;:10;:12::i;:::-;19862:6;19823:15;:46::i;:::-;19880:22;19886:7;19895:6;19880:5;:22::i;:::-;19746:164;;:::o;27609:63::-;20981:13;:11;:13::i;:::-;27656:8:::1;:6;:8::i;:::-;27609:63::o:0;26878:261::-;20981:13;:11;:13::i;:::-;26956:9:::1;26951:181;26975:4;;:11;;26971:1;:15;26951:181;;;27008:13;27024:4;;27029:1;27024:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;27008:23;;27064:4;27046:8;:15;27055:5;27046:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;27088:32;27113:5;27088:32;;;;;;:::i;:::-;;;;;;;;26993:139;26988:3;;;;;:::i;:::-;;;;26951:181;;;;26878:261:::0;;:::o;21095:87::-;21141:7;21168:6;;;;;;;;;;;21161:13;;21095:87;:::o;6618:104::-;6674:13;6707:7;6700:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6618:104;:::o;10951:436::-;11044:4;11061:13;11077:12;:10;:12::i;:::-;11061:28;;11100:24;11127:25;11137:5;11144:7;11127:9;:25::i;:::-;11100:52;;11191:15;11171:16;:35;;11163:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11284:60;11293:5;11300:7;11328:15;11309:16;:34;11284:8;:60::i;:::-;11375:4;11368:11;;;;10951:436;;;;:::o;8032:193::-;8111:4;8128:13;8144:12;:10;:12::i;:::-;8128:28;;8167;8177:5;8184:2;8188:6;8167:9;:28::i;:::-;8213:4;8206:11;;;8032:193;;;;:::o;25587:43::-;25629:1;25587:43;:::o;26018:29::-;;;;:::o;8288:151::-;8377:7;8404:11;:18;8416:5;8404:18;;;;;;;;;;;;;;;:27;8423:7;8404:27;;;;;;;;;;;;;;;;8397:34;;8288:151;;;;:::o;27389:88::-;20981:13;:11;:13::i;:::-;27465:4:::1;27452:10;;:17;;;;;;;;;;;;;;;;;;27389:88:::0;:::o;27147:128::-;20981:13;:11;:13::i;:::-;27261:6:::1;27239:9;:19;27249:8;27239:19;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;27147:128:::0;;:::o;27485:116::-;20981:13;:11;:13::i;:::-;27559:4:::1;27543:13;;:20;;;;;;;;;;;;;;;;;;27574:19;:17;:19::i;:::-;27485:116::o:0;21994:201::-;20981:13;:11;:13::i;:::-;22103:1:::1;22083:22;;:8;:22;;::::0;22075:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22159:28;22178:8;22159:18;:28::i;:::-;21994:201:::0;:::o;16600:91::-;;;;:::o;4097:98::-;4150:7;4177:10;4170:17;;4097:98;:::o;14944:346::-;15063:1;15046:19;;:5;:19;;;15038:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15144:1;15125:21;;:7;:21;;;15117:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15228:6;15198:11;:18;15210:5;15198:18;;;;;;;;;;;;;;;:27;15217:7;15198:27;;;;;;;;;;;;;;;:36;;;;15266:7;15250:32;;15259:5;15250:32;;;15275:6;15250:32;;;;;;:::i;:::-;;;;;;;;14944:346;;;:::o;15581:419::-;15682:24;15709:25;15719:5;15726:7;15709:9;:25::i;:::-;15682:52;;15769:17;15749:16;:37;15745:248;;15831:6;15811:16;:26;;15803:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15915:51;15924:5;15931:7;15959:6;15940:16;:25;15915:8;:51::i;:::-;15745:248;15671:329;15581:419;;;:::o;11857:806::-;11970:1;11954:18;;:4;:18;;;11946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12047:1;12033:16;;:2;:16;;;12025:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12102:38;12123:4;12129:2;12133:6;12102:20;:38::i;:::-;12153:19;12175:9;:15;12185:4;12175:15;;;;;;;;;;;;;;;;12153:37;;12224:6;12209:11;:21;;12201:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12341:6;12327:11;:20;12309:9;:15;12319:4;12309:15;;;;;;;;;;;;;;;:38;;;;12544:6;12527:9;:13;12537:2;12527:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12594:2;12579:26;;12588:4;12579:26;;;12598:6;12579:26;;;;;;:::i;:::-;;;;;;;;12618:37;12638:4;12644:2;12648:6;12618:19;:37::i;:::-;11935:728;11857:806;;;:::o;21260:132::-;21335:12;:10;:12::i;:::-;21324:23;;:7;:5;:7::i;:::-;:23;;;21316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21260:132::o;25021:120::-;24030:16;:14;:16::i;:::-;25090:5:::1;25080:7:::0;::::1;:15;;;;;;;;;;;;;;;;;;25111:22;25120:12;:10;:12::i;:::-;25111:22;;;;;;:::i;:::-;;;;;;;;25021:120::o:0;13831:675::-;13934:1;13915:21;;:7;:21;;;13907:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13987:49;14008:7;14025:1;14029:6;13987:20;:49::i;:::-;14049:22;14074:9;:18;14084:7;14074:18;;;;;;;;;;;;;;;;14049:43;;14129:6;14111:14;:24;;14103:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14248:6;14231:14;:23;14210:9;:18;14220:7;14210:18;;;;;;;;;;;;;;;:44;;;;14365:6;14349:12;;:22;;;;;;;;;;;14426:1;14400:37;;14409:7;14400:37;;;14430:6;14400:37;;;;;;:::i;:::-;;;;;;;;14450:48;14470:7;14487:1;14491:6;14450:19;:48::i;:::-;13896:610;13831:675;;:::o;22355:191::-;22429:16;22448:6;;;;;;;;;;;22429:25;;22474:8;22465:6;;:17;;;;;;;;;;;;;;;;;;22529:8;22498:40;;22519:8;22498:40;;;;;;;;;;;;22418:128;22355:191;:::o;24762:118::-;23771:19;:17;:19::i;:::-;24832:4:::1;24822:7;;:14;;;;;;;;;;;;;;;;;;24852:20;24859:12;:10;:12::i;:::-;24852:20;;;;;;:::i;:::-;;;;;;;;24762:118::o:0;28203:796::-;28327:1;28317:6;:11;28313:46;;28339:17;;;;;;;;;;;;;;28313:46;28369:53;28396:6;28404:9;28415:6;28369:26;:53::i;:::-;28439:13;;;;;;;;;;;28456:7;28435:30;28479:8;:6;:8::i;:::-;:30;;;;;28492:9;:17;28502:6;28492:17;;;;;;;;;;;;;;;;;;;;;;;;;28491:18;28479:30;28475:64;;;28520:16;;;;;;;;;;;;;;28475:64;28571:18;:26;28590:6;28571:26;;;;;;;;;;;;;;;;28555:12;:42;:91;;;;28617:18;:29;28636:9;28617:29;;;;;;;;;;;;;;;;28601:12;:45;28555:91;28551:143;;;28670:12;;;;;;;;;;;;;;28551:143;28706:10;28719:8;:16;28728:6;28719:16;;;;;;;;;;;;;;;;;;;;;;;;;28706:29;;28752:5;28748:244;;;28778:15;;;;;;;;;;;:41;;;;;28797:22;28809:9;28797:11;:22::i;:::-;28778:41;28774:71;;;28830:12;;;;;;;;;;;;;;28774:71;28863:10;;;;;;;;;;;:30;;;;;25563:17;28877:6;:16;28863:30;28859:63;;;28904:15;;;;;;;;;;;;;;28859:63;28968:12;28936:18;:29;28955:9;28936:29;;;;;;;;;;;;;;;:44;;;;28748:244;28302:697;28203:796;;;;:::o;17295:90::-;;;;:::o;24510:108::-;24577:8;:6;:8::i;:::-;24569:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;24510:108::o;24325:::-;24396:8;:6;:8::i;:::-;24395:9;24387:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;24325:108::o;28003:192::-;28065:4;28123:14;;25629:1;28105:32;;;;:::i;:::-;28090:12;:47;:72;;;;28141:21;28153:8;28141:11;:21::i;:::-;28090:72;28089:98;;;;;28168:9;:19;28178:8;28168:19;;;;;;;;;;;;;;;;;;;;;;;;;28167:20;28089:98;28082:105;;28003:192;;;:::o;27795:200::-;27857:4;27874:11;27940:8;27928:21;27920:29;;27985:1;27978:4;:8;;;27970:17;;;27795:200;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:323::-;5505:6;5554:2;5542:9;5533:7;5529:23;5525:32;5522:119;;;5560:79;;:::i;:::-;5522:119;5680:1;5705:50;5747:7;5738:6;5727:9;5723:22;5705:50;:::i;:::-;5695:60;;5651:114;5449:323;;;;:::o;5778:329::-;5837:6;5886:2;5874:9;5865:7;5861:23;5857:32;5854:119;;;5892:79;;:::i;:::-;5854:119;6012:1;6037:53;6082:7;6073:6;6062:9;6058:22;6037:53;:::i;:::-;6027:63;;5983:117;5778:329;;;;:::o;6113:117::-;6222:1;6219;6212:12;6236:117;6345:1;6342;6335:12;6359:117;6468:1;6465;6458:12;6499:568;6572:8;6582:6;6632:3;6625:4;6617:6;6613:17;6609:27;6599:122;;6640:79;;:::i;:::-;6599:122;6753:6;6740:20;6730:30;;6783:18;6775:6;6772:30;6769:117;;;6805:79;;:::i;:::-;6769:117;6919:4;6911:6;6907:17;6895:29;;6973:3;6965:4;6957:6;6953:17;6943:8;6939:32;6936:41;6933:128;;;6980:79;;:::i;:::-;6933:128;6499:568;;;;;:::o;7073:559::-;7159:6;7167;7216:2;7204:9;7195:7;7191:23;7187:32;7184:119;;;7222:79;;:::i;:::-;7184:119;7370:1;7359:9;7355:17;7342:31;7400:18;7392:6;7389:30;7386:117;;;7422:79;;:::i;:::-;7386:117;7535:80;7607:7;7598:6;7587:9;7583:22;7535:80;:::i;:::-;7517:98;;;;7313:312;7073:559;;;;;:::o;7638:118::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7638:118;;:::o;7762:222::-;7855:4;7893:2;7882:9;7878:18;7870:26;;7906:71;7974:1;7963:9;7959:17;7950:6;7906:71;:::i;:::-;7762:222;;;;:::o;7990:474::-;8058:6;8066;8115:2;8103:9;8094:7;8090:23;8086:32;8083:119;;;8121:79;;:::i;:::-;8083:119;8241:1;8266:53;8311:7;8302:6;8291:9;8287:22;8266:53;:::i;:::-;8256:63;;8212:117;8368:2;8394:53;8439:7;8430:6;8419:9;8415:22;8394:53;:::i;:::-;8384:63;;8339:118;7990:474;;;;;:::o;8470:468::-;8535:6;8543;8592:2;8580:9;8571:7;8567:23;8563:32;8560:119;;;8598:79;;:::i;:::-;8560:119;8718:1;8743:53;8788:7;8779:6;8768:9;8764:22;8743:53;:::i;:::-;8733:63;;8689:117;8845:2;8871:50;8913:7;8904:6;8893:9;8889:22;8871:50;:::i;:::-;8861:60;;8816:115;8470:468;;;;;:::o;8944:180::-;8992:77;8989:1;8982:88;9089:4;9086:1;9079:15;9113:4;9110:1;9103:15;9130:320;9174:6;9211:1;9205:4;9201:12;9191:22;;9258:1;9252:4;9248:12;9279:18;9269:81;;9335:4;9327:6;9323:17;9313:27;;9269:81;9397:2;9389:6;9386:14;9366:18;9363:38;9360:84;;9416:18;;:::i;:::-;9360:84;9181:269;9130:320;;;:::o;9456:180::-;9504:77;9501:1;9494:88;9601:4;9598:1;9591:15;9625:4;9622:1;9615:15;9642:191;9682:3;9701:20;9719:1;9701:20;:::i;:::-;9696:25;;9735:20;9753:1;9735:20;:::i;:::-;9730:25;;9778:1;9775;9771:9;9764:16;;9799:3;9796:1;9793:10;9790:36;;;9806:18;;:::i;:::-;9790:36;9642:191;;;;:::o;9839:180::-;9887:77;9884:1;9877:88;9984:4;9981:1;9974:15;10008:4;10005:1;9998:15;10025:233;10064:3;10087:24;10105:5;10087:24;:::i;:::-;10078:33;;10133:66;10126:5;10123:77;10120:103;;10203:18;;:::i;:::-;10120:103;10250:1;10243:5;10239:13;10232:20;;10025:233;;;:::o;10264:224::-;10404:34;10400:1;10392:6;10388:14;10381:58;10473:7;10468:2;10460:6;10456:15;10449:32;10264:224;:::o;10494:366::-;10636:3;10657:67;10721:2;10716:3;10657:67;:::i;:::-;10650:74;;10733:93;10822:3;10733:93;:::i;:::-;10851:2;10846:3;10842:12;10835:19;;10494:366;;;:::o;10866:419::-;11032:4;11070:2;11059:9;11055:18;11047:26;;11119:9;11113:4;11109:20;11105:1;11094:9;11090:17;11083:47;11147:131;11273:4;11147:131;:::i;:::-;11139:139;;10866:419;;;:::o;11291:225::-;11431:34;11427:1;11419:6;11415:14;11408:58;11500:8;11495:2;11487:6;11483:15;11476:33;11291:225;:::o;11522:366::-;11664:3;11685:67;11749:2;11744:3;11685:67;:::i;:::-;11678:74;;11761:93;11850:3;11761:93;:::i;:::-;11879:2;11874:3;11870:12;11863:19;;11522:366;;;:::o;11894:419::-;12060:4;12098:2;12087:9;12083:18;12075:26;;12147:9;12141:4;12137:20;12133:1;12122:9;12118:17;12111:47;12175:131;12301:4;12175:131;:::i;:::-;12167:139;;11894:419;;;:::o;12319:223::-;12459:34;12455:1;12447:6;12443:14;12436:58;12528:6;12523:2;12515:6;12511:15;12504:31;12319:223;:::o;12548:366::-;12690:3;12711:67;12775:2;12770:3;12711:67;:::i;:::-;12704:74;;12787:93;12876:3;12787:93;:::i;:::-;12905:2;12900:3;12896:12;12889:19;;12548:366;;;:::o;12920:419::-;13086:4;13124:2;13113:9;13109:18;13101:26;;13173:9;13167:4;13163:20;13159:1;13148:9;13144:17;13137:47;13201:131;13327:4;13201:131;:::i;:::-;13193:139;;12920:419;;;:::o;13345:221::-;13485:34;13481:1;13473:6;13469:14;13462:58;13554:4;13549:2;13541:6;13537:15;13530:29;13345:221;:::o;13572:366::-;13714:3;13735:67;13799:2;13794:3;13735:67;:::i;:::-;13728:74;;13811:93;13900:3;13811:93;:::i;:::-;13929:2;13924:3;13920:12;13913:19;;13572:366;;;:::o;13944:419::-;14110:4;14148:2;14137:9;14133:18;14125:26;;14197:9;14191:4;14187:20;14183:1;14172:9;14168:17;14161:47;14225:131;14351:4;14225:131;:::i;:::-;14217:139;;13944:419;;;:::o;14369:179::-;14509:31;14505:1;14497:6;14493:14;14486:55;14369:179;:::o;14554:366::-;14696:3;14717:67;14781:2;14776:3;14717:67;:::i;:::-;14710:74;;14793:93;14882:3;14793:93;:::i;:::-;14911:2;14906:3;14902:12;14895:19;;14554:366;;;:::o;14926:419::-;15092:4;15130:2;15119:9;15115:18;15107:26;;15179:9;15173:4;15169:20;15165:1;15154:9;15150:17;15143:47;15207:131;15333:4;15207:131;:::i;:::-;15199:139;;14926:419;;;:::o;15351:224::-;15491:34;15487:1;15479:6;15475:14;15468:58;15560:7;15555:2;15547:6;15543:15;15536:32;15351:224;:::o;15581:366::-;15723:3;15744:67;15808:2;15803:3;15744:67;:::i;:::-;15737:74;;15820:93;15909:3;15820:93;:::i;:::-;15938:2;15933:3;15929:12;15922:19;;15581:366;;;:::o;15953:419::-;16119:4;16157:2;16146:9;16142:18;16134:26;;16206:9;16200:4;16196:20;16192:1;16181:9;16177:17;16170:47;16234:131;16360:4;16234:131;:::i;:::-;16226:139;;15953:419;;;:::o;16378:222::-;16518:34;16514:1;16506:6;16502:14;16495:58;16587:5;16582:2;16574:6;16570:15;16563:30;16378:222;:::o;16606:366::-;16748:3;16769:67;16833:2;16828:3;16769:67;:::i;:::-;16762:74;;16845:93;16934:3;16845:93;:::i;:::-;16963:2;16958:3;16954:12;16947:19;;16606:366;;;:::o;16978:419::-;17144:4;17182:2;17171:9;17167:18;17159:26;;17231:9;17225:4;17221:20;17217:1;17206:9;17202:17;17195:47;17259:131;17385:4;17259:131;:::i;:::-;17251:139;;16978:419;;;:::o;17403:225::-;17543:34;17539:1;17531:6;17527:14;17520:58;17612:8;17607:2;17599:6;17595:15;17588:33;17403:225;:::o;17634:366::-;17776:3;17797:67;17861:2;17856:3;17797:67;:::i;:::-;17790:74;;17873:93;17962:3;17873:93;:::i;:::-;17991:2;17986:3;17982:12;17975:19;;17634:366;;;:::o;18006:419::-;18172:4;18210:2;18199:9;18195:18;18187:26;;18259:9;18253:4;18249:20;18245:1;18234:9;18230:17;18223:47;18287:131;18413:4;18287:131;:::i;:::-;18279:139;;18006:419;;;:::o;18431:182::-;18571:34;18567:1;18559:6;18555:14;18548:58;18431:182;:::o;18619:366::-;18761:3;18782:67;18846:2;18841:3;18782:67;:::i;:::-;18775:74;;18858:93;18947:3;18858:93;:::i;:::-;18976:2;18971:3;18967:12;18960:19;;18619:366;;;:::o;18991:419::-;19157:4;19195:2;19184:9;19180:18;19172:26;;19244:9;19238:4;19234:20;19230:1;19219:9;19215:17;19208:47;19272:131;19398:4;19272:131;:::i;:::-;19264:139;;18991:419;;;:::o;19416:220::-;19556:34;19552:1;19544:6;19540:14;19533:58;19625:3;19620:2;19612:6;19608:15;19601:28;19416:220;:::o;19642:366::-;19784:3;19805:67;19869:2;19864:3;19805:67;:::i;:::-;19798:74;;19881:93;19970:3;19881:93;:::i;:::-;19999:2;19994:3;19990:12;19983:19;;19642:366;;;:::o;20014:419::-;20180:4;20218:2;20207:9;20203:18;20195:26;;20267:9;20261:4;20257:20;20253:1;20242:9;20238:17;20231:47;20295:131;20421:4;20295:131;:::i;:::-;20287:139;;20014:419;;;:::o;20439:221::-;20579:34;20575:1;20567:6;20563:14;20556:58;20648:4;20643:2;20635:6;20631:15;20624:29;20439:221;:::o;20666:366::-;20808:3;20829:67;20893:2;20888:3;20829:67;:::i;:::-;20822:74;;20905:93;20994:3;20905:93;:::i;:::-;21023:2;21018:3;21014:12;21007:19;;20666:366;;;:::o;21038:419::-;21204:4;21242:2;21231:9;21227:18;21219:26;;21291:9;21285:4;21281:20;21277:1;21266:9;21262:17;21255:47;21319:131;21445:4;21319:131;:::i;:::-;21311:139;;21038:419;;;:::o;21463:170::-;21603:22;21599:1;21591:6;21587:14;21580:46;21463:170;:::o;21639:366::-;21781:3;21802:67;21866:2;21861:3;21802:67;:::i;:::-;21795:74;;21878:93;21967:3;21878:93;:::i;:::-;21996:2;21991:3;21987:12;21980:19;;21639:366;;;:::o;22011:419::-;22177:4;22215:2;22204:9;22200:18;22192:26;;22264:9;22258:4;22254:20;22250:1;22239:9;22235:17;22228:47;22292:131;22418:4;22292:131;:::i;:::-;22284:139;;22011:419;;;:::o;22436:166::-;22576:18;22572:1;22564:6;22560:14;22553:42;22436:166;:::o;22608:366::-;22750:3;22771:67;22835:2;22830:3;22771:67;:::i;:::-;22764:74;;22847:93;22936:3;22847:93;:::i;:::-;22965:2;22960:3;22956:12;22949:19;;22608:366;;;:::o;22980:419::-;23146:4;23184:2;23173:9;23169:18;23161:26;;23233:9;23227:4;23223:20;23219:1;23208:9;23204:17;23197:47;23261:131;23387:4;23261:131;:::i;:::-;23253:139;;22980:419;;;:::o

Swarm Source

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