ETH Price: $3,461.97 (+0.19%)
Gas: 11 Gwei

Token

0x0 (0x0)
 

Overview

Max Total Supply

13,543,915.555494746027 0x0

Holders

94

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
500 0x0

Value
$0.00
0xf02df97ea80e4b00f4ad077cef7e349202686a8f
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:
OxCrystalsStaking

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// Developer: jawadklair.eth

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


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

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _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 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 {}
}

/**
 * @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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

contract OxCrystalsStaking is ERC20Burnable, Ownable {

    bool isOwnerMintLocked;
    mapping(address => bool) public IS_CLAIMABLE; // set nft contract address which can be staked
    mapping(address => uint256) public INITIAL_REWARD; //set one time claimable reward for nft
    mapping(address => uint256) public MAX_EMISSION_TIME; //set for how much time nft will yeild reward
    mapping(address => uint256) public CLAIMING_START_TIME; //set from what point to start claim proccess
    mapping(address => uint256) private EMISSION_RATE_PER_SEC; // set emission for each nft should be set by per sec value

    mapping(address => mapping(uint256 => uint256)) private tokenIdLastClaimTime; // blocktime at which an nft was staked
    mapping(address => mapping(uint256 => uint256)) private initialRewardClaimed; // to keep track if one time reward has been claimed for token id
    mapping(address => mapping(uint256 => uint256)) private nftTokenIdRewardTimeLeft; // to keep track for how much total time nft has been staked
    
    constructor() ERC20("0x0", "0x0") {
    }

    function ownerMint(uint256 amount) external onlyOwner {
        require(!isOwnerMintLocked, "Owner Mint is Locked");
        _mint(msg.sender, (amount*10**18));
    }

    function lockOwnerMint() external onlyOwner {
        isOwnerMintLocked = true;
    }

    function setClaimingSettingFor(address nftContractAddress, uint256 emissionRatePerSec, uint256 emissionDuration, uint256 initialReward, uint256 claimingStartTime) external onlyOwner {
        INITIAL_REWARD[nftContractAddress] = initialReward;
        MAX_EMISSION_TIME[nftContractAddress] = emissionDuration;
        CLAIMING_START_TIME[nftContractAddress] = claimingStartTime;
        EMISSION_RATE_PER_SEC[nftContractAddress] = emissionRatePerSec;
    }

    function toggleClaimingFor(address nftContractAddress) external onlyOwner {
        IS_CLAIMABLE[nftContractAddress] = !IS_CLAIMABLE[nftContractAddress];
    }

    function cliamOneTimeRewardById(address nftContractAddress, uint256 tokenId) external {
        require(IS_CLAIMABLE[nftContractAddress], "Wrong NFT contract");
        require(initialRewardClaimed[nftContractAddress][tokenId] == 0, "Already claimed one Time claimable tokens for this id");

        initialRewardClaimed[nftContractAddress][tokenId] = 1;
        tokenIdLastClaimTime[nftContractAddress][tokenId] = CLAIMING_START_TIME[nftContractAddress];
        nftTokenIdRewardTimeLeft[nftContractAddress][tokenId] = MAX_EMISSION_TIME[nftContractAddress];

        _mint(msg.sender, INITIAL_REWARD[nftContractAddress]);
    }

    function cliamAllOneTimeRewards(address nftContractAddress) external {
        require(IS_CLAIMABLE[nftContractAddress], "Wrong NFT contract");
        uint256 totalRewards = 0;

        IERC721Enumerable nftContract = IERC721Enumerable(nftContractAddress);

        uint256 nftBalance = nftContract.balanceOf(_msgSender());
        uint256 rewardPerId = INITIAL_REWARD[nftContractAddress];
        for (uint256 i = 0; i < nftBalance; i++) {
            uint256 id = nftContract.tokenOfOwnerByIndex(_msgSender(), i);
            if(initialRewardClaimed[nftContractAddress][id] == 0) {
                totalRewards += rewardPerId;
                initialRewardClaimed[nftContractAddress][id] = 1;
                tokenIdLastClaimTime[nftContractAddress][id] = CLAIMING_START_TIME[nftContractAddress];
                nftTokenIdRewardTimeLeft[nftContractAddress][id] = MAX_EMISSION_TIME[nftContractAddress];
            }
        }
        require(totalRewards > 0, "One time claimable tokens already claimed for your NFTs");
        _mint(msg.sender, totalRewards);
    }
    
    function claimByNFTTokenId(address nftContractAddress, uint256 tokenId) external {
        require(IS_CLAIMABLE[nftContractAddress], "Wrong NFT contract");
        require(nftTokenIdRewardTimeLeft[nftContractAddress][tokenId] != 0, "All tokens claimed for this ID");

        IERC721Enumerable nftContract = IERC721Enumerable(nftContractAddress);
        require(nftContract.ownerOf(tokenId) == _msgSender(), "You are not the owner of this NFT");
        uint256 lastClaimTime = tokenIdLastClaimTime[nftContractAddress][tokenId];
        require(lastClaimTime != 0, "First claim Initial Reward for Your NFTs");
        uint256 timeleft = nftTokenIdRewardTimeLeft[nftContractAddress][tokenId];

        if(timeleft < (block.timestamp - lastClaimTime)) {
            nftTokenIdRewardTimeLeft[nftContractAddress][tokenId] = 0;
            _mint(msg.sender, (timeleft * EMISSION_RATE_PER_SEC[nftContractAddress]));
        }
        else {
            nftTokenIdRewardTimeLeft[nftContractAddress][tokenId] -= (block.timestamp - lastClaimTime);
            _mint(msg.sender, ((block.timestamp - lastClaimTime) * EMISSION_RATE_PER_SEC[nftContractAddress]));
        }
        tokenIdLastClaimTime[nftContractAddress][tokenId] = block.timestamp;
    }
    
    function claimAll(address nftContractAddress) external {
        require(IS_CLAIMABLE[nftContractAddress], "Wrong NFT contract");
        uint256 totalRewards = 0;

        IERC721Enumerable nftContract = IERC721Enumerable(nftContractAddress);

        uint256 nftBalance = nftContract.balanceOf(_msgSender());
        uint256 emissionRate = EMISSION_RATE_PER_SEC[nftContractAddress];
        for (uint256 i = 0; i < nftBalance; i++) {
            uint256 id = nftContract.tokenOfOwnerByIndex(_msgSender(), i);
            uint256 lastClaimTime = tokenIdLastClaimTime[nftContractAddress][id];
            require(lastClaimTime != 0, "First claim Initial Reward for Your NFTs");
            uint256 timeleft = nftTokenIdRewardTimeLeft[nftContractAddress][id];

            if(timeleft < (block.timestamp - lastClaimTime)) {
                nftTokenIdRewardTimeLeft[nftContractAddress][id] = 0;
                totalRewards += (timeleft * emissionRate);
            }
            else {
                nftTokenIdRewardTimeLeft[nftContractAddress][id] -= (block.timestamp - lastClaimTime);
                totalRewards += ((block.timestamp - lastClaimTime) * emissionRate);
            }
            tokenIdLastClaimTime[nftContractAddress][id] = block.timestamp;
        }
        
        _mint(msg.sender, totalRewards);
    }

    function getAllRewards(address nftContractAddress, address claimer) external view returns (uint256) {
        uint256 totalRewards = 0;

        IERC721Enumerable nftContract = IERC721Enumerable(nftContractAddress);
        uint256 nftBalance = nftContract.balanceOf(claimer);

        for (uint256 i = 0; i < nftBalance; i++) {
            uint256 id = nftContract.tokenOfOwnerByIndex(claimer, i);
            totalRewards += ((block.timestamp - tokenIdLastClaimTime[nftContractAddress][id]) * EMISSION_RATE_PER_SEC[nftContractAddress]);
        }
        
        return totalRewards;
    }

    function getRewardsForNFTTokenId(address nftContractAddress, uint256 tokenId) external view returns (uint256) {
        uint256 secondsStaked = block.timestamp - tokenIdLastClaimTime[nftContractAddress][tokenId];
        return secondsStaked * EMISSION_RATE_PER_SEC[nftContractAddress];
    }

    function getRewardTimeLeftForNFTTokenId(address nftContractAddress, uint256 tokenId) external view returns (uint256) {
        return nftTokenIdRewardTimeLeft[nftContractAddress][tokenId];
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"CLAIMING_START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"INITIAL_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"IS_CLAIMABLE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MAX_EMISSION_TIME","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":[{"internalType":"address","name":"nftContractAddress","type":"address"}],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContractAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimByNFTTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContractAddress","type":"address"}],"name":"cliamAllOneTimeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContractAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"cliamOneTimeRewardById","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContractAddress","type":"address"},{"internalType":"address","name":"claimer","type":"address"}],"name":"getAllRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContractAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRewardTimeLeftForNFTTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContractAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRewardsForNFTTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockOwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContractAddress","type":"address"},{"internalType":"uint256","name":"emissionRatePerSec","type":"uint256"},{"internalType":"uint256","name":"emissionDuration","type":"uint256"},{"internalType":"uint256","name":"initialReward","type":"uint256"},{"internalType":"uint256","name":"claimingStartTime","type":"uint256"}],"name":"setClaimingSettingFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContractAddress","type":"address"}],"name":"toggleClaimingFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600381526020016203078360ec1b8152506040518060400160405280600381526020016203078360ec1b815250816003908051906020019062000062929190620000f1565b50805162000078906004906020840190620000f1565b505050620000956200008f6200009b60201b60201c565b6200009f565b620001d4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ff9062000197565b90600052602060002090601f0160209004810192826200012357600085556200016e565b82601f106200013e57805160ff19168380011785556200016e565b828001600101855582156200016e579182015b828111156200016e57825182559160200191906001019062000151565b506200017c92915062000180565b5090565b5b808211156200017c576000815560010162000181565b600181811c90821680620001ac57607f821691505b60208210811415620001ce57634e487b7160e01b600052602260045260246000fd5b50919050565b611df880620001e46000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b513a3aa116100a2578063dd62ed3e11610071578063dd62ed3e14610451578063f19e75d41461048a578063f2fde38b1461049d578063fe341dbc146104b057600080fd5b8063b513a3aa14610403578063bbf76f6914610416578063d48620ab14610429578063d488e5081461044957600080fd5b806392cf8295116100de57806392cf8295146103c257806395d89b41146103d5578063a457c2d7146103dd578063a9059cbb146103f057600080fd5b8063715018a61461037957806377329f351461038157806379cc6790146103945780638da5cb5b146103a757600080fd5b806328d08cfc1161018757806337b668f21161015657806337b668f214610307578063395093511461032a57806342966c681461033d57806370a082311461035057600080fd5b806328d08cfc146102b25780632f2780f4146102c5578063313ce567146102d8578063339fcc2a146102e757600080fd5b80630e964eda116101c35780630e964eda1461024c57806318160ddd146102615780631be015791461026957806323b872dd1461029f57600080fd5b806306fdde03146101ea5780630767e9a514610208578063095ea7b314610229575b600080fd5b6101f26104d0565b6040516101ff9190611a98565b60405180910390f35b61021b610216366004611b02565b610562565b6040519081526020016101ff565b61023c610237366004611b02565b6105c0565b60405190151581526020016101ff565b61025f61025a366004611b2e565b6105d6565b005b60025461021b565b61021b610277366004611b02565b6001600160a01b03919091166000908152600d60209081526040808320938352929052205490565b61023c6102ad366004611b52565b610632565b61025f6102c0366004611b93565b6106dc565b61025f6102d3366004611b02565b610747565b604051601281526020016101ff565b61021b6102f5366004611b2e565b60096020526000908152604090205481565b61023c610315366004611b2e565b60066020526000908152604090205460ff1681565b61023c610338366004611b02565b610a1d565b61025f61034b366004611bd7565b610a59565b61021b61035e366004611b2e565b6001600160a01b031660009081526020819052604090205490565b61025f610a66565b61025f61038f366004611b2e565b610a9c565b61025f6103a2366004611b02565b610d5e565b6005546040516001600160a01b0390911681526020016101ff565b61025f6103d0366004611b02565b610de4565b6101f2610f20565b61023c6103eb366004611b02565b610f2f565b61023c6103fe366004611b02565b610fc8565b61025f610411366004611b2e565b610fd5565b61021b610424366004611bf0565b611259565b61021b610437366004611b2e565b60086020526000908152604090205481565b61025f6113be565b61021b61045f366004611bf0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61025f610498366004611bd7565b6113fd565b61025f6104ab366004611b2e565b61148e565b61021b6104be366004611b2e565b60076020526000908152604090205481565b6060600380546104df90611c29565b80601f016020809104026020016040519081016040528092919081815260200182805461050b90611c29565b80156105585780601f1061052d57610100808354040283529160200191610558565b820191906000526020600020905b81548152906001019060200180831161053b57829003601f168201915b5050505050905090565b6001600160a01b0382166000908152600b6020908152604080832084845290915281205481906105929042611c7a565b6001600160a01b0385166000908152600a60205260409020549091506105b89082611c91565b949350505050565b60006105cd338484611526565b50600192915050565b6005546001600160a01b031633146106095760405162461bcd60e51b815260040161060090611cb0565b60405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19811660ff90911615179055565b600061063f84848461164a565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106c45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610600565b6106d18533858403611526565b506001949350505050565b6005546001600160a01b031633146107065760405162461bcd60e51b815260040161060090611cb0565b6001600160a01b0390941660009081526007602090815260408083209390935560088152828220939093556009835281812094909455600a90915290912055565b6001600160a01b03821660009081526006602052604090205460ff1661077f5760405162461bcd60e51b815260040161060090611ce5565b6001600160a01b0382166000908152600d602090815260408083208484529091529020546107ef5760405162461bcd60e51b815260206004820152601e60248201527f416c6c20746f6b656e7320636c61696d656420666f72207468697320494400006044820152606401610600565b81336040516331a9108f60e11b8152600481018490526001600160a01b0391821691831690636352211e90602401602060405180830381865afa15801561083a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085e9190611d11565b6001600160a01b0316146108be5760405162461bcd60e51b815260206004820152602160248201527f596f7520617265206e6f7420746865206f776e6572206f662074686973204e466044820152601560fa1b6064820152608401610600565b6001600160a01b0383166000908152600b60209081526040808320858452909152902054806108ff5760405162461bcd60e51b815260040161060090611d2e565b6001600160a01b0384166000908152600d6020908152604080832086845290915290205461092d8242611c7a565b81101561097d576001600160a01b0385166000818152600d602090815260408083208884528252808320839055928252600a905220546109789033906109739084611c91565b611819565b6109f2565b6109878242611c7a565b6001600160a01b0386166000908152600d60209081526040808320888452909152812080549091906109ba908490611c7a565b90915550506001600160a01b0385166000908152600a60205260409020546109f29033906109e88542611c7a565b6109739190611c91565b5050506001600160a01b039091166000908152600b6020908152604080832093835292905220429055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105cd918590610a54908690611d76565b611526565b610a6333826118f8565b50565b6005546001600160a01b03163314610a905760405162461bcd60e51b815260040161060090611cb0565b610a9a6000611a46565b565b6001600160a01b03811660009081526006602052604090205460ff16610ad45760405162461bcd60e51b815260040161060090611ce5565b600081816001600160a01b0382166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b509190611d8e565b6001600160a01b0385166000908152600a60205260408120549192505b82811015610d4c5760006001600160a01b038516632f745c59336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101859052604401602060405180830381865afa158015610bd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf69190611d8e565b6001600160a01b0388166000908152600b6020908152604080832084845290915290205490915080610c3a5760405162461bcd60e51b815260040161060090611d2e565b6001600160a01b0388166000908152600d60209081526040808320858452909152902054610c688242611c7a565b811015610cae576001600160a01b0389166000908152600d60209081526040808320868452909152812055610c9d8582611c91565b610ca79089611d76565b9750610d13565b610cb88242611c7a565b6001600160a01b038a166000908152600d6020908152604080832087845290915281208054909190610ceb908490611c7a565b90915550859050610cfc8342611c7a565b610d069190611c91565b610d109089611d76565b97505b50506001600160a01b0387166000908152600b602090815260408083209383529290522042905580610d4481611da7565b915050610b6d565b50610d573385611819565b5050505050565b6000610d6a833361045f565b905081811015610dc85760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610600565b610dd58333848403611526565b610ddf83836118f8565b505050565b6001600160a01b03821660009081526006602052604090205460ff16610e1c5760405162461bcd60e51b815260040161060090611ce5565b6001600160a01b0382166000908152600c6020908152604080832084845290915290205415610eab5760405162461bcd60e51b815260206004820152603560248201527f416c726561647920636c61696d6564206f6e652054696d6520636c61696d61626044820152741b19481d1bdad95b9cc8199bdc881d1a1a5cc81a59605a1b6064820152608401610600565b6001600160a01b0382166000818152600c602090815260408083208584528252808320600190558383526009825280832054600b83528184208685528352818420558383526008825280832054600d8352818420868552835281842055928252600790522054610f1c903390611819565b5050565b6060600480546104df90611c29565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610fb15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610600565b610fbe3385858403611526565b5060019392505050565b60006105cd33848461164a565b6001600160a01b03811660009081526006602052604090205460ff1661100d5760405162461bcd60e51b815260040161060090611ce5565b600081816001600160a01b0382166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015611065573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110899190611d8e565b6001600160a01b0385166000908152600760205260408120549192505b828110156111d85760006001600160a01b038516632f745c59336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101859052604401602060405180830381865afa15801561110b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112f9190611d8e565b6001600160a01b0388166000908152600c602090815260408083208484529091529020549091506111c5576111648387611d76565b6001600160a01b0388166000818152600c602090815260408083208684528252808320600190558383526009825280832054600b83528184208785528352818420559282526008815282822054600d82528383208684529091529190205595505b50806111d081611da7565b9150506110a6565b506000841161124f5760405162461bcd60e51b815260206004820152603760248201527f4f6e652074696d6520636c61696d61626c6520746f6b656e7320616c7265616460448201527f7920636c61696d656420666f7220796f7572204e4654730000000000000000006064820152608401610600565b610d573385611819565b6040516370a0823160e01b81526001600160a01b0382811660048301526000918291859183918316906370a0823190602401602060405180830381865afa1580156112a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cc9190611d8e565b905060005b818110156113b357604051632f745c5960e01b81526001600160a01b0387811660048301526024820183905260009190851690632f745c5990604401602060405180830381865afa15801561132a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134e9190611d8e565b6001600160a01b0389166000908152600a6020908152604080832054600b835281842085855290925290912054919250906113899042611c7a565b6113939190611c91565b61139d9086611d76565b94505080806113ab90611da7565b9150506112d1565b509195945050505050565b6005546001600160a01b031633146113e85760405162461bcd60e51b815260040161060090611cb0565b6005805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146114275760405162461bcd60e51b815260040161060090611cb0565b600554600160a01b900460ff16156114785760405162461bcd60e51b815260206004820152601460248201527313dddb995c88135a5b9d081a5cc8131bd8dad95960621b6044820152606401610600565b610a633361097383670de0b6b3a7640000611c91565b6005546001600160a01b031633146114b85760405162461bcd60e51b815260040161060090611cb0565b6001600160a01b03811661151d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610600565b610a6381611a46565b6001600160a01b0383166115885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610600565b6001600160a01b0382166115e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610600565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610600565b6001600160a01b0382166117105760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610600565b6001600160a01b038316600090815260208190526040902054818110156117885760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610600565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906117bf908490611d76565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161180b91815260200190565b60405180910390a350505050565b6001600160a01b03821661186f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610600565b80600260008282546118819190611d76565b90915550506001600160a01b038216600090815260208190526040812080548392906118ae908490611d76565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166119585760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610600565b6001600160a01b038216600090815260208190526040902054818110156119cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610600565b6001600160a01b03831660009081526020819052604081208383039055600280548492906119fb908490611c7a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015611ac557858101830151858201604001528201611aa9565b81811115611ad7576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610a6357600080fd5b60008060408385031215611b1557600080fd5b8235611b2081611aed565b946020939093013593505050565b600060208284031215611b4057600080fd5b8135611b4b81611aed565b9392505050565b600080600060608486031215611b6757600080fd5b8335611b7281611aed565b92506020840135611b8281611aed565b929592945050506040919091013590565b600080600080600060a08688031215611bab57600080fd5b8535611bb681611aed565b97602087013597506040870135966060810135965060800135945092505050565b600060208284031215611be957600080fd5b5035919050565b60008060408385031215611c0357600080fd5b8235611c0e81611aed565b91506020830135611c1e81611aed565b809150509250929050565b600181811c90821680611c3d57607f821691505b60208210811415611c5e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611c8c57611c8c611c64565b500390565b6000816000190483118215151615611cab57611cab611c64565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527115dc9bdb99c81391950818dbdb9d1c9858dd60721b604082015260600190565b600060208284031215611d2357600080fd5b8151611b4b81611aed565b60208082526028908201527f466972737420636c61696d20496e697469616c2052657761726420666f7220596040820152676f7572204e46547360c01b606082015260800190565b60008219821115611d8957611d89611c64565b500190565b600060208284031215611da057600080fd5b5051919050565b6000600019821415611dbb57611dbb611c64565b506001019056fea2646970667358221220f0684b2c4bae8815b7dec301dfb2af52331c124eb27ba759793fd20e17471bc764736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b513a3aa116100a2578063dd62ed3e11610071578063dd62ed3e14610451578063f19e75d41461048a578063f2fde38b1461049d578063fe341dbc146104b057600080fd5b8063b513a3aa14610403578063bbf76f6914610416578063d48620ab14610429578063d488e5081461044957600080fd5b806392cf8295116100de57806392cf8295146103c257806395d89b41146103d5578063a457c2d7146103dd578063a9059cbb146103f057600080fd5b8063715018a61461037957806377329f351461038157806379cc6790146103945780638da5cb5b146103a757600080fd5b806328d08cfc1161018757806337b668f21161015657806337b668f214610307578063395093511461032a57806342966c681461033d57806370a082311461035057600080fd5b806328d08cfc146102b25780632f2780f4146102c5578063313ce567146102d8578063339fcc2a146102e757600080fd5b80630e964eda116101c35780630e964eda1461024c57806318160ddd146102615780631be015791461026957806323b872dd1461029f57600080fd5b806306fdde03146101ea5780630767e9a514610208578063095ea7b314610229575b600080fd5b6101f26104d0565b6040516101ff9190611a98565b60405180910390f35b61021b610216366004611b02565b610562565b6040519081526020016101ff565b61023c610237366004611b02565b6105c0565b60405190151581526020016101ff565b61025f61025a366004611b2e565b6105d6565b005b60025461021b565b61021b610277366004611b02565b6001600160a01b03919091166000908152600d60209081526040808320938352929052205490565b61023c6102ad366004611b52565b610632565b61025f6102c0366004611b93565b6106dc565b61025f6102d3366004611b02565b610747565b604051601281526020016101ff565b61021b6102f5366004611b2e565b60096020526000908152604090205481565b61023c610315366004611b2e565b60066020526000908152604090205460ff1681565b61023c610338366004611b02565b610a1d565b61025f61034b366004611bd7565b610a59565b61021b61035e366004611b2e565b6001600160a01b031660009081526020819052604090205490565b61025f610a66565b61025f61038f366004611b2e565b610a9c565b61025f6103a2366004611b02565b610d5e565b6005546040516001600160a01b0390911681526020016101ff565b61025f6103d0366004611b02565b610de4565b6101f2610f20565b61023c6103eb366004611b02565b610f2f565b61023c6103fe366004611b02565b610fc8565b61025f610411366004611b2e565b610fd5565b61021b610424366004611bf0565b611259565b61021b610437366004611b2e565b60086020526000908152604090205481565b61025f6113be565b61021b61045f366004611bf0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61025f610498366004611bd7565b6113fd565b61025f6104ab366004611b2e565b61148e565b61021b6104be366004611b2e565b60076020526000908152604090205481565b6060600380546104df90611c29565b80601f016020809104026020016040519081016040528092919081815260200182805461050b90611c29565b80156105585780601f1061052d57610100808354040283529160200191610558565b820191906000526020600020905b81548152906001019060200180831161053b57829003601f168201915b5050505050905090565b6001600160a01b0382166000908152600b6020908152604080832084845290915281205481906105929042611c7a565b6001600160a01b0385166000908152600a60205260409020549091506105b89082611c91565b949350505050565b60006105cd338484611526565b50600192915050565b6005546001600160a01b031633146106095760405162461bcd60e51b815260040161060090611cb0565b60405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19811660ff90911615179055565b600061063f84848461164a565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106c45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610600565b6106d18533858403611526565b506001949350505050565b6005546001600160a01b031633146107065760405162461bcd60e51b815260040161060090611cb0565b6001600160a01b0390941660009081526007602090815260408083209390935560088152828220939093556009835281812094909455600a90915290912055565b6001600160a01b03821660009081526006602052604090205460ff1661077f5760405162461bcd60e51b815260040161060090611ce5565b6001600160a01b0382166000908152600d602090815260408083208484529091529020546107ef5760405162461bcd60e51b815260206004820152601e60248201527f416c6c20746f6b656e7320636c61696d656420666f72207468697320494400006044820152606401610600565b81336040516331a9108f60e11b8152600481018490526001600160a01b0391821691831690636352211e90602401602060405180830381865afa15801561083a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085e9190611d11565b6001600160a01b0316146108be5760405162461bcd60e51b815260206004820152602160248201527f596f7520617265206e6f7420746865206f776e6572206f662074686973204e466044820152601560fa1b6064820152608401610600565b6001600160a01b0383166000908152600b60209081526040808320858452909152902054806108ff5760405162461bcd60e51b815260040161060090611d2e565b6001600160a01b0384166000908152600d6020908152604080832086845290915290205461092d8242611c7a565b81101561097d576001600160a01b0385166000818152600d602090815260408083208884528252808320839055928252600a905220546109789033906109739084611c91565b611819565b6109f2565b6109878242611c7a565b6001600160a01b0386166000908152600d60209081526040808320888452909152812080549091906109ba908490611c7a565b90915550506001600160a01b0385166000908152600a60205260409020546109f29033906109e88542611c7a565b6109739190611c91565b5050506001600160a01b039091166000908152600b6020908152604080832093835292905220429055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105cd918590610a54908690611d76565b611526565b610a6333826118f8565b50565b6005546001600160a01b03163314610a905760405162461bcd60e51b815260040161060090611cb0565b610a9a6000611a46565b565b6001600160a01b03811660009081526006602052604090205460ff16610ad45760405162461bcd60e51b815260040161060090611ce5565b600081816001600160a01b0382166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b509190611d8e565b6001600160a01b0385166000908152600a60205260408120549192505b82811015610d4c5760006001600160a01b038516632f745c59336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101859052604401602060405180830381865afa158015610bd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf69190611d8e565b6001600160a01b0388166000908152600b6020908152604080832084845290915290205490915080610c3a5760405162461bcd60e51b815260040161060090611d2e565b6001600160a01b0388166000908152600d60209081526040808320858452909152902054610c688242611c7a565b811015610cae576001600160a01b0389166000908152600d60209081526040808320868452909152812055610c9d8582611c91565b610ca79089611d76565b9750610d13565b610cb88242611c7a565b6001600160a01b038a166000908152600d6020908152604080832087845290915281208054909190610ceb908490611c7a565b90915550859050610cfc8342611c7a565b610d069190611c91565b610d109089611d76565b97505b50506001600160a01b0387166000908152600b602090815260408083209383529290522042905580610d4481611da7565b915050610b6d565b50610d573385611819565b5050505050565b6000610d6a833361045f565b905081811015610dc85760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610600565b610dd58333848403611526565b610ddf83836118f8565b505050565b6001600160a01b03821660009081526006602052604090205460ff16610e1c5760405162461bcd60e51b815260040161060090611ce5565b6001600160a01b0382166000908152600c6020908152604080832084845290915290205415610eab5760405162461bcd60e51b815260206004820152603560248201527f416c726561647920636c61696d6564206f6e652054696d6520636c61696d61626044820152741b19481d1bdad95b9cc8199bdc881d1a1a5cc81a59605a1b6064820152608401610600565b6001600160a01b0382166000818152600c602090815260408083208584528252808320600190558383526009825280832054600b83528184208685528352818420558383526008825280832054600d8352818420868552835281842055928252600790522054610f1c903390611819565b5050565b6060600480546104df90611c29565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610fb15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610600565b610fbe3385858403611526565b5060019392505050565b60006105cd33848461164a565b6001600160a01b03811660009081526006602052604090205460ff1661100d5760405162461bcd60e51b815260040161060090611ce5565b600081816001600160a01b0382166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015611065573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110899190611d8e565b6001600160a01b0385166000908152600760205260408120549192505b828110156111d85760006001600160a01b038516632f745c59336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101859052604401602060405180830381865afa15801561110b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112f9190611d8e565b6001600160a01b0388166000908152600c602090815260408083208484529091529020549091506111c5576111648387611d76565b6001600160a01b0388166000818152600c602090815260408083208684528252808320600190558383526009825280832054600b83528184208785528352818420559282526008815282822054600d82528383208684529091529190205595505b50806111d081611da7565b9150506110a6565b506000841161124f5760405162461bcd60e51b815260206004820152603760248201527f4f6e652074696d6520636c61696d61626c6520746f6b656e7320616c7265616460448201527f7920636c61696d656420666f7220796f7572204e4654730000000000000000006064820152608401610600565b610d573385611819565b6040516370a0823160e01b81526001600160a01b0382811660048301526000918291859183918316906370a0823190602401602060405180830381865afa1580156112a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cc9190611d8e565b905060005b818110156113b357604051632f745c5960e01b81526001600160a01b0387811660048301526024820183905260009190851690632f745c5990604401602060405180830381865afa15801561132a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134e9190611d8e565b6001600160a01b0389166000908152600a6020908152604080832054600b835281842085855290925290912054919250906113899042611c7a565b6113939190611c91565b61139d9086611d76565b94505080806113ab90611da7565b9150506112d1565b509195945050505050565b6005546001600160a01b031633146113e85760405162461bcd60e51b815260040161060090611cb0565b6005805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146114275760405162461bcd60e51b815260040161060090611cb0565b600554600160a01b900460ff16156114785760405162461bcd60e51b815260206004820152601460248201527313dddb995c88135a5b9d081a5cc8131bd8dad95960621b6044820152606401610600565b610a633361097383670de0b6b3a7640000611c91565b6005546001600160a01b031633146114b85760405162461bcd60e51b815260040161060090611cb0565b6001600160a01b03811661151d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610600565b610a6381611a46565b6001600160a01b0383166115885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610600565b6001600160a01b0382166115e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610600565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610600565b6001600160a01b0382166117105760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610600565b6001600160a01b038316600090815260208190526040902054818110156117885760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610600565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906117bf908490611d76565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161180b91815260200190565b60405180910390a350505050565b6001600160a01b03821661186f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610600565b80600260008282546118819190611d76565b90915550506001600160a01b038216600090815260208190526040812080548392906118ae908490611d76565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166119585760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610600565b6001600160a01b038216600090815260208190526040902054818110156119cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610600565b6001600160a01b03831660009081526020819052604081208383039055600280548492906119fb908490611c7a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015611ac557858101830151858201604001528201611aa9565b81811115611ad7576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610a6357600080fd5b60008060408385031215611b1557600080fd5b8235611b2081611aed565b946020939093013593505050565b600060208284031215611b4057600080fd5b8135611b4b81611aed565b9392505050565b600080600060608486031215611b6757600080fd5b8335611b7281611aed565b92506020840135611b8281611aed565b929592945050506040919091013590565b600080600080600060a08688031215611bab57600080fd5b8535611bb681611aed565b97602087013597506040870135966060810135965060800135945092505050565b600060208284031215611be957600080fd5b5035919050565b60008060408385031215611c0357600080fd5b8235611c0e81611aed565b91506020830135611c1e81611aed565b809150509250929050565b600181811c90821680611c3d57607f821691505b60208210811415611c5e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611c8c57611c8c611c64565b500390565b6000816000190483118215151615611cab57611cab611c64565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527115dc9bdb99c81391950818dbdb9d1c9858dd60721b604082015260600190565b600060208284031215611d2357600080fd5b8151611b4b81611aed565b60208082526028908201527f466972737420636c61696d20496e697469616c2052657761726420666f7220596040820152676f7572204e46547360c01b606082015260800190565b60008219821115611d8957611d89611c64565b500190565b600060208284031215611da057600080fd5b5051919050565b6000600019821415611dbb57611dbb611c64565b506001019056fea2646970667358221220f0684b2c4bae8815b7dec301dfb2af52331c124eb27ba759793fd20e17471bc764736f6c634300080a0033

Deployed Bytecode Sourcemap

25767:7512:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14642:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32771:295;;;;;;:::i;:::-;;:::i;:::-;;;1218:25:1;;;1206:2;1191:18;32771:295:0;1072:177:1;16809:169:0;;;;;;:::i;:::-;;:::i;:::-;;;1419:14:1;;1412:22;1394:41;;1382:2;1367:18;16809:169:0;1254:187:1;27608:161:0;;;;;;:::i;:::-;;:::i;:::-;;15762:108;15850:12;;15762:108;;33074:196;;;;;;:::i;:::-;-1:-1:-1;;;;;33209:44:0;;;;33182:7;33209:44;;;:24;:44;;;;;;;;:53;;;;;;;;;33074:196;17460:492;;;;;;:::i;:::-;;:::i;27139:461::-;;;;;;:::i;:::-;;:::i;29523:1263::-;;;;;;:::i;:::-;;:::i;15604:93::-;;;15687:2;2827:36:1;;2815:2;2800:18;15604:93:0;2685:184:1;26158:54:0;;;;;;:::i;:::-;;;;;;;;;;;;;;25858:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18361:215;;;;;;:::i;:::-;;:::i;24982:91::-;;;;;;:::i;:::-;;:::i;15933:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16034:18:0;16007:7;16034:18;;;;;;;;;;;;15933:127;2409:94;;;:::i;30798:1353::-;;;;;;:::i;:::-;;:::i;25392:368::-;;;;;;:::i;:::-;;:::i;1758:87::-;1831:6;;1758:87;;-1:-1:-1;;;;;1831:6:0;;;3205:51:1;;3193:2;3178:18;1758:87:0;3059:203:1;27777:637:0;;;;;;:::i;:::-;;:::i;14861:104::-;;;:::i;19079:413::-;;;;;;:::i;:::-;;:::i;16273:175::-;;;;;;:::i;:::-;;:::i;28422:1089::-;;;;;;:::i;:::-;;:::i;32159:604::-;;;;;;:::i;:::-;;:::i;26053:52::-;;;;;;:::i;:::-;;;;;;;;;;;;;;27044:87;;;:::i;16511:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16627:18:0;;;16600:7;16627:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16511:151;26867:169;;;;;;:::i;:::-;;:::i;2658:192::-;;;;;;:::i;:::-;;:::i;25957:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;14642:100;14696:13;14729:5;14722:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14642:100;:::o;32771:295::-;-1:-1:-1;;;;;32934:40:0;;32872:7;32934:40;;;:20;:40;;;;;;;;:49;;;;;;;;;32872:7;;32916:67;;:15;:67;:::i;:::-;-1:-1:-1;;;;;33017:41:0;;;;;;:21;:41;;;;;;32892:91;;-1:-1:-1;33001:57:0;;32892:91;33001:57;:::i;:::-;32994:64;32771:295;-1:-1:-1;;;;32771:295:0:o;16809:169::-;16892:4;16909:39;712:10;16932:7;16941:6;16909:8;:39::i;:::-;-1:-1:-1;16966:4:0;16809:169;;;;:::o;27608:161::-;1831:6;;-1:-1:-1;;;;;1831:6:0;712:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;27729:32:0::1;;::::0;;;:12:::1;:32;::::0;;;;;;-1:-1:-1;;27693:68:0;::::1;27729:32;::::0;;::::1;27728:33;27693:68;::::0;;27608:161::o;17460:492::-;17600:4;17617:36;17627:6;17635:9;17646:6;17617:9;:36::i;:::-;-1:-1:-1;;;;;17693:19:0;;17666:24;17693:19;;;:11;:19;;;;;;;;712:10;17693:33;;;;;;;;17745:26;;;;17737:79;;;;-1:-1:-1;;;17737:79:0;;5043:2:1;17737:79:0;;;5025:21:1;5082:2;5062:18;;;5055:30;5121:34;5101:18;;;5094:62;-1:-1:-1;;;5172:18:1;;;5165:38;5220:19;;17737:79:0;4841:404:1;17737:79:0;17852:57;17861:6;712:10;17902:6;17883:16;:25;17852:8;:57::i;:::-;-1:-1:-1;17940:4:0;;17460:492;-1:-1:-1;;;;17460:492:0:o;27139:461::-;1831:6;;-1:-1:-1;;;;;1831:6:0;712:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27332:34:0;;::::1;;::::0;;;:14:::1;:34;::::0;;;;;;;:50;;;;27393:17:::1;:37:::0;;;;;:56;;;;27460:19:::1;:39:::0;;;;;:59;;;;27530:21:::1;:41:::0;;;;;;:62;27139:461::o;29523:1263::-;-1:-1:-1;;;;;29623:32:0;;;;;;:12;:32;;;;;;;;29615:63;;;;-1:-1:-1;;;29615:63:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29697:44:0;;;;;;:24;:44;;;;;;;;:53;;;;;;;;;29689:101;;;;-1:-1:-1;;;29689:101:0;;5799:2:1;29689:101:0;;;5781:21:1;5838:2;5818:18;;;5811:30;5877:32;5857:18;;;5850:60;5927:18;;29689:101:0;5597:354:1;29689:101:0;29853:18;712:10;29891:28;;-1:-1:-1;;;29891:28:0;;;;;1218:25:1;;;-1:-1:-1;;;;;29891:44:0;;;;:19;;;;;1191:18:1;;29891:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;29891:44:0;;29883:90;;;;-1:-1:-1;;;29883:90:0;;6414:2:1;29883:90:0;;;6396:21:1;6453:2;6433:18;;;6426:30;6492:34;6472:18;;;6465:62;-1:-1:-1;;;6543:18:1;;;6536:31;6584:19;;29883:90:0;6212:397:1;29883:90:0;-1:-1:-1;;;;;30008:40:0;;29984:21;30008:40;;;:20;:40;;;;;;;;:49;;;;;;;;;30076:18;30068:71;;;;-1:-1:-1;;;30068:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30169:44:0;;30150:16;30169:44;;;:24;:44;;;;;;;;:53;;;;;;;;;30250:31;30268:13;30250:15;:31;:::i;:::-;30238:8;:44;30235:466;;;-1:-1:-1;;;;;30299:44:0;;30355:1;30299:44;;;:24;:44;;;;;;;;:53;;;;;;;;:57;;;30401:41;;;:21;:41;;;;30371:73;;30377:10;;30390:52;;:8;:52;:::i;:::-;30371:5;:73::i;:::-;30235:466;;;30544:31;30562:13;30544:15;:31;:::i;:::-;-1:-1:-1;;;;;30486:44:0;;;;;;:24;:44;;;;;;;;:53;;;;;;;;:90;;:53;;:44;:90;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;30646:41:0;;;;;;:21;:41;;;;;;30591:98;;30597:10;;30611:31;30629:13;30611:15;:31;:::i;:::-;30610:77;;;;:::i;30591:98::-;-1:-1:-1;;;;;;;;30711:40:0;;;;;;;:20;:40;;;;;;;;:49;;;;;;;30763:15;30711:67;;29523:1263::o;18361:215::-;712:10;18449:4;18498:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18498:34:0;;;;;;;;;;18449:4;;18466:80;;18489:7;;18498:47;;18535:10;;18498:47;:::i;:::-;18466:8;:80::i;24982:91::-;25038:27;712:10;25058:6;25038:5;:27::i;:::-;24982:91;:::o;2409:94::-;1831:6;;-1:-1:-1;;;;;1831:6:0;712:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;2474:21:::1;2492:1;2474:9;:21::i;:::-;2409:94::o:0;30798:1353::-;-1:-1:-1;;;;;30872:32:0;;;;;;:12;:32;;;;;;;;30864:63;;;;-1:-1:-1;;;30864:63:0;;;;;;;:::i;:::-;30938:20;31025:18;30938:20;-1:-1:-1;;;;;31078:21:0;;;712:10;31078:35;;-1:-1:-1;;;;;;31078:35:0;;;;;;;-1:-1:-1;;;;;3223:32:1;;;31078:35:0;;;3205:51:1;3178:18;;31078:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31147:41:0;;31124:20;31147:41;;;:21;:41;;;;;;31057:56;;-1:-1:-1;31199:893:0;31223:10;31219:1;:14;31199:893;;;31255:10;-1:-1:-1;;;;;31268:31:0;;;712:10;31268:48;;-1:-1:-1;;;;;;31268:48:0;;;;;;;-1:-1:-1;;;;;7537:32:1;;;31268:48:0;;;7519:51:1;7586:18;;;7579:34;;;7492:18;;31268:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31355:40:0;;31331:21;31355:40;;;:20;:40;;;;;;;;:44;;;;;;;;;31255:61;;-1:-1:-1;31422:18:0;31414:71;;;;-1:-1:-1;;;31414:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31519:44:0;;31500:16;31519:44;;;:24;:44;;;;;;;;:48;;;;;;;;;31599:31;31617:13;31599:15;:31;:::i;:::-;31587:8;:44;31584:420;;;-1:-1:-1;;;;;31652:44:0;;31703:1;31652:44;;;:24;:44;;;;;;;;:48;;;;;;;;:52;31740:23;31751:12;31740:8;:23;:::i;:::-;31723:41;;;;:::i;:::-;;;31584:420;;;31871:31;31889:13;31871:15;:31;:::i;:::-;-1:-1:-1;;;;;31818:44:0;;;;;;:24;:44;;;;;;;;:48;;;;;;;;:85;;:48;;:44;:85;;;;;:::i;:::-;;;;-1:-1:-1;31975:12:0;;-1:-1:-1;31940:31:0;31958:13;31940:15;:31;:::i;:::-;31939:48;;;;:::i;:::-;31922:66;;;;:::i;:::-;;;31584:420;-1:-1:-1;;;;;;;32018:40:0;;;;;;:20;:40;;;;;;;;:44;;;;;;;32065:15;32018:62;;31235:3;;;;:::i;:::-;;;;31199:893;;;;32112:31;32118:10;32130:12;32112:5;:31::i;:::-;30853:1298;;;;30798:1353;:::o;25392:368::-;25469:24;25496:32;25506:7;712:10;16511:151;:::i;25496:32::-;25469:59;;25567:6;25547:16;:26;;25539:75;;;;-1:-1:-1;;;25539:75:0;;7966:2:1;25539:75:0;;;7948:21:1;8005:2;7985:18;;;7978:30;8044:34;8024:18;;;8017:62;-1:-1:-1;;;8095:18:1;;;8088:34;8139:19;;25539:75:0;7764:400:1;25539:75:0;25650:58;25659:7;712:10;25701:6;25682:16;:25;25650:8;:58::i;:::-;25730:22;25736:7;25745:6;25730:5;:22::i;:::-;25458:302;25392:368;;:::o;27777:637::-;-1:-1:-1;;;;;27882:32:0;;;;;;:12;:32;;;;;;;;27874:63;;;;-1:-1:-1;;;27874:63:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27956:40:0;;;;;;:20;:40;;;;;;;;:49;;;;;;;;;:54;27948:120;;;;-1:-1:-1;;;27948:120:0;;8371:2:1;27948:120:0;;;8353:21:1;8410:2;8390:18;;;8383:30;8449:34;8429:18;;;8422:62;-1:-1:-1;;;8500:18:1;;;8493:51;8561:19;;27948:120:0;8169:417:1;27948:120:0;-1:-1:-1;;;;;28081:40:0;;;;;;:20;:40;;;;;;;;:49;;;;;;;;28133:1;28081:53;;28197:39;;;:19;:39;;;;;;28145:20;:40;;;;;:49;;;;;;;;:91;28303:37;;;:17;:37;;;;;;28247:24;:44;;;;;:53;;;;;;;;:93;28371:34;;;:14;:34;;;;28353:53;;28359:10;;28353:5;:53::i;:::-;27777:637;;:::o;14861:104::-;14917:13;14950:7;14943:14;;;;;:::i;19079:413::-;712:10;19172:4;19216:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19216:34:0;;;;;;;;;;19269:35;;;;19261:85;;;;-1:-1:-1;;;19261:85:0;;8793:2:1;19261:85:0;;;8775:21:1;8832:2;8812:18;;;8805:30;8871:34;8851:18;;;8844:62;-1:-1:-1;;;8922:18:1;;;8915:35;8967:19;;19261:85:0;8591:401:1;19261:85:0;19382:67;712:10;19405:7;19433:15;19414:16;:34;19382:8;:67::i;:::-;-1:-1:-1;19480:4:0;;19079:413;-1:-1:-1;;;19079:413:0:o;16273:175::-;16359:4;16376:42;712:10;16400:9;16411:6;16376:9;:42::i;28422:1089::-;-1:-1:-1;;;;;28510:32:0;;;;;;:12;:32;;;;;;;;28502:63;;;;-1:-1:-1;;;28502:63:0;;;;;;;:::i;:::-;28576:20;28663:18;28576:20;-1:-1:-1;;;;;28716:21:0;;;712:10;28716:35;;-1:-1:-1;;;;;;28716:35:0;;;;;;;-1:-1:-1;;;;;3223:32:1;;;28716:35:0;;;3205:51:1;3178:18;;28716:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;28784:34:0;;28762:19;28784:34;;;:14;:34;;;;;;28695:56;;-1:-1:-1;28829:538:0;28853:10;28849:1;:14;28829:538;;;28885:10;-1:-1:-1;;;;;28898:31:0;;;712:10;28898:48;;-1:-1:-1;;;;;;28898:48:0;;;;;;;-1:-1:-1;;;;;7537:32:1;;;28898:48:0;;;7519:51:1;7586:18;;;7579:34;;;7492:18;;28898:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;28964:40:0;;;;;;:20;:40;;;;;;;;:44;;;;;;;;;28885:61;;-1:-1:-1;28961:395:0;;29034:27;29050:11;29034:27;;:::i;:::-;-1:-1:-1;;;;;29080:40:0;;;;;;:20;:40;;;;;;;;:44;;;;;;;;29127:1;29080:48;;29194:39;;;:19;:39;;;;;;29147:20;:40;;;;;:44;;;;;;;;:86;29303:37;;;:17;:37;;;;;;29252:24;:44;;;;;:48;;;;;;;;;:88;29034:27;-1:-1:-1;28961:395:0;-1:-1:-1;28865:3:0;;;;:::i;:::-;;;;28829:538;;;;29400:1;29385:12;:16;29377:84;;;;-1:-1:-1;;;29377:84:0;;9199:2:1;29377:84:0;;;9181:21:1;9238:2;9218:18;;;9211:30;9277:34;9257:18;;;9250:62;9348:25;9328:18;;;9321:53;9391:19;;29377:84:0;8997:419:1;29377:84:0;29472:31;29478:10;29490:12;29472:5;:31::i;32159:604::-;32408:30;;-1:-1:-1;;;32408:30:0;;-1:-1:-1;;;;;3223:32:1;;;32408:30:0;;;3205:51:1;32250:7:0;;;;32357:18;;32250:7;;32408:21;;;;;3178:18:1;;32408:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32387:51;;32456:9;32451:265;32475:10;32471:1;:14;32451:265;;;32520:43;;-1:-1:-1;;;32520:43:0;;-1:-1:-1;;;;;7537:32:1;;;32520:43:0;;;7519:51:1;7586:18;;;7579:34;;;32507:10:0;;32520:31;;;;;;7492:18:1;;32520:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32662:41:0;;;;;;:21;:41;;;;;;;;;32614:20;:40;;;;;:44;;;;;;;;;;32507:56;;-1:-1:-1;32662:41:0;32596:62;;:15;:62;:::i;:::-;32595:108;;;;:::i;:::-;32578:126;;;;:::i;:::-;;;32492:224;32487:3;;;;;:::i;:::-;;;;32451:265;;;-1:-1:-1;32743:12:0;;32159:604;-1:-1:-1;;;;;32159:604:0:o;27044:87::-;1831:6;;-1:-1:-1;;;;;1831:6:0;712:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;27099:17:::1;:24:::0;;-1:-1:-1;;;;27099:24:0::1;-1:-1:-1::0;;;27099:24:0::1;::::0;;27044:87::o;26867:169::-;1831:6;;-1:-1:-1;;;;;1831:6:0;712:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;26941:17:::1;::::0;-1:-1:-1;;;26941:17:0;::::1;;;26940:18;26932:51;;;::::0;-1:-1:-1;;;26932:51:0;;9623:2:1;26932:51:0::1;::::0;::::1;9605:21:1::0;9662:2;9642:18;;;9635:30;-1:-1:-1;;;9681:18:1;;;9674:50;9741:18;;26932:51:0::1;9421:344:1::0;26932:51:0::1;26994:34;27000:10;27013:13;:6:::0;27020::::1;27013:13;:::i;2658:192::-:0;1831:6;;-1:-1:-1;;;;;1831:6:0;712:10;1978:23;1970:68;;;;-1:-1:-1;;;1970:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2747:22:0;::::1;2739:73;;;::::0;-1:-1:-1;;;2739:73:0;;9972:2:1;2739:73:0::1;::::0;::::1;9954:21:1::0;10011:2;9991:18;;;9984:30;10050:34;10030:18;;;10023:62;-1:-1:-1;;;10101:18:1;;;10094:36;10147:19;;2739:73:0::1;9770:402:1::0;2739:73:0::1;2823:19;2833:8;2823:9;:19::i;22763:380::-:0;-1:-1:-1;;;;;22899:19:0;;22891:68;;;;-1:-1:-1;;;22891:68:0;;10379:2:1;22891:68:0;;;10361:21:1;10418:2;10398:18;;;10391:30;10457:34;10437:18;;;10430:62;-1:-1:-1;;;10508:18:1;;;10501:34;10552:19;;22891:68:0;10177:400:1;22891:68:0;-1:-1:-1;;;;;22978:21:0;;22970:68;;;;-1:-1:-1;;;22970:68:0;;10784:2:1;22970:68:0;;;10766:21:1;10823:2;10803:18;;;10796:30;10862:34;10842:18;;;10835:62;-1:-1:-1;;;10913:18:1;;;10906:32;10955:19;;22970:68:0;10582:398:1;22970:68:0;-1:-1:-1;;;;;23051:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23103:32;;1218:25:1;;;23103:32:0;;1191:18:1;23103:32:0;;;;;;;22763:380;;;:::o;19982:733::-;-1:-1:-1;;;;;20122:20:0;;20114:70;;;;-1:-1:-1;;;20114:70:0;;11187:2:1;20114:70:0;;;11169:21:1;11226:2;11206:18;;;11199:30;11265:34;11245:18;;;11238:62;-1:-1:-1;;;11316:18:1;;;11309:35;11361:19;;20114:70:0;10985:401:1;20114:70:0;-1:-1:-1;;;;;20203:23:0;;20195:71;;;;-1:-1:-1;;;20195:71:0;;11593:2:1;20195:71:0;;;11575:21:1;11632:2;11612:18;;;11605:30;11671:34;11651:18;;;11644:62;-1:-1:-1;;;11722:18:1;;;11715:33;11765:19;;20195:71:0;11391:399:1;20195:71:0;-1:-1:-1;;;;;20363:17:0;;20339:21;20363:17;;;;;;;;;;;20399:23;;;;20391:74;;;;-1:-1:-1;;;20391:74:0;;11997:2:1;20391:74:0;;;11979:21:1;12036:2;12016:18;;;12009:30;12075:34;12055:18;;;12048:62;-1:-1:-1;;;12126:18:1;;;12119:36;12172:19;;20391:74:0;11795:402:1;20391:74:0;-1:-1:-1;;;;;20501:17:0;;;:9;:17;;;;;;;;;;;20521:22;;;20501:42;;20565:20;;;;;;;;:30;;20537:6;;20501:9;20565:30;;20537:6;;20565:30;:::i;:::-;;;;;;;;20630:9;-1:-1:-1;;;;;20613:35:0;20622:6;-1:-1:-1;;;;;20613:35:0;;20641:6;20613:35;;;;1218:25:1;;1206:2;1191:18;;1072:177;20613:35:0;;;;;;;;20103:612;19982:733;;;:::o;21002:399::-;-1:-1:-1;;;;;21086:21:0;;21078:65;;;;-1:-1:-1;;;21078:65:0;;12404:2:1;21078:65:0;;;12386:21:1;12443:2;12423:18;;;12416:30;12482:33;12462:18;;;12455:61;12533:18;;21078:65:0;12202:355:1;21078:65:0;21234:6;21218:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;21251:18:0;;:9;:18;;;;;;;;;;:28;;21273:6;;21251:9;:28;;21273:6;;21251:28;:::i;:::-;;;;-1:-1:-1;;21295:37:0;;1218:25:1;;;-1:-1:-1;;;;;21295:37:0;;;21312:1;;21295:37;;1206:2:1;1191:18;21295:37:0;;;;;;;27777:637;;:::o;21734:591::-;-1:-1:-1;;;;;21818:21:0;;21810:67;;;;-1:-1:-1;;;21810:67:0;;12764:2:1;21810:67:0;;;12746:21:1;12803:2;12783:18;;;12776:30;12842:34;12822:18;;;12815:62;-1:-1:-1;;;12893:18:1;;;12886:31;12934:19;;21810:67:0;12562:397:1;21810:67:0;-1:-1:-1;;;;;21977:18:0;;21952:22;21977:18;;;;;;;;;;;22014:24;;;;22006:71;;;;-1:-1:-1;;;22006:71:0;;13166:2:1;22006:71:0;;;13148:21:1;13205:2;13185:18;;;13178:30;13244:34;13224:18;;;13217:62;-1:-1:-1;;;13295:18:1;;;13288:32;13337:19;;22006:71:0;12964:398:1;22006:71:0;-1:-1:-1;;;;;22113:18:0;;:9;:18;;;;;;;;;;22134:23;;;22113:44;;22179:12;:22;;22151:6;;22113:9;22179:22;;22151:6;;22179:22;:::i;:::-;;;;-1:-1:-1;;22219:37:0;;1218:25:1;;;22245:1:0;;-1:-1:-1;;;;;22219:37:0;;;;;1206:2:1;1191:18;22219:37:0;;;;;;;25458:302;25392:368;;:::o;2858:173::-;2933:6;;;-1:-1:-1;;;;;2950:17:0;;;-1:-1:-1;;;;;;2950:17:0;;;;;;;2983:40;;2933:6;;;2950:17;2933:6;;2983:40;;2914:16;;2983:40;2903:128;2858:173;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:247::-;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;1613:9;1600:23;1632:31;1657:5;1632:31;:::i;:::-;1682:5;1446:247;-1:-1:-1;;;1446:247:1:o;1698:456::-;1775:6;1783;1791;1844:2;1832:9;1823:7;1819:23;1815:32;1812:52;;;1860:1;1857;1850:12;1812:52;1899:9;1886:23;1918:31;1943:5;1918:31;:::i;:::-;1968:5;-1:-1:-1;2025:2:1;2010:18;;1997:32;2038:33;1997:32;2038:33;:::i;:::-;1698:456;;2090:7;;-1:-1:-1;;;2144:2:1;2129:18;;;;2116:32;;1698:456::o;2159:521::-;2254:6;2262;2270;2278;2286;2339:3;2327:9;2318:7;2314:23;2310:33;2307:53;;;2356:1;2353;2346:12;2307:53;2395:9;2382:23;2414:31;2439:5;2414:31;:::i;:::-;2464:5;2516:2;2501:18;;2488:32;;-1:-1:-1;2567:2:1;2552:18;;2539:32;;2618:2;2603:18;;2590:32;;-1:-1:-1;2669:3:1;2654:19;2641:33;;-1:-1:-1;2159:521:1;-1:-1:-1;;;2159:521:1:o;2874:180::-;2933:6;2986:2;2974:9;2965:7;2961:23;2957:32;2954:52;;;3002:1;2999;2992:12;2954:52;-1:-1:-1;3025:23:1;;2874:180;-1:-1:-1;2874:180:1:o;3267:388::-;3335:6;3343;3396:2;3384:9;3375:7;3371:23;3367:32;3364:52;;;3412:1;3409;3402:12;3364:52;3451:9;3438:23;3470:31;3495:5;3470:31;:::i;:::-;3520:5;-1:-1:-1;3577:2:1;3562:18;;3549:32;3590:33;3549:32;3590:33;:::i;:::-;3642:7;3632:17;;;3267:388;;;;;:::o;3660:380::-;3739:1;3735:12;;;;3782;;;3803:61;;3857:4;3849:6;3845:17;3835:27;;3803:61;3910:2;3902:6;3899:14;3879:18;3876:38;3873:161;;;3956:10;3951:3;3947:20;3944:1;3937:31;3991:4;3988:1;3981:15;4019:4;4016:1;4009:15;3873:161;;3660:380;;;:::o;4045:127::-;4106:10;4101:3;4097:20;4094:1;4087:31;4137:4;4134:1;4127:15;4161:4;4158:1;4151:15;4177:125;4217:4;4245:1;4242;4239:8;4236:34;;;4250:18;;:::i;:::-;-1:-1:-1;4287:9:1;;4177:125::o;4307:168::-;4347:7;4413:1;4409;4405:6;4401:14;4398:1;4395:21;4390:1;4383:9;4376:17;4372:45;4369:71;;;4420:18;;:::i;:::-;-1:-1:-1;4460:9:1;;4307:168::o;4480:356::-;4682:2;4664:21;;;4701:18;;;4694:30;4760:34;4755:2;4740:18;;4733:62;4827:2;4812:18;;4480:356::o;5250:342::-;5452:2;5434:21;;;5491:2;5471:18;;;5464:30;-1:-1:-1;;;5525:2:1;5510:18;;5503:48;5583:2;5568:18;;5250:342::o;5956:251::-;6026:6;6079:2;6067:9;6058:7;6054:23;6050:32;6047:52;;;6095:1;6092;6085:12;6047:52;6127:9;6121:16;6146:31;6171:5;6146:31;:::i;6614:404::-;6816:2;6798:21;;;6855:2;6835:18;;;6828:30;6894:34;6889:2;6874:18;;6867:62;-1:-1:-1;;;6960:2:1;6945:18;;6938:38;7008:3;6993:19;;6614:404::o;7023:128::-;7063:3;7094:1;7090:6;7087:1;7084:13;7081:39;;;7100:18;;:::i;:::-;-1:-1:-1;7136:9:1;;7023:128::o;7156:184::-;7226:6;7279:2;7267:9;7258:7;7254:23;7250:32;7247:52;;;7295:1;7292;7285:12;7247:52;-1:-1:-1;7318:16:1;;7156:184;-1:-1:-1;7156:184:1:o;7624:135::-;7663:3;-1:-1:-1;;7684:17:1;;7681:43;;;7704:18;;:::i;:::-;-1:-1:-1;7751:1:1;7740:13;;7624:135::o

Swarm Source

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