ETH Price: $2,488.75 (+3.00%)
Gas: 6.55 Gwei

Token

The Tiger Clan (TTC)
 

Overview

Max Total Supply

187 TTC

Holders

150

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TTC
0xb13de4c44eea28c36be9ec82be7ab47a05ceedd4
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:
TheTigerClan

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-14
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    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;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/TheTigerClan.sol


// NFT Count 10000

pragma solidity ^0.8.4;







contract TheTigerClan is ERC721A, Ownable, ReentrancyGuard {
    using SafeMath for uint256;
    using Strings for uint256;

    bool public preSaleActive = true;
    bool public publicSaleActive = false;

    bool public paused = true;
    bool public revealed = false;

    uint256 public maxSupply = 10000;
    uint256 public maxPreSaleSupply = 888;
    uint256 public maxPreSale = 10;
    uint256 public preSalePrice = 0.15 ether;
    uint256 public publicSalePrice = 0.18 ether;

    string private _baseURIextended;
    string public notRevealedUri;

    mapping(address => uint256) public nftMinted;

    constructor(string memory name, string memory symbol) ERC721A(name, symbol) ReentrancyGuard() {
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function preSaleMint(uint256 _amount) external payable nonReentrant {
        require(preSaleActive, "TTC Pre Sale is not Active");
        require(nftMinted[msg.sender].add(_amount) <= maxPreSale, "TTC Maximum Pre Sale Minting Limit Reached");
        mint(_amount, true);
    }

    function publicSaleMint(uint256 _amount) external payable nonReentrant {
        require(publicSaleActive, "TTC Public Sale is not Active");
        mint(_amount, false);
    }

    function ownerMint(uint256 _amount) external onlyOwner {
        require(!paused, "TTC Minting is Paused");
        require(totalSupply().add(_amount) <= maxSupply, "TTC Maximum Supply Reached");
        nftMinted[msg.sender] = nftMinted[msg.sender].add(_amount);
        _safeMint(msg.sender, _amount);
    }

    function mint(uint256 amount, bool state) internal {
        require(!paused, "TTC Minting is Paused");
        require(totalSupply().add(amount) <= maxSupply, "TTC Maximum Supply Reached");
        if(state) {
            require(totalSupply().add(amount) <= maxPreSaleSupply, "TTC Maximum PreSale Supply Reached");
            require(preSalePrice*amount <= msg.value, "TTC ETH Value Sent for Pre Sale is not enough");
        } else {
            require(publicSalePrice*amount <= msg.value, "TTC ETH Value Sent for Public Sale is not enough");
        }
        nftMinted[msg.sender] = nftMinted[msg.sender].add(amount);
        _safeMint(msg.sender, amount);
    }

    function _baseURI() internal view virtual override returns (string memory){
        return _baseURIextended;
    }

    function setBaseURI(string calldata baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function togglePauseState() external onlyOwner {
        paused = !paused;
    }

    function toggleSaleMode() external onlyOwner {
        preSaleActive = !preSaleActive;
        publicSaleActive = !publicSaleActive;
    }

    function setMaxPreSaleSupply(uint256 _maxPreSaleSupply) external onlyOwner {
        maxPreSaleSupply = _maxPreSaleSupply;
    }

    function setPreSalePrice(uint256 _preSalePrice) external onlyOwner {
        preSalePrice = _preSalePrice;
    }

    function setPublicSalePrice(uint256 _publicSalePrice) external onlyOwner {
        publicSalePrice = _publicSalePrice;
    }

    function airDrop(address[] memory _address) external onlyOwner {
        require(totalSupply().add(_address.length) <= maxSupply, "TTC Maximum Supply Reached");
        for(uint i=1; i <= _address.length; i++){
            _safeMint(_address[i-1], 1);
        }
    }

    function reveal() external onlyOwner {
        revealed = true;
    }

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

    function setNotRevealedURI(string memory _notRevealedUri) external onlyOwner {
        notRevealedUri = _notRevealedUri;
    }

    function raffleNumberGenerator(uint _limit) public view returns(uint256) {
        uint256 seed = uint256(keccak256(abi.encodePacked(
            block.timestamp + block.difficulty + ((uint256(keccak256(abi.encodePacked(block.coinbase)))) / (block.timestamp)) +
            block.gaslimit + ((uint256(keccak256(abi.encodePacked(msg.sender)))) / (block.timestamp)) + block.number
        )));
        return 1 + (seed - ((seed / _limit) * _limit));
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "TTC URI For Token Non-existent");
        if(!revealed) {
            return notRevealedUri;
        }
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ?
        string(abi.encodePacked(currentBaseURI,_tokenId.toString(),".json")) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"_address","type":"address[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxPreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreSaleSupply","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":[{"internalType":"address","name":"","type":"address"}],"name":"nftMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"raffleNumberGenerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPreSaleSupply","type":"uint256"}],"name":"setMaxPreSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedUri","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSalePrice","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSalePrice","type":"uint256"}],"name":"setPublicSalePrice","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":[],"name":"togglePauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleMode","outputs":[],"stateMutability":"nonpayable","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":"withdrawTotal","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff0219169083151502179055506000600a60036101000a81548160ff021916908315150217905550612710600b55610378600c55600a600d55670214e8348c4f0000600e5567027f7d0bdb920000600f55348015620000a657600080fd5b5060405162004d8b38038062004d8b8339818101604052810190620000cc919062000341565b81818160029080519060200190620000e69291906200021f565b508060039080519060200190620000ff9291906200021f565b50620001106200014860201b60201c565b6000819055505050620001386200012c6200015160201b60201c565b6200015960201b60201c565b6001600981905550505062000524565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022d9062000449565b90600052602060002090601f0160209004810192826200025157600085556200029d565b82601f106200026c57805160ff19168380011785556200029d565b828001600101855582156200029d579182015b828111156200029c5782518255916020019190600101906200027f565b5b509050620002ac9190620002b0565b5090565b5b80821115620002cb576000816000905550600101620002b1565b5090565b6000620002e6620002e084620003dd565b620003b4565b905082815260208101848484011115620002ff57600080fd5b6200030c84828562000413565b509392505050565b600082601f8301126200032657600080fd5b815162000338848260208601620002cf565b91505092915050565b600080604083850312156200035557600080fd5b600083015167ffffffffffffffff8111156200037057600080fd5b6200037e8582860162000314565b925050602083015167ffffffffffffffff8111156200039c57600080fd5b620003aa8582860162000314565b9150509250929050565b6000620003c0620003d3565b9050620003ce82826200047f565b919050565b6000604051905090565b600067ffffffffffffffff821115620003fb57620003fa620004e4565b5b620004068262000513565b9050602081019050919050565b60005b838110156200043357808201518184015260208101905062000416565b8381111562000443576000848401525b50505050565b600060028204905060018216806200046257607f821691505b60208210811415620004795762000478620004b5565b5b50919050565b6200048a8262000513565b810181811067ffffffffffffffff82111715620004ac57620004ab620004e4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61485780620005346000396000f3fe60806040526004361061024f5760003560e01c80637d7eee4211610139578063bc8893b4116100b6578063e757c17d1161007a578063e757c17d14610848578063e985e9c514610873578063f19e75d4146108b0578063f2c4ce1e146108d9578063f2fde38b14610902578063fad3f8f71461092b5761024f565b8063bc8893b414610761578063c1db06421461078c578063c87b56dd146107b5578063d5abeb01146107f2578063e0a59e2c1461081d5761024f565b80639b6860c8116100fd5780639b6860c8146106b1578063a22cb465146106dc578063a475b5dd14610705578063b3ab66b01461071c578063b88d4fde146107385761024f565b80637d7eee42146105f0578063844947081461061957806385974eb9146106445780638da5cb5b1461065b57806395d89b41146106865761024f565b806323b872dd116101d25780635c975abb116101965780635c975abb146104ef5780636352211e1461051a57806370a0823114610557578063715018a6146105945780637835c635146105ab578063791a2519146105c75761024f565b806323b872dd1461040c5780632f6f92b31461043557806342842e0e14610472578063518302271461049b57806355f804b3146104c65761024f565b8063081812fc11610219578063081812fc14610339578063081c8c4414610376578063095ea7b3146103a157806318160ddd146103ca57806318e06e82146103f55761024f565b80628803d314610254578062b6849f1461026b57806301ffc9a71461029457806306fdde03146102d157806307a2a8ef146102fc575b600080fd5b34801561026057600080fd5b50610269610956565b005b34801561027757600080fd5b50610292600480360381019061028d919061394b565b6109fe565b005b3480156102a057600080fd5b506102bb60048036038101906102b6919061398c565b610b56565b6040516102c89190613e50565b60405180910390f35b3480156102dd57600080fd5b506102e6610c38565b6040516102f39190613e6b565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613a64565b610cca565b604051610330919061400d565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613a64565b610dce565b60405161036d9190613de9565b60405180910390f35b34801561038257600080fd5b5061038b610e4a565b6040516103989190613e6b565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c3919061390f565b610ed8565b005b3480156103d657600080fd5b506103df610fe3565b6040516103ec919061400d565b60405180910390f35b34801561040157600080fd5b5061040a610ffa565b005b34801561041857600080fd5b50610433600480360381019061042e9190613809565b6110c5565b005b34801561044157600080fd5b5061045c600480360381019061045791906137a4565b6110d5565b604051610469919061400d565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613809565b6110ed565b005b3480156104a757600080fd5b506104b061110d565b6040516104bd9190613e50565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906139de565b611120565b005b3480156104fb57600080fd5b506105046111b2565b6040516105119190613e50565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190613a64565b6111c5565b60405161054e9190613de9565b60405180910390f35b34801561056357600080fd5b5061057e600480360381019061057991906137a4565b6111db565b60405161058b919061400d565b60405180910390f35b3480156105a057600080fd5b506105a96112ab565b005b6105c560048036038101906105c09190613a64565b611333565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190613a64565b61147c565b005b3480156105fc57600080fd5b5061061760048036038101906106129190613a64565b611502565b005b34801561062557600080fd5b5061062e611588565b60405161063b9190613e50565b60405180910390f35b34801561065057600080fd5b5061065961159b565b005b34801561066757600080fd5b5061067061166d565b60405161067d9190613de9565b60405180910390f35b34801561069257600080fd5b5061069b611697565b6040516106a89190613e6b565b60405180910390f35b3480156106bd57600080fd5b506106c6611729565b6040516106d3919061400d565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe91906138d3565b61172f565b005b34801561071157600080fd5b5061071a6118a7565b005b61073660048036038101906107319190613a64565b611940565b005b34801561074457600080fd5b5061075f600480360381019061075a9190613858565b6119f3565b005b34801561076d57600080fd5b50610776611a6f565b6040516107839190613e50565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613a64565b611a82565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613a64565b611b08565b6040516107e99190613e6b565b60405180910390f35b3480156107fe57600080fd5b50610807611c56565b604051610814919061400d565b60405180910390f35b34801561082957600080fd5b50610832611c5c565b60405161083f919061400d565b60405180910390f35b34801561085457600080fd5b5061085d611c62565b60405161086a919061400d565b60405180910390f35b34801561087f57600080fd5b5061089a600480360381019061089591906137cd565b611c68565b6040516108a79190613e50565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613a64565b611cfc565b005b3480156108e557600080fd5b5061090060048036038101906108fb9190613a23565b611ec8565b005b34801561090e57600080fd5b50610929600480360381019061092491906137a4565b611f5e565b005b34801561093757600080fd5b50610940612056565b60405161094d919061400d565b60405180910390f35b61095e61205c565b73ffffffffffffffffffffffffffffffffffffffff1661097c61166d565b73ffffffffffffffffffffffffffffffffffffffff16146109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c990613f0d565b60405180910390fd5b600a60029054906101000a900460ff1615600a60026101000a81548160ff021916908315150217905550565b610a0661205c565b73ffffffffffffffffffffffffffffffffffffffff16610a2461166d565b73ffffffffffffffffffffffffffffffffffffffff1614610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190613f0d565b60405180910390fd5b600b54610a988251610a8a610fe3565b61206490919063ffffffff16565b1115610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090613f4d565b60405180910390fd5b6000600190505b81518111610b5257610b3f82600183610af991906141ff565b81518110610b30577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600161207a565b8080610b4a9061435e565b915050610ae0565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c2157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c315750610c3082612098565b5b9050919050565b606060028054610c47906142fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c73906142fb565b8015610cc05780601f10610c9557610100808354040283529160200191610cc0565b820191906000526020600020905b815481529060010190602001808311610ca357829003601f168201915b5050505050905090565b600080434233604051602001610ce09190613d69565b6040516020818303038152906040528051906020012060001c610d039190614174565b454241604051602001610d169190613d84565b6040516020818303038152906040528051906020012060001c610d399190614174565b4442610d45919061411e565b610d4f919061411e565b610d59919061411e565b610d63919061411e565b610d6d919061411e565b604051602001610d7d9190613dce565b6040516020818303038152906040528051906020012060001c9050828382610da59190614174565b610daf91906141a5565b81610dba91906141ff565b6001610dc6919061411e565b915050919050565b6000610dd982612102565b610e0f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610e57906142fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e83906142fb565b8015610ed05780601f10610ea557610100808354040283529160200191610ed0565b820191906000526020600020905b815481529060010190602001808311610eb357829003601f168201915b505050505081565b6000610ee3826111c5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f4b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f6a61205c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f9c5750610f9a81610f9561205c565b611c68565b155b15610fd3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fde838383612150565b505050565b6000610fed612202565b6001546000540303905090565b61100261205c565b73ffffffffffffffffffffffffffffffffffffffff1661102061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90613f0d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110c1573d6000803e3d6000fd5b5050565b6110d083838361220b565b505050565b60126020528060005260406000206000915090505481565b611108838383604051806020016040528060008152506119f3565b505050565b600a60039054906101000a900460ff1681565b61112861205c565b73ffffffffffffffffffffffffffffffffffffffff1661114661166d565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613f0d565b60405180910390fd5b8181601091906111ad92919061341f565b505050565b600a60029054906101000a900460ff1681565b60006111d0826126c1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611243576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112b361205c565b73ffffffffffffffffffffffffffffffffffffffff166112d161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90613f0d565b60405180910390fd5b6113316000612950565b565b60026009541415611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090613fed565b60405180910390fd5b6002600981905550600a60009054906101000a900460ff166113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c790613f6d565b60405180910390fd5b600d5461142582601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461206490919063ffffffff16565b1115611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90613fad565b60405180910390fd5b611471816001612a16565b600160098190555050565b61148461205c565b73ffffffffffffffffffffffffffffffffffffffff166114a261166d565b73ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613f0d565b60405180910390fd5b80600f8190555050565b61150a61205c565b73ffffffffffffffffffffffffffffffffffffffff1661152861166d565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590613f0d565b60405180910390fd5b80600e8190555050565b600a60009054906101000a900460ff1681565b6115a361205c565b73ffffffffffffffffffffffffffffffffffffffff166115c161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613f0d565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116a6906142fb565b80601f01602080910402602001604051908101604052809291908181526020018280546116d2906142fb565b801561171f5780601f106116f45761010080835404028352916020019161171f565b820191906000526020600020905b81548152906001019060200180831161170257829003601f168201915b5050505050905090565b600f5481565b61173761205c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117a961205c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661185661205c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161189b9190613e50565b60405180910390a35050565b6118af61205c565b73ffffffffffffffffffffffffffffffffffffffff166118cd61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90613f0d565b60405180910390fd5b6001600a60036101000a81548160ff021916908315150217905550565b60026009541415611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90613fed565b60405180910390fd5b6002600981905550600a60019054906101000a900460ff166119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490613e8d565b60405180910390fd5b6119e8816000612a16565b600160098190555050565b6119fe84848461220b565b611a1d8373ffffffffffffffffffffffffffffffffffffffff16612c71565b8015611a325750611a3084848484612c94565b155b15611a69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a60019054906101000a900460ff1681565b611a8a61205c565b73ffffffffffffffffffffffffffffffffffffffff16611aa861166d565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590613f0d565b60405180910390fd5b80600c8190555050565b6060611b1382612102565b611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613f8d565b60405180910390fd5b600a60039054906101000a900460ff16611bf85760118054611b73906142fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9f906142fb565b8015611bec5780601f10611bc157610100808354040283529160200191611bec565b820191906000526020600020905b815481529060010190602001808311611bcf57829003601f168201915b50505050509050611c51565b6000611c02612df4565b90506000815111611c225760405180602001604052806000815250611c4d565b80611c2c84612e86565b604051602001611c3d929190613d9f565b6040516020818303038152906040525b9150505b919050565b600b5481565b600c5481565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d0461205c565b73ffffffffffffffffffffffffffffffffffffffff16611d2261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90613f0d565b60405180910390fd5b600a60029054906101000a900460ff1615611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613eed565b60405180910390fd5b600b54611de582611dd7610fe3565b61206490919063ffffffff16565b1115611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d90613f4d565b60405180910390fd5b611e7881601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461206490919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ec5338261207a565b50565b611ed061205c565b73ffffffffffffffffffffffffffffffffffffffff16611eee61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613f0d565b60405180910390fd5b8060119080519060200190611f5a9291906134a5565b5050565b611f6661205c565b73ffffffffffffffffffffffffffffffffffffffff16611f8461166d565b73ffffffffffffffffffffffffffffffffffffffff1614611fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd190613f0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561204a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204190613ead565b60405180910390fd5b61205381612950565b50565b600d5481565b600033905090565b60008183612072919061411e565b905092915050565b612094828260405180602001604052806000815250613033565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161210d612202565b1115801561211c575060005482105b8015612149575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612216826126c1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612281576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122a261205c565b73ffffffffffffffffffffffffffffffffffffffff1614806122d157506122d0856122cb61205c565b611c68565b5b8061231657506122df61205c565b73ffffffffffffffffffffffffffffffffffffffff166122fe84610dce565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061234f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123b6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123c38585856001613045565b6123cf60008487612150565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561264f57600054821461264e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126ba858585600161304b565b5050505050565b6126c961352b565b6000829050806126d7612202565b111580156126e6575060005481105b15612919576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161291757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127fb57809250505061294b565b5b60011561291657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461291157809250505061294b565b6127fc565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60029054906101000a900460ff1615612a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5d90613eed565b60405180910390fd5b600b54612a8383612a75610fe3565b61206490919063ffffffff16565b1115612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb90613f4d565b60405180910390fd5b8015612b7d57600c54612ae783612ad9610fe3565b61206490919063ffffffff16565b1115612b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1f90613f2d565b60405180910390fd5b3482600e54612b3791906141a5565b1115612b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6f90613ecd565b60405180910390fd5b612bce565b3482600f54612b8c91906141a5565b1115612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc490613fcd565b60405180910390fd5b5b612c2082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461206490919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c6d338361207a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cba61205c565b8786866040518563ffffffff1660e01b8152600401612cdc9493929190613e04565b602060405180830381600087803b158015612cf657600080fd5b505af1925050508015612d2757506040513d601f19601f82011682018060405250810190612d2491906139b5565b60015b612da1573d8060008114612d57576040519150601f19603f3d011682016040523d82523d6000602084013e612d5c565b606091505b50600081511415612d99576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060108054612e03906142fb565b80601f0160208091040260200160405190810160405280929190818152602001828054612e2f906142fb565b8015612e7c5780601f10612e5157610100808354040283529160200191612e7c565b820191906000526020600020905b815481529060010190602001808311612e5f57829003601f168201915b5050505050905090565b60606000821415612ece576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061302e565b600082905060005b60008214612f00578080612ee99061435e565b915050600a82612ef99190614174565b9150612ed6565b60008167ffffffffffffffff811115612f42577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f745781602001600182028036833780820191505090505b5090505b6000851461302757600182612f8d91906141ff565b9150600a85612f9c91906143e7565b6030612fa8919061411e565b60f81b818381518110612fe4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130209190614174565b9450612f78565b8093505050505b919050565b6130408383836001613051565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156130be576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156130f9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131066000868387613045565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156132d057506132cf8773ffffffffffffffffffffffffffffffffffffffff16612c71565b5b15613396575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133456000888480600101955088612c94565b61337b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156132d657826000541461339157600080fd5b613402565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613397575b816000819055505050613418600086838761304b565b5050505050565b82805461342b906142fb565b90600052602060002090601f01602090048101928261344d5760008555613494565b82601f1061346657803560ff1916838001178555613494565b82800160010185558215613494579182015b82811115613493578235825591602001919060010190613478565b5b5090506134a1919061356e565b5090565b8280546134b1906142fb565b90600052602060002090601f0160209004810192826134d3576000855561351a565b82601f106134ec57805160ff191683800117855561351a565b8280016001018555821561351a579182015b828111156135195782518255916020019190600101906134fe565b5b509050613527919061356e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561358757600081600090555060010161356f565b5090565b600061359e6135998461404d565b614028565b905080838252602082019050828560208602820111156135bd57600080fd5b60005b858110156135ed57816135d38882613673565b8452602084019350602083019250506001810190506135c0565b5050509392505050565b600061360a61360584614079565b614028565b90508281526020810184848401111561362257600080fd5b61362d8482856142b9565b509392505050565b6000613648613643846140aa565b614028565b90508281526020810184848401111561366057600080fd5b61366b8482856142b9565b509392505050565b600081359050613682816147c5565b92915050565b600082601f83011261369957600080fd5b81356136a984826020860161358b565b91505092915050565b6000813590506136c1816147dc565b92915050565b6000813590506136d6816147f3565b92915050565b6000815190506136eb816147f3565b92915050565b600082601f83011261370257600080fd5b81356137128482602086016135f7565b91505092915050565b60008083601f84011261372d57600080fd5b8235905067ffffffffffffffff81111561374657600080fd5b60208301915083600182028301111561375e57600080fd5b9250929050565b600082601f83011261377657600080fd5b8135613786848260208601613635565b91505092915050565b60008135905061379e8161480a565b92915050565b6000602082840312156137b657600080fd5b60006137c484828501613673565b91505092915050565b600080604083850312156137e057600080fd5b60006137ee85828601613673565b92505060206137ff85828601613673565b9150509250929050565b60008060006060848603121561381e57600080fd5b600061382c86828701613673565b935050602061383d86828701613673565b925050604061384e8682870161378f565b9150509250925092565b6000806000806080858703121561386e57600080fd5b600061387c87828801613673565b945050602061388d87828801613673565b935050604061389e8782880161378f565b925050606085013567ffffffffffffffff8111156138bb57600080fd5b6138c7878288016136f1565b91505092959194509250565b600080604083850312156138e657600080fd5b60006138f485828601613673565b9250506020613905858286016136b2565b9150509250929050565b6000806040838503121561392257600080fd5b600061393085828601613673565b92505060206139418582860161378f565b9150509250929050565b60006020828403121561395d57600080fd5b600082013567ffffffffffffffff81111561397757600080fd5b61398384828501613688565b91505092915050565b60006020828403121561399e57600080fd5b60006139ac848285016136c7565b91505092915050565b6000602082840312156139c757600080fd5b60006139d5848285016136dc565b91505092915050565b600080602083850312156139f157600080fd5b600083013567ffffffffffffffff811115613a0b57600080fd5b613a178582860161371b565b92509250509250929050565b600060208284031215613a3557600080fd5b600082013567ffffffffffffffff811115613a4f57600080fd5b613a5b84828501613765565b91505092915050565b600060208284031215613a7657600080fd5b6000613a848482850161378f565b91505092915050565b613a9e613a9982614245565b6143b9565b82525050565b613aad81614233565b82525050565b613ac4613abf82614233565b6143a7565b82525050565b613ad381614257565b82525050565b6000613ae4826140db565b613aee81856140f1565b9350613afe8185602086016142c8565b613b07816144d4565b840191505092915050565b6000613b1d826140e6565b613b278185614102565b9350613b378185602086016142c8565b613b40816144d4565b840191505092915050565b6000613b56826140e6565b613b608185614113565b9350613b708185602086016142c8565b80840191505092915050565b6000613b89601d83614102565b9150613b94826144f2565b602082019050919050565b6000613bac602683614102565b9150613bb78261451b565b604082019050919050565b6000613bcf602d83614102565b9150613bda8261456a565b604082019050919050565b6000613bf2600583614113565b9150613bfd826145b9565b600582019050919050565b6000613c15601583614102565b9150613c20826145e2565b602082019050919050565b6000613c38602083614102565b9150613c438261460b565b602082019050919050565b6000613c5b602283614102565b9150613c6682614634565b604082019050919050565b6000613c7e601a83614102565b9150613c8982614683565b602082019050919050565b6000613ca1601a83614102565b9150613cac826146ac565b602082019050919050565b6000613cc4601e83614102565b9150613ccf826146d5565b602082019050919050565b6000613ce7602a83614102565b9150613cf2826146fe565b604082019050919050565b6000613d0a603083614102565b9150613d158261474d565b604082019050919050565b6000613d2d601f83614102565b9150613d388261479c565b602082019050919050565b613d4c816142af565b82525050565b613d63613d5e826142af565b6143dd565b82525050565b6000613d758284613ab3565b60148201915081905092915050565b6000613d908284613a8d565b60148201915081905092915050565b6000613dab8285613b4b565b9150613db78284613b4b565b9150613dc282613be5565b91508190509392505050565b6000613dda8284613d52565b60208201915081905092915050565b6000602082019050613dfe6000830184613aa4565b92915050565b6000608082019050613e196000830187613aa4565b613e266020830186613aa4565b613e336040830185613d43565b8181036060830152613e458184613ad9565b905095945050505050565b6000602082019050613e656000830184613aca565b92915050565b60006020820190508181036000830152613e858184613b12565b905092915050565b60006020820190508181036000830152613ea681613b7c565b9050919050565b60006020820190508181036000830152613ec681613b9f565b9050919050565b60006020820190508181036000830152613ee681613bc2565b9050919050565b60006020820190508181036000830152613f0681613c08565b9050919050565b60006020820190508181036000830152613f2681613c2b565b9050919050565b60006020820190508181036000830152613f4681613c4e565b9050919050565b60006020820190508181036000830152613f6681613c71565b9050919050565b60006020820190508181036000830152613f8681613c94565b9050919050565b60006020820190508181036000830152613fa681613cb7565b9050919050565b60006020820190508181036000830152613fc681613cda565b9050919050565b60006020820190508181036000830152613fe681613cfd565b9050919050565b6000602082019050818103600083015261400681613d20565b9050919050565b60006020820190506140226000830184613d43565b92915050565b6000614032614043565b905061403e828261432d565b919050565b6000604051905090565b600067ffffffffffffffff821115614068576140676144a5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614094576140936144a5565b5b61409d826144d4565b9050602081019050919050565b600067ffffffffffffffff8211156140c5576140c46144a5565b5b6140ce826144d4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614129826142af565b9150614134836142af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561416957614168614418565b5b828201905092915050565b600061417f826142af565b915061418a836142af565b92508261419a57614199614447565b5b828204905092915050565b60006141b0826142af565b91506141bb836142af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141f4576141f3614418565b5b828202905092915050565b600061420a826142af565b9150614215836142af565b92508282101561422857614227614418565b5b828203905092915050565b600061423e8261428f565b9050919050565b60006142508261428f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142e65780820151818401526020810190506142cb565b838111156142f5576000848401525b50505050565b6000600282049050600182168061431357607f821691505b6020821081141561432757614326614476565b5b50919050565b614336826144d4565b810181811067ffffffffffffffff82111715614355576143546144a5565b5b80604052505050565b6000614369826142af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561439c5761439b614418565b5b600182019050919050565b60006143b2826143cb565b9050919050565b60006143c4826143cb565b9050919050565b60006143d6826144e5565b9050919050565b6000819050919050565b60006143f2826142af565b91506143fd836142af565b92508261440d5761440c614447565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f545443205075626c69632053616c65206973206e6f7420416374697665000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f545443204554482056616c75652053656e7420666f72205072652053616c652060008201527f6973206e6f7420656e6f75676800000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f545443204d696e74696e67206973205061757365640000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f545443204d6178696d756d2050726553616c6520537570706c7920526561636860008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f545443204d6178696d756d20537570706c792052656163686564000000000000600082015250565b7f545443205072652053616c65206973206e6f7420416374697665000000000000600082015250565b7f5454432055524920466f7220546f6b656e204e6f6e2d6578697374656e740000600082015250565b7f545443204d6178696d756d205072652053616c65204d696e74696e67204c696d60008201527f6974205265616368656400000000000000000000000000000000000000000000602082015250565b7f545443204554482056616c75652053656e7420666f72205075626c696320536160008201527f6c65206973206e6f7420656e6f75676800000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6147ce81614233565b81146147d957600080fd5b50565b6147e581614257565b81146147f057600080fd5b50565b6147fc81614263565b811461480757600080fd5b50565b614813816142af565b811461481e57600080fd5b5056fea26469706673582212202c7d1357a6b8fe47db48a87132a742da0ed93ba14ae6086341685b0343d7e48c64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e54686520546967657220436c616e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035454430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061024f5760003560e01c80637d7eee4211610139578063bc8893b4116100b6578063e757c17d1161007a578063e757c17d14610848578063e985e9c514610873578063f19e75d4146108b0578063f2c4ce1e146108d9578063f2fde38b14610902578063fad3f8f71461092b5761024f565b8063bc8893b414610761578063c1db06421461078c578063c87b56dd146107b5578063d5abeb01146107f2578063e0a59e2c1461081d5761024f565b80639b6860c8116100fd5780639b6860c8146106b1578063a22cb465146106dc578063a475b5dd14610705578063b3ab66b01461071c578063b88d4fde146107385761024f565b80637d7eee42146105f0578063844947081461061957806385974eb9146106445780638da5cb5b1461065b57806395d89b41146106865761024f565b806323b872dd116101d25780635c975abb116101965780635c975abb146104ef5780636352211e1461051a57806370a0823114610557578063715018a6146105945780637835c635146105ab578063791a2519146105c75761024f565b806323b872dd1461040c5780632f6f92b31461043557806342842e0e14610472578063518302271461049b57806355f804b3146104c65761024f565b8063081812fc11610219578063081812fc14610339578063081c8c4414610376578063095ea7b3146103a157806318160ddd146103ca57806318e06e82146103f55761024f565b80628803d314610254578062b6849f1461026b57806301ffc9a71461029457806306fdde03146102d157806307a2a8ef146102fc575b600080fd5b34801561026057600080fd5b50610269610956565b005b34801561027757600080fd5b50610292600480360381019061028d919061394b565b6109fe565b005b3480156102a057600080fd5b506102bb60048036038101906102b6919061398c565b610b56565b6040516102c89190613e50565b60405180910390f35b3480156102dd57600080fd5b506102e6610c38565b6040516102f39190613e6b565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613a64565b610cca565b604051610330919061400d565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613a64565b610dce565b60405161036d9190613de9565b60405180910390f35b34801561038257600080fd5b5061038b610e4a565b6040516103989190613e6b565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c3919061390f565b610ed8565b005b3480156103d657600080fd5b506103df610fe3565b6040516103ec919061400d565b60405180910390f35b34801561040157600080fd5b5061040a610ffa565b005b34801561041857600080fd5b50610433600480360381019061042e9190613809565b6110c5565b005b34801561044157600080fd5b5061045c600480360381019061045791906137a4565b6110d5565b604051610469919061400d565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613809565b6110ed565b005b3480156104a757600080fd5b506104b061110d565b6040516104bd9190613e50565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906139de565b611120565b005b3480156104fb57600080fd5b506105046111b2565b6040516105119190613e50565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190613a64565b6111c5565b60405161054e9190613de9565b60405180910390f35b34801561056357600080fd5b5061057e600480360381019061057991906137a4565b6111db565b60405161058b919061400d565b60405180910390f35b3480156105a057600080fd5b506105a96112ab565b005b6105c560048036038101906105c09190613a64565b611333565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190613a64565b61147c565b005b3480156105fc57600080fd5b5061061760048036038101906106129190613a64565b611502565b005b34801561062557600080fd5b5061062e611588565b60405161063b9190613e50565b60405180910390f35b34801561065057600080fd5b5061065961159b565b005b34801561066757600080fd5b5061067061166d565b60405161067d9190613de9565b60405180910390f35b34801561069257600080fd5b5061069b611697565b6040516106a89190613e6b565b60405180910390f35b3480156106bd57600080fd5b506106c6611729565b6040516106d3919061400d565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe91906138d3565b61172f565b005b34801561071157600080fd5b5061071a6118a7565b005b61073660048036038101906107319190613a64565b611940565b005b34801561074457600080fd5b5061075f600480360381019061075a9190613858565b6119f3565b005b34801561076d57600080fd5b50610776611a6f565b6040516107839190613e50565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613a64565b611a82565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613a64565b611b08565b6040516107e99190613e6b565b60405180910390f35b3480156107fe57600080fd5b50610807611c56565b604051610814919061400d565b60405180910390f35b34801561082957600080fd5b50610832611c5c565b60405161083f919061400d565b60405180910390f35b34801561085457600080fd5b5061085d611c62565b60405161086a919061400d565b60405180910390f35b34801561087f57600080fd5b5061089a600480360381019061089591906137cd565b611c68565b6040516108a79190613e50565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613a64565b611cfc565b005b3480156108e557600080fd5b5061090060048036038101906108fb9190613a23565b611ec8565b005b34801561090e57600080fd5b50610929600480360381019061092491906137a4565b611f5e565b005b34801561093757600080fd5b50610940612056565b60405161094d919061400d565b60405180910390f35b61095e61205c565b73ffffffffffffffffffffffffffffffffffffffff1661097c61166d565b73ffffffffffffffffffffffffffffffffffffffff16146109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c990613f0d565b60405180910390fd5b600a60029054906101000a900460ff1615600a60026101000a81548160ff021916908315150217905550565b610a0661205c565b73ffffffffffffffffffffffffffffffffffffffff16610a2461166d565b73ffffffffffffffffffffffffffffffffffffffff1614610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190613f0d565b60405180910390fd5b600b54610a988251610a8a610fe3565b61206490919063ffffffff16565b1115610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090613f4d565b60405180910390fd5b6000600190505b81518111610b5257610b3f82600183610af991906141ff565b81518110610b30577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600161207a565b8080610b4a9061435e565b915050610ae0565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c2157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c315750610c3082612098565b5b9050919050565b606060028054610c47906142fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c73906142fb565b8015610cc05780601f10610c9557610100808354040283529160200191610cc0565b820191906000526020600020905b815481529060010190602001808311610ca357829003601f168201915b5050505050905090565b600080434233604051602001610ce09190613d69565b6040516020818303038152906040528051906020012060001c610d039190614174565b454241604051602001610d169190613d84565b6040516020818303038152906040528051906020012060001c610d399190614174565b4442610d45919061411e565b610d4f919061411e565b610d59919061411e565b610d63919061411e565b610d6d919061411e565b604051602001610d7d9190613dce565b6040516020818303038152906040528051906020012060001c9050828382610da59190614174565b610daf91906141a5565b81610dba91906141ff565b6001610dc6919061411e565b915050919050565b6000610dd982612102565b610e0f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610e57906142fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e83906142fb565b8015610ed05780601f10610ea557610100808354040283529160200191610ed0565b820191906000526020600020905b815481529060010190602001808311610eb357829003601f168201915b505050505081565b6000610ee3826111c5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f4b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f6a61205c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f9c5750610f9a81610f9561205c565b611c68565b155b15610fd3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fde838383612150565b505050565b6000610fed612202565b6001546000540303905090565b61100261205c565b73ffffffffffffffffffffffffffffffffffffffff1661102061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90613f0d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110c1573d6000803e3d6000fd5b5050565b6110d083838361220b565b505050565b60126020528060005260406000206000915090505481565b611108838383604051806020016040528060008152506119f3565b505050565b600a60039054906101000a900460ff1681565b61112861205c565b73ffffffffffffffffffffffffffffffffffffffff1661114661166d565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613f0d565b60405180910390fd5b8181601091906111ad92919061341f565b505050565b600a60029054906101000a900460ff1681565b60006111d0826126c1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611243576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112b361205c565b73ffffffffffffffffffffffffffffffffffffffff166112d161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90613f0d565b60405180910390fd5b6113316000612950565b565b60026009541415611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090613fed565b60405180910390fd5b6002600981905550600a60009054906101000a900460ff166113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c790613f6d565b60405180910390fd5b600d5461142582601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461206490919063ffffffff16565b1115611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90613fad565b60405180910390fd5b611471816001612a16565b600160098190555050565b61148461205c565b73ffffffffffffffffffffffffffffffffffffffff166114a261166d565b73ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613f0d565b60405180910390fd5b80600f8190555050565b61150a61205c565b73ffffffffffffffffffffffffffffffffffffffff1661152861166d565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590613f0d565b60405180910390fd5b80600e8190555050565b600a60009054906101000a900460ff1681565b6115a361205c565b73ffffffffffffffffffffffffffffffffffffffff166115c161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613f0d565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116a6906142fb565b80601f01602080910402602001604051908101604052809291908181526020018280546116d2906142fb565b801561171f5780601f106116f45761010080835404028352916020019161171f565b820191906000526020600020905b81548152906001019060200180831161170257829003601f168201915b5050505050905090565b600f5481565b61173761205c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117a961205c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661185661205c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161189b9190613e50565b60405180910390a35050565b6118af61205c565b73ffffffffffffffffffffffffffffffffffffffff166118cd61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90613f0d565b60405180910390fd5b6001600a60036101000a81548160ff021916908315150217905550565b60026009541415611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90613fed565b60405180910390fd5b6002600981905550600a60019054906101000a900460ff166119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490613e8d565b60405180910390fd5b6119e8816000612a16565b600160098190555050565b6119fe84848461220b565b611a1d8373ffffffffffffffffffffffffffffffffffffffff16612c71565b8015611a325750611a3084848484612c94565b155b15611a69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a60019054906101000a900460ff1681565b611a8a61205c565b73ffffffffffffffffffffffffffffffffffffffff16611aa861166d565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590613f0d565b60405180910390fd5b80600c8190555050565b6060611b1382612102565b611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613f8d565b60405180910390fd5b600a60039054906101000a900460ff16611bf85760118054611b73906142fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9f906142fb565b8015611bec5780601f10611bc157610100808354040283529160200191611bec565b820191906000526020600020905b815481529060010190602001808311611bcf57829003601f168201915b50505050509050611c51565b6000611c02612df4565b90506000815111611c225760405180602001604052806000815250611c4d565b80611c2c84612e86565b604051602001611c3d929190613d9f565b6040516020818303038152906040525b9150505b919050565b600b5481565b600c5481565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d0461205c565b73ffffffffffffffffffffffffffffffffffffffff16611d2261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90613f0d565b60405180910390fd5b600a60029054906101000a900460ff1615611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613eed565b60405180910390fd5b600b54611de582611dd7610fe3565b61206490919063ffffffff16565b1115611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d90613f4d565b60405180910390fd5b611e7881601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461206490919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ec5338261207a565b50565b611ed061205c565b73ffffffffffffffffffffffffffffffffffffffff16611eee61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613f0d565b60405180910390fd5b8060119080519060200190611f5a9291906134a5565b5050565b611f6661205c565b73ffffffffffffffffffffffffffffffffffffffff16611f8461166d565b73ffffffffffffffffffffffffffffffffffffffff1614611fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd190613f0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561204a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204190613ead565b60405180910390fd5b61205381612950565b50565b600d5481565b600033905090565b60008183612072919061411e565b905092915050565b612094828260405180602001604052806000815250613033565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161210d612202565b1115801561211c575060005482105b8015612149575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612216826126c1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612281576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122a261205c565b73ffffffffffffffffffffffffffffffffffffffff1614806122d157506122d0856122cb61205c565b611c68565b5b8061231657506122df61205c565b73ffffffffffffffffffffffffffffffffffffffff166122fe84610dce565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061234f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123b6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123c38585856001613045565b6123cf60008487612150565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561264f57600054821461264e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126ba858585600161304b565b5050505050565b6126c961352b565b6000829050806126d7612202565b111580156126e6575060005481105b15612919576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161291757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127fb57809250505061294b565b5b60011561291657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461291157809250505061294b565b6127fc565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60029054906101000a900460ff1615612a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5d90613eed565b60405180910390fd5b600b54612a8383612a75610fe3565b61206490919063ffffffff16565b1115612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb90613f4d565b60405180910390fd5b8015612b7d57600c54612ae783612ad9610fe3565b61206490919063ffffffff16565b1115612b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1f90613f2d565b60405180910390fd5b3482600e54612b3791906141a5565b1115612b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6f90613ecd565b60405180910390fd5b612bce565b3482600f54612b8c91906141a5565b1115612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc490613fcd565b60405180910390fd5b5b612c2082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461206490919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c6d338361207a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cba61205c565b8786866040518563ffffffff1660e01b8152600401612cdc9493929190613e04565b602060405180830381600087803b158015612cf657600080fd5b505af1925050508015612d2757506040513d601f19601f82011682018060405250810190612d2491906139b5565b60015b612da1573d8060008114612d57576040519150601f19603f3d011682016040523d82523d6000602084013e612d5c565b606091505b50600081511415612d99576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060108054612e03906142fb565b80601f0160208091040260200160405190810160405280929190818152602001828054612e2f906142fb565b8015612e7c5780601f10612e5157610100808354040283529160200191612e7c565b820191906000526020600020905b815481529060010190602001808311612e5f57829003601f168201915b5050505050905090565b60606000821415612ece576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061302e565b600082905060005b60008214612f00578080612ee99061435e565b915050600a82612ef99190614174565b9150612ed6565b60008167ffffffffffffffff811115612f42577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f745781602001600182028036833780820191505090505b5090505b6000851461302757600182612f8d91906141ff565b9150600a85612f9c91906143e7565b6030612fa8919061411e565b60f81b818381518110612fe4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130209190614174565b9450612f78565b8093505050505b919050565b6130408383836001613051565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156130be576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156130f9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131066000868387613045565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156132d057506132cf8773ffffffffffffffffffffffffffffffffffffffff16612c71565b5b15613396575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133456000888480600101955088612c94565b61337b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156132d657826000541461339157600080fd5b613402565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613397575b816000819055505050613418600086838761304b565b5050505050565b82805461342b906142fb565b90600052602060002090601f01602090048101928261344d5760008555613494565b82601f1061346657803560ff1916838001178555613494565b82800160010185558215613494579182015b82811115613493578235825591602001919060010190613478565b5b5090506134a1919061356e565b5090565b8280546134b1906142fb565b90600052602060002090601f0160209004810192826134d3576000855561351a565b82601f106134ec57805160ff191683800117855561351a565b8280016001018555821561351a579182015b828111156135195782518255916020019190600101906134fe565b5b509050613527919061356e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561358757600081600090555060010161356f565b5090565b600061359e6135998461404d565b614028565b905080838252602082019050828560208602820111156135bd57600080fd5b60005b858110156135ed57816135d38882613673565b8452602084019350602083019250506001810190506135c0565b5050509392505050565b600061360a61360584614079565b614028565b90508281526020810184848401111561362257600080fd5b61362d8482856142b9565b509392505050565b6000613648613643846140aa565b614028565b90508281526020810184848401111561366057600080fd5b61366b8482856142b9565b509392505050565b600081359050613682816147c5565b92915050565b600082601f83011261369957600080fd5b81356136a984826020860161358b565b91505092915050565b6000813590506136c1816147dc565b92915050565b6000813590506136d6816147f3565b92915050565b6000815190506136eb816147f3565b92915050565b600082601f83011261370257600080fd5b81356137128482602086016135f7565b91505092915050565b60008083601f84011261372d57600080fd5b8235905067ffffffffffffffff81111561374657600080fd5b60208301915083600182028301111561375e57600080fd5b9250929050565b600082601f83011261377657600080fd5b8135613786848260208601613635565b91505092915050565b60008135905061379e8161480a565b92915050565b6000602082840312156137b657600080fd5b60006137c484828501613673565b91505092915050565b600080604083850312156137e057600080fd5b60006137ee85828601613673565b92505060206137ff85828601613673565b9150509250929050565b60008060006060848603121561381e57600080fd5b600061382c86828701613673565b935050602061383d86828701613673565b925050604061384e8682870161378f565b9150509250925092565b6000806000806080858703121561386e57600080fd5b600061387c87828801613673565b945050602061388d87828801613673565b935050604061389e8782880161378f565b925050606085013567ffffffffffffffff8111156138bb57600080fd5b6138c7878288016136f1565b91505092959194509250565b600080604083850312156138e657600080fd5b60006138f485828601613673565b9250506020613905858286016136b2565b9150509250929050565b6000806040838503121561392257600080fd5b600061393085828601613673565b92505060206139418582860161378f565b9150509250929050565b60006020828403121561395d57600080fd5b600082013567ffffffffffffffff81111561397757600080fd5b61398384828501613688565b91505092915050565b60006020828403121561399e57600080fd5b60006139ac848285016136c7565b91505092915050565b6000602082840312156139c757600080fd5b60006139d5848285016136dc565b91505092915050565b600080602083850312156139f157600080fd5b600083013567ffffffffffffffff811115613a0b57600080fd5b613a178582860161371b565b92509250509250929050565b600060208284031215613a3557600080fd5b600082013567ffffffffffffffff811115613a4f57600080fd5b613a5b84828501613765565b91505092915050565b600060208284031215613a7657600080fd5b6000613a848482850161378f565b91505092915050565b613a9e613a9982614245565b6143b9565b82525050565b613aad81614233565b82525050565b613ac4613abf82614233565b6143a7565b82525050565b613ad381614257565b82525050565b6000613ae4826140db565b613aee81856140f1565b9350613afe8185602086016142c8565b613b07816144d4565b840191505092915050565b6000613b1d826140e6565b613b278185614102565b9350613b378185602086016142c8565b613b40816144d4565b840191505092915050565b6000613b56826140e6565b613b608185614113565b9350613b708185602086016142c8565b80840191505092915050565b6000613b89601d83614102565b9150613b94826144f2565b602082019050919050565b6000613bac602683614102565b9150613bb78261451b565b604082019050919050565b6000613bcf602d83614102565b9150613bda8261456a565b604082019050919050565b6000613bf2600583614113565b9150613bfd826145b9565b600582019050919050565b6000613c15601583614102565b9150613c20826145e2565b602082019050919050565b6000613c38602083614102565b9150613c438261460b565b602082019050919050565b6000613c5b602283614102565b9150613c6682614634565b604082019050919050565b6000613c7e601a83614102565b9150613c8982614683565b602082019050919050565b6000613ca1601a83614102565b9150613cac826146ac565b602082019050919050565b6000613cc4601e83614102565b9150613ccf826146d5565b602082019050919050565b6000613ce7602a83614102565b9150613cf2826146fe565b604082019050919050565b6000613d0a603083614102565b9150613d158261474d565b604082019050919050565b6000613d2d601f83614102565b9150613d388261479c565b602082019050919050565b613d4c816142af565b82525050565b613d63613d5e826142af565b6143dd565b82525050565b6000613d758284613ab3565b60148201915081905092915050565b6000613d908284613a8d565b60148201915081905092915050565b6000613dab8285613b4b565b9150613db78284613b4b565b9150613dc282613be5565b91508190509392505050565b6000613dda8284613d52565b60208201915081905092915050565b6000602082019050613dfe6000830184613aa4565b92915050565b6000608082019050613e196000830187613aa4565b613e266020830186613aa4565b613e336040830185613d43565b8181036060830152613e458184613ad9565b905095945050505050565b6000602082019050613e656000830184613aca565b92915050565b60006020820190508181036000830152613e858184613b12565b905092915050565b60006020820190508181036000830152613ea681613b7c565b9050919050565b60006020820190508181036000830152613ec681613b9f565b9050919050565b60006020820190508181036000830152613ee681613bc2565b9050919050565b60006020820190508181036000830152613f0681613c08565b9050919050565b60006020820190508181036000830152613f2681613c2b565b9050919050565b60006020820190508181036000830152613f4681613c4e565b9050919050565b60006020820190508181036000830152613f6681613c71565b9050919050565b60006020820190508181036000830152613f8681613c94565b9050919050565b60006020820190508181036000830152613fa681613cb7565b9050919050565b60006020820190508181036000830152613fc681613cda565b9050919050565b60006020820190508181036000830152613fe681613cfd565b9050919050565b6000602082019050818103600083015261400681613d20565b9050919050565b60006020820190506140226000830184613d43565b92915050565b6000614032614043565b905061403e828261432d565b919050565b6000604051905090565b600067ffffffffffffffff821115614068576140676144a5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614094576140936144a5565b5b61409d826144d4565b9050602081019050919050565b600067ffffffffffffffff8211156140c5576140c46144a5565b5b6140ce826144d4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614129826142af565b9150614134836142af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561416957614168614418565b5b828201905092915050565b600061417f826142af565b915061418a836142af565b92508261419a57614199614447565b5b828204905092915050565b60006141b0826142af565b91506141bb836142af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141f4576141f3614418565b5b828202905092915050565b600061420a826142af565b9150614215836142af565b92508282101561422857614227614418565b5b828203905092915050565b600061423e8261428f565b9050919050565b60006142508261428f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142e65780820151818401526020810190506142cb565b838111156142f5576000848401525b50505050565b6000600282049050600182168061431357607f821691505b6020821081141561432757614326614476565b5b50919050565b614336826144d4565b810181811067ffffffffffffffff82111715614355576143546144a5565b5b80604052505050565b6000614369826142af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561439c5761439b614418565b5b600182019050919050565b60006143b2826143cb565b9050919050565b60006143c4826143cb565b9050919050565b60006143d6826144e5565b9050919050565b6000819050919050565b60006143f2826142af565b91506143fd836142af565b92508261440d5761440c614447565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f545443205075626c69632053616c65206973206e6f7420416374697665000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f545443204554482056616c75652053656e7420666f72205072652053616c652060008201527f6973206e6f7420656e6f75676800000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f545443204d696e74696e67206973205061757365640000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f545443204d6178696d756d2050726553616c6520537570706c7920526561636860008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f545443204d6178696d756d20537570706c792052656163686564000000000000600082015250565b7f545443205072652053616c65206973206e6f7420416374697665000000000000600082015250565b7f5454432055524920466f7220546f6b656e204e6f6e2d6578697374656e740000600082015250565b7f545443204d6178696d756d205072652053616c65204d696e74696e67204c696d60008201527f6974205265616368656400000000000000000000000000000000000000000000602082015250565b7f545443204554482056616c75652053656e7420666f72205075626c696320536160008201527f6c65206973206e6f7420656e6f75676800000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6147ce81614233565b81146147d957600080fd5b50565b6147e581614257565b81146147f057600080fd5b50565b6147fc81614263565b811461480757600080fd5b50565b614813816142af565b811461481e57600080fd5b5056fea26469706673582212202c7d1357a6b8fe47db48a87132a742da0ed93ba14ae6086341685b0343d7e48c64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e54686520546967657220436c616e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035454430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): The Tiger Clan
Arg [1] : symbol (string): TTC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 54686520546967657220436c616e000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5454430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

77365:4763:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79948:82;;;;;;;;;;;;;:::i;:::-;;80581:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37838:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40951:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81231:459;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42454:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77908:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42017:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37087:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80940:147;;;;;;;;;;;;;:::i;:::-;;43319:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77945:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43560:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77614:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79829:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77582:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40759:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38207:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14516:103;;;;;;;;;;;;;:::i;:::-;;78217:283;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80447:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80325:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77498:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80038:141;;;;;;;;;;;;;:::i;:::-;;13865:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41120:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77818:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42730:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80861:71;;;;;;;;;;;;;:::i;:::-;;78508:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43816:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77537:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80187:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81698:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77651:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77690:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77771:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43088:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78695:314;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81095:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14774:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77734:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79948:82;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80016:6:::1;;;;;;;;;;;80015:7;80006:6;;:16;;;;;;;;;;;;;;;;;;79948:82::o:0;80581:272::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80701:9:::1;;80663:34;80681:8;:15;80663:13;:11;:13::i;:::-;:17;;:34;;;;:::i;:::-;:47;;80655:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;80756:6;80763:1;80756:8;;80752:94;80771:8;:15;80766:1;:20;80752:94;;80807:27;80817:8;80828:1;80826;:3;;;;:::i;:::-;80817:13;;;;;;;;;;;;;;;;;;;;;;80832:1;80807:9;:27::i;:::-;80788:3;;;;;:::i;:::-;;;;80752:94;;;;80581:272:::0;:::o;37838:305::-;37940:4;37992:25;37977:40;;;:11;:40;;;;:105;;;;38049:33;38034:48;;;:11;:48;;;;37977:105;:158;;;;38099:36;38123:11;38099:23;:36::i;:::-;37977:158;37957:178;;37838:305;;;:::o;40951:100::-;41005:13;41038:5;41031:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40951:100;:::o;81231:459::-;81295:7;81315:12;81600;81580:15;81562:10;81545:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;81535:39;;;;;;81527:48;;81526:70;;;;:::i;:::-;81508:14;81475:15;81453:14;81436:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;81426:43;;;;;;81418:52;;81417:74;;;;:::i;:::-;81397:16;81379:15;:34;;;;:::i;:::-;:113;;;;:::i;:::-;:143;;;;:::i;:::-;:218;;;;:::i;:::-;:233;;;;:::i;:::-;81348:275;;;;;;;;:::i;:::-;;;;;;;;;;;;;81338:286;;;;;;81330:295;;81315:310;;81674:6;81664;81657:4;:13;;;;:::i;:::-;81656:24;;;;:::i;:::-;81648:4;:33;;;;:::i;:::-;81643:1;:39;;;;:::i;:::-;81636:46;;;81231:459;;;:::o;42454:204::-;42522:7;42547:16;42555:7;42547;:16::i;:::-;42542:64;;42572:34;;;;;;;;;;;;;;42542:64;42626:15;:24;42642:7;42626:24;;;;;;;;;;;;;;;;;;;;;42619:31;;42454:204;;;:::o;77908:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42017:371::-;42090:13;42106:24;42122:7;42106:15;:24::i;:::-;42090:40;;42151:5;42145:11;;:2;:11;;;42141:48;;;42165:24;;;;;;;;;;;;;;42141:48;42222:5;42206:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;42232:37;42249:5;42256:12;:10;:12::i;:::-;42232:16;:37::i;:::-;42231:38;42206:63;42202:138;;;42293:35;;;;;;;;;;;;;;42202:138;42352:28;42361:2;42365:7;42374:5;42352:8;:28::i;:::-;42017:371;;;:::o;37087:303::-;37131:7;37356:15;:13;:15::i;:::-;37341:12;;37325:13;;:28;:46;37318:53;;37087:303;:::o;80940:147::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80995:12:::1;81010:21;80995:36;;81050:10;81042:28;;:37;81071:7;81042:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;14156:1;80940:147::o:0;43319:170::-;43453:28;43463:4;43469:2;43473:7;43453:9;:28::i;:::-;43319:170;;;:::o;77945:44::-;;;;;;;;;;;;;;;;;:::o;43560:185::-;43698:39;43715:4;43721:2;43725:7;43698:39;;;;;;;;;;;;:16;:39::i;:::-;43560:185;;;:::o;77614:28::-;;;;;;;;;;;;;:::o;79829:111::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79924:8:::1;;79905:16;:27;;;;;;;:::i;:::-;;79829:111:::0;;:::o;77582:25::-;;;;;;;;;;;;;:::o;40759:125::-;40823:7;40850:21;40863:7;40850:12;:21::i;:::-;:26;;;40843:33;;40759:125;;;:::o;38207:206::-;38271:7;38312:1;38295:19;;:5;:19;;;38291:60;;;38323:28;;;;;;;;;;;;;;38291:60;38377:12;:19;38390:5;38377:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;38369:36;;38362:43;;38207:206;;;:::o;14516:103::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14581:30:::1;14608:1;14581:18;:30::i;:::-;14516:103::o:0;78217:283::-;8839:1;9437:7;;:19;;9429:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8839:1;9570:7;:18;;;;78304:13:::1;;;;;;;;;;;78296:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;78405:10;;78367:34;78393:7;78367:9;:21;78377:10;78367:21;;;;;;;;;;;;;;;;:25;;:34;;;;:::i;:::-;:48;;78359:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;78473:19;78478:7;78487:4;78473;:19::i;:::-;8795:1:::0;9749:7;:22;;;;78217:283;:::o;80447:126::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80549:16:::1;80531:15;:34;;;;80447:126:::0;:::o;80325:114::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80418:13:::1;80403:12;:28;;;;80325:114:::0;:::o;77498:32::-;;;;;;;;;;;;;:::o;80038:141::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80111:13:::1;;;;;;;;;;;80110:14;80094:13;;:30;;;;;;;;;;;;;;;;;;80155:16;;;;;;;;;;;80154:17;80135:16;;:36;;;;;;;;;;;;;;;;;;80038:141::o:0;13865:87::-;13911:7;13938:6;;;;;;;;;;;13931:13;;13865:87;:::o;41120:104::-;41176:13;41209:7;41202:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41120:104;:::o;77818:43::-;;;;:::o;42730:287::-;42841:12;:10;:12::i;:::-;42829:24;;:8;:24;;;42825:54;;;42862:17;;;;;;;;;;;;;;42825:54;42937:8;42892:18;:32;42911:12;:10;:12::i;:::-;42892:32;;;;;;;;;;;;;;;:42;42925:8;42892:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;42990:8;42961:48;;42976:12;:10;:12::i;:::-;42961:48;;;43000:8;42961:48;;;;;;:::i;:::-;;;;;;;;42730:287;;:::o;80861:71::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80920:4:::1;80909:8;;:15;;;;;;;;;;;;;;;;;;80861:71::o:0;78508:179::-;8839:1;9437:7;;:19;;9429:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8839:1;9570:7;:18;;;;78598:16:::1;;;;;;;;;;;78590:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;78659:20;78664:7;78673:5;78659:4;:20::i;:::-;8795:1:::0;9749:7;:22;;;;78508:179;:::o;43816:369::-;43983:28;43993:4;43999:2;44003:7;43983:9;:28::i;:::-;44026:15;:2;:13;;;:15::i;:::-;:76;;;;;44046:56;44077:4;44083:2;44087:7;44096:5;44046:30;:56::i;:::-;44045:57;44026:76;44022:156;;;44126:40;;;;;;;;;;;;;;44022:156;43816:369;;;;:::o;77537:36::-;;;;;;;;;;;;;:::o;80187:130::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80292:17:::1;80273:16;:36;;;;80187:130:::0;:::o;81698:427::-;81772:13;81806:17;81814:8;81806:7;:17::i;:::-;81798:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;81873:8;;;;;;;;;;;81869:62;;81905:14;81898:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81869:62;81941:28;81972:10;:8;:10::i;:::-;81941:41;;82031:1;82006:14;82000:28;:32;:117;;;;;;;;;;;;;;;;;82068:14;82083:19;:8;:17;:19::i;:::-;82051:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82000:117;81993:124;;;81698:427;;;;:::o;77651:32::-;;;;:::o;77690:37::-;;;;:::o;77771:40::-;;;;:::o;43088:164::-;43185:4;43209:18;:25;43228:5;43209:25;;;;;;;;;;;;;;;:35;43235:8;43209:35;;;;;;;;;;;;;;;;;;;;;;;;;43202:42;;43088:164;;;;:::o;78695:314::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78770:6:::1;;;;;;;;;;;78769:7;78761:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;78851:9;;78821:26;78839:7;78821:13;:11;:13::i;:::-;:17;;:26;;;;:::i;:::-;:39;;78813:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;78926:34;78952:7;78926:9;:21;78936:10;78926:21;;;;;;;;;;;;;;;;:25;;:34;;;;:::i;:::-;78902:9;:21;78912:10;78902:21;;;;;;;;;;;;;;;:58;;;;78971:30;78981:10;78993:7;78971:9;:30::i;:::-;78695:314:::0;:::o;81095:128::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81200:15:::1;81183:14;:32;;;;;;;;;;;;:::i;:::-;;81095:128:::0;:::o;14774:201::-;14096:12;:10;:12::i;:::-;14085:23;;:7;:5;:7::i;:::-;:23;;;14077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14883:1:::1;14863:22;;:8;:22;;;;14855:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14939:28;14958:8;14939:18;:28::i;:::-;14774:201:::0;:::o;77734:30::-;;;;:::o;12589:98::-;12642:7;12669:10;12662:17;;12589:98;:::o;2862:::-;2920:7;2951:1;2947;:5;;;;:::i;:::-;2940:12;;2862:98;;;;:::o;44622:104::-;44691:27;44701:2;44705:8;44691:27;;;;;;;;;;;;:9;:27::i;:::-;44622:104;;:::o;26649:157::-;26734:4;26773:25;26758:40;;;:11;:40;;;;26751:47;;26649:157;;;:::o;44440:174::-;44497:4;44540:7;44521:15;:13;:15::i;:::-;:26;;:53;;;;;44561:13;;44551:7;:23;44521:53;:85;;;;;44579:11;:20;44591:7;44579:20;;;;;;;;;;;:27;;;;;;;;;;;;44578:28;44521:85;44514:92;;44440:174;;;:::o;52597:196::-;52739:2;52712:15;:24;52728:7;52712:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52777:7;52773:2;52757:28;;52766:5;52757:28;;;;;;;;;;;;52597:196;;;:::o;78108:101::-;78173:7;78200:1;78193:8;;78108:101;:::o;47540:2130::-;47655:35;47693:21;47706:7;47693:12;:21::i;:::-;47655:59;;47753:4;47731:26;;:13;:18;;;:26;;;47727:67;;47766:28;;;;;;;;;;;;;;47727:67;47807:22;47849:4;47833:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;47870:36;47887:4;47893:12;:10;:12::i;:::-;47870:16;:36::i;:::-;47833:73;:126;;;;47947:12;:10;:12::i;:::-;47923:36;;:20;47935:7;47923:11;:20::i;:::-;:36;;;47833:126;47807:153;;47978:17;47973:66;;48004:35;;;;;;;;;;;;;;47973:66;48068:1;48054:16;;:2;:16;;;48050:52;;;48079:23;;;;;;;;;;;;;;48050:52;48115:43;48137:4;48143:2;48147:7;48156:1;48115:21;:43::i;:::-;48223:35;48240:1;48244:7;48253:4;48223:8;:35::i;:::-;48584:1;48554:12;:18;48567:4;48554:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48628:1;48600:12;:16;48613:2;48600:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48646:31;48680:11;:20;48692:7;48680:20;;;;;;;;;;;48646:54;;48731:2;48715:8;:13;;;:18;;;;;;;;;;;;;;;;;;48781:15;48748:8;:23;;;:49;;;;;;;;;;;;;;;;;;49049:19;49081:1;49071:7;:11;49049:33;;49097:31;49131:11;:24;49143:11;49131:24;;;;;;;;;;;49097:58;;49199:1;49174:27;;:8;:13;;;;;;;;;;;;:27;;;49170:384;;;49384:13;;49369:11;:28;49365:174;;49438:4;49422:8;:13;;;:20;;;;;;;;;;;;;;;;;;49491:13;:28;;;49465:8;:23;;;:54;;;;;;;;;;;;;;;;;;49365:174;49170:384;47540:2130;;;49601:7;49597:2;49582:27;;49591:4;49582:27;;;;;;;;;;;;49620:42;49641:4;49647:2;49651:7;49660:1;49620:20;:42::i;:::-;47540:2130;;;;;:::o;39588:1109::-;39650:21;;:::i;:::-;39684:12;39699:7;39684:22;;39767:4;39748:15;:13;:15::i;:::-;:23;;:47;;;;;39782:13;;39775:4;:20;39748:47;39744:886;;;39816:31;39850:11;:17;39862:4;39850:17;;;;;;;;;;;39816:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39891:9;:16;;;39886:729;;39962:1;39936:28;;:9;:14;;;:28;;;39932:101;;40000:9;39993:16;;;;;;39932:101;40335:261;40342:4;40335:261;;;40375:6;;;;;;;;40420:11;:17;40432:4;40420:17;;;;;;;;;;;40408:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40494:1;40468:28;;:9;:14;;;:28;;;40464:109;;40536:9;40529:16;;;;;;40464:109;40335:261;;;39886:729;39744:886;;40658:31;;;;;;;;;;;;;;39588:1109;;;;:::o;15135:191::-;15209:16;15228:6;;;;;;;;;;;15209:25;;15254:8;15245:6;;:17;;;;;;;;;;;;;;;;;;15309:8;15278:40;;15299:8;15278:40;;;;;;;;;;;;15135:191;;:::o;79017:680::-;79088:6;;;;;;;;;;;79087:7;79079:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;79168:9;;79139:25;79157:6;79139:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:38;;79131:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;79222:5;79219:363;;;79281:16;;79252:25;79270:6;79252:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:45;;79244:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;79382:9;79372:6;79359:12;;:19;;;;:::i;:::-;:32;;79351:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;79219:363;;;79508:9;79498:6;79482:15;;:22;;;;:::i;:::-;:35;;79474:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;79219:363;79616:33;79642:6;79616:9;:21;79626:10;79616:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;79592:9;:21;79602:10;79592:21;;;;;;;;;;;;;;;:57;;;;79660:29;79670:10;79682:6;79660:9;:29::i;:::-;79017:680;;:::o;16566:326::-;16626:4;16883:1;16861:7;:19;;;:23;16854:30;;16566:326;;;:::o;53285:667::-;53448:4;53485:2;53469:36;;;53506:12;:10;:12::i;:::-;53520:4;53526:7;53535:5;53469:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53465:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53720:1;53703:6;:13;:18;53699:235;;;53749:40;;;;;;;;;;;;;;53699:235;53892:6;53886:13;53877:6;53873:2;53869:15;53862:38;53465:480;53598:45;;;53588:55;;;:6;:55;;;;53581:62;;;53285:667;;;;;;:::o;79705:116::-;79765:13;79797:16;79790:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79705:116;:::o;10151:723::-;10207:13;10437:1;10428:5;:10;10424:53;;;10455:10;;;;;;;;;;;;;;;;;;;;;10424:53;10487:12;10502:5;10487:20;;10518:14;10543:78;10558:1;10550:4;:9;10543:78;;10576:8;;;;;:::i;:::-;;;;10607:2;10599:10;;;;;:::i;:::-;;;10543:78;;;10631:19;10663:6;10653:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10631:39;;10681:154;10697:1;10688:5;:10;10681:154;;10725:1;10715:11;;;;;:::i;:::-;;;10792:2;10784:5;:10;;;;:::i;:::-;10771:2;:24;;;;:::i;:::-;10758:39;;10741:6;10748;10741:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;10821:2;10812:11;;;;;:::i;:::-;;;10681:154;;;10859:6;10845:21;;;;;10151:723;;;;:::o;45089:163::-;45212:32;45218:2;45222:8;45232:5;45239:4;45212:5;:32::i;:::-;45089:163;;;:::o;54600:159::-;;;;;:::o;55418:158::-;;;;;:::o;45511:1775::-;45650:20;45673:13;;45650:36;;45715:1;45701:16;;:2;:16;;;45697:48;;;45726:19;;;;;;;;;;;;;;45697:48;45772:1;45760:8;:13;45756:44;;;45782:18;;;;;;;;;;;;;;45756:44;45813:61;45843:1;45847:2;45851:12;45865:8;45813:21;:61::i;:::-;46186:8;46151:12;:16;46164:2;46151:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46250:8;46210:12;:16;46223:2;46210:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46309:2;46276:11;:25;46288:12;46276:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;46376:15;46326:11;:25;46338:12;46326:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;46409:20;46432:12;46409:35;;46459:11;46488:8;46473:12;:23;46459:37;;46517:4;:23;;;;;46525:15;:2;:13;;;:15::i;:::-;46517:23;46513:641;;;46561:314;46617:12;46613:2;46592:38;;46609:1;46592:38;;;;;;;;;;;;46658:69;46697:1;46701:2;46705:14;;;;;;46721:5;46658:30;:69::i;:::-;46653:174;;46763:40;;;;;;;;;;;;;;46653:174;46870:3;46854:12;:19;;46561:314;;46956:12;46939:13;;:29;46935:43;;46970:8;;;46935:43;46513:641;;;47019:120;47075:14;;;;;;47071:2;47050:40;;47067:1;47050:40;;;;;;;;;;;;47134:3;47118:12;:19;;47019:120;;46513:641;47184:12;47168:13;:28;;;;45511:1775;;47218:60;47247:1;47251:2;47255:12;47269:8;47218:20;:60::i;:::-;45511:1775;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:345::-;1112:5;1137:66;1153:49;1195:6;1153:49;:::i;:::-;1137:66;:::i;:::-;1128:75;;1226:6;1219:5;1212:21;1264:4;1257:5;1253:16;1302:3;1293:6;1288:3;1284:16;1281:25;1278:2;;;1319:1;1316;1309:12;1278:2;1332:41;1366:6;1361:3;1356;1332:41;:::i;:::-;1118:261;;;;;;:::o;1385:139::-;1431:5;1469:6;1456:20;1447:29;;1485:33;1512:5;1485:33;:::i;:::-;1437:87;;;;:::o;1547:303::-;1618:5;1667:3;1660:4;1652:6;1648:17;1644:27;1634:2;;1685:1;1682;1675:12;1634:2;1725:6;1712:20;1750:94;1840:3;1832:6;1825:4;1817:6;1813:17;1750:94;:::i;:::-;1741:103;;1624:226;;;;;:::o;1856:133::-;1899:5;1937:6;1924:20;1915:29;;1953:30;1977:5;1953:30;:::i;:::-;1905:84;;;;:::o;1995:137::-;2040:5;2078:6;2065:20;2056:29;;2094:32;2120:5;2094:32;:::i;:::-;2046:86;;;;:::o;2138:141::-;2194:5;2225:6;2219:13;2210:22;;2241:32;2267:5;2241:32;:::i;:::-;2200:79;;;;:::o;2298:271::-;2353:5;2402:3;2395:4;2387:6;2383:17;2379:27;2369:2;;2420:1;2417;2410:12;2369:2;2460:6;2447:20;2485:78;2559:3;2551:6;2544:4;2536:6;2532:17;2485:78;:::i;:::-;2476:87;;2359:210;;;;;:::o;2589:352::-;2647:8;2657:6;2707:3;2700:4;2692:6;2688:17;2684:27;2674:2;;2725:1;2722;2715:12;2674:2;2761:6;2748:20;2738:30;;2791:18;2783:6;2780:30;2777:2;;;2823:1;2820;2813:12;2777:2;2860:4;2852:6;2848:17;2836:29;;2914:3;2906:4;2898:6;2894:17;2884:8;2880:32;2877:41;2874:2;;;2931:1;2928;2921:12;2874:2;2664:277;;;;;:::o;2961:273::-;3017:5;3066:3;3059:4;3051:6;3047:17;3043:27;3033:2;;3084:1;3081;3074:12;3033:2;3124:6;3111:20;3149:79;3224:3;3216:6;3209:4;3201:6;3197:17;3149:79;:::i;:::-;3140:88;;3023:211;;;;;:::o;3240:139::-;3286:5;3324:6;3311:20;3302:29;;3340:33;3367:5;3340:33;:::i;:::-;3292:87;;;;:::o;3385:262::-;3444:6;3493:2;3481:9;3472:7;3468:23;3464:32;3461:2;;;3509:1;3506;3499:12;3461:2;3552:1;3577:53;3622:7;3613:6;3602:9;3598:22;3577:53;:::i;:::-;3567:63;;3523:117;3451:196;;;;:::o;3653:407::-;3721:6;3729;3778:2;3766:9;3757:7;3753:23;3749:32;3746:2;;;3794:1;3791;3784:12;3746:2;3837:1;3862:53;3907:7;3898:6;3887:9;3883:22;3862:53;:::i;:::-;3852:63;;3808:117;3964:2;3990:53;4035:7;4026:6;4015:9;4011:22;3990:53;:::i;:::-;3980:63;;3935:118;3736:324;;;;;:::o;4066:552::-;4143:6;4151;4159;4208:2;4196:9;4187:7;4183:23;4179:32;4176:2;;;4224:1;4221;4214:12;4176:2;4267:1;4292:53;4337:7;4328:6;4317:9;4313:22;4292:53;:::i;:::-;4282:63;;4238:117;4394:2;4420:53;4465:7;4456:6;4445:9;4441:22;4420:53;:::i;:::-;4410:63;;4365:118;4522:2;4548:53;4593:7;4584:6;4573:9;4569:22;4548:53;:::i;:::-;4538:63;;4493:118;4166:452;;;;;:::o;4624:809::-;4719:6;4727;4735;4743;4792:3;4780:9;4771:7;4767:23;4763:33;4760:2;;;4809:1;4806;4799:12;4760:2;4852:1;4877:53;4922:7;4913:6;4902:9;4898:22;4877:53;:::i;:::-;4867:63;;4823:117;4979:2;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4950:118;5107:2;5133:53;5178:7;5169:6;5158:9;5154:22;5133:53;:::i;:::-;5123:63;;5078:118;5263:2;5252:9;5248:18;5235:32;5294:18;5286:6;5283:30;5280:2;;;5326:1;5323;5316:12;5280:2;5354:62;5408:7;5399:6;5388:9;5384:22;5354:62;:::i;:::-;5344:72;;5206:220;4750:683;;;;;;;:::o;5439:401::-;5504:6;5512;5561:2;5549:9;5540:7;5536:23;5532:32;5529:2;;;5577:1;5574;5567:12;5529:2;5620:1;5645:53;5690:7;5681:6;5670:9;5666:22;5645:53;:::i;:::-;5635:63;;5591:117;5747:2;5773:50;5815:7;5806:6;5795:9;5791:22;5773:50;:::i;:::-;5763:60;;5718:115;5519:321;;;;;:::o;5846:407::-;5914:6;5922;5971:2;5959:9;5950:7;5946:23;5942:32;5939:2;;;5987:1;5984;5977:12;5939:2;6030:1;6055:53;6100:7;6091:6;6080:9;6076:22;6055:53;:::i;:::-;6045:63;;6001:117;6157:2;6183:53;6228:7;6219:6;6208:9;6204:22;6183:53;:::i;:::-;6173:63;;6128:118;5929:324;;;;;:::o;6259:405::-;6343:6;6392:2;6380:9;6371:7;6367:23;6363:32;6360:2;;;6408:1;6405;6398:12;6360:2;6479:1;6468:9;6464:17;6451:31;6509:18;6501:6;6498:30;6495:2;;;6541:1;6538;6531:12;6495:2;6569:78;6639:7;6630:6;6619:9;6615:22;6569:78;:::i;:::-;6559:88;;6422:235;6350:314;;;;:::o;6670:260::-;6728:6;6777:2;6765:9;6756:7;6752:23;6748:32;6745:2;;;6793:1;6790;6783:12;6745:2;6836:1;6861:52;6905:7;6896:6;6885:9;6881:22;6861:52;:::i;:::-;6851:62;;6807:116;6735:195;;;;:::o;6936:282::-;7005:6;7054:2;7042:9;7033:7;7029:23;7025:32;7022:2;;;7070:1;7067;7060:12;7022:2;7113:1;7138:63;7193:7;7184:6;7173:9;7169:22;7138:63;:::i;:::-;7128:73;;7084:127;7012:206;;;;:::o;7224:395::-;7295:6;7303;7352:2;7340:9;7331:7;7327:23;7323:32;7320:2;;;7368:1;7365;7358:12;7320:2;7439:1;7428:9;7424:17;7411:31;7469:18;7461:6;7458:30;7455:2;;;7501:1;7498;7491:12;7455:2;7537:65;7594:7;7585:6;7574:9;7570:22;7537:65;:::i;:::-;7519:83;;;;7382:230;7310:309;;;;;:::o;7625:375::-;7694:6;7743:2;7731:9;7722:7;7718:23;7714:32;7711:2;;;7759:1;7756;7749:12;7711:2;7830:1;7819:9;7815:17;7802:31;7860:18;7852:6;7849:30;7846:2;;;7892:1;7889;7882:12;7846:2;7920:63;7975:7;7966:6;7955:9;7951:22;7920:63;:::i;:::-;7910:73;;7773:220;7701:299;;;;:::o;8006:262::-;8065:6;8114:2;8102:9;8093:7;8089:23;8085:32;8082:2;;;8130:1;8127;8120:12;8082:2;8173:1;8198:53;8243:7;8234:6;8223:9;8219:22;8198:53;:::i;:::-;8188:63;;8144:117;8072:196;;;;:::o;8274:189::-;8395:61;8423:32;8449:5;8423:32;:::i;:::-;8395:61;:::i;:::-;8390:3;8383:74;8373:90;;:::o;8469:118::-;8556:24;8574:5;8556:24;:::i;:::-;8551:3;8544:37;8534:53;;:::o;8593:157::-;8698:45;8718:24;8736:5;8718:24;:::i;:::-;8698:45;:::i;:::-;8693:3;8686:58;8676:74;;:::o;8756:109::-;8837:21;8852:5;8837:21;:::i;:::-;8832:3;8825:34;8815:50;;:::o;8871:360::-;8957:3;8985:38;9017:5;8985:38;:::i;:::-;9039:70;9102:6;9097:3;9039:70;:::i;:::-;9032:77;;9118:52;9163:6;9158:3;9151:4;9144:5;9140:16;9118:52;:::i;:::-;9195:29;9217:6;9195:29;:::i;:::-;9190:3;9186:39;9179:46;;8961:270;;;;;:::o;9237:364::-;9325:3;9353:39;9386:5;9353:39;:::i;:::-;9408:71;9472:6;9467:3;9408:71;:::i;:::-;9401:78;;9488:52;9533:6;9528:3;9521:4;9514:5;9510:16;9488:52;:::i;:::-;9565:29;9587:6;9565:29;:::i;:::-;9560:3;9556:39;9549:46;;9329:272;;;;;:::o;9607:377::-;9713:3;9741:39;9774:5;9741:39;:::i;:::-;9796:89;9878:6;9873:3;9796:89;:::i;:::-;9789:96;;9894:52;9939:6;9934:3;9927:4;9920:5;9916:16;9894:52;:::i;:::-;9971:6;9966:3;9962:16;9955:23;;9717:267;;;;;:::o;9990:366::-;10132:3;10153:67;10217:2;10212:3;10153:67;:::i;:::-;10146:74;;10229:93;10318:3;10229:93;:::i;:::-;10347:2;10342:3;10338:12;10331:19;;10136:220;;;:::o;10362:366::-;10504:3;10525:67;10589:2;10584:3;10525:67;:::i;:::-;10518:74;;10601:93;10690:3;10601:93;:::i;:::-;10719:2;10714:3;10710:12;10703:19;;10508:220;;;:::o;10734:366::-;10876:3;10897:67;10961:2;10956:3;10897:67;:::i;:::-;10890:74;;10973:93;11062:3;10973:93;:::i;:::-;11091:2;11086:3;11082:12;11075:19;;10880:220;;;:::o;11106:400::-;11266:3;11287:84;11369:1;11364:3;11287:84;:::i;:::-;11280:91;;11380:93;11469:3;11380:93;:::i;:::-;11498:1;11493:3;11489:11;11482:18;;11270:236;;;:::o;11512:366::-;11654:3;11675:67;11739:2;11734:3;11675:67;:::i;:::-;11668:74;;11751:93;11840:3;11751:93;:::i;:::-;11869:2;11864:3;11860:12;11853:19;;11658:220;;;:::o;11884:366::-;12026:3;12047:67;12111:2;12106:3;12047:67;:::i;:::-;12040:74;;12123:93;12212:3;12123:93;:::i;:::-;12241:2;12236:3;12232:12;12225:19;;12030:220;;;:::o;12256:366::-;12398:3;12419:67;12483:2;12478:3;12419:67;:::i;:::-;12412:74;;12495:93;12584:3;12495:93;:::i;:::-;12613:2;12608:3;12604:12;12597:19;;12402:220;;;:::o;12628:366::-;12770:3;12791:67;12855:2;12850:3;12791:67;:::i;:::-;12784:74;;12867:93;12956:3;12867:93;:::i;:::-;12985:2;12980:3;12976:12;12969:19;;12774:220;;;:::o;13000:366::-;13142:3;13163:67;13227:2;13222:3;13163:67;:::i;:::-;13156:74;;13239:93;13328:3;13239:93;:::i;:::-;13357:2;13352:3;13348:12;13341:19;;13146:220;;;:::o;13372:366::-;13514:3;13535:67;13599:2;13594:3;13535:67;:::i;:::-;13528:74;;13611:93;13700:3;13611:93;:::i;:::-;13729:2;13724:3;13720:12;13713:19;;13518:220;;;:::o;13744:366::-;13886:3;13907:67;13971:2;13966:3;13907:67;:::i;:::-;13900:74;;13983:93;14072:3;13983:93;:::i;:::-;14101:2;14096:3;14092:12;14085:19;;13890:220;;;:::o;14116:366::-;14258:3;14279:67;14343:2;14338:3;14279:67;:::i;:::-;14272:74;;14355:93;14444:3;14355:93;:::i;:::-;14473:2;14468:3;14464:12;14457:19;;14262:220;;;:::o;14488:366::-;14630:3;14651:67;14715:2;14710:3;14651:67;:::i;:::-;14644:74;;14727:93;14816:3;14727:93;:::i;:::-;14845:2;14840:3;14836:12;14829:19;;14634:220;;;:::o;14860:118::-;14947:24;14965:5;14947:24;:::i;:::-;14942:3;14935:37;14925:53;;:::o;14984:157::-;15089:45;15109:24;15127:5;15109:24;:::i;:::-;15089:45;:::i;:::-;15084:3;15077:58;15067:74;;:::o;15147:256::-;15259:3;15274:75;15345:3;15336:6;15274:75;:::i;:::-;15374:2;15369:3;15365:12;15358:19;;15394:3;15387:10;;15263:140;;;;:::o;15409:288::-;15537:3;15552:91;15639:3;15630:6;15552:91;:::i;:::-;15668:2;15663:3;15659:12;15652:19;;15688:3;15681:10;;15541:156;;;;:::o;15703:701::-;15984:3;16006:95;16097:3;16088:6;16006:95;:::i;:::-;15999:102;;16118:95;16209:3;16200:6;16118:95;:::i;:::-;16111:102;;16230:148;16374:3;16230:148;:::i;:::-;16223:155;;16395:3;16388:10;;15988:416;;;;;:::o;16410:256::-;16522:3;16537:75;16608:3;16599:6;16537:75;:::i;:::-;16637:2;16632:3;16628:12;16621:19;;16657:3;16650:10;;16526:140;;;;:::o;16672:222::-;16765:4;16803:2;16792:9;16788:18;16780:26;;16816:71;16884:1;16873:9;16869:17;16860:6;16816:71;:::i;:::-;16770:124;;;;:::o;16900:640::-;17095:4;17133:3;17122:9;17118:19;17110:27;;17147:71;17215:1;17204:9;17200:17;17191:6;17147:71;:::i;:::-;17228:72;17296:2;17285:9;17281:18;17272:6;17228:72;:::i;:::-;17310;17378:2;17367:9;17363:18;17354:6;17310:72;:::i;:::-;17429:9;17423:4;17419:20;17414:2;17403:9;17399:18;17392:48;17457:76;17528:4;17519:6;17457:76;:::i;:::-;17449:84;;17100:440;;;;;;;:::o;17546:210::-;17633:4;17671:2;17660:9;17656:18;17648:26;;17684:65;17746:1;17735:9;17731:17;17722:6;17684:65;:::i;:::-;17638:118;;;;:::o;17762:313::-;17875:4;17913:2;17902:9;17898:18;17890:26;;17962:9;17956:4;17952:20;17948:1;17937:9;17933:17;17926:47;17990:78;18063:4;18054:6;17990:78;:::i;:::-;17982:86;;17880:195;;;;:::o;18081:419::-;18247:4;18285:2;18274:9;18270:18;18262:26;;18334:9;18328:4;18324:20;18320:1;18309:9;18305:17;18298:47;18362:131;18488:4;18362:131;:::i;:::-;18354:139;;18252:248;;;:::o;18506:419::-;18672:4;18710:2;18699:9;18695:18;18687:26;;18759:9;18753:4;18749:20;18745:1;18734:9;18730:17;18723:47;18787:131;18913:4;18787:131;:::i;:::-;18779:139;;18677:248;;;:::o;18931:419::-;19097:4;19135:2;19124:9;19120:18;19112:26;;19184:9;19178:4;19174:20;19170:1;19159:9;19155:17;19148:47;19212:131;19338:4;19212:131;:::i;:::-;19204:139;;19102:248;;;:::o;19356:419::-;19522:4;19560:2;19549:9;19545:18;19537:26;;19609:9;19603:4;19599:20;19595:1;19584:9;19580:17;19573:47;19637:131;19763:4;19637:131;:::i;:::-;19629:139;;19527:248;;;:::o;19781:419::-;19947:4;19985:2;19974:9;19970:18;19962:26;;20034:9;20028:4;20024:20;20020:1;20009:9;20005:17;19998:47;20062:131;20188:4;20062:131;:::i;:::-;20054:139;;19952:248;;;:::o;20206:419::-;20372:4;20410:2;20399:9;20395:18;20387:26;;20459:9;20453:4;20449:20;20445:1;20434:9;20430:17;20423:47;20487:131;20613:4;20487:131;:::i;:::-;20479:139;;20377:248;;;:::o;20631:419::-;20797:4;20835:2;20824:9;20820:18;20812:26;;20884:9;20878:4;20874:20;20870:1;20859:9;20855:17;20848:47;20912:131;21038:4;20912:131;:::i;:::-;20904:139;;20802:248;;;:::o;21056:419::-;21222:4;21260:2;21249:9;21245:18;21237:26;;21309:9;21303:4;21299:20;21295:1;21284:9;21280:17;21273:47;21337:131;21463:4;21337:131;:::i;:::-;21329:139;;21227:248;;;:::o;21481:419::-;21647:4;21685:2;21674:9;21670:18;21662:26;;21734:9;21728:4;21724:20;21720:1;21709:9;21705:17;21698:47;21762:131;21888:4;21762:131;:::i;:::-;21754:139;;21652:248;;;:::o;21906:419::-;22072:4;22110:2;22099:9;22095:18;22087:26;;22159:9;22153:4;22149:20;22145:1;22134:9;22130:17;22123:47;22187:131;22313:4;22187:131;:::i;:::-;22179:139;;22077:248;;;:::o;22331:419::-;22497:4;22535:2;22524:9;22520:18;22512:26;;22584:9;22578:4;22574:20;22570:1;22559:9;22555:17;22548:47;22612:131;22738:4;22612:131;:::i;:::-;22604:139;;22502:248;;;:::o;22756:419::-;22922:4;22960:2;22949:9;22945:18;22937:26;;23009:9;23003:4;22999:20;22995:1;22984:9;22980:17;22973:47;23037:131;23163:4;23037:131;:::i;:::-;23029:139;;22927:248;;;:::o;23181:222::-;23274:4;23312:2;23301:9;23297:18;23289:26;;23325:71;23393:1;23382:9;23378:17;23369:6;23325:71;:::i;:::-;23279:124;;;;:::o;23409:129::-;23443:6;23470:20;;:::i;:::-;23460:30;;23499:33;23527:4;23519:6;23499:33;:::i;:::-;23450:88;;;:::o;23544:75::-;23577:6;23610:2;23604:9;23594:19;;23584:35;:::o;23625:311::-;23702:4;23792:18;23784:6;23781:30;23778:2;;;23814:18;;:::i;:::-;23778:2;23864:4;23856:6;23852:17;23844:25;;23924:4;23918;23914:15;23906:23;;23707:229;;;:::o;23942:307::-;24003:4;24093:18;24085:6;24082:30;24079:2;;;24115:18;;:::i;:::-;24079:2;24153:29;24175:6;24153:29;:::i;:::-;24145:37;;24237:4;24231;24227:15;24219:23;;24008:241;;;:::o;24255:308::-;24317:4;24407:18;24399:6;24396:30;24393:2;;;24429:18;;:::i;:::-;24393:2;24467:29;24489:6;24467:29;:::i;:::-;24459:37;;24551:4;24545;24541:15;24533:23;;24322:241;;;:::o;24569:98::-;24620:6;24654:5;24648:12;24638:22;;24627:40;;;:::o;24673:99::-;24725:6;24759:5;24753:12;24743:22;;24732:40;;;:::o;24778:168::-;24861:11;24895:6;24890:3;24883:19;24935:4;24930:3;24926:14;24911:29;;24873:73;;;;:::o;24952:169::-;25036:11;25070:6;25065:3;25058:19;25110:4;25105:3;25101:14;25086:29;;25048:73;;;;:::o;25127:148::-;25229:11;25266:3;25251:18;;25241:34;;;;:::o;25281:305::-;25321:3;25340:20;25358:1;25340:20;:::i;:::-;25335:25;;25374:20;25392:1;25374:20;:::i;:::-;25369:25;;25528:1;25460:66;25456:74;25453:1;25450:81;25447:2;;;25534:18;;:::i;:::-;25447:2;25578:1;25575;25571:9;25564:16;;25325:261;;;;:::o;25592:185::-;25632:1;25649:20;25667:1;25649:20;:::i;:::-;25644:25;;25683:20;25701:1;25683:20;:::i;:::-;25678:25;;25722:1;25712:2;;25727:18;;:::i;:::-;25712:2;25769:1;25766;25762:9;25757:14;;25634:143;;;;:::o;25783:348::-;25823:7;25846:20;25864:1;25846:20;:::i;:::-;25841:25;;25880:20;25898:1;25880:20;:::i;:::-;25875:25;;26068:1;26000:66;25996:74;25993:1;25990:81;25985:1;25978:9;25971:17;25967:105;25964:2;;;26075:18;;:::i;:::-;25964:2;26123:1;26120;26116:9;26105:20;;25831:300;;;;:::o;26137:191::-;26177:4;26197:20;26215:1;26197:20;:::i;:::-;26192:25;;26231:20;26249:1;26231:20;:::i;:::-;26226:25;;26270:1;26267;26264:8;26261:2;;;26275:18;;:::i;:::-;26261:2;26320:1;26317;26313:9;26305:17;;26182:146;;;;:::o;26334:96::-;26371:7;26400:24;26418:5;26400:24;:::i;:::-;26389:35;;26379:51;;;:::o;26436:104::-;26481:7;26510:24;26528:5;26510:24;:::i;:::-;26499:35;;26489:51;;;:::o;26546:90::-;26580:7;26623:5;26616:13;26609:21;26598:32;;26588:48;;;:::o;26642:149::-;26678:7;26718:66;26711:5;26707:78;26696:89;;26686:105;;;:::o;26797:126::-;26834:7;26874:42;26867:5;26863:54;26852:65;;26842:81;;;:::o;26929:77::-;26966:7;26995:5;26984:16;;26974:32;;;:::o;27012:154::-;27096:6;27091:3;27086;27073:30;27158:1;27149:6;27144:3;27140:16;27133:27;27063:103;;;:::o;27172:307::-;27240:1;27250:113;27264:6;27261:1;27258:13;27250:113;;;27349:1;27344:3;27340:11;27334:18;27330:1;27325:3;27321:11;27314:39;27286:2;27283:1;27279:10;27274:15;;27250:113;;;27381:6;27378:1;27375:13;27372:2;;;27461:1;27452:6;27447:3;27443:16;27436:27;27372:2;27221:258;;;;:::o;27485:320::-;27529:6;27566:1;27560:4;27556:12;27546:22;;27613:1;27607:4;27603:12;27634:18;27624:2;;27690:4;27682:6;27678:17;27668:27;;27624:2;27752;27744:6;27741:14;27721:18;27718:38;27715:2;;;27771:18;;:::i;:::-;27715:2;27536:269;;;;:::o;27811:281::-;27894:27;27916:4;27894:27;:::i;:::-;27886:6;27882:40;28024:6;28012:10;28009:22;27988:18;27976:10;27973:34;27970:62;27967:2;;;28035:18;;:::i;:::-;27967:2;28075:10;28071:2;28064:22;27854:238;;;:::o;28098:233::-;28137:3;28160:24;28178:5;28160:24;:::i;:::-;28151:33;;28206:66;28199:5;28196:77;28193:2;;;28276:18;;:::i;:::-;28193:2;28323:1;28316:5;28312:13;28305:20;;28141:190;;;:::o;28337:100::-;28376:7;28405:26;28425:5;28405:26;:::i;:::-;28394:37;;28384:53;;;:::o;28443:108::-;28490:7;28519:26;28539:5;28519:26;:::i;:::-;28508:37;;28498:53;;;:::o;28557:94::-;28596:7;28625:20;28639:5;28625:20;:::i;:::-;28614:31;;28604:47;;;:::o;28657:79::-;28696:7;28725:5;28714:16;;28704:32;;;:::o;28742:176::-;28774:1;28791:20;28809:1;28791:20;:::i;:::-;28786:25;;28825:20;28843:1;28825:20;:::i;:::-;28820:25;;28864:1;28854:2;;28869:18;;:::i;:::-;28854:2;28910:1;28907;28903:9;28898:14;;28776:142;;;;:::o;28924:180::-;28972:77;28969:1;28962:88;29069:4;29066:1;29059:15;29093:4;29090:1;29083:15;29110:180;29158:77;29155:1;29148:88;29255:4;29252:1;29245:15;29279:4;29276:1;29269:15;29296:180;29344:77;29341:1;29334:88;29441:4;29438:1;29431:15;29465:4;29462:1;29455:15;29482:180;29530:77;29527:1;29520:88;29627:4;29624:1;29617:15;29651:4;29648:1;29641:15;29668:102;29709:6;29760:2;29756:7;29751:2;29744:5;29740:14;29736:28;29726:38;;29716:54;;;:::o;29776:94::-;29809:8;29857:5;29853:2;29849:14;29828:35;;29818:52;;;:::o;29876:179::-;30016:31;30012:1;30004:6;30000:14;29993:55;29982:73;:::o;30061:225::-;30201:34;30197:1;30189:6;30185:14;30178:58;30270:8;30265:2;30257:6;30253:15;30246:33;30167:119;:::o;30292:232::-;30432:34;30428:1;30420:6;30416:14;30409:58;30501:15;30496:2;30488:6;30484:15;30477:40;30398:126;:::o;30530:155::-;30670:7;30666:1;30658:6;30654:14;30647:31;30636:49;:::o;30691:171::-;30831:23;30827:1;30819:6;30815:14;30808:47;30797:65;:::o;30868:182::-;31008:34;31004:1;30996:6;30992:14;30985:58;30974:76;:::o;31056:221::-;31196:34;31192:1;31184:6;31180:14;31173:58;31265:4;31260:2;31252:6;31248:15;31241:29;31162:115;:::o;31283:176::-;31423:28;31419:1;31411:6;31407:14;31400:52;31389:70;:::o;31465:176::-;31605:28;31601:1;31593:6;31589:14;31582:52;31571:70;:::o;31647:180::-;31787:32;31783:1;31775:6;31771:14;31764:56;31753:74;:::o;31833:229::-;31973:34;31969:1;31961:6;31957:14;31950:58;32042:12;32037:2;32029:6;32025:15;32018:37;31939:123;:::o;32068:235::-;32208:34;32204:1;32196:6;32192:14;32185:58;32277:18;32272:2;32264:6;32260:15;32253:43;32174:129;:::o;32309:181::-;32449:33;32445:1;32437:6;32433:14;32426:57;32415:75;:::o;32496:122::-;32569:24;32587:5;32569:24;:::i;:::-;32562:5;32559:35;32549:2;;32608:1;32605;32598:12;32549:2;32539:79;:::o;32624:116::-;32694:21;32709:5;32694:21;:::i;:::-;32687:5;32684:32;32674:2;;32730:1;32727;32720:12;32674:2;32664:76;:::o;32746:120::-;32818:23;32835:5;32818:23;:::i;:::-;32811:5;32808:34;32798:2;;32856:1;32853;32846:12;32798:2;32788:78;:::o;32872:122::-;32945:24;32963:5;32945:24;:::i;:::-;32938:5;32935:35;32925:2;;32984:1;32981;32974:12;32925:2;32915:79;:::o

Swarm Source

ipfs://2c7d1357a6b8fe47db48a87132a742da0ed93ba14ae6086341685b0343d7e48c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.