ETH Price: $3,115.42 (+0.94%)
Gas: 3 Gwei

Token

GoblinHorses (GHRS)
 

Overview

Max Total Supply

2,222 GHRS

Holders

725

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 GHRS
0x72804ccfe71e9a21e9d162b446e4f11930f72577
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:
GoblinHorses

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-03
*/

/**
 ▄▄ •       ▄▄▄▄· ▄▄▌  ▪   ▐ ▄      ▄ .▄      ▄▄▄  .▄▄ · ▄▄▄ ..▄▄ · 
▐█ ▀ ▪▪     ▐█ ▀█▪██•  ██ •█▌▐█    ██▪▐█▪     ▀▄ █·▐█ ▀. ▀▄.▀·▐█ ▀. 
▄█ ▀█▄ ▄█▀▄ ▐█▀▀█▄██▪  ▐█·▐█▐▐▌    ██▀▐█ ▄█▀▄ ▐▀▀▄ ▄▀▀▀█▄▐▀▀▪▄▄▀▀▀█▄
▐█▄▪▐█▐█▌.▐▌██▄▪▐█▐█▌▐▌▐█▌██▐█▌    ██▌▐▀▐█▌.▐▌▐█•█▌▐█▄▪▐█▐█▄▄▌▐█▄▪▐█
·▀▀▀▀  ▀█▄▀▪·▀▀▀▀ .▀▀▀ ▀▀▀▀▀ █▪    ▀▀▀ · ▀█▄▀▪.▀  ▀ ▀▀▀▀  ▀▀▀  ▀▀▀▀                                                                                                                                                                                     
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct StakingInfo {
        bool staked;
        bool usedForMint;
        uint duration;
    }

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 public currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    string internal uri;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    mapping(uint => StakingInfo) public _stakedTokens;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex - 1;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return uri;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex && tokenId > 0;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract GoblinHorses is ERC721A, Ownable {

    constructor() ERC721A("GoblinHorses", "GHRS") {}

    uint public maxSupply = 2222;
    bool public saleStatus;
    uint public price;   
    uint public maxPerTx = 3;    
    uint public maxPerWallet = 6;
    uint public freeMintPrice = 0;
    uint public maxFreePerTx = 1;    
    uint public maxFreePerWallet = 1;  

 
    // ---------------------------------------------------------------------------------------------
    // MAPPINGS
    // ---------------------------------------------------------------------------------------------

    mapping(address => uint) public _minted; 

    mapping(address => uint) public _freeminted; 

    // ---------------------------------------------------------------------------------------------
    // OWNER SETTERS
    // ---------------------------------------------------------------------------------------------

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function setSaleStatus() external onlyOwner {
        saleStatus = !saleStatus;
    }

    function setMaxSupply(uint supply) external onlyOwner {
        maxSupply = supply;
    }

    function setPrice(uint amount) external onlyOwner {
        price = amount;
    }
    
    function setMaxPerTx(uint amount) external onlyOwner {
        maxPerTx = amount;
    }
    
    function setMaxPerWallet(uint amount) external onlyOwner {
        maxPerWallet = amount;
    }

    function setMaxFreePerTx(uint amount) external onlyOwner {
        maxFreePerTx = amount;
    }
    
    function setMaxFreePerWallet(uint amount) external onlyOwner {
        maxFreePerWallet = amount;
    }
    
    function setBaseURI(string calldata _uri) external onlyOwner {
        uri = _uri;
    }

    function getTotalSupply() public view returns(uint) {
        return currentIndex - 1;
    }

    function getMaxSupply() public view returns(uint) {
        return maxSupply;
    }

    // ---------------------------------------------------------------------------------------------
    // PUBLIC SETTERS
    // ---------------------------------------------------------------------------------------------

    function devmint(uint256 amount) external onlyOwner {
        require(currentIndex <= maxSupply, "NOT_ALLOWED!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        _safeMint(msg.sender, amount);
    }

    function pooorishhmint(uint256 amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(amount * freeMintPrice == msg.value, "NOT_ENOUGH_MONEY!");
        require(amount <= maxFreePerTx, "EXCEEDS_MAX_PER_TX!");
        require(currentIndex <= maxSupply, "NOT_ENOUGH_TOKENS!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        require(_freeminted[msg.sender] + amount <= maxFreePerWallet, "EXCEEDS_MAX_PER_WALLET!");
        _safeMint(msg.sender, amount);
        _freeminted[msg.sender] += amount;
    }

    function reiichmint(uint256 amount) external payable {
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(amount * price == msg.value, "NOT_ENOUGH_MONEY!");
        require(amount <= maxPerTx, "EXCEEDS_MAX_PER_TX!");
        require(currentIndex <= maxSupply, "NOT_ENOUGH_TOKENS!");
        require(((currentIndex + amount)-1) <= maxSupply, "NOT_ENOUGH_TOKENS");
        require(_minted[msg.sender] + amount <= maxPerWallet, "EXCEEDS_MAX_PER_WALLET!");
        _safeMint(msg.sender, amount);
        _minted[msg.sender] += amount;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_freeminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_stakedTokens","outputs":[{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"bool","name":"usedForMint","type":"bool"},{"internalType":"uint256","name":"duration","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devmint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"pooorishhmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reiichmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016000556108ae600a556003600d556006600e556000600f55600160105560016011553480156200003557600080fd5b50604080518082018252600c81526b476f626c696e486f7273657360a01b6020808301918252835180850190945260048452634748525360e01b908401528151919291620000869160019162000115565b5080516200009c90600290602084019062000115565b505050620000b9620000b3620000bf60201b60201c565b620000c3565b620001f8565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012390620001bb565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b600181811c90821680620001d057607f821691505b60208210811415620001f257634e487b7160e01b600052602260045260246000fd5b50919050565b6125eb80620002086000396000f3fe6080604052600436106102725760003560e01c80636f8b44b01161014f578063a7027357116100c1578063e268e4d31161007a578063e268e4d314610734578063e985e9c514610754578063f2fde38b1461079d578063f737c47a146107bd578063f9020e33146107d3578063f968adbe146107ed57600080fd5b8063a7027357146106a8578063b88d4fde146106be578063c4e41b2214610383578063c6f6f216146106de578063c87b56dd146106fe578063d5abeb011461071e57600080fd5b80637de77ecc116101135780637de77ecc146105f25780638da5cb5b1461061f57806391b7f5ed1461063d57806395d89b411461065d578063a035b1fe14610672578063a22cb4651461068857600080fd5b80636f8b44b01461057457806370a0823114610594578063715018a6146105b457806372060aef146105c95780637dc949b2146105dc57600080fd5b80633ccfd60b116101e85780634f6ccce7116101ac5780634f6ccce7146104cc578063502b33af146104ec57806355f804b3146105015780635f67f7d5146105215780636352211e146105345780636d7c4a4b1461055457600080fd5b80633ccfd60b1461044c57806340f070a81461046157806342842e0e14610481578063453c2310146104a15780634c0f38c2146104b757600080fd5b80631491c2e51161023a5780631491c2e51461034857806318160ddd14610383578063204f490c1461039857806323b872dd146103f657806326987b60146104165780632f745c591461042c57600080fd5b806301ffc9a71461027757806302fb4791146102ac57806306fdde03146102ce578063081812fc146102f0578063095ea7b314610328575b600080fd5b34801561028357600080fd5b50610297610292366004612023565b610803565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612040565b610870565b005b3480156102da57600080fd5b506102e361092e565b6040516102a391906120b1565b3480156102fc57600080fd5b5061031061030b366004612040565b6109c0565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102cc6103433660046120e0565b610a49565b34801561035457600080fd5b5061037561036336600461210a565b60136020526000908152604090205481565b6040519081526020016102a3565b34801561038f57600080fd5b50610375610b61565b3480156103a457600080fd5b506103d96103b3366004612040565b6008602052600090815260409020805460019091015460ff808316926101009004169083565b6040805193151584529115156020840152908201526060016102a3565b34801561040257600080fd5b506102cc610411366004612125565b610b77565b34801561042257600080fd5b5061037560005481565b34801561043857600080fd5b506103756104473660046120e0565b610bb1565b34801561045857600080fd5b506102cc610d18565b34801561046d57600080fd5b506102cc61047c366004612040565b610d6e565b34801561048d57600080fd5b506102cc61049c366004612125565b610d9d565b3480156104ad57600080fd5b50610375600e5481565b3480156104c357600080fd5b50600a54610375565b3480156104d857600080fd5b506103756104e7366004612040565b610de7565b3480156104f857600080fd5b506102cc610e4f565b34801561050d57600080fd5b506102cc61051c366004612161565b610e8d565b6102cc61052f366004612040565b610ec3565b34801561054057600080fd5b5061031061054f366004612040565b6110bb565b34801561056057600080fd5b506102cc61056f366004612040565b6110cd565b34801561058057600080fd5b506102cc61058f366004612040565b6110fc565b3480156105a057600080fd5b506103756105af36600461210a565b61112b565b3480156105c057600080fd5b506102cc6111bc565b6102cc6105d7366004612040565b6111f2565b3480156105e857600080fd5b5061037560105481565b3480156105fe57600080fd5b5061037561060d36600461210a565b60126020526000908152604090205481565b34801561062b57600080fd5b506009546001600160a01b0316610310565b34801561064957600080fd5b506102cc610658366004612040565b6113e2565b34801561066957600080fd5b506102e3611411565b34801561067e57600080fd5b50610375600c5481565b34801561069457600080fd5b506102cc6106a33660046121d3565b611420565b3480156106b457600080fd5b5061037560115481565b3480156106ca57600080fd5b506102cc6106d9366004612225565b6114e5565b3480156106ea57600080fd5b506102cc6106f9366004612040565b61154d565b34801561070a57600080fd5b506102e3610719366004612040565b61157c565b34801561072a57600080fd5b50610375600a5481565b34801561074057600080fd5b506102cc61074f366004612040565b611648565b34801561076057600080fd5b5061029761076f366004612301565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107a957600080fd5b506102cc6107b836600461210a565b611677565b3480156107c957600080fd5b50610375600f5481565b3480156107df57600080fd5b50600b546102979060ff1681565b3480156107f957600080fd5b50610375600d5481565b60006001600160e01b031982166380ac58cd60e01b148061083457506001600160e01b03198216635b5e139f60e01b145b8061084f57506001600160e01b0319821663780e9d6360e01b145b8061086a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6009546001600160a01b031633146108a35760405162461bcd60e51b815260040161089a90612334565b60405180910390fd5b600a5460005411156108e65760405162461bcd60e51b815260206004820152600c60248201526b4e4f545f414c4c4f5745442160a01b604482015260640161089a565b600a546001826000546108f9919061237f565b6109039190612397565b11156109215760405162461bcd60e51b815260040161089a906123ae565b61092b338261170f565b50565b60606001805461093d906123d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610969906123d9565b80156109b65780601f1061098b576101008083540402835291602001916109b6565b820191906000526020600020905b81548152906001019060200180831161099957829003601f168201915b5050505050905090565b60006109cb8261172d565b610a2d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161089a565b506000908152600660205260409020546001600160a01b031690565b6000610a54826110bb565b9050806001600160a01b0316836001600160a01b03161415610ac35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161089a565b336001600160a01b0382161480610adf5750610adf813361076f565b610b515760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161089a565b610b5c838383611740565b505050565b60006001600054610b729190612397565b905090565b60008181526008602052604090205460ff1615610ba65760405162461bcd60e51b815260040161089a90612414565b610b5c83838361179c565b6000610bbc8361112b565b8210610c155760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161089a565b6000610c1f610b61565b905060008060005b83811015610cb8576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c7a57805192505b876001600160a01b0316836001600160a01b03161415610caf5786841415610ca85750935061086a92505050565b6001909301925b50600101610c27565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161089a565b6009546001600160a01b03163314610d425760405162461bcd60e51b815260040161089a90612334565b60405133904780156108fc02916000818181858888f1935050505015801561092b573d6000803e3d6000fd5b6009546001600160a01b03163314610d985760405162461bcd60e51b815260040161089a90612334565b601055565b60008181526008602052604090205460ff1615610dcc5760405162461bcd60e51b815260040161089a90612414565b610b5c838383604051806020016040528060008152506114e5565b6000610df1610b61565b8210610e4b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161089a565b5090565b6009546001600160a01b03163314610e795760405162461bcd60e51b815260040161089a90612334565b600b805460ff19811660ff90911615179055565b6009546001600160a01b03163314610eb75760405162461bcd60e51b815260040161089a90612334565b610b5c60038383611f7d565b600b5460ff16610f085760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b604482015260640161089a565b34600f5482610f17919061243b565b14610f585760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b604482015260640161089a565b601054811115610fa05760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b604482015260640161089a565b600a546000541115610fe95760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b604482015260640161089a565b600a54600182600054610ffc919061237f565b6110069190612397565b11156110245760405162461bcd60e51b815260040161089a906123ae565b6011543360009081526013602052604090205461104290839061237f565b111561108a5760405162461bcd60e51b8152602060048201526017602482015276455843454544535f4d41585f5045525f57414c4c45542160481b604482015260640161089a565b611094338261170f565b33600090815260136020526040812080548392906110b390849061237f565b909155505050565b60006110c682611a7f565b5192915050565b6009546001600160a01b031633146110f75760405162461bcd60e51b815260040161089a90612334565b601155565b6009546001600160a01b031633146111265760405162461bcd60e51b815260040161089a90612334565b600a55565b60006001600160a01b0382166111975760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161089a565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6009546001600160a01b031633146111e65760405162461bcd60e51b815260040161089a90612334565b6111f06000611b54565b565b600b5460ff166112375760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b604482015260640161089a565b34600c5482611246919061243b565b146112875760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b604482015260640161089a565b600d548111156112cf5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b604482015260640161089a565b600a5460005411156113185760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b604482015260640161089a565b600a5460018260005461132b919061237f565b6113359190612397565b11156113535760405162461bcd60e51b815260040161089a906123ae565b600e543360009081526012602052604090205461137190839061237f565b11156113b95760405162461bcd60e51b8152602060048201526017602482015276455843454544535f4d41585f5045525f57414c4c45542160481b604482015260640161089a565b6113c3338261170f565b33600090815260126020526040812080548392906110b390849061237f565b6009546001600160a01b0316331461140c5760405162461bcd60e51b815260040161089a90612334565b600c55565b60606002805461093d906123d9565b6001600160a01b0382163314156114795760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161089a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60008281526008602052604090205460ff16156115145760405162461bcd60e51b815260040161089a90612414565b61151f84848461179c565b61152b84848484611ba6565b6115475760405162461bcd60e51b815260040161089a9061245a565b50505050565b6009546001600160a01b031633146115775760405162461bcd60e51b815260040161089a90612334565b600d55565b60606115878261172d565b6115eb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161089a565b60006115f5611ca5565b90508051600014156116165760405180602001604052806000815250611641565b8061162084611cb4565b6040516020016116319291906124ad565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146116725760405162461bcd60e51b815260040161089a90612334565b600e55565b6009546001600160a01b031633146116a15760405162461bcd60e51b815260040161089a90612334565b6001600160a01b0381166117065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089a565b61092b81611b54565b611729828260405180602001604052806000815250611db2565b5050565b600080548210801561086a575050151590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117a782611a7f565b80519091506000906001600160a01b0316336001600160a01b031614806117de5750336117d3846109c0565b6001600160a01b0316145b806117f0575081516117f0903361076f565b90508061185a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161089a565b846001600160a01b031682600001516001600160a01b0316146118ce5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161089a565b6001600160a01b0384166119325760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161089a565b6119426000848460000151611740565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a35576119e88161172d565b15611a35578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611a9c8261172d565b611afb5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161089a565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b4a579392505050565b5060001901611afd565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611c9957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bea9033908990889088906004016124ec565b6020604051808303816000875af1925050508015611c25575060408051601f3d908101601f19168201909252611c2291810190612529565b60015b611c7f573d808015611c53576040519150601f19603f3d011682016040523d82523d6000602084013e611c58565b606091505b508051611c775760405162461bcd60e51b815260040161089a9061245a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c9d565b5060015b949350505050565b60606003805461093d906123d9565b606081611cd85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d025780611cec81612546565b9150611cfb9050600a83612577565b9150611cdc565b60008167ffffffffffffffff811115611d1d57611d1d61220f565b6040519080825280601f01601f191660200182016040528015611d47576020820181803683370190505b5090505b8415611c9d57611d5c600183612397565b9150611d69600a8661258b565b611d7490603061237f565b60f81b818381518110611d8957611d8961259f565b60200101906001600160f81b031916908160001a905350611dab600a86612577565b9450611d4b565b610b5c83838360016000546001600160a01b038516611e1d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161089a565b83611e7b5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161089a565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611f745760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611f6857611f4c6000888488611ba6565b611f685760405162461bcd60e51b815260040161089a9061245a565b60019182019101611ef9565b50600055611a78565b828054611f89906123d9565b90600052602060002090601f016020900481019282611fab5760008555611ff1565b82601f10611fc45782800160ff19823516178555611ff1565b82800160010185558215611ff1579182015b82811115611ff1578235825591602001919060010190611fd6565b50610e4b9291505b80821115610e4b5760008155600101611ff9565b6001600160e01b03198116811461092b57600080fd5b60006020828403121561203557600080fd5b81356116418161200d565b60006020828403121561205257600080fd5b5035919050565b60005b8381101561207457818101518382015260200161205c565b838111156115475750506000910152565b6000815180845261209d816020860160208601612059565b601f01601f19169290920160200192915050565b6020815260006116416020830184612085565b80356001600160a01b03811681146120db57600080fd5b919050565b600080604083850312156120f357600080fd5b6120fc836120c4565b946020939093013593505050565b60006020828403121561211c57600080fd5b611641826120c4565b60008060006060848603121561213a57600080fd5b612143846120c4565b9250612151602085016120c4565b9150604084013590509250925092565b6000806020838503121561217457600080fd5b823567ffffffffffffffff8082111561218c57600080fd5b818501915085601f8301126121a057600080fd5b8135818111156121af57600080fd5b8660208285010111156121c157600080fd5b60209290920196919550909350505050565b600080604083850312156121e657600080fd5b6121ef836120c4565b91506020830135801515811461220457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561223b57600080fd5b612244856120c4565b9350612252602086016120c4565b925060408501359150606085013567ffffffffffffffff8082111561227657600080fd5b818701915087601f83011261228a57600080fd5b81358181111561229c5761229c61220f565b604051601f8201601f19908116603f011681019083821181831017156122c4576122c461220f565b816040528281528a60208487010111156122dd57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561231457600080fd5b61231d836120c4565b915061232b602084016120c4565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561239257612392612369565b500190565b6000828210156123a9576123a9612369565b500390565b6020808252601190820152704e4f545f454e4f5547485f544f4b454e5360781b604082015260600190565b600181811c908216806123ed57607f821691505b6020821081141561240e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600d908201526c544f4b454e5f5354414b45442160981b604082015260600190565b600081600019048311821515161561245557612455612369565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516124bf818460208801612059565b8351908301906124d3818360208801612059565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061251f90830184612085565b9695505050505050565b60006020828403121561253b57600080fd5b81516116418161200d565b600060001982141561255a5761255a612369565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261258657612586612561565b500490565b60008261259a5761259a612561565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202e9629c62749fd3ee51fe011c6065f64f323d77bc1437f4da5803850bc522f3e64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636f8b44b01161014f578063a7027357116100c1578063e268e4d31161007a578063e268e4d314610734578063e985e9c514610754578063f2fde38b1461079d578063f737c47a146107bd578063f9020e33146107d3578063f968adbe146107ed57600080fd5b8063a7027357146106a8578063b88d4fde146106be578063c4e41b2214610383578063c6f6f216146106de578063c87b56dd146106fe578063d5abeb011461071e57600080fd5b80637de77ecc116101135780637de77ecc146105f25780638da5cb5b1461061f57806391b7f5ed1461063d57806395d89b411461065d578063a035b1fe14610672578063a22cb4651461068857600080fd5b80636f8b44b01461057457806370a0823114610594578063715018a6146105b457806372060aef146105c95780637dc949b2146105dc57600080fd5b80633ccfd60b116101e85780634f6ccce7116101ac5780634f6ccce7146104cc578063502b33af146104ec57806355f804b3146105015780635f67f7d5146105215780636352211e146105345780636d7c4a4b1461055457600080fd5b80633ccfd60b1461044c57806340f070a81461046157806342842e0e14610481578063453c2310146104a15780634c0f38c2146104b757600080fd5b80631491c2e51161023a5780631491c2e51461034857806318160ddd14610383578063204f490c1461039857806323b872dd146103f657806326987b60146104165780632f745c591461042c57600080fd5b806301ffc9a71461027757806302fb4791146102ac57806306fdde03146102ce578063081812fc146102f0578063095ea7b314610328575b600080fd5b34801561028357600080fd5b50610297610292366004612023565b610803565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612040565b610870565b005b3480156102da57600080fd5b506102e361092e565b6040516102a391906120b1565b3480156102fc57600080fd5b5061031061030b366004612040565b6109c0565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102cc6103433660046120e0565b610a49565b34801561035457600080fd5b5061037561036336600461210a565b60136020526000908152604090205481565b6040519081526020016102a3565b34801561038f57600080fd5b50610375610b61565b3480156103a457600080fd5b506103d96103b3366004612040565b6008602052600090815260409020805460019091015460ff808316926101009004169083565b6040805193151584529115156020840152908201526060016102a3565b34801561040257600080fd5b506102cc610411366004612125565b610b77565b34801561042257600080fd5b5061037560005481565b34801561043857600080fd5b506103756104473660046120e0565b610bb1565b34801561045857600080fd5b506102cc610d18565b34801561046d57600080fd5b506102cc61047c366004612040565b610d6e565b34801561048d57600080fd5b506102cc61049c366004612125565b610d9d565b3480156104ad57600080fd5b50610375600e5481565b3480156104c357600080fd5b50600a54610375565b3480156104d857600080fd5b506103756104e7366004612040565b610de7565b3480156104f857600080fd5b506102cc610e4f565b34801561050d57600080fd5b506102cc61051c366004612161565b610e8d565b6102cc61052f366004612040565b610ec3565b34801561054057600080fd5b5061031061054f366004612040565b6110bb565b34801561056057600080fd5b506102cc61056f366004612040565b6110cd565b34801561058057600080fd5b506102cc61058f366004612040565b6110fc565b3480156105a057600080fd5b506103756105af36600461210a565b61112b565b3480156105c057600080fd5b506102cc6111bc565b6102cc6105d7366004612040565b6111f2565b3480156105e857600080fd5b5061037560105481565b3480156105fe57600080fd5b5061037561060d36600461210a565b60126020526000908152604090205481565b34801561062b57600080fd5b506009546001600160a01b0316610310565b34801561064957600080fd5b506102cc610658366004612040565b6113e2565b34801561066957600080fd5b506102e3611411565b34801561067e57600080fd5b50610375600c5481565b34801561069457600080fd5b506102cc6106a33660046121d3565b611420565b3480156106b457600080fd5b5061037560115481565b3480156106ca57600080fd5b506102cc6106d9366004612225565b6114e5565b3480156106ea57600080fd5b506102cc6106f9366004612040565b61154d565b34801561070a57600080fd5b506102e3610719366004612040565b61157c565b34801561072a57600080fd5b50610375600a5481565b34801561074057600080fd5b506102cc61074f366004612040565b611648565b34801561076057600080fd5b5061029761076f366004612301565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107a957600080fd5b506102cc6107b836600461210a565b611677565b3480156107c957600080fd5b50610375600f5481565b3480156107df57600080fd5b50600b546102979060ff1681565b3480156107f957600080fd5b50610375600d5481565b60006001600160e01b031982166380ac58cd60e01b148061083457506001600160e01b03198216635b5e139f60e01b145b8061084f57506001600160e01b0319821663780e9d6360e01b145b8061086a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6009546001600160a01b031633146108a35760405162461bcd60e51b815260040161089a90612334565b60405180910390fd5b600a5460005411156108e65760405162461bcd60e51b815260206004820152600c60248201526b4e4f545f414c4c4f5745442160a01b604482015260640161089a565b600a546001826000546108f9919061237f565b6109039190612397565b11156109215760405162461bcd60e51b815260040161089a906123ae565b61092b338261170f565b50565b60606001805461093d906123d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610969906123d9565b80156109b65780601f1061098b576101008083540402835291602001916109b6565b820191906000526020600020905b81548152906001019060200180831161099957829003601f168201915b5050505050905090565b60006109cb8261172d565b610a2d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161089a565b506000908152600660205260409020546001600160a01b031690565b6000610a54826110bb565b9050806001600160a01b0316836001600160a01b03161415610ac35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161089a565b336001600160a01b0382161480610adf5750610adf813361076f565b610b515760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161089a565b610b5c838383611740565b505050565b60006001600054610b729190612397565b905090565b60008181526008602052604090205460ff1615610ba65760405162461bcd60e51b815260040161089a90612414565b610b5c83838361179c565b6000610bbc8361112b565b8210610c155760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161089a565b6000610c1f610b61565b905060008060005b83811015610cb8576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c7a57805192505b876001600160a01b0316836001600160a01b03161415610caf5786841415610ca85750935061086a92505050565b6001909301925b50600101610c27565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161089a565b6009546001600160a01b03163314610d425760405162461bcd60e51b815260040161089a90612334565b60405133904780156108fc02916000818181858888f1935050505015801561092b573d6000803e3d6000fd5b6009546001600160a01b03163314610d985760405162461bcd60e51b815260040161089a90612334565b601055565b60008181526008602052604090205460ff1615610dcc5760405162461bcd60e51b815260040161089a90612414565b610b5c838383604051806020016040528060008152506114e5565b6000610df1610b61565b8210610e4b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161089a565b5090565b6009546001600160a01b03163314610e795760405162461bcd60e51b815260040161089a90612334565b600b805460ff19811660ff90911615179055565b6009546001600160a01b03163314610eb75760405162461bcd60e51b815260040161089a90612334565b610b5c60038383611f7d565b600b5460ff16610f085760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b604482015260640161089a565b34600f5482610f17919061243b565b14610f585760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b604482015260640161089a565b601054811115610fa05760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b604482015260640161089a565b600a546000541115610fe95760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b604482015260640161089a565b600a54600182600054610ffc919061237f565b6110069190612397565b11156110245760405162461bcd60e51b815260040161089a906123ae565b6011543360009081526013602052604090205461104290839061237f565b111561108a5760405162461bcd60e51b8152602060048201526017602482015276455843454544535f4d41585f5045525f57414c4c45542160481b604482015260640161089a565b611094338261170f565b33600090815260136020526040812080548392906110b390849061237f565b909155505050565b60006110c682611a7f565b5192915050565b6009546001600160a01b031633146110f75760405162461bcd60e51b815260040161089a90612334565b601155565b6009546001600160a01b031633146111265760405162461bcd60e51b815260040161089a90612334565b600a55565b60006001600160a01b0382166111975760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161089a565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6009546001600160a01b031633146111e65760405162461bcd60e51b815260040161089a90612334565b6111f06000611b54565b565b600b5460ff166112375760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b604482015260640161089a565b34600c5482611246919061243b565b146112875760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b604482015260640161089a565b600d548111156112cf5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b604482015260640161089a565b600a5460005411156113185760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b604482015260640161089a565b600a5460018260005461132b919061237f565b6113359190612397565b11156113535760405162461bcd60e51b815260040161089a906123ae565b600e543360009081526012602052604090205461137190839061237f565b11156113b95760405162461bcd60e51b8152602060048201526017602482015276455843454544535f4d41585f5045525f57414c4c45542160481b604482015260640161089a565b6113c3338261170f565b33600090815260126020526040812080548392906110b390849061237f565b6009546001600160a01b0316331461140c5760405162461bcd60e51b815260040161089a90612334565b600c55565b60606002805461093d906123d9565b6001600160a01b0382163314156114795760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161089a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60008281526008602052604090205460ff16156115145760405162461bcd60e51b815260040161089a90612414565b61151f84848461179c565b61152b84848484611ba6565b6115475760405162461bcd60e51b815260040161089a9061245a565b50505050565b6009546001600160a01b031633146115775760405162461bcd60e51b815260040161089a90612334565b600d55565b60606115878261172d565b6115eb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161089a565b60006115f5611ca5565b90508051600014156116165760405180602001604052806000815250611641565b8061162084611cb4565b6040516020016116319291906124ad565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146116725760405162461bcd60e51b815260040161089a90612334565b600e55565b6009546001600160a01b031633146116a15760405162461bcd60e51b815260040161089a90612334565b6001600160a01b0381166117065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089a565b61092b81611b54565b611729828260405180602001604052806000815250611db2565b5050565b600080548210801561086a575050151590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117a782611a7f565b80519091506000906001600160a01b0316336001600160a01b031614806117de5750336117d3846109c0565b6001600160a01b0316145b806117f0575081516117f0903361076f565b90508061185a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161089a565b846001600160a01b031682600001516001600160a01b0316146118ce5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161089a565b6001600160a01b0384166119325760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161089a565b6119426000848460000151611740565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a35576119e88161172d565b15611a35578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611a9c8261172d565b611afb5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161089a565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b4a579392505050565b5060001901611afd565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611c9957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bea9033908990889088906004016124ec565b6020604051808303816000875af1925050508015611c25575060408051601f3d908101601f19168201909252611c2291810190612529565b60015b611c7f573d808015611c53576040519150601f19603f3d011682016040523d82523d6000602084013e611c58565b606091505b508051611c775760405162461bcd60e51b815260040161089a9061245a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c9d565b5060015b949350505050565b60606003805461093d906123d9565b606081611cd85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d025780611cec81612546565b9150611cfb9050600a83612577565b9150611cdc565b60008167ffffffffffffffff811115611d1d57611d1d61220f565b6040519080825280601f01601f191660200182016040528015611d47576020820181803683370190505b5090505b8415611c9d57611d5c600183612397565b9150611d69600a8661258b565b611d7490603061237f565b60f81b818381518110611d8957611d8961259f565b60200101906001600160f81b031916908160001a905350611dab600a86612577565b9450611d4b565b610b5c83838360016000546001600160a01b038516611e1d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161089a565b83611e7b5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161089a565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611f745760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611f6857611f4c6000888488611ba6565b611f685760405162461bcd60e51b815260040161089a9061245a565b60019182019101611ef9565b50600055611a78565b828054611f89906123d9565b90600052602060002090601f016020900481019282611fab5760008555611ff1565b82601f10611fc45782800160ff19823516178555611ff1565b82800160010185558215611ff1579182015b82811115611ff1578235825591602001919060010190611fd6565b50610e4b9291505b80821115610e4b5760008155600101611ff9565b6001600160e01b03198116811461092b57600080fd5b60006020828403121561203557600080fd5b81356116418161200d565b60006020828403121561205257600080fd5b5035919050565b60005b8381101561207457818101518382015260200161205c565b838111156115475750506000910152565b6000815180845261209d816020860160208601612059565b601f01601f19169290920160200192915050565b6020815260006116416020830184612085565b80356001600160a01b03811681146120db57600080fd5b919050565b600080604083850312156120f357600080fd5b6120fc836120c4565b946020939093013593505050565b60006020828403121561211c57600080fd5b611641826120c4565b60008060006060848603121561213a57600080fd5b612143846120c4565b9250612151602085016120c4565b9150604084013590509250925092565b6000806020838503121561217457600080fd5b823567ffffffffffffffff8082111561218c57600080fd5b818501915085601f8301126121a057600080fd5b8135818111156121af57600080fd5b8660208285010111156121c157600080fd5b60209290920196919550909350505050565b600080604083850312156121e657600080fd5b6121ef836120c4565b91506020830135801515811461220457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561223b57600080fd5b612244856120c4565b9350612252602086016120c4565b925060408501359150606085013567ffffffffffffffff8082111561227657600080fd5b818701915087601f83011261228a57600080fd5b81358181111561229c5761229c61220f565b604051601f8201601f19908116603f011681019083821181831017156122c4576122c461220f565b816040528281528a60208487010111156122dd57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561231457600080fd5b61231d836120c4565b915061232b602084016120c4565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561239257612392612369565b500190565b6000828210156123a9576123a9612369565b500390565b6020808252601190820152704e4f545f454e4f5547485f544f4b454e5360781b604082015260600190565b600181811c908216806123ed57607f821691505b6020821081141561240e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600d908201526c544f4b454e5f5354414b45442160981b604082015260600190565b600081600019048311821515161561245557612455612369565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516124bf818460208801612059565b8351908301906124d3818360208801612059565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061251f90830184612085565b9695505050505050565b60006020828403121561253b57600080fd5b81516116418161200d565b600060001982141561255a5761255a612369565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261258657612586612561565b500490565b60008261259a5761259a612561565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202e9629c62749fd3ee51fe011c6065f64f323d77bc1437f4da5803850bc522f3e64736f6c634300080c0033

Deployed Bytecode Sourcemap

39684:3708:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26334:372;;;;;;;;;;-1:-1:-1;26334:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26334:372:0;;;;;;;;41986:242;;;;;;;;;;-1:-1:-1;41986:242:0;;;;;:::i;:::-;;:::i;:::-;;28220:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29792:214::-;;;;;;;;;;-1:-1:-1;29792:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29792:214:0;1528:203:1;29313:413:0;;;;;;;;;;-1:-1:-1;29313:413:0;;;;;:::i;:::-;;:::i;40345:43::-;;;;;;;;;;-1:-1:-1;40345:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2510:25:1;;;2498:2;2483:18;40345:43:0;2364:177:1;24587:104:0;;;;;;;;;;;;;:::i;24337:49::-;;;;;;;;;;-1:-1:-1;24337:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2761:14:1;;2754:22;2736:41;;2820:14;;2813:22;2808:2;2793:18;;2786:50;2852:18;;;2845:34;2724:2;2709:18;24337:49:0;2546:339:1;30668:229:0;;;;;;;;;;-1:-1:-1;30668:229:0;;;;;:::i;:::-;;:::i;23586:31::-;;;;;;;;;;;;;;;;25255:1007;;;;;;;;;;-1:-1:-1;25255:1007:0;;;;;:::i;:::-;;:::i;40626:109::-;;;;;;;;;;;;;:::i;41238:97::-;;;;;;;;;;-1:-1:-1;41238:97:0;;;;;:::i;:::-;;:::i;30968:244::-;;;;;;;;;;-1:-1:-1;30968:244:0;;;;;:::i;:::-;;:::i;39917:28::-;;;;;;;;;;;;;;;;41664:85;;;;;;;;;;-1:-1:-1;41732:9:0;;41664:85;;24768:187;;;;;;;;;;-1:-1:-1;24768:187:0;;;;;:::i;:::-;;:::i;40743:87::-;;;;;;;;;;;;;:::i;41464:90::-;;;;;;;;;;-1:-1:-1;41464:90:0;;;;;:::i;:::-;;:::i;42236:586::-;;;;;;:::i;:::-;;:::i;28029:124::-;;;;;;;;;;-1:-1:-1;28029:124:0;;;;;:::i;:::-;;:::i;41347:105::-;;;;;;;;;;-1:-1:-1;41347:105:0;;;;;:::i;:::-;;:::i;40838:91::-;;;;;;;;;;-1:-1:-1;40838:91:0;;;;;:::i;:::-;;:::i;26770:221::-;;;;;;;;;;-1:-1:-1;26770:221:0;;;;;:::i;:::-;;:::i;5363:94::-;;;;;;;;;;;;;:::i;42830:559::-;;;;;;:::i;:::-;;:::i;39988:28::-;;;;;;;;;;;;;;;;40296:39;;;;;;;;;;-1:-1:-1;40296:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;4712:87;;;;;;;;;;-1:-1:-1;4785:6:0;;-1:-1:-1;;;;;4785:6:0;4712:87;;40937:83;;;;;;;;;;-1:-1:-1;40937:83:0;;;;;:::i;:::-;;:::i;28389:104::-;;;;;;;;;;;;;:::i;39855:17::-;;;;;;;;;;;;;;;;30078:288;;;;;;;;;;-1:-1:-1;30078:288:0;;;;;:::i;:::-;;:::i;40027:32::-;;;;;;;;;;;;;;;;31283:422;;;;;;;;;;-1:-1:-1;31283:422:0;;;;;:::i;:::-;;:::i;41032:89::-;;;;;;;;;;-1:-1:-1;41032:89:0;;;;;:::i;:::-;;:::i;28564:344::-;;;;;;;;;;-1:-1:-1;28564:344:0;;;;;:::i;:::-;;:::i;39791:28::-;;;;;;;;;;;;;;;;41133:97;;;;;;;;;;-1:-1:-1;41133:97:0;;;;;:::i;:::-;;:::i;30437:164::-;;;;;;;;;;-1:-1:-1;30437:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30558:25:0;;;30534:4;30558:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30437:164;5612:192;;;;;;;;;;-1:-1:-1;5612:192:0;;;;;:::i;:::-;;:::i;39952:29::-;;;;;;;;;;;;;;;;39826:22;;;;;;;;;;-1:-1:-1;39826:22:0;;;;;;;;39882:24;;;;;;;;;;;;;;;;26334:372;26436:4;-1:-1:-1;;;;;;26473:40:0;;-1:-1:-1;;;26473:40:0;;:105;;-1:-1:-1;;;;;;;26530:48:0;;-1:-1:-1;;;26530:48:0;26473:105;:172;;;-1:-1:-1;;;;;;;26595:50:0;;-1:-1:-1;;;26595:50:0;26473:172;:225;;;-1:-1:-1;;;;;;;;;;16423:40:0;;;26662:36;26453:245;26334:372;-1:-1:-1;;26334:372:0:o;41986:242::-;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;;;;;;;;;42073:9:::1;;42057:12;;:25;;42049:50;;;::::0;-1:-1:-1;;;42049:50:0;;6275:2:1;42049:50:0::1;::::0;::::1;6257:21:1::0;6314:2;6294:18;;;6287:30;-1:-1:-1;;;6333:18:1;;;6326:42;6385:18;;42049:50:0::1;6073:336:1::0;42049:50:0::1;42149:9;;42143:1;42135:6;42120:12;;:21;;;;:::i;:::-;42119:25;;;;:::i;:::-;42118:40;;42110:70;;;;-1:-1:-1::0;;;42110:70:0::1;;;;;;;:::i;:::-;42191:29;42201:10;42213:6;42191:9;:29::i;:::-;41986:242:::0;:::o;28220:100::-;28274:13;28307:5;28300:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28220:100;:::o;29792:214::-;29860:7;29888:16;29896:7;29888;:16::i;:::-;29880:74;;;;-1:-1:-1;;;29880:74:0;;7742:2:1;29880:74:0;;;7724:21:1;7781:2;7761:18;;;7754:30;7820:34;7800:18;;;7793:62;-1:-1:-1;;;7871:18:1;;;7864:43;7924:19;;29880:74:0;7540:409:1;29880:74:0;-1:-1:-1;29974:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29974:24:0;;29792:214::o;29313:413::-;29386:13;29402:24;29418:7;29402:15;:24::i;:::-;29386:40;;29451:5;-1:-1:-1;;;;;29445:11:0;:2;-1:-1:-1;;;;;29445:11:0;;;29437:58;;;;-1:-1:-1;;;29437:58:0;;8156:2:1;29437:58:0;;;8138:21:1;8195:2;8175:18;;;8168:30;8234:34;8214:18;;;8207:62;-1:-1:-1;;;8285:18:1;;;8278:32;8327:19;;29437:58:0;7954:398:1;29437:58:0;3668:10;-1:-1:-1;;;;;29530:21:0;;;;:62;;-1:-1:-1;29555:37:0;29572:5;3668:10;30437:164;:::i;29555:37::-;29508:169;;;;-1:-1:-1;;;29508:169:0;;8559:2:1;29508:169:0;;;8541:21:1;8598:2;8578:18;;;8571:30;8637:34;8617:18;;;8610:62;8708:27;8688:18;;;8681:55;8753:19;;29508:169:0;8357:421:1;29508:169:0;29690:28;29699:2;29703:7;29712:5;29690:8;:28::i;:::-;29375:351;29313:413;;:::o;24587:104::-;24640:7;24682:1;24667:12;;:16;;;;:::i;:::-;24660:23;;24587:104;:::o;30668:229::-;30803:22;;;;:13;:22;;;;;:29;;;30802:30;30794:56;;;;-1:-1:-1;;;30794:56:0;;;;;;;:::i;:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;25255:1007::-;25344:7;25380:16;25390:5;25380:9;:16::i;:::-;25372:5;:24;25364:71;;;;-1:-1:-1;;;25364:71:0;;9327:2:1;25364:71:0;;;9309:21:1;9366:2;9346:18;;;9339:30;9405:34;9385:18;;;9378:62;-1:-1:-1;;;9456:18:1;;;9449:32;9498:19;;25364:71:0;9125:398:1;25364:71:0;25446:22;25471:13;:11;:13::i;:::-;25446:38;;25495:19;25525:25;25714:9;25709:466;25729:14;25725:1;:18;25709:466;;;25769:31;25803:14;;;:11;:14;;;;;;;;;25769:48;;;;;;;;;-1:-1:-1;;;;;25769:48:0;;;;;-1:-1:-1;;;25769:48:0;;;;;;;;;;;;25840:28;25836:111;;25913:14;;;-1:-1:-1;25836:111:0;25990:5;-1:-1:-1;;;;;25969:26:0;:17;-1:-1:-1;;;;;25969:26:0;;25965:195;;;26039:5;26024:11;:20;26020:85;;;-1:-1:-1;26080:1:0;-1:-1:-1;26073:8:0;;-1:-1:-1;;;26073:8:0;26020:85;26127:13;;;;;25965:195;-1:-1:-1;25745:3:0;;25709:466;;;-1:-1:-1;26198:56:0;;-1:-1:-1;;;26198:56:0;;9730:2:1;26198:56:0;;;9712:21:1;9769:2;9749:18;;;9742:30;9808:34;9788:18;;;9781:62;-1:-1:-1;;;9859:18:1;;;9852:44;9913:19;;26198:56:0;9528:410:1;40626:109:0;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;40676:51:::1;::::0;40684:10:::1;::::0;40705:21:::1;40676:51:::0;::::1;;;::::0;::::1;::::0;;;40705:21;40684:10;40676:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;41238:97:::0;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;41306:12:::1;:21:::0;41238:97::o;30968:244::-;31107:22;;;;:13;:22;;;;;:29;;;31106:30;31098:56;;;;-1:-1:-1;;;31098:56:0;;;;;;;:::i;:::-;31165:39;31182:4;31188:2;31192:7;31165:39;;;;;;;;;;;;:16;:39::i;24768:187::-;24835:7;24871:13;:11;:13::i;:::-;24863:5;:21;24855:69;;;;-1:-1:-1;;;24855:69:0;;10145:2:1;24855:69:0;;;10127:21:1;10184:2;10164:18;;;10157:30;10223:34;10203:18;;;10196:62;-1:-1:-1;;;10274:18:1;;;10267:33;10317:19;;24855:69:0;9943:399:1;24855:69:0;-1:-1:-1;24942:5:0;24768:187::o;40743:87::-;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;40812:10:::1;::::0;;-1:-1:-1;;40798:24:0;::::1;40812:10;::::0;;::::1;40811:11;40798:24;::::0;;40743:87::o;41464:90::-;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;41536:10:::1;:3;41542:4:::0;;41536:10:::1;:::i;42236:586::-:0;42311:10;;;;42303:39;;;;-1:-1:-1;;;42303:39:0;;10549:2:1;42303:39:0;;;10531:21:1;10588:2;10568:18;;;10561:30;-1:-1:-1;;;10607:18:1;;;10600:46;10663:18;;42303:39:0;10347:340:1;42303:39:0;42387:9;42370:13;;42361:6;:22;;;;:::i;:::-;:35;42353:65;;;;-1:-1:-1;;;42353:65:0;;11067:2:1;42353:65:0;;;11049:21:1;11106:2;11086:18;;;11079:30;-1:-1:-1;;;11125:18:1;;;11118:47;11182:18;;42353:65:0;10865:341:1;42353:65:0;42447:12;;42437:6;:22;;42429:54;;;;-1:-1:-1;;;42429:54:0;;11413:2:1;42429:54:0;;;11395:21:1;11452:2;11432:18;;;11425:30;-1:-1:-1;;;11471:18:1;;;11464:49;11530:18;;42429:54:0;11211:343:1;42429:54:0;42518:9;;42502:12;;:25;;42494:56;;;;-1:-1:-1;;;42494:56:0;;11761:2:1;42494:56:0;;;11743:21:1;11800:2;11780:18;;;11773:30;-1:-1:-1;;;11819:18:1;;;11812:48;11877:18;;42494:56:0;11559:342:1;42494:56:0;42600:9;;42594:1;42586:6;42571:12;;:21;;;;:::i;:::-;42570:25;;;;:::i;:::-;42569:40;;42561:70;;;;-1:-1:-1;;;42561:70:0;;;;;;;:::i;:::-;42686:16;;42662:10;42650:23;;;;:11;:23;;;;;;:32;;42676:6;;42650:32;:::i;:::-;:52;;42642:88;;;;-1:-1:-1;;;42642:88:0;;12108:2:1;42642:88:0;;;12090:21:1;12147:2;12127:18;;;12120:30;-1:-1:-1;;;12166:18:1;;;12159:53;12229:18;;42642:88:0;11906:347:1;42642:88:0;42741:29;42751:10;42763:6;42741:9;:29::i;:::-;42793:10;42781:23;;;;:11;:23;;;;;:33;;42808:6;;42781:23;:33;;42808:6;;42781:33;:::i;:::-;;;;-1:-1:-1;;;42236:586:0:o;28029:124::-;28093:7;28120:20;28132:7;28120:11;:20::i;:::-;:25;;28029:124;-1:-1:-1;;28029:124:0:o;41347:105::-;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;41419:16:::1;:25:::0;41347:105::o;40838:91::-;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;40903:9:::1;:18:::0;40838:91::o;26770:221::-;26834:7;-1:-1:-1;;;;;26862:19:0;;26854:75;;;;-1:-1:-1;;;26854:75:0;;12460:2:1;26854:75:0;;;12442:21:1;12499:2;12479:18;;;12472:30;12538:34;12518:18;;;12511:62;-1:-1:-1;;;12589:18:1;;;12582:41;12640:19;;26854:75:0;12258:407:1;26854:75:0;-1:-1:-1;;;;;;26955:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26955:27:0;;26770:221::o;5363:94::-;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;5428:21:::1;5446:1;5428:9;:21::i;:::-;5363:94::o:0;42830:559::-;42902:10;;;;42894:39;;;;-1:-1:-1;;;42894:39:0;;10549:2:1;42894:39:0;;;10531:21:1;10588:2;10568:18;;;10561:30;-1:-1:-1;;;10607:18:1;;;10600:46;10663:18;;42894:39:0;10347:340:1;42894:39:0;42970:9;42961:5;;42952:6;:14;;;;:::i;:::-;:27;42944:57;;;;-1:-1:-1;;;42944:57:0;;11067:2:1;42944:57:0;;;11049:21:1;11106:2;11086:18;;;11079:30;-1:-1:-1;;;11125:18:1;;;11118:47;11182:18;;42944:57:0;10865:341:1;42944:57:0;43030:8;;43020:6;:18;;43012:50;;;;-1:-1:-1;;;43012:50:0;;11413:2:1;43012:50:0;;;11395:21:1;11452:2;11432:18;;;11425:30;-1:-1:-1;;;11471:18:1;;;11464:49;11530:18;;43012:50:0;11211:343:1;43012:50:0;43097:9;;43081:12;;:25;;43073:56;;;;-1:-1:-1;;;43073:56:0;;11761:2:1;43073:56:0;;;11743:21:1;11800:2;11780:18;;;11773:30;-1:-1:-1;;;11819:18:1;;;11812:48;11877:18;;43073:56:0;11559:342:1;43073:56:0;43179:9;;43173:1;43165:6;43150:12;;:21;;;;:::i;:::-;43149:25;;;;:::i;:::-;43148:40;;43140:70;;;;-1:-1:-1;;;43140:70:0;;;;;;;:::i;:::-;43261:12;;43237:10;43229:19;;;;:7;:19;;;;;;:28;;43251:6;;43229:28;:::i;:::-;:44;;43221:80;;;;-1:-1:-1;;;43221:80:0;;12108:2:1;43221:80:0;;;12090:21:1;12147:2;12127:18;;;12120:30;-1:-1:-1;;;12166:18:1;;;12159:53;12229:18;;43221:80:0;11906:347:1;43221:80:0;43312:29;43322:10;43334:6;43312:9;:29::i;:::-;43360:10;43352:19;;;;:7;:19;;;;;:29;;43375:6;;43352:19;:29;;43375:6;;43352:29;:::i;40937:83::-;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;40998:5:::1;:14:::0;40937:83::o;28389:104::-;28445:13;28478:7;28471:14;;;;;:::i;30078:288::-;-1:-1:-1;;;;;30173:24:0;;3668:10;30173:24;;30165:63;;;;-1:-1:-1;;;30165:63:0;;12872:2:1;30165:63:0;;;12854:21:1;12911:2;12891:18;;;12884:30;12950:28;12930:18;;;12923:56;12996:18;;30165:63:0;12670:350:1;30165:63:0;3668:10;30241:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30241:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30241:53:0;;;;;;;;;;30310:48;;540:41:1;;;30241:42:0;;3668:10;30310:48;;513:18:1;30310:48:0;;;;;;;30078:288;;:::o;31283:422::-;31451:22;;;;:13;:22;;;;;:29;;;31450:30;31442:56;;;;-1:-1:-1;;;31442:56:0;;;;;;;:::i;:::-;31509:28;31519:4;31525:2;31529:7;31509:9;:28::i;:::-;31570:48;31593:4;31599:2;31603:7;31612:5;31570:22;:48::i;:::-;31548:149;;;;-1:-1:-1;;;31548:149:0;;;;;;;:::i;:::-;31283:422;;;;:::o;41032:89::-;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;41096:8:::1;:17:::0;41032:89::o;28564:344::-;28637:13;28671:16;28679:7;28671;:16::i;:::-;28663:76;;;;-1:-1:-1;;;28663:76:0;;13647:2:1;28663:76:0;;;13629:21:1;13686:2;13666:18;;;13659:30;13725:34;13705:18;;;13698:62;-1:-1:-1;;;13776:18:1;;;13769:45;13831:19;;28663:76:0;13445:411:1;28663:76:0;28752:21;28776:10;:8;:10::i;:::-;28752:34;;28810:7;28804:21;28829:1;28804:26;;:96;;;;;;;;;;;;;;;;;28857:7;28866:18;:7;:16;:18::i;:::-;28840:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28804:96;28797:103;28564:344;-1:-1:-1;;;28564:344:0:o;41133:97::-;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;41201:12:::1;:21:::0;41133:97::o;5612:192::-;4785:6;;-1:-1:-1;;;;;4785:6:0;3668:10;4932:23;4924:68;;;;-1:-1:-1;;;4924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5701:22:0;::::1;5693:73;;;::::0;-1:-1:-1;;;5693:73:0;;14705:2:1;5693:73:0::1;::::0;::::1;14687:21:1::0;14744:2;14724:18;;;14717:30;14783:34;14763:18;;;14756:62;-1:-1:-1;;;14834:18:1;;;14827:36;14880:19;;5693:73:0::1;14503:402:1::0;5693:73:0::1;5777:19;5787:8;5777:9;:19::i;32094:104::-:0;32163:27;32173:2;32177:8;32163:27;;;;;;;;;;;;:9;:27::i;:::-;32094:104;;:::o;31960:126::-;32017:4;32051:12;;32041:7;:22;:37;;;;-1:-1:-1;;32067:11:0;;;31960:126::o;36895:196::-;37010:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37010:29:0;-1:-1:-1;;;;;37010:29:0;;;;;;;;;37055:28;;37010:24;;37055:28;;;;;;;36895:196;;;:::o;34775:2002::-;34890:35;34928:20;34940:7;34928:11;:20::i;:::-;35003:18;;34890:58;;-1:-1:-1;34961:22:0;;-1:-1:-1;;;;;34987:34:0;3668:10;-1:-1:-1;;;;;34987:34:0;;:87;;;-1:-1:-1;3668:10:0;35038:20;35050:7;35038:11;:20::i;:::-;-1:-1:-1;;;;;35038:36:0;;34987:87;:154;;;-1:-1:-1;35108:18:0;;35091:50;;3668:10;30437:164;:::i;35091:50::-;34961:181;;35163:17;35155:80;;;;-1:-1:-1;;;35155:80:0;;15112:2:1;35155:80:0;;;15094:21:1;15151:2;15131:18;;;15124:30;15190:34;15170:18;;;15163:62;-1:-1:-1;;;15241:18:1;;;15234:48;15299:19;;35155:80:0;14910:414:1;35155:80:0;35278:4;-1:-1:-1;;;;;35256:26:0;:13;:18;;;-1:-1:-1;;;;;35256:26:0;;35248:77;;;;-1:-1:-1;;;35248:77:0;;15531:2:1;35248:77:0;;;15513:21:1;15570:2;15550:18;;;15543:30;15609:34;15589:18;;;15582:62;-1:-1:-1;;;15660:18:1;;;15653:36;15706:19;;35248:77:0;15329:402:1;35248:77:0;-1:-1:-1;;;;;35344:16:0;;35336:66;;;;-1:-1:-1;;;35336:66:0;;15938:2:1;35336:66:0;;;15920:21:1;15977:2;15957:18;;;15950:30;16016:34;15996:18;;;15989:62;-1:-1:-1;;;16067:18:1;;;16060:35;16112:19;;35336:66:0;15736:401:1;35336:66:0;35523:49;35540:1;35544:7;35553:13;:18;;;35523:8;:49::i;:::-;-1:-1:-1;;;;;35868:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;35868:31:0;;;-1:-1:-1;;;;;35868:31:0;;;-1:-1:-1;;35868:31:0;;;;;;;35914:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35914:29:0;;;;;;;;;;;;;35960:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36005:61:0;;;;-1:-1:-1;;;36050:15:0;36005:61;;;;;;36340:11;;;36370:24;;;;;:29;36340:11;;36370:29;36366:295;;36438:20;36446:11;36438:7;:20::i;:::-;36434:212;;;36515:18;;;36483:24;;;:11;:24;;;;;;;;:50;;36598:28;;;;36556:70;;-1:-1:-1;;;36556:70:0;-1:-1:-1;;;;;;36556:70:0;;;-1:-1:-1;;;;;36483:50:0;;;36556:70;;;;;;;36434:212;35843:829;36708:7;36704:2;-1:-1:-1;;;;;36689:27:0;36698:4;-1:-1:-1;;;;;36689:27:0;;;;;;;;;;;36727:42;34879:1898;;34775:2002;;;:::o;27430:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;27533:16:0;27541:7;27533;:16::i;:::-;27525:71;;;;-1:-1:-1;;;27525:71:0;;16344:2:1;27525:71:0;;;16326:21:1;16383:2;16363:18;;;16356:30;16422:34;16402:18;;;16395:62;-1:-1:-1;;;16473:18:1;;;16466:40;16523:19;;27525:71:0;16142:406:1;27525:71:0;27654:7;27634:245;27701:31;27735:17;;;:11;:17;;;;;;;;;27701:51;;;;;;;;;-1:-1:-1;;;;;27701:51:0;;;;;-1:-1:-1;;;27701:51:0;;;;;;;;;;;;27775:28;27771:93;;27835:9;27430:537;-1:-1:-1;;;27430:537:0:o;27771:93::-;-1:-1:-1;;;27674:6:0;27634:245;;5812:173;5887:6;;;-1:-1:-1;;;;;5904:17:0;;;-1:-1:-1;;;;;;5904:17:0;;;;;;;5937:40;;5887:6;;;5904:17;5887:6;;5937:40;;5868:16;;5937:40;5857:128;5812:173;:::o;37656:804::-;37811:4;-1:-1:-1;;;;;37832:13:0;;6996:20;7044:8;37828:625;;37868:72;;-1:-1:-1;;;37868:72:0;;-1:-1:-1;;;;;37868:36:0;;;;;:72;;3668:10;;37919:4;;37925:7;;37934:5;;37868:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37868:72:0;;;;;;;;-1:-1:-1;;37868:72:0;;;;;;;;;;;;:::i;:::-;;;37864:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38114:13:0;;38110:273;;38157:61;;-1:-1:-1;;;38157:61:0;;;;;;;:::i;38110:273::-;38333:6;38327:13;38318:6;38314:2;38310:15;38303:38;37864:534;-1:-1:-1;;;;;;37991:55:0;-1:-1:-1;;;37991:55:0;;-1:-1:-1;37984:62:0;;37828:625;-1:-1:-1;38437:4:0;37828:625;37656:804;;;;;;:::o;29156:95::-;29207:13;29240:3;29233:10;;;;;:::i;1287:723::-;1343:13;1564:10;1560:53;;-1:-1:-1;;1591:10:0;;;;;;;;;;;;-1:-1:-1;;;1591:10:0;;;;;1287:723::o;1560:53::-;1638:5;1623:12;1679:78;1686:9;;1679:78;;1712:8;;;;:::i;:::-;;-1:-1:-1;1735:10:0;;-1:-1:-1;1743:2:0;1735:10;;:::i;:::-;;;1679:78;;;1767:19;1799:6;1789:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1789:17:0;;1767:39;;1817:154;1824:10;;1817:154;;1851:11;1861:1;1851:11;;:::i;:::-;;-1:-1:-1;1920:10:0;1928:2;1920:5;:10;:::i;:::-;1907:24;;:2;:24;:::i;:::-;1894:39;;1877:6;1884;1877:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1877:56:0;;;;;;;;-1:-1:-1;1948:11:0;1957:2;1948:11;;:::i;:::-;;;1817:154;;32561:163;32684:32;32690:2;32694:8;32704:5;32711:4;33122:20;33145:12;-1:-1:-1;;;;;33176:16:0;;33168:62;;;;-1:-1:-1;;;33168:62:0;;18565:2:1;33168:62:0;;;18547:21:1;18604:2;18584:18;;;18577:30;18643:34;18623:18;;;18616:62;-1:-1:-1;;;18694:18:1;;;18687:31;18735:19;;33168:62:0;18363:397:1;33168:62:0;33249:13;33241:66;;;;-1:-1:-1;;;33241:66:0;;18967:2:1;33241:66:0;;;18949:21:1;19006:2;18986:18;;;18979:30;19045:34;19025:18;;;19018:62;-1:-1:-1;;;19096:18:1;;;19089:38;19144:19;;33241:66:0;18765:404:1;33241:66:0;-1:-1:-1;;;;;33659:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;33659:45:0;;-1:-1:-1;;;;;33659:45:0;;;;;;;;;;33719:50;;;;;;;;;;;;;;33786:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;33836:66:0;;;;-1:-1:-1;;;33886:15:0;33836:66;;;;;;;33786:25;;33971:415;33991:8;33987:1;:12;33971:415;;;34030:38;;34055:12;;-1:-1:-1;;;;;34030:38:0;;;34047:1;;34030:38;;34047:1;;34030:38;34091:4;34087:249;;;34154:59;34185:1;34189:2;34193:12;34207:5;34154:22;:59::i;:::-;34120:196;;;;-1:-1:-1;;;34120:196:0;;;;;;;:::i;:::-;34356:14;;;;;34001:3;33971:415;;;-1:-1:-1;34402:12:0;:27;34453:60;31283:422;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2890:328::-;2967:6;2975;2983;3036:2;3024:9;3015:7;3011:23;3007:32;3004:52;;;3052:1;3049;3042:12;3004:52;3075:29;3094:9;3075:29;:::i;:::-;3065:39;;3123:38;3157:2;3146:9;3142:18;3123:38;:::i;:::-;3113:48;;3208:2;3197:9;3193:18;3180:32;3170:42;;2890:328;;;;;:::o;3223:592::-;3294:6;3302;3355:2;3343:9;3334:7;3330:23;3326:32;3323:52;;;3371:1;3368;3361:12;3323:52;3411:9;3398:23;3440:18;3481:2;3473:6;3470:14;3467:34;;;3497:1;3494;3487:12;3467:34;3535:6;3524:9;3520:22;3510:32;;3580:7;3573:4;3569:2;3565:13;3561:27;3551:55;;3602:1;3599;3592:12;3551:55;3642:2;3629:16;3668:2;3660:6;3657:14;3654:34;;;3684:1;3681;3674:12;3654:34;3729:7;3724:2;3715:6;3711:2;3707:15;3703:24;3700:37;3697:57;;;3750:1;3747;3740:12;3697:57;3781:2;3773:11;;;;;3803:6;;-1:-1:-1;3223:592:1;;-1:-1:-1;;;;3223:592:1:o;3820:347::-;3885:6;3893;3946:2;3934:9;3925:7;3921:23;3917:32;3914:52;;;3962:1;3959;3952:12;3914:52;3985:29;4004:9;3985:29;:::i;:::-;3975:39;;4064:2;4053:9;4049:18;4036:32;4111:5;4104:13;4097:21;4090:5;4087:32;4077:60;;4133:1;4130;4123:12;4077:60;4156:5;4146:15;;;3820:347;;;;;:::o;4172:127::-;4233:10;4228:3;4224:20;4221:1;4214:31;4264:4;4261:1;4254:15;4288:4;4285:1;4278:15;4304:1138;4399:6;4407;4415;4423;4476:3;4464:9;4455:7;4451:23;4447:33;4444:53;;;4493:1;4490;4483:12;4444:53;4516:29;4535:9;4516:29;:::i;:::-;4506:39;;4564:38;4598:2;4587:9;4583:18;4564:38;:::i;:::-;4554:48;;4649:2;4638:9;4634:18;4621:32;4611:42;;4704:2;4693:9;4689:18;4676:32;4727:18;4768:2;4760:6;4757:14;4754:34;;;4784:1;4781;4774:12;4754:34;4822:6;4811:9;4807:22;4797:32;;4867:7;4860:4;4856:2;4852:13;4848:27;4838:55;;4889:1;4886;4879:12;4838:55;4925:2;4912:16;4947:2;4943;4940:10;4937:36;;;4953:18;;:::i;:::-;5028:2;5022:9;4996:2;5082:13;;-1:-1:-1;;5078:22:1;;;5102:2;5074:31;5070:40;5058:53;;;5126:18;;;5146:22;;;5123:46;5120:72;;;5172:18;;:::i;:::-;5212:10;5208:2;5201:22;5247:2;5239:6;5232:18;5287:7;5282:2;5277;5273;5269:11;5265:20;5262:33;5259:53;;;5308:1;5305;5298:12;5259:53;5364:2;5359;5355;5351:11;5346:2;5338:6;5334:15;5321:46;5409:1;5404:2;5399;5391:6;5387:15;5383:24;5376:35;5430:6;5420:16;;;;;;;4304:1138;;;;;;;:::o;5447:260::-;5515:6;5523;5576:2;5564:9;5555:7;5551:23;5547:32;5544:52;;;5592:1;5589;5582:12;5544:52;5615:29;5634:9;5615:29;:::i;:::-;5605:39;;5663:38;5697:2;5686:9;5682:18;5663:38;:::i;:::-;5653:48;;5447:260;;;;;:::o;5712:356::-;5914:2;5896:21;;;5933:18;;;5926:30;5992:34;5987:2;5972:18;;5965:62;6059:2;6044:18;;5712:356::o;6414:127::-;6475:10;6470:3;6466:20;6463:1;6456:31;6506:4;6503:1;6496:15;6530:4;6527:1;6520:15;6546:128;6586:3;6617:1;6613:6;6610:1;6607:13;6604:39;;;6623:18;;:::i;:::-;-1:-1:-1;6659:9:1;;6546:128::o;6679:125::-;6719:4;6747:1;6744;6741:8;6738:34;;;6752:18;;:::i;:::-;-1:-1:-1;6789:9:1;;6679:125::o;6809:341::-;7011:2;6993:21;;;7050:2;7030:18;;;7023:30;-1:-1:-1;;;7084:2:1;7069:18;;7062:47;7141:2;7126:18;;6809:341::o;7155:380::-;7234:1;7230:12;;;;7277;;;7298:61;;7352:4;7344:6;7340:17;7330:27;;7298:61;7405:2;7397:6;7394:14;7374:18;7371:38;7368:161;;;7451:10;7446:3;7442:20;7439:1;7432:31;7486:4;7483:1;7476:15;7514:4;7511:1;7504:15;7368:161;;7155:380;;;:::o;8783:337::-;8985:2;8967:21;;;9024:2;9004:18;;;8997:30;-1:-1:-1;;;9058:2:1;9043:18;;9036:43;9111:2;9096:18;;8783:337::o;10692:168::-;10732:7;10798:1;10794;10790:6;10786:14;10783:1;10780:21;10775:1;10768:9;10761:17;10757:45;10754:71;;;10805:18;;:::i;:::-;-1:-1:-1;10845:9:1;;10692:168::o;13025:415::-;13227:2;13209:21;;;13266:2;13246:18;;;13239:30;13305:34;13300:2;13285:18;;13278:62;-1:-1:-1;;;13371:2:1;13356:18;;13349:49;13430:3;13415:19;;13025:415::o;13861:637::-;14141:3;14179:6;14173:13;14195:53;14241:6;14236:3;14229:4;14221:6;14217:17;14195:53;:::i;:::-;14311:13;;14270:16;;;;14333:57;14311:13;14270:16;14367:4;14355:17;;14333:57;:::i;:::-;-1:-1:-1;;;14412:20:1;;14441:22;;;14490:1;14479:13;;13861:637;-1:-1:-1;;;;13861:637:1:o;16969:489::-;-1:-1:-1;;;;;17238:15:1;;;17220:34;;17290:15;;17285:2;17270:18;;17263:43;17337:2;17322:18;;17315:34;;;17385:3;17380:2;17365:18;;17358:31;;;17163:4;;17406:46;;17432:19;;17424:6;17406:46;:::i;:::-;17398:54;16969:489;-1:-1:-1;;;;;;16969:489:1:o;17463:249::-;17532:6;17585:2;17573:9;17564:7;17560:23;17556:32;17553:52;;;17601:1;17598;17591:12;17553:52;17633:9;17627:16;17652:30;17676:5;17652:30;:::i;17717:135::-;17756:3;-1:-1:-1;;17777:17:1;;17774:43;;;17797:18;;:::i;:::-;-1:-1:-1;17844:1:1;17833:13;;17717:135::o;17857:127::-;17918:10;17913:3;17909:20;17906:1;17899:31;17949:4;17946:1;17939:15;17973:4;17970:1;17963:15;17989:120;18029:1;18055;18045:35;;18060:18;;:::i;:::-;-1:-1:-1;18094:9:1;;17989:120::o;18114:112::-;18146:1;18172;18162:35;;18177:18;;:::i;:::-;-1:-1:-1;18211:9:1;;18114:112::o;18231:127::-;18292:10;18287:3;18283:20;18280:1;18273:31;18323:4;18320:1;18313:15;18347:4;18344:1;18337:15

Swarm Source

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