ETH Price: $3,450.35 (-0.85%)
Gas: 2 Gwei

Token

Grizzlies (GRZLI)
 

Overview

Max Total Supply

1,158 GRZLI

Holders

128

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
leenie.eth
Balance
2 GRZLI
0x05fd89e1c798d13c0776b6c1a6789ecc32b1d1fa
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:
Grizzlies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: openzeppelin-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    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;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 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)) public _operatorApprovals;

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

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

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

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

        // Execution should never reach this point.
        revert();
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 (!_checkOnERC721Received(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 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(updatedIndex);
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * 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: contracts/Grizzlies.sol



pragma solidity ^0.8.4;





contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

contract Grizzlies is ERC721A, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;
    uint256 public constant maxSupply = 1590;
    uint256 public constant freeMints = 1150;
    uint256 public constant maxFreeMintsPerWallet = 20;
    uint256 public reservedAssets = 0;
    uint256 public maxPurchase = 20;
    uint256 public _price = 0.02 ether;
    string public _baseTokenURI;
    string public _uriSuffix = ".json";
    bool public isSaleActive;
    bool public isSalActive;
    address proxyRegistryAddress;

    mapping (uint256 => string) private _tokenURIs;
    mapping (address => uint256) private freeMintsWallet;
    mapping (address => bool) private whitelist;

    constructor(string memory baseURI, address _proxyRegistryAddress) ERC721A("Grizzlies", "GRZLI") {
        setBaseURI(baseURI);
        isSaleActive = false;
        isSalActive = false;
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function mintNFT(uint256 numAssets) external payable {
        require(isSaleActive, "Sale is not active!");
        require(numAssets >= 0 && numAssets <= maxPurchase,
            "You can only mint 20 assets at a time!");
        require(totalSupply().add(numAssets) <= maxSupply - reservedAssets,
            "Not enough assets available...");

        if(totalSupply().add(numAssets) > freeMints){
            require(msg.value >= _price.mul(numAssets),
                "Not enough ETH for this purchase!");
        }else{
            require(totalSupply().add(numAssets) <= freeMints,
                "You would exceed the number of free mints");
            require(freeMintsWallet[msg.sender].add(numAssets) <= maxFreeMintsPerWallet, 
                "You can only mint 20 assets for free!");
            freeMintsWallet[msg.sender] += numAssets;
        }
        _safeMint(msg.sender, numAssets);
    }


    function assetOfOwner(address _owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory tokensId = new uint256[](tokenCount);
            for (uint256 i = 0; i < tokenCount; i++){
                tokensId[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return tokensId;
        }
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        _price = newPrice;
    }

    function flipSaleState() public onlyOwner {
        isSaleActive = !isSaleActive;
    }

     function flipSalState() public onlyOwner {
        isSalActive = !isSalActive;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }
    function setUriSuffix(string memory uriSuffix) public onlyOwner {
        _uriSuffix = uriSuffix;
    }

    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(), _uriSuffix)) : "";
    }

    function mintNFTS(address _to, uint256 _amount) external onlyOwner() {
        require(totalSupply().add(_amount) <= maxSupply - reservedAssets,
            "Hold up! You would buy more assets than available...");
        _safeMint(_to, _amount);  
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(payable(msg.sender).send(balance),
            "Withdraw did not work...");
    }

    function addToWhitelist(address _user) public onlyOwner {
        whitelist[_user] = true;
    }

    function isApprovedForAll(address owner, address operator) override public view returns(bool){
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if(!isSalActive && whitelist[owner] != true){
            return false;
        }
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();
        if(!isSalActive && whitelist[_msgSender()] != true) {
            revert ApproveToCaller();
        }

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

    function setProxyRegistryAddress(address proxyAddress) external onlyOwner {
        proxyRegistryAddress = proxyAddress;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_operatorApprovals","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addToWhitelist","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":"assetOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSalState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMints","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":"isSalActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numAssets","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintNFTS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedAssets","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":"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":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600855601460095566470de4df820000600a556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000669291906200038d565b503480156200007457600080fd5b50604051620051053803806200510583398181016040528101906200009a9190620004d2565b6040518060400160405280600981526020017f4772697a7a6c69657300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47525a4c4900000000000000000000000000000000000000000000000000000081525081600190805190602001906200011e9291906200038d565b508060029080519060200190620001379291906200038d565b5050506200015a6200014e620001ea60201b60201c565b620001f260201b60201c565b6200016b82620002b860201b60201c565b6000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff02191690831515021790555080600d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200078d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c8620001ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ee6200036360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033e906200055f565b60405180910390fd5b80600b90805190602001906200035f9291906200038d565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200039b906200065b565b90600052602060002090601f016020900481019282620003bf57600085556200040b565b82601f10620003da57805160ff19168380011785556200040b565b828001600101855582156200040b579182015b828111156200040a578251825591602001919060010190620003ed565b5b5090506200041a91906200041e565b5090565b5b80821115620004395760008160009055506001016200041f565b5090565b6000620004546200044e84620005aa565b62000581565b9050828152602081018484840111156200047357620004726200072a565b5b6200048084828562000625565b509392505050565b600081519050620004998162000773565b92915050565b600082601f830112620004b757620004b662000725565b5b8151620004c98482602086016200043d565b91505092915050565b60008060408385031215620004ec57620004eb62000734565b5b600083015167ffffffffffffffff8111156200050d576200050c6200072f565b5b6200051b858286016200049f565b92505060206200052e8582860162000488565b9150509250929050565b600062000547602083620005e0565b915062000554826200074a565b602082019050919050565b600060208201905081810360008301526200057a8162000538565b9050919050565b60006200058d620005a0565b90506200059b828262000691565b919050565b6000604051905090565b600067ffffffffffffffff821115620005c857620005c7620006f6565b5b620005d38262000739565b9050602081019050919050565b600082825260208201905092915050565b6000620005fe8262000605565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200064557808201518184015260208101905062000628565b8381111562000655576000848401525b50505050565b600060028204905060018216806200067457607f821691505b602082108114156200068b576200068a620006c7565b5b50919050565b6200069c8262000739565b810181811067ffffffffffffffff82111715620006be57620006bd620006f6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200077e81620005f1565b81146200078a57600080fd5b50565b614968806200079d6000396000f3fe6080604052600436106102465760003560e01c806380b1733511610139578063b88d4fde116100b6578063d26ea6c01161007a578063d26ea6c01461084b578063d5abeb0114610874578063e43252d71461089f578063e985e9c5146108c8578063edc3bc3f14610905578063f2fde38b1461094257610246565b8063b88d4fde14610766578063bac15a341461078f578063bb380204146107b8578063c87b56dd146107e3578063cfc86f7b1461082057610246565b806395d89b41116100fd57806395d89b4114610693578063977b055b146106be5780639b2e1d5c146106e9578063a22cb46514610726578063b5b2864f1461074f57610246565b806380b17335146105e1578063853828b61461060c5780638da5cb5b1461062357806391b7f5ed1461064e578063926427441461067757610246565b80633a723e32116101c757806355f804b31161018b57806355f804b3146104fc578063564566a8146105255780636352211e1461055057806370a082311461058d578063715018a6146105ca57610246565b80633a723e32146104155780633d302d061461044057806342842e0e1461046b5780634cb1ac02146104945780634f6ccce7146104bf57610246565b806318160ddd1161020e57806318160ddd14610342578063235b6ea11461036d57806323b872dd146103985780632f745c59146103c157806334918dfd146103fe57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806316ba10e014610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613ade565b61096b565b60405161027f9190613fc7565b60405180910390f35b34801561029457600080fd5b5061029d610ab5565b6040516102aa9190613fe2565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613bae565b610b47565b6040516102e79190613f3e565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613a9e565b610bc3565b005b34801561032557600080fd5b50610340600480360381019061033b9190613b65565b610cce565b005b34801561034e57600080fd5b50610357610d64565b6040516103649190614144565b60405180910390f35b34801561037957600080fd5b50610382610db9565b60405161038f9190614144565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190613988565b610dbf565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613a9e565b610dcf565b6040516103f59190614144565b60405180910390f35b34801561040a57600080fd5b50610413610fd6565b005b34801561042157600080fd5b5061042a61107e565b6040516104379190613fc7565b60405180910390f35b34801561044c57600080fd5b50610455611091565b6040516104629190614144565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190613988565b611097565b005b3480156104a057600080fd5b506104a96110b7565b6040516104b69190614144565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190613bae565b6110bc565b6040516104f39190614144565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190613b65565b61122d565b005b34801561053157600080fd5b5061053a6112c3565b6040516105479190613fc7565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190613bae565b6112d6565b6040516105849190613f3e565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af919061391b565b6112ec565b6040516105c19190614144565b60405180910390f35b3480156105d657600080fd5b506105df6113bc565b005b3480156105ed57600080fd5b506105f6611444565b6040516106039190614144565b60405180910390f35b34801561061857600080fd5b5061062161144a565b005b34801561062f57600080fd5b50610638611542565b6040516106459190613f3e565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613bae565b61156c565b005b610691600480360381019061068c9190613bae565b6115f2565b005b34801561069f57600080fd5b506106a86118d4565b6040516106b59190613fe2565b60405180910390f35b3480156106ca57600080fd5b506106d3611966565b6040516106e09190614144565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b919061391b565b61196c565b60405161071d9190613fa5565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190613a5e565b611a76565b005b34801561075b57600080fd5b50610764611c9a565b005b34801561077257600080fd5b5061078d600480360381019061078891906139db565b611d42565b005b34801561079b57600080fd5b506107b660048036038101906107b19190613a9e565b611d95565b005b3480156107c457600080fd5b506107cd611e8a565b6040516107da9190613fe2565b60405180910390f35b3480156107ef57600080fd5b5061080a60048036038101906108059190613bae565b611f18565b6040516108179190613fe2565b60405180910390f35b34801561082c57600080fd5b50610835611fb9565b6040516108429190613fe2565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d919061391b565b612047565b005b34801561088057600080fd5b50610889612107565b6040516108969190614144565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c1919061391b565b61210d565b005b3480156108d457600080fd5b506108ef60048036038101906108ea9190613948565b6121e4565b6040516108fc9190613fc7565b60405180910390f35b34801561091157600080fd5b5061092c60048036038101906109279190613948565b612363565b6040516109399190613fc7565b60405180910390f35b34801561094e57600080fd5b506109696004803603810190610964919061391b565b612392565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae5750610aad8261248a565b5b9050919050565b606060018054610ac490614454565b80601f0160208091040260200160405190810160405280929190818152602001828054610af090614454565b8015610b3d5780601f10610b1257610100808354040283529160200191610b3d565b820191906000526020600020905b815481529060010190602001808311610b2057829003601f168201915b5050505050905090565b6000610b52826124f4565b610b88576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bce826112d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c36576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c5561255c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c875750610c8581610c8061255c565b6121e4565b155b15610cbe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc9838383612564565b505050565b610cd661255c565b73ffffffffffffffffffffffffffffffffffffffff16610cf4611542565b73ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190614084565b60405180910390fd5b80600c9080519060200190610d609291906136d7565b5050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b600a5481565b610dca838383612616565b505050565b6000610dda836112ec565b8210610e12576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610fca576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610f295750610fbd565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f6957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fbb5786841415610fb2578195505050505050610fd0565b83806001019450505b505b8080600101915050610e4c565b50600080fd5b92915050565b610fde61255c565b73ffffffffffffffffffffffffffffffffffffffff16610ffc611542565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990614084565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60019054906101000a900460ff1681565b60085481565b6110b283838360405180602001604052806000815250611d42565b505050565b601481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156111f5576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111e757858314156111de5781945050505050611228565b82806001019350505b5080806001019150506110f4565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61123561255c565b73ffffffffffffffffffffffffffffffffffffffff16611253611542565b73ffffffffffffffffffffffffffffffffffffffff16146112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090614084565b60405180910390fd5b80600b90805190602001906112bf9291906136d7565b5050565b600d60009054906101000a900460ff1681565b60006112e182612b33565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611354576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113c461255c565b73ffffffffffffffffffffffffffffffffffffffff166113e2611542565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614084565b60405180910390fd5b6114426000612ddb565b565b61047e81565b61145261255c565b73ffffffffffffffffffffffffffffffffffffffff16611470611542565b73ffffffffffffffffffffffffffffffffffffffff16146114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90614084565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690614104565b60405180910390fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61157461255c565b73ffffffffffffffffffffffffffffffffffffffff16611592611542565b73ffffffffffffffffffffffffffffffffffffffff16146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90614084565b60405180910390fd5b80600a8190555050565b600d60009054906101000a900460ff16611641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611638906140c4565b60405180910390fd5b6000811015801561165457506009548111155b611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a906140a4565b60405180910390fd5b6008546106366116a39190614358565b6116bd826116af610d64565b612ea190919063ffffffff16565b11156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590614044565b60405180910390fd5b61047e61171b8261170d610d64565b612ea190919063ffffffff16565b111561177d5761173681600a54612eb790919063ffffffff16565b341015611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90614004565b60405180910390fd5b6118c7565b61047e61179a8261178c610d64565b612ea190919063ffffffff16565b11156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290614124565b60405180910390fd5b601461182f82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ea190919063ffffffff16565b1115611870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186790614064565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118bf9190614277565b925050819055505b6118d13382612ecd565b50565b6060600280546118e390614454565b80601f016020809104026020016040519081016040528092919081815260200182805461190f90614454565b801561195c5780601f106119315761010080835404028352916020019161195c565b820191906000526020600020905b81548152906001019060200180831161193f57829003601f168201915b5050505050905090565b60095481565b60606000611979836112ec565b905060008114156119d657600067ffffffffffffffff81111561199f5761199e6145ed565b5b6040519080825280602002602001820160405280156119cd5781602001602082028036833780820191505090505b50915050611a71565b60008167ffffffffffffffff8111156119f2576119f16145ed565b5b604051908082528060200260200182016040528015611a205781602001602082028036833780820191505090505b50905060005b82811015611a6a57611a388582610dcf565b828281518110611a4b57611a4a6145be565b5b6020026020010181815250508080611a62906144b7565b915050611a26565b5080925050505b919050565b611a7e61255c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60019054906101000a900460ff16158015611b5857506001151560106000611b0b61255c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514155b15611b8f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611b9c61255c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c4961255c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c8e9190613fc7565b60405180910390a35050565b611ca261255c565b73ffffffffffffffffffffffffffffffffffffffff16611cc0611542565b73ffffffffffffffffffffffffffffffffffffffff1614611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d90614084565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b611d4d848484612616565b611d5984848484612eeb565b611d8f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d9d61255c565b73ffffffffffffffffffffffffffffffffffffffff16611dbb611542565b73ffffffffffffffffffffffffffffffffffffffff1614611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0890614084565b60405180910390fd5b600854610636611e219190614358565b611e3b82611e2d610d64565b612ea190919063ffffffff16565b1115611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e73906140e4565b60405180910390fd5b611e868282612ecd565b5050565b600c8054611e9790614454565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec390614454565b8015611f105780601f10611ee557610100808354040283529160200191611f10565b820191906000526020600020905b815481529060010190602001808311611ef357829003601f168201915b505050505081565b6060611f23826124f4565b611f59576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611f63613079565b90506000815111611f835760405180602001604052806000815250611fb1565b80611f8d8461310b565b600c604051602001611fa193929190613f0d565b6040516020818303038152906040525b915050919050565b600b8054611fc690614454565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff290614454565b801561203f5780601f106120145761010080835404028352916020019161203f565b820191906000526020600020905b81548152906001019060200180831161202257829003601f168201915b505050505081565b61204f61255c565b73ffffffffffffffffffffffffffffffffffffffff1661206d611542565b73ffffffffffffffffffffffffffffffffffffffff16146120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90614084565b60405180910390fd5b80600d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61063681565b61211561255c565b73ffffffffffffffffffffffffffffffffffffffff16612133611542565b73ffffffffffffffffffffffffffffffffffffffff1614612189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218090614084565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600d60019054906101000a900460ff1615801561227a575060011515601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514155b1561228957600091505061235d565b8273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016122d99190613f3e565b60206040518083038186803b1580156122f157600080fd5b505afa158015612305573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123299190613b38565b73ffffffffffffffffffffffffffffffffffffffff16141561234f57600191505061235d565b612359848461326c565b9150505b92915050565b60066020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b61239a61255c565b73ffffffffffffffffffffffffffffffffffffffff166123b8611542565b73ffffffffffffffffffffffffffffffffffffffff161461240e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240590614084565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561247e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247590614024565b60405180910390fd5b61248781612ddb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612555575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061262182612b33565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661264861255c565b73ffffffffffffffffffffffffffffffffffffffff16148061267b575061267a826000015161267561255c565b6121e4565b5b806126c0575061268961255c565b73ffffffffffffffffffffffffffffffffffffffff166126a884610b47565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126f9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612762576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127c9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127d68585856001613300565b6127e66000848460000151612564565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ac35760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612ac25782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2c8585856001613306565b5050505050565b612b3b61375d565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612da4576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612da257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c86578092505050612dd6565b5b600115612da157818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d9c578092505050612dd6565b612c87565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612eaf9190614277565b905092915050565b60008183612ec591906142fe565b905092915050565b612ee782826040518060200160405280600081525061330c565b5050565b6000612f0c8473ffffffffffffffffffffffffffffffffffffffff1661331e565b1561306c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f3561255c565b8786866040518563ffffffff1660e01b8152600401612f579493929190613f59565b602060405180830381600087803b158015612f7157600080fd5b505af1925050508015612fa257506040513d601f19601f82011682018060405250810190612f9f9190613b0b565b60015b61301c573d8060008114612fd2576040519150601f19603f3d011682016040523d82523d6000602084013e612fd7565b606091505b50600081511415613014576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613071565b600190505b949350505050565b6060600b805461308890614454565b80601f01602080910402602001604051908101604052809291908181526020018280546130b490614454565b80156131015780601f106130d657610100808354040283529160200191613101565b820191906000526020600020905b8154815290600101906020018083116130e457829003601f168201915b5050505050905090565b60606000821415613153576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613267565b600082905060005b6000821461318557808061316e906144b7565b915050600a8261317e91906142cd565b915061315b565b60008167ffffffffffffffff8111156131a1576131a06145ed565b5b6040519080825280601f01601f1916602001820160405280156131d35781602001600182028036833780820191505090505b5090505b60008514613260576001826131ec9190614358565b9150600a856131fb9190614500565b60306132079190614277565b60f81b81838151811061321d5761321c6145be565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561325991906142cd565b94506131d7565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6133198383836001613341565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133dc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613417576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134246000868387613300565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561368957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561363d575061363b6000888488612eeb565b155b15613674576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506135c2565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506136d06000868387613306565b5050505050565b8280546136e390614454565b90600052602060002090601f016020900481019282613705576000855561374c565b82601f1061371e57805160ff191683800117855561374c565b8280016001018555821561374c579182015b8281111561374b578251825591602001919060010190613730565b5b50905061375991906137a0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156137b95760008160009055506001016137a1565b5090565b60006137d06137cb84614184565b61415f565b9050828152602081018484840111156137ec576137eb614621565b5b6137f7848285614412565b509392505050565b600061381261380d846141b5565b61415f565b90508281526020810184848401111561382e5761382d614621565b5b613839848285614412565b509392505050565b600081359050613850816148bf565b92915050565b600081359050613865816148d6565b92915050565b60008135905061387a816148ed565b92915050565b60008151905061388f816148ed565b92915050565b600082601f8301126138aa576138a961461c565b5b81356138ba8482602086016137bd565b91505092915050565b6000815190506138d281614904565b92915050565b600082601f8301126138ed576138ec61461c565b5b81356138fd8482602086016137ff565b91505092915050565b6000813590506139158161491b565b92915050565b6000602082840312156139315761393061462b565b5b600061393f84828501613841565b91505092915050565b6000806040838503121561395f5761395e61462b565b5b600061396d85828601613841565b925050602061397e85828601613841565b9150509250929050565b6000806000606084860312156139a1576139a061462b565b5b60006139af86828701613841565b93505060206139c086828701613841565b92505060406139d186828701613906565b9150509250925092565b600080600080608085870312156139f5576139f461462b565b5b6000613a0387828801613841565b9450506020613a1487828801613841565b9350506040613a2587828801613906565b925050606085013567ffffffffffffffff811115613a4657613a45614626565b5b613a5287828801613895565b91505092959194509250565b60008060408385031215613a7557613a7461462b565b5b6000613a8385828601613841565b9250506020613a9485828601613856565b9150509250929050565b60008060408385031215613ab557613ab461462b565b5b6000613ac385828601613841565b9250506020613ad485828601613906565b9150509250929050565b600060208284031215613af457613af361462b565b5b6000613b028482850161386b565b91505092915050565b600060208284031215613b2157613b2061462b565b5b6000613b2f84828501613880565b91505092915050565b600060208284031215613b4e57613b4d61462b565b5b6000613b5c848285016138c3565b91505092915050565b600060208284031215613b7b57613b7a61462b565b5b600082013567ffffffffffffffff811115613b9957613b98614626565b5b613ba5848285016138d8565b91505092915050565b600060208284031215613bc457613bc361462b565b5b6000613bd284828501613906565b91505092915050565b6000613be78383613eef565b60208301905092915050565b613bfc8161438c565b82525050565b6000613c0d8261420b565b613c178185614239565b9350613c22836141e6565b8060005b83811015613c53578151613c3a8882613bdb565b9750613c458361422c565b925050600181019050613c26565b5085935050505092915050565b613c698161439e565b82525050565b6000613c7a82614216565b613c84818561424a565b9350613c94818560208601614421565b613c9d81614630565b840191505092915050565b6000613cb382614221565b613cbd818561425b565b9350613ccd818560208601614421565b613cd681614630565b840191505092915050565b6000613cec82614221565b613cf6818561426c565b9350613d06818560208601614421565b80840191505092915050565b60008154613d1f81614454565b613d29818661426c565b94506001821660008114613d445760018114613d5557613d88565b60ff19831686528186019350613d88565b613d5e856141f6565b60005b83811015613d8057815481890152600182019150602081019050613d61565b838801955050505b50505092915050565b6000613d9e60218361425b565b9150613da982614641565b604082019050919050565b6000613dc160268361425b565b9150613dcc82614690565b604082019050919050565b6000613de4601e8361425b565b9150613def826146df565b602082019050919050565b6000613e0760258361425b565b9150613e1282614708565b604082019050919050565b6000613e2a60208361425b565b9150613e3582614757565b602082019050919050565b6000613e4d60268361425b565b9150613e5882614780565b604082019050919050565b6000613e7060138361425b565b9150613e7b826147cf565b602082019050919050565b6000613e9360348361425b565b9150613e9e826147f8565b604082019050919050565b6000613eb660188361425b565b9150613ec182614847565b602082019050919050565b6000613ed960298361425b565b9150613ee482614870565b604082019050919050565b613ef881614408565b82525050565b613f0781614408565b82525050565b6000613f198286613ce1565b9150613f258285613ce1565b9150613f318284613d12565b9150819050949350505050565b6000602082019050613f536000830184613bf3565b92915050565b6000608082019050613f6e6000830187613bf3565b613f7b6020830186613bf3565b613f886040830185613efe565b8181036060830152613f9a8184613c6f565b905095945050505050565b60006020820190508181036000830152613fbf8184613c02565b905092915050565b6000602082019050613fdc6000830184613c60565b92915050565b60006020820190508181036000830152613ffc8184613ca8565b905092915050565b6000602082019050818103600083015261401d81613d91565b9050919050565b6000602082019050818103600083015261403d81613db4565b9050919050565b6000602082019050818103600083015261405d81613dd7565b9050919050565b6000602082019050818103600083015261407d81613dfa565b9050919050565b6000602082019050818103600083015261409d81613e1d565b9050919050565b600060208201905081810360008301526140bd81613e40565b9050919050565b600060208201905081810360008301526140dd81613e63565b9050919050565b600060208201905081810360008301526140fd81613e86565b9050919050565b6000602082019050818103600083015261411d81613ea9565b9050919050565b6000602082019050818103600083015261413d81613ecc565b9050919050565b60006020820190506141596000830184613efe565b92915050565b600061416961417a565b90506141758282614486565b919050565b6000604051905090565b600067ffffffffffffffff82111561419f5761419e6145ed565b5b6141a882614630565b9050602081019050919050565b600067ffffffffffffffff8211156141d0576141cf6145ed565b5b6141d982614630565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061428282614408565b915061428d83614408565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142c2576142c1614531565b5b828201905092915050565b60006142d882614408565b91506142e383614408565b9250826142f3576142f2614560565b5b828204905092915050565b600061430982614408565b915061431483614408565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561434d5761434c614531565b5b828202905092915050565b600061436382614408565b915061436e83614408565b92508282101561438157614380614531565b5b828203905092915050565b6000614397826143e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006143e18261438c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561443f578082015181840152602081019050614424565b8381111561444e576000848401525b50505050565b6000600282049050600182168061446c57607f821691505b602082108114156144805761447f61458f565b5b50919050565b61448f82614630565b810181811067ffffffffffffffff821117156144ae576144ad6145ed565b5b80604052505050565b60006144c282614408565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144f5576144f4614531565b5b600182019050919050565b600061450b82614408565b915061451683614408565b92508261452657614525614560565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f7567682045544820666f72207468697320707572636861736560008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682061737365747320617661696c61626c652e2e2e0000600082015250565b7f596f752063616e206f6e6c79206d696e742032302061737365747320666f722060008201527f6672656521000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e206f6e6c79206d696e7420323020617373657473206174206160008201527f2074696d65210000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b7f486f6c642075702120596f7520776f756c6420627579206d6f7265206173736560008201527f7473207468616e20617661696c61626c652e2e2e000000000000000000000000602082015250565b7f576974686472617720646964206e6f7420776f726b2e2e2e0000000000000000600082015250565b7f596f7520776f756c642065786365656420746865206e756d626572206f66206660008201527f726565206d696e74730000000000000000000000000000000000000000000000602082015250565b6148c88161438c565b81146148d357600080fd5b50565b6148df8161439e565b81146148ea57600080fd5b50565b6148f6816143aa565b811461490157600080fd5b50565b61490d816143d6565b811461491857600080fd5b50565b61492481614408565b811461492f57600080fd5b5056fea26469706673582212203fcc0640c731852406820f9bd71f767f3c34c5f9296041b8918cf35086ad087164736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000010697066733a2f2f6e6f7472656164792f00000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c806380b1733511610139578063b88d4fde116100b6578063d26ea6c01161007a578063d26ea6c01461084b578063d5abeb0114610874578063e43252d71461089f578063e985e9c5146108c8578063edc3bc3f14610905578063f2fde38b1461094257610246565b8063b88d4fde14610766578063bac15a341461078f578063bb380204146107b8578063c87b56dd146107e3578063cfc86f7b1461082057610246565b806395d89b41116100fd57806395d89b4114610693578063977b055b146106be5780639b2e1d5c146106e9578063a22cb46514610726578063b5b2864f1461074f57610246565b806380b17335146105e1578063853828b61461060c5780638da5cb5b1461062357806391b7f5ed1461064e578063926427441461067757610246565b80633a723e32116101c757806355f804b31161018b57806355f804b3146104fc578063564566a8146105255780636352211e1461055057806370a082311461058d578063715018a6146105ca57610246565b80633a723e32146104155780633d302d061461044057806342842e0e1461046b5780634cb1ac02146104945780634f6ccce7146104bf57610246565b806318160ddd1161020e57806318160ddd14610342578063235b6ea11461036d57806323b872dd146103985780632f745c59146103c157806334918dfd146103fe57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806316ba10e014610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613ade565b61096b565b60405161027f9190613fc7565b60405180910390f35b34801561029457600080fd5b5061029d610ab5565b6040516102aa9190613fe2565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613bae565b610b47565b6040516102e79190613f3e565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613a9e565b610bc3565b005b34801561032557600080fd5b50610340600480360381019061033b9190613b65565b610cce565b005b34801561034e57600080fd5b50610357610d64565b6040516103649190614144565b60405180910390f35b34801561037957600080fd5b50610382610db9565b60405161038f9190614144565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190613988565b610dbf565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613a9e565b610dcf565b6040516103f59190614144565b60405180910390f35b34801561040a57600080fd5b50610413610fd6565b005b34801561042157600080fd5b5061042a61107e565b6040516104379190613fc7565b60405180910390f35b34801561044c57600080fd5b50610455611091565b6040516104629190614144565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190613988565b611097565b005b3480156104a057600080fd5b506104a96110b7565b6040516104b69190614144565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190613bae565b6110bc565b6040516104f39190614144565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190613b65565b61122d565b005b34801561053157600080fd5b5061053a6112c3565b6040516105479190613fc7565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190613bae565b6112d6565b6040516105849190613f3e565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af919061391b565b6112ec565b6040516105c19190614144565b60405180910390f35b3480156105d657600080fd5b506105df6113bc565b005b3480156105ed57600080fd5b506105f6611444565b6040516106039190614144565b60405180910390f35b34801561061857600080fd5b5061062161144a565b005b34801561062f57600080fd5b50610638611542565b6040516106459190613f3e565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613bae565b61156c565b005b610691600480360381019061068c9190613bae565b6115f2565b005b34801561069f57600080fd5b506106a86118d4565b6040516106b59190613fe2565b60405180910390f35b3480156106ca57600080fd5b506106d3611966565b6040516106e09190614144565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b919061391b565b61196c565b60405161071d9190613fa5565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190613a5e565b611a76565b005b34801561075b57600080fd5b50610764611c9a565b005b34801561077257600080fd5b5061078d600480360381019061078891906139db565b611d42565b005b34801561079b57600080fd5b506107b660048036038101906107b19190613a9e565b611d95565b005b3480156107c457600080fd5b506107cd611e8a565b6040516107da9190613fe2565b60405180910390f35b3480156107ef57600080fd5b5061080a60048036038101906108059190613bae565b611f18565b6040516108179190613fe2565b60405180910390f35b34801561082c57600080fd5b50610835611fb9565b6040516108429190613fe2565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d919061391b565b612047565b005b34801561088057600080fd5b50610889612107565b6040516108969190614144565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c1919061391b565b61210d565b005b3480156108d457600080fd5b506108ef60048036038101906108ea9190613948565b6121e4565b6040516108fc9190613fc7565b60405180910390f35b34801561091157600080fd5b5061092c60048036038101906109279190613948565b612363565b6040516109399190613fc7565b60405180910390f35b34801561094e57600080fd5b506109696004803603810190610964919061391b565b612392565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae5750610aad8261248a565b5b9050919050565b606060018054610ac490614454565b80601f0160208091040260200160405190810160405280929190818152602001828054610af090614454565b8015610b3d5780601f10610b1257610100808354040283529160200191610b3d565b820191906000526020600020905b815481529060010190602001808311610b2057829003601f168201915b5050505050905090565b6000610b52826124f4565b610b88576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bce826112d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c36576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c5561255c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c875750610c8581610c8061255c565b6121e4565b155b15610cbe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc9838383612564565b505050565b610cd661255c565b73ffffffffffffffffffffffffffffffffffffffff16610cf4611542565b73ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190614084565b60405180910390fd5b80600c9080519060200190610d609291906136d7565b5050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b600a5481565b610dca838383612616565b505050565b6000610dda836112ec565b8210610e12576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610fca576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610f295750610fbd565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f6957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fbb5786841415610fb2578195505050505050610fd0565b83806001019450505b505b8080600101915050610e4c565b50600080fd5b92915050565b610fde61255c565b73ffffffffffffffffffffffffffffffffffffffff16610ffc611542565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990614084565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60019054906101000a900460ff1681565b60085481565b6110b283838360405180602001604052806000815250611d42565b505050565b601481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156111f5576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111e757858314156111de5781945050505050611228565b82806001019350505b5080806001019150506110f4565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61123561255c565b73ffffffffffffffffffffffffffffffffffffffff16611253611542565b73ffffffffffffffffffffffffffffffffffffffff16146112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090614084565b60405180910390fd5b80600b90805190602001906112bf9291906136d7565b5050565b600d60009054906101000a900460ff1681565b60006112e182612b33565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611354576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113c461255c565b73ffffffffffffffffffffffffffffffffffffffff166113e2611542565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614084565b60405180910390fd5b6114426000612ddb565b565b61047e81565b61145261255c565b73ffffffffffffffffffffffffffffffffffffffff16611470611542565b73ffffffffffffffffffffffffffffffffffffffff16146114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90614084565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690614104565b60405180910390fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61157461255c565b73ffffffffffffffffffffffffffffffffffffffff16611592611542565b73ffffffffffffffffffffffffffffffffffffffff16146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90614084565b60405180910390fd5b80600a8190555050565b600d60009054906101000a900460ff16611641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611638906140c4565b60405180910390fd5b6000811015801561165457506009548111155b611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a906140a4565b60405180910390fd5b6008546106366116a39190614358565b6116bd826116af610d64565b612ea190919063ffffffff16565b11156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590614044565b60405180910390fd5b61047e61171b8261170d610d64565b612ea190919063ffffffff16565b111561177d5761173681600a54612eb790919063ffffffff16565b341015611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90614004565b60405180910390fd5b6118c7565b61047e61179a8261178c610d64565b612ea190919063ffffffff16565b11156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290614124565b60405180910390fd5b601461182f82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ea190919063ffffffff16565b1115611870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186790614064565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118bf9190614277565b925050819055505b6118d13382612ecd565b50565b6060600280546118e390614454565b80601f016020809104026020016040519081016040528092919081815260200182805461190f90614454565b801561195c5780601f106119315761010080835404028352916020019161195c565b820191906000526020600020905b81548152906001019060200180831161193f57829003601f168201915b5050505050905090565b60095481565b60606000611979836112ec565b905060008114156119d657600067ffffffffffffffff81111561199f5761199e6145ed565b5b6040519080825280602002602001820160405280156119cd5781602001602082028036833780820191505090505b50915050611a71565b60008167ffffffffffffffff8111156119f2576119f16145ed565b5b604051908082528060200260200182016040528015611a205781602001602082028036833780820191505090505b50905060005b82811015611a6a57611a388582610dcf565b828281518110611a4b57611a4a6145be565b5b6020026020010181815250508080611a62906144b7565b915050611a26565b5080925050505b919050565b611a7e61255c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60019054906101000a900460ff16158015611b5857506001151560106000611b0b61255c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514155b15611b8f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611b9c61255c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c4961255c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c8e9190613fc7565b60405180910390a35050565b611ca261255c565b73ffffffffffffffffffffffffffffffffffffffff16611cc0611542565b73ffffffffffffffffffffffffffffffffffffffff1614611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d90614084565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b611d4d848484612616565b611d5984848484612eeb565b611d8f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d9d61255c565b73ffffffffffffffffffffffffffffffffffffffff16611dbb611542565b73ffffffffffffffffffffffffffffffffffffffff1614611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0890614084565b60405180910390fd5b600854610636611e219190614358565b611e3b82611e2d610d64565b612ea190919063ffffffff16565b1115611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e73906140e4565b60405180910390fd5b611e868282612ecd565b5050565b600c8054611e9790614454565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec390614454565b8015611f105780601f10611ee557610100808354040283529160200191611f10565b820191906000526020600020905b815481529060010190602001808311611ef357829003601f168201915b505050505081565b6060611f23826124f4565b611f59576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611f63613079565b90506000815111611f835760405180602001604052806000815250611fb1565b80611f8d8461310b565b600c604051602001611fa193929190613f0d565b6040516020818303038152906040525b915050919050565b600b8054611fc690614454565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff290614454565b801561203f5780601f106120145761010080835404028352916020019161203f565b820191906000526020600020905b81548152906001019060200180831161202257829003601f168201915b505050505081565b61204f61255c565b73ffffffffffffffffffffffffffffffffffffffff1661206d611542565b73ffffffffffffffffffffffffffffffffffffffff16146120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90614084565b60405180910390fd5b80600d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61063681565b61211561255c565b73ffffffffffffffffffffffffffffffffffffffff16612133611542565b73ffffffffffffffffffffffffffffffffffffffff1614612189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218090614084565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600d60019054906101000a900460ff1615801561227a575060011515601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514155b1561228957600091505061235d565b8273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016122d99190613f3e565b60206040518083038186803b1580156122f157600080fd5b505afa158015612305573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123299190613b38565b73ffffffffffffffffffffffffffffffffffffffff16141561234f57600191505061235d565b612359848461326c565b9150505b92915050565b60066020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b61239a61255c565b73ffffffffffffffffffffffffffffffffffffffff166123b8611542565b73ffffffffffffffffffffffffffffffffffffffff161461240e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240590614084565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561247e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247590614024565b60405180910390fd5b61248781612ddb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612555575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061262182612b33565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661264861255c565b73ffffffffffffffffffffffffffffffffffffffff16148061267b575061267a826000015161267561255c565b6121e4565b5b806126c0575061268961255c565b73ffffffffffffffffffffffffffffffffffffffff166126a884610b47565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126f9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612762576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127c9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127d68585856001613300565b6127e66000848460000151612564565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ac35760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612ac25782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2c8585856001613306565b5050505050565b612b3b61375d565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612da4576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612da257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c86578092505050612dd6565b5b600115612da157818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d9c578092505050612dd6565b612c87565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612eaf9190614277565b905092915050565b60008183612ec591906142fe565b905092915050565b612ee782826040518060200160405280600081525061330c565b5050565b6000612f0c8473ffffffffffffffffffffffffffffffffffffffff1661331e565b1561306c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f3561255c565b8786866040518563ffffffff1660e01b8152600401612f579493929190613f59565b602060405180830381600087803b158015612f7157600080fd5b505af1925050508015612fa257506040513d601f19601f82011682018060405250810190612f9f9190613b0b565b60015b61301c573d8060008114612fd2576040519150601f19603f3d011682016040523d82523d6000602084013e612fd7565b606091505b50600081511415613014576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613071565b600190505b949350505050565b6060600b805461308890614454565b80601f01602080910402602001604051908101604052809291908181526020018280546130b490614454565b80156131015780601f106130d657610100808354040283529160200191613101565b820191906000526020600020905b8154815290600101906020018083116130e457829003601f168201915b5050505050905090565b60606000821415613153576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613267565b600082905060005b6000821461318557808061316e906144b7565b915050600a8261317e91906142cd565b915061315b565b60008167ffffffffffffffff8111156131a1576131a06145ed565b5b6040519080825280601f01601f1916602001820160405280156131d35781602001600182028036833780820191505090505b5090505b60008514613260576001826131ec9190614358565b9150600a856131fb9190614500565b60306132079190614277565b60f81b81838151811061321d5761321c6145be565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561325991906142cd565b94506131d7565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6133198383836001613341565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133dc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613417576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134246000868387613300565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561368957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561363d575061363b6000888488612eeb565b155b15613674576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506135c2565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506136d06000868387613306565b5050505050565b8280546136e390614454565b90600052602060002090601f016020900481019282613705576000855561374c565b82601f1061371e57805160ff191683800117855561374c565b8280016001018555821561374c579182015b8281111561374b578251825591602001919060010190613730565b5b50905061375991906137a0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156137b95760008160009055506001016137a1565b5090565b60006137d06137cb84614184565b61415f565b9050828152602081018484840111156137ec576137eb614621565b5b6137f7848285614412565b509392505050565b600061381261380d846141b5565b61415f565b90508281526020810184848401111561382e5761382d614621565b5b613839848285614412565b509392505050565b600081359050613850816148bf565b92915050565b600081359050613865816148d6565b92915050565b60008135905061387a816148ed565b92915050565b60008151905061388f816148ed565b92915050565b600082601f8301126138aa576138a961461c565b5b81356138ba8482602086016137bd565b91505092915050565b6000815190506138d281614904565b92915050565b600082601f8301126138ed576138ec61461c565b5b81356138fd8482602086016137ff565b91505092915050565b6000813590506139158161491b565b92915050565b6000602082840312156139315761393061462b565b5b600061393f84828501613841565b91505092915050565b6000806040838503121561395f5761395e61462b565b5b600061396d85828601613841565b925050602061397e85828601613841565b9150509250929050565b6000806000606084860312156139a1576139a061462b565b5b60006139af86828701613841565b93505060206139c086828701613841565b92505060406139d186828701613906565b9150509250925092565b600080600080608085870312156139f5576139f461462b565b5b6000613a0387828801613841565b9450506020613a1487828801613841565b9350506040613a2587828801613906565b925050606085013567ffffffffffffffff811115613a4657613a45614626565b5b613a5287828801613895565b91505092959194509250565b60008060408385031215613a7557613a7461462b565b5b6000613a8385828601613841565b9250506020613a9485828601613856565b9150509250929050565b60008060408385031215613ab557613ab461462b565b5b6000613ac385828601613841565b9250506020613ad485828601613906565b9150509250929050565b600060208284031215613af457613af361462b565b5b6000613b028482850161386b565b91505092915050565b600060208284031215613b2157613b2061462b565b5b6000613b2f84828501613880565b91505092915050565b600060208284031215613b4e57613b4d61462b565b5b6000613b5c848285016138c3565b91505092915050565b600060208284031215613b7b57613b7a61462b565b5b600082013567ffffffffffffffff811115613b9957613b98614626565b5b613ba5848285016138d8565b91505092915050565b600060208284031215613bc457613bc361462b565b5b6000613bd284828501613906565b91505092915050565b6000613be78383613eef565b60208301905092915050565b613bfc8161438c565b82525050565b6000613c0d8261420b565b613c178185614239565b9350613c22836141e6565b8060005b83811015613c53578151613c3a8882613bdb565b9750613c458361422c565b925050600181019050613c26565b5085935050505092915050565b613c698161439e565b82525050565b6000613c7a82614216565b613c84818561424a565b9350613c94818560208601614421565b613c9d81614630565b840191505092915050565b6000613cb382614221565b613cbd818561425b565b9350613ccd818560208601614421565b613cd681614630565b840191505092915050565b6000613cec82614221565b613cf6818561426c565b9350613d06818560208601614421565b80840191505092915050565b60008154613d1f81614454565b613d29818661426c565b94506001821660008114613d445760018114613d5557613d88565b60ff19831686528186019350613d88565b613d5e856141f6565b60005b83811015613d8057815481890152600182019150602081019050613d61565b838801955050505b50505092915050565b6000613d9e60218361425b565b9150613da982614641565b604082019050919050565b6000613dc160268361425b565b9150613dcc82614690565b604082019050919050565b6000613de4601e8361425b565b9150613def826146df565b602082019050919050565b6000613e0760258361425b565b9150613e1282614708565b604082019050919050565b6000613e2a60208361425b565b9150613e3582614757565b602082019050919050565b6000613e4d60268361425b565b9150613e5882614780565b604082019050919050565b6000613e7060138361425b565b9150613e7b826147cf565b602082019050919050565b6000613e9360348361425b565b9150613e9e826147f8565b604082019050919050565b6000613eb660188361425b565b9150613ec182614847565b602082019050919050565b6000613ed960298361425b565b9150613ee482614870565b604082019050919050565b613ef881614408565b82525050565b613f0781614408565b82525050565b6000613f198286613ce1565b9150613f258285613ce1565b9150613f318284613d12565b9150819050949350505050565b6000602082019050613f536000830184613bf3565b92915050565b6000608082019050613f6e6000830187613bf3565b613f7b6020830186613bf3565b613f886040830185613efe565b8181036060830152613f9a8184613c6f565b905095945050505050565b60006020820190508181036000830152613fbf8184613c02565b905092915050565b6000602082019050613fdc6000830184613c60565b92915050565b60006020820190508181036000830152613ffc8184613ca8565b905092915050565b6000602082019050818103600083015261401d81613d91565b9050919050565b6000602082019050818103600083015261403d81613db4565b9050919050565b6000602082019050818103600083015261405d81613dd7565b9050919050565b6000602082019050818103600083015261407d81613dfa565b9050919050565b6000602082019050818103600083015261409d81613e1d565b9050919050565b600060208201905081810360008301526140bd81613e40565b9050919050565b600060208201905081810360008301526140dd81613e63565b9050919050565b600060208201905081810360008301526140fd81613e86565b9050919050565b6000602082019050818103600083015261411d81613ea9565b9050919050565b6000602082019050818103600083015261413d81613ecc565b9050919050565b60006020820190506141596000830184613efe565b92915050565b600061416961417a565b90506141758282614486565b919050565b6000604051905090565b600067ffffffffffffffff82111561419f5761419e6145ed565b5b6141a882614630565b9050602081019050919050565b600067ffffffffffffffff8211156141d0576141cf6145ed565b5b6141d982614630565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061428282614408565b915061428d83614408565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142c2576142c1614531565b5b828201905092915050565b60006142d882614408565b91506142e383614408565b9250826142f3576142f2614560565b5b828204905092915050565b600061430982614408565b915061431483614408565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561434d5761434c614531565b5b828202905092915050565b600061436382614408565b915061436e83614408565b92508282101561438157614380614531565b5b828203905092915050565b6000614397826143e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006143e18261438c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561443f578082015181840152602081019050614424565b8381111561444e576000848401525b50505050565b6000600282049050600182168061446c57607f821691505b602082108114156144805761447f61458f565b5b50919050565b61448f82614630565b810181811067ffffffffffffffff821117156144ae576144ad6145ed565b5b80604052505050565b60006144c282614408565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144f5576144f4614531565b5b600182019050919050565b600061450b82614408565b915061451683614408565b92508261452657614525614560565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f7567682045544820666f72207468697320707572636861736560008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682061737365747320617661696c61626c652e2e2e0000600082015250565b7f596f752063616e206f6e6c79206d696e742032302061737365747320666f722060008201527f6672656521000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e206f6e6c79206d696e7420323020617373657473206174206160008201527f2074696d65210000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b7f486f6c642075702120596f7520776f756c6420627579206d6f7265206173736560008201527f7473207468616e20617661696c61626c652e2e2e000000000000000000000000602082015250565b7f576974686472617720646964206e6f7420776f726b2e2e2e0000000000000000600082015250565b7f596f7520776f756c642065786365656420746865206e756d626572206f66206660008201527f726565206d696e74730000000000000000000000000000000000000000000000602082015250565b6148c88161438c565b81146148d357600080fd5b50565b6148df8161439e565b81146148ea57600080fd5b50565b6148f6816143aa565b811461490157600080fd5b50565b61490d816143d6565b811461491857600080fd5b50565b61492481614408565b811461492f57600080fd5b5056fea26469706673582212203fcc0640c731852406820f9bd71f767f3c34c5f9296041b8918cf35086ad087164736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000010697066733a2f2f6e6f7472656164792f00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://notready/
Arg [1] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 697066733a2f2f6e6f7472656164792f00000000000000000000000000000000


Deployed Bytecode Sourcemap

53619:4963:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36948:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41060:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40623:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56526:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34185:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53959:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41925:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35771:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56104:89;;;;;;;;;;;;;:::i;:::-;;54106:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53881:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42166:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53824:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34758:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56418:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54075:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39367:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37384:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11822:103;;;;;;;;;;;;;:::i;:::-;;53777:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57242:192;;;;;;;;;;;;;:::i;:::-;;11171:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56007:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54595:929;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39727:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53921:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55534:465;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58051:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56202:86;;;;;;;;;;;;;:::i;:::-;;42422:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56976:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54034:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56639:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54000:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58451:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53730:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57442:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57548:495;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33914:70;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12080:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36948:372;37050:4;37102:25;37087:40;;;:11;:40;;;;:105;;;;37159:33;37144:48;;;:11;:48;;;;37087:105;:172;;;;37224:35;37209:50;;;:11;:50;;;;37087:172;:225;;;;37276:36;37300:11;37276:23;:36::i;:::-;37087:225;37067:245;;36948:372;;;:::o;39558:100::-;39612:13;39645:5;39638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39558:100;:::o;41060:204::-;41128:7;41153:16;41161:7;41153;:16::i;:::-;41148:64;;41178:34;;;;;;;;;;;;;;41148:64;41232:15;:24;41248:7;41232:24;;;;;;;;;;;;;;;;;;;;;41225:31;;41060:204;;;:::o;40623:371::-;40696:13;40712:24;40728:7;40712:15;:24::i;:::-;40696:40;;40757:5;40751:11;;:2;:11;;;40747:48;;;40771:24;;;;;;;;;;;;;;40747:48;40828:5;40812:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;40838:37;40855:5;40862:12;:10;:12::i;:::-;40838:16;:37::i;:::-;40837:38;40812:63;40808:138;;;40899:35;;;;;;;;;;;;;;40808:138;40958:28;40967:2;40971:7;40980:5;40958:8;:28::i;:::-;40685:309;40623:371;;:::o;56526:105::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56614:9:::1;56601:10;:22;;;;;;;;;;;;:::i;:::-;;56526:105:::0;:::o;34185:280::-;34238:7;34430:12;;;;;;;;;;;34414:13;;;;;;;;;;:28;34407:35;;;;34185:280;:::o;53959:34::-;;;;:::o;41925:170::-;42059:28;42069:4;42075:2;42079:7;42059:9;:28::i;:::-;41925:170;;;:::o;35771:1105::-;35860:7;35893:16;35903:5;35893:9;:16::i;:::-;35884:5;:25;35880:61;;35918:23;;;;;;;;;;;;;;35880:61;35952:22;35977:13;;;;;;;;;;;35952:38;;;;36001:19;36031:25;36232:9;36227:557;36247:14;36243:1;:18;36227:557;;;36287:31;36321:11;:14;36333:1;36321:14;;;;;;;;;;;36287:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36358:9;:16;;;36354:73;;;36399:8;;;36354:73;36475:1;36449:28;;:9;:14;;;:28;;;36445:111;;36522:9;:14;;;36502:34;;36445:111;36599:5;36578:26;;:17;:26;;;36574:195;;;36648:5;36633:11;:20;36629:85;;;36689:1;36682:8;;;;;;;;;36629:85;36736:13;;;;;;;36574:195;36268:516;36227:557;36263:3;;;;;;;36227:557;;;;36860:8;;;35771:1105;;;;;:::o;56104:89::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56173:12:::1;;;;;;;;;;;56172:13;56157:12;;:28;;;;;;;;;;;;;;;;;;56104:89::o:0;54106:23::-;;;;;;;;;;;;;:::o;53881:33::-;;;;:::o;42166:185::-;42304:39;42321:4;42327:2;42331:7;42304:39;;;;;;;;;;;;:16;:39::i;:::-;42166:185;;;:::o;53824:50::-;53872:2;53824:50;:::o;34758:713::-;34825:7;34845:22;34870:13;;;;;;;;;;34845:38;;;;34894:19;35089:9;35084:328;35104:14;35100:1;:18;35084:328;;;35144:31;35178:11;:14;35190:1;35178:14;;;;;;;;;;;35144:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35216:9;:16;;;35211:186;;35276:5;35261:11;:20;35257:85;;;35317:1;35310:8;;;;;;;;35257:85;35364:13;;;;;;;35211:186;35125:287;35120:3;;;;;;;35084:328;;;;35440:23;;;;;;;;;;;;;;34758:713;;;;:::o;56418:102::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56505:7:::1;56489:13;:23;;;;;;;;;;;;:::i;:::-;;56418:102:::0;:::o;54075:24::-;;;;;;;;;;;;;:::o;39367:124::-;39431:7;39458:20;39470:7;39458:11;:20::i;:::-;:25;;;39451:32;;39367:124;;;:::o;37384:206::-;37448:7;37489:1;37472:19;;:5;:19;;;37468:60;;;37500:28;;;;;;;;;;;;;;37468:60;37554:12;:19;37567:5;37554:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37546:36;;37539:43;;37384:206;;;:::o;11822:103::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11887:30:::1;11914:1;11887:18;:30::i;:::-;11822:103::o:0;53777:40::-;53813:4;53777:40;:::o;57242:192::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57293:15:::1;57311:21;57293:39;;57359:10;57351:24;;:33;57376:7;57351:33;;;;;;;;;;;;;;;;;;;;;;;57343:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;57282:152;57242:192::o:0;11171:87::-;11217:7;11244:6;;;;;;;;;;;11237:13;;11171:87;:::o;56007:89::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56080:8:::1;56071:6;:17;;;;56007:89:::0;:::o;54595:929::-;54667:12;;;;;;;;;;;54659:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;54735:1;54722:9;:14;;:42;;;;;54753:11;;54740:9;:24;;54722:42;54714:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;54883:14;;53766:4;54871:26;;;;:::i;:::-;54839:28;54857:9;54839:13;:11;:13::i;:::-;:17;;:28;;;;:::i;:::-;:58;;54831:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;53813:4;54961:28;54979:9;54961:13;:11;:13::i;:::-;:17;;:28;;;;:::i;:::-;:40;54958:516;;;55038:21;55049:9;55038:6;;:10;;:21;;;;:::i;:::-;55025:9;:34;;55017:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;54958:516;;;53813:4;55153:28;55171:9;55153:13;:11;:13::i;:::-;:17;;:28;;;;:::i;:::-;:41;;55145:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;53872:2;55280:42;55312:9;55280:15;:27;55296:10;55280:27;;;;;;;;;;;;;;;;:31;;:42;;;;:::i;:::-;:67;;55272:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;55453:9;55422:15;:27;55438:10;55422:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;54958:516;55484:32;55494:10;55506:9;55484;:32::i;:::-;54595:929;:::o;39727:104::-;39783:13;39816:7;39809:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39727:104;:::o;53921:31::-;;;;:::o;55534:465::-;55594:16;55623:18;55644:17;55654:6;55644:9;:17::i;:::-;55623:38;;55690:1;55676:10;:15;55672:320;;;55729:1;55715:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55708:23;;;;;55672:320;55764:25;55806:10;55792:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55764:53;;55837:9;55832:119;55856:10;55852:1;:14;55832:119;;;55905:30;55925:6;55933:1;55905:19;:30::i;:::-;55891:8;55900:1;55891:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;55868:3;;;;;:::i;:::-;;;;55832:119;;;;55972:8;55965:15;;;;55534:465;;;;:::o;58051:392::-;58154:12;:10;:12::i;:::-;58142:24;;:8;:24;;;58138:54;;;58175:17;;;;;;;;;;;;;;58138:54;58207:11;;;;;;;;;;;58206:12;:47;;;;;58249:4;58222:31;;:9;:23;58232:12;:10;:12::i;:::-;58222:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;;58206:47;58203:103;;;58277:17;;;;;;;;;;;;;;58203:103;58363:8;58318:18;:32;58337:12;:10;:12::i;:::-;58318:32;;;;;;;;;;;;;;;:42;58351:8;58318:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;58416:8;58387:48;;58402:12;:10;:12::i;:::-;58387:48;;;58426:8;58387:48;;;;;;:::i;:::-;;;;;;;;58051:392;;:::o;56202:86::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56269:11:::1;;;;;;;;;;;56268:12;56254:11;;:26;;;;;;;;;;;;;;;;;;56202:86::o:0;42422:342::-;42589:28;42599:4;42605:2;42609:7;42589:9;:28::i;:::-;42633:48;42656:4;42662:2;42666:7;42675:5;42633:22;:48::i;:::-;42628:129;;42705:40;;;;;;;;;;;;;;42628:129;42422:342;;;;:::o;56976:258::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57106:14:::1;;53766:4;57094:26;;;;:::i;:::-;57064;57082:7;57064:13;:11;:13::i;:::-;:17;;:26;;;;:::i;:::-;:56;;57056:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;57201:23;57211:3;57216:7;57201:9;:23::i;:::-;56976:258:::0;;:::o;54034:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56639:329::-;56712:13;56743:16;56751:7;56743;:16::i;:::-;56738:59;;56768:29;;;;;;;;;;;;;;56738:59;56810:21;56834:10;:8;:10::i;:::-;56810:34;;56886:1;56868:7;56862:21;:25;:98;;;;;;;;;;;;;;;;;56914:7;56923:18;:7;:16;:18::i;:::-;56943:10;56897:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56862:98;56855:105;;;56639:329;;;:::o;54000:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58451:128::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58559:12:::1;58536:20;;:35;;;;;;;;;;;;;;;;;;58451:128:::0;:::o;53730:40::-;53766:4;53730:40;:::o;57442:98::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57528:4:::1;57509:9;:16;57519:5;57509:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;57442:98:::0;:::o;57548:495::-;57636:4;57715:27;57759:20;;;;;;;;;;;57715:65;;57795:11;;;;;;;;;;;57794:12;:40;;;;;57830:4;57810:24;;:9;:16;57820:5;57810:16;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;;57794:40;57791:83;;;57857:5;57850:12;;;;;57791:83;57929:8;57888:49;;57896:13;:21;;;57918:5;57896:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57888:49;;;57884:93;;;57961:4;57954:11;;;;;57884:93;57996:39;58019:5;58026:8;57996:22;:39::i;:::-;57989:46;;;57548:495;;;;;:::o;33914:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12080:201::-;11402:12;:10;:12::i;:::-;11391:23;;:7;:5;:7::i;:::-;:23;;;11383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12189:1:::1;12169:22;;:8;:22;;;;12161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12245:28;12264:8;12245:18;:28::i;:::-;12080:201:::0;:::o;23987:157::-;24072:4;24111:25;24096:40;;;:11;:40;;;;24089:47;;23987:157;;;:::o;43019:144::-;43076:4;43110:13;;;;;;;;;;;43100:23;;:7;:23;:55;;;;;43128:11;:20;43140:7;43128:20;;;;;;;;;;;:27;;;;;;;;;;;;43127:28;43100:55;43093:62;;43019:144;;;:::o;9887:98::-;9940:7;9967:10;9960:17;;9887:98;:::o;50235:196::-;50377:2;50350:15;:24;50366:7;50350:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50415:7;50411:2;50395:28;;50404:5;50395:28;;;;;;;;;;;;50235:196;;;:::o;45736:2112::-;45851:35;45889:20;45901:7;45889:11;:20::i;:::-;45851:58;;45922:22;45964:13;:18;;;45948:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;45999:50;46016:13;:18;;;46036:12;:10;:12::i;:::-;45999:16;:50::i;:::-;45948:101;:154;;;;46090:12;:10;:12::i;:::-;46066:36;;:20;46078:7;46066:11;:20::i;:::-;:36;;;45948:154;45922:181;;46121:17;46116:66;;46147:35;;;;;;;;;;;;;;46116:66;46219:4;46197:26;;:13;:18;;;:26;;;46193:67;;46232:28;;;;;;;;;;;;;;46193:67;46289:1;46275:16;;:2;:16;;;46271:52;;;46300:23;;;;;;;;;;;;;;46271:52;46336:43;46358:4;46364:2;46368:7;46377:1;46336:21;:43::i;:::-;46444:49;46461:1;46465:7;46474:13;:18;;;46444:8;:49::i;:::-;46819:1;46789:12;:18;46802:4;46789:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46863:1;46835:12;:16;46848:2;46835:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46909:2;46881:11;:20;46893:7;46881:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46971:15;46926:11;:20;46938:7;46926:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;47239:19;47271:1;47261:7;:11;47239:33;;47332:1;47291:43;;:11;:24;47303:11;47291:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;47287:445;;;47516:13;;;;;;;;;;47502:27;;:11;:27;47498:219;;;47586:13;:18;;;47554:11;:24;47566:11;47554:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47669:13;:28;;;47627:11;:24;47639:11;47627:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;47498:219;47287:445;46764:979;47779:7;47775:2;47760:27;;47769:4;47760:27;;;;;;;;;;;;47798:42;47819:4;47825:2;47829:7;47838:1;47798:20;:42::i;:::-;45840:2008;;45736:2112;;;:::o;38222:1083::-;38283:21;;:::i;:::-;38317:12;38332:7;38317:22;;38388:13;;;;;;;;;;38381:20;;:4;:20;38377:861;;;38422:31;38456:11;:17;38468:4;38456:17;;;;;;;;;;;38422:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38497:9;:16;;;38492:731;;38568:1;38542:28;;:9;:14;;;:28;;;38538:101;;38606:9;38599:16;;;;;;38538:101;38943:261;38950:4;38943:261;;;38983:6;;;;;;;;39028:11;:17;39040:4;39028:17;;;;;;;;;;;39016:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39102:1;39076:28;;:9;:14;;;:28;;;39072:109;;39144:9;39137:16;;;;;;39072:109;38943:261;;;38492:731;38403:835;38377:861;39266:31;;;;;;;;;;;;;;38222:1083;;;;:::o;12441:191::-;12515:16;12534:6;;;;;;;;;;;12515:25;;12560:8;12551:6;;:17;;;;;;;;;;;;;;;;;;12615:8;12584:40;;12605:8;12584:40;;;;;;;;;;;;12504:128;12441:191;:::o;2903:98::-;2961:7;2992:1;2988;:5;;;;:::i;:::-;2981:12;;2903:98;;;;:::o;3641:::-;3699:7;3730:1;3726;:5;;;;:::i;:::-;3719:12;;3641:98;;;;:::o;43171:104::-;43240:27;43250:2;43254:8;43240:27;;;;;;;;;;;;:9;:27::i;:::-;43171:104;;:::o;50996:790::-;51151:4;51172:15;:2;:13;;;:15::i;:::-;51168:611;;;51224:2;51208:36;;;51245:12;:10;:12::i;:::-;51259:4;51265:7;51274:5;51208:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51204:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51471:1;51454:6;:13;:18;51450:259;;;51504:40;;;;;;;;;;;;;;51450:259;51659:6;51653:13;51644:6;51640:2;51636:15;51629:38;51204:520;51341:45;;;51331:55;;;:6;:55;;;;51324:62;;;;;51168:611;51763:4;51756:11;;50996:790;;;;;;;:::o;56296:114::-;56356:13;56389;56382:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56296:114;:::o;7441:723::-;7497:13;7727:1;7718:5;:10;7714:53;;;7745:10;;;;;;;;;;;;;;;;;;;;;7714:53;7777:12;7792:5;7777:20;;7808:14;7833:78;7848:1;7840:4;:9;7833:78;;7866:8;;;;;:::i;:::-;;;;7897:2;7889:10;;;;;:::i;:::-;;;7833:78;;;7921:19;7953:6;7943:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7921:39;;7971:154;7987:1;7978:5;:10;7971:154;;8015:1;8005:11;;;;;:::i;:::-;;;8082:2;8074:5;:10;;;;:::i;:::-;8061:2;:24;;;;:::i;:::-;8048:39;;8031:6;8038;8031:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8111:2;8102:11;;;;;:::i;:::-;;;7971:154;;;8149:6;8135:21;;;;;7441:723;;;;:::o;41694:164::-;41791:4;41815:18;:25;41834:5;41815:25;;;;;;;;;;;;;;;:35;41841:8;41815:35;;;;;;;;;;;;;;;;;;;;;;;;;41808:42;;41694:164;;;;:::o;52434:159::-;;;;;:::o;53252:158::-;;;;;:::o;43638:163::-;43761:32;43767:2;43771:8;43781:5;43788:4;43761:5;:32::i;:::-;43638:163;;;:::o;13880:326::-;13940:4;14197:1;14175:7;:19;;;:23;14168:30;;13880:326;;;:::o;44060:1422::-;44199:20;44222:13;;;;;;;;;;;44199:36;;;;44264:1;44250:16;;:2;:16;;;44246:48;;;44275:19;;;;;;;;;;;;;;44246:48;44321:1;44309:8;:13;44305:44;;;44331:18;;;;;;;;;;;;;;44305:44;44362:61;44392:1;44396:2;44400:12;44414:8;44362:21;:61::i;:::-;44736:8;44701:12;:16;44714:2;44701:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44800:8;44760:12;:16;44773:2;44760:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44859:2;44826:11;:25;44838:12;44826:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44926:15;44876:11;:25;44888:12;44876:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44959:20;44982:12;44959:35;;45016:9;45011:328;45031:8;45027:1;:12;45011:328;;;45095:12;45091:2;45070:38;;45087:1;45070:38;;;;;;;;;;;;45131:4;:68;;;;;45140:59;45171:1;45175:2;45179:12;45193:5;45140:22;:59::i;:::-;45139:60;45131:68;45127:164;;;45231:40;;;;;;;;;;;;;;45127:164;45309:14;;;;;;;45041:3;;;;;;;45011:328;;;;45379:12;45355:13;;:37;;;;;;;;;;;;;;;;;;44676:728;45414:60;45443:1;45447:2;45451:12;45465:8;45414:20;:60::i;:::-;44188:1294;44060:1422;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:327::-;5885:6;5934:2;5922:9;5913:7;5909:23;5905:32;5902:119;;;5940:79;;:::i;:::-;5902:119;6060:1;6085:52;6129:7;6120:6;6109:9;6105:22;6085:52;:::i;:::-;6075:62;;6031:116;5827:327;;;;:::o;6160:349::-;6229:6;6278:2;6266:9;6257:7;6253:23;6249:32;6246:119;;;6284:79;;:::i;:::-;6246:119;6404:1;6429:63;6484:7;6475:6;6464:9;6460:22;6429:63;:::i;:::-;6419:73;;6375:127;6160:349;;;;:::o;6515:409::-;6614:6;6663:2;6651:9;6642:7;6638:23;6634:32;6631:119;;;6669:79;;:::i;:::-;6631:119;6789:1;6814:93;6899:7;6890:6;6879:9;6875:22;6814:93;:::i;:::-;6804:103;;6760:157;6515:409;;;;:::o;6930:509::-;6999:6;7048:2;7036:9;7027:7;7023:23;7019:32;7016:119;;;7054:79;;:::i;:::-;7016:119;7202:1;7191:9;7187:17;7174:31;7232:18;7224:6;7221:30;7218:117;;;7254:79;;:::i;:::-;7218:117;7359:63;7414:7;7405:6;7394:9;7390:22;7359:63;:::i;:::-;7349:73;;7145:287;6930:509;;;;:::o;7445:329::-;7504:6;7553:2;7541:9;7532:7;7528:23;7524:32;7521:119;;;7559:79;;:::i;:::-;7521:119;7679:1;7704:53;7749:7;7740:6;7729:9;7725:22;7704:53;:::i;:::-;7694:63;;7650:117;7445:329;;;;:::o;7780:179::-;7849:10;7870:46;7912:3;7904:6;7870:46;:::i;:::-;7948:4;7943:3;7939:14;7925:28;;7780:179;;;;:::o;7965:118::-;8052:24;8070:5;8052:24;:::i;:::-;8047:3;8040:37;7965:118;;:::o;8119:732::-;8238:3;8267:54;8315:5;8267:54;:::i;:::-;8337:86;8416:6;8411:3;8337:86;:::i;:::-;8330:93;;8447:56;8497:5;8447:56;:::i;:::-;8526:7;8557:1;8542:284;8567:6;8564:1;8561:13;8542:284;;;8643:6;8637:13;8670:63;8729:3;8714:13;8670:63;:::i;:::-;8663:70;;8756:60;8809:6;8756:60;:::i;:::-;8746:70;;8602:224;8589:1;8586;8582:9;8577:14;;8542:284;;;8546:14;8842:3;8835:10;;8243:608;;;8119:732;;;;:::o;8857:109::-;8938:21;8953:5;8938:21;:::i;:::-;8933:3;8926:34;8857:109;;:::o;8972:360::-;9058:3;9086:38;9118:5;9086:38;:::i;:::-;9140:70;9203:6;9198:3;9140:70;:::i;:::-;9133:77;;9219:52;9264:6;9259:3;9252:4;9245:5;9241:16;9219:52;:::i;:::-;9296:29;9318:6;9296:29;:::i;:::-;9291:3;9287:39;9280:46;;9062:270;8972:360;;;;:::o;9338:364::-;9426:3;9454:39;9487:5;9454:39;:::i;:::-;9509:71;9573:6;9568:3;9509:71;:::i;:::-;9502:78;;9589:52;9634:6;9629:3;9622:4;9615:5;9611:16;9589:52;:::i;:::-;9666:29;9688:6;9666:29;:::i;:::-;9661:3;9657:39;9650:46;;9430:272;9338:364;;;;:::o;9708:377::-;9814:3;9842:39;9875:5;9842:39;:::i;:::-;9897:89;9979:6;9974:3;9897:89;:::i;:::-;9890:96;;9995:52;10040:6;10035:3;10028:4;10021:5;10017:16;9995:52;:::i;:::-;10072:6;10067:3;10063:16;10056:23;;9818:267;9708:377;;;;:::o;10115:845::-;10218:3;10255:5;10249:12;10284:36;10310:9;10284:36;:::i;:::-;10336:89;10418:6;10413:3;10336:89;:::i;:::-;10329:96;;10456:1;10445:9;10441:17;10472:1;10467:137;;;;10618:1;10613:341;;;;10434:520;;10467:137;10551:4;10547:9;10536;10532:25;10527:3;10520:38;10587:6;10582:3;10578:16;10571:23;;10467:137;;10613:341;10680:38;10712:5;10680:38;:::i;:::-;10740:1;10754:154;10768:6;10765:1;10762:13;10754:154;;;10842:7;10836:14;10832:1;10827:3;10823:11;10816:35;10892:1;10883:7;10879:15;10868:26;;10790:4;10787:1;10783:12;10778:17;;10754:154;;;10937:6;10932:3;10928:16;10921:23;;10620:334;;10434:520;;10222:738;;10115:845;;;;:::o;10966:366::-;11108:3;11129:67;11193:2;11188:3;11129:67;:::i;:::-;11122:74;;11205:93;11294:3;11205:93;:::i;:::-;11323:2;11318:3;11314:12;11307:19;;10966:366;;;:::o;11338:::-;11480:3;11501:67;11565:2;11560:3;11501:67;:::i;:::-;11494:74;;11577:93;11666:3;11577:93;:::i;:::-;11695:2;11690:3;11686:12;11679:19;;11338:366;;;:::o;11710:::-;11852:3;11873:67;11937:2;11932:3;11873:67;:::i;:::-;11866:74;;11949:93;12038:3;11949:93;:::i;:::-;12067:2;12062:3;12058:12;12051:19;;11710:366;;;:::o;12082:::-;12224:3;12245:67;12309:2;12304:3;12245:67;:::i;:::-;12238:74;;12321:93;12410:3;12321:93;:::i;:::-;12439:2;12434:3;12430:12;12423:19;;12082:366;;;:::o;12454:::-;12596:3;12617:67;12681:2;12676:3;12617:67;:::i;:::-;12610:74;;12693:93;12782:3;12693:93;:::i;:::-;12811:2;12806:3;12802:12;12795:19;;12454:366;;;:::o;12826:::-;12968:3;12989:67;13053:2;13048:3;12989:67;:::i;:::-;12982:74;;13065:93;13154:3;13065:93;:::i;:::-;13183:2;13178:3;13174:12;13167:19;;12826:366;;;:::o;13198:::-;13340:3;13361:67;13425:2;13420:3;13361:67;:::i;:::-;13354:74;;13437:93;13526:3;13437:93;:::i;:::-;13555:2;13550:3;13546:12;13539:19;;13198:366;;;:::o;13570:::-;13712:3;13733:67;13797:2;13792:3;13733:67;:::i;:::-;13726:74;;13809:93;13898:3;13809:93;:::i;:::-;13927:2;13922:3;13918:12;13911:19;;13570:366;;;:::o;13942:::-;14084:3;14105:67;14169:2;14164:3;14105:67;:::i;:::-;14098:74;;14181:93;14270:3;14181:93;:::i;:::-;14299:2;14294:3;14290:12;14283:19;;13942:366;;;:::o;14314:::-;14456:3;14477:67;14541:2;14536:3;14477:67;:::i;:::-;14470:74;;14553:93;14642:3;14553:93;:::i;:::-;14671:2;14666:3;14662:12;14655:19;;14314:366;;;:::o;14686:108::-;14763:24;14781:5;14763:24;:::i;:::-;14758:3;14751:37;14686:108;;:::o;14800:118::-;14887:24;14905:5;14887:24;:::i;:::-;14882:3;14875:37;14800:118;;:::o;14924:589::-;15149:3;15171:95;15262:3;15253:6;15171:95;:::i;:::-;15164:102;;15283:95;15374:3;15365:6;15283:95;:::i;:::-;15276:102;;15395:92;15483:3;15474:6;15395:92;:::i;:::-;15388:99;;15504:3;15497:10;;14924:589;;;;;;:::o;15519:222::-;15612:4;15650:2;15639:9;15635:18;15627:26;;15663:71;15731:1;15720:9;15716:17;15707:6;15663:71;:::i;:::-;15519:222;;;;:::o;15747:640::-;15942:4;15980:3;15969:9;15965:19;15957:27;;15994:71;16062:1;16051:9;16047:17;16038:6;15994:71;:::i;:::-;16075:72;16143:2;16132:9;16128:18;16119:6;16075:72;:::i;:::-;16157;16225:2;16214:9;16210:18;16201:6;16157:72;:::i;:::-;16276:9;16270:4;16266:20;16261:2;16250:9;16246:18;16239:48;16304:76;16375:4;16366:6;16304:76;:::i;:::-;16296:84;;15747:640;;;;;;;:::o;16393:373::-;16536:4;16574:2;16563:9;16559:18;16551:26;;16623:9;16617:4;16613:20;16609:1;16598:9;16594:17;16587:47;16651:108;16754:4;16745:6;16651:108;:::i;:::-;16643:116;;16393:373;;;;:::o;16772:210::-;16859:4;16897:2;16886:9;16882:18;16874:26;;16910:65;16972:1;16961:9;16957:17;16948:6;16910:65;:::i;:::-;16772:210;;;;:::o;16988:313::-;17101:4;17139:2;17128:9;17124:18;17116:26;;17188:9;17182:4;17178:20;17174:1;17163:9;17159:17;17152:47;17216:78;17289:4;17280:6;17216:78;:::i;:::-;17208:86;;16988:313;;;;:::o;17307:419::-;17473:4;17511:2;17500:9;17496:18;17488:26;;17560:9;17554:4;17550:20;17546:1;17535:9;17531:17;17524:47;17588:131;17714:4;17588:131;:::i;:::-;17580:139;;17307:419;;;:::o;17732:::-;17898:4;17936:2;17925:9;17921:18;17913:26;;17985:9;17979:4;17975:20;17971:1;17960:9;17956:17;17949:47;18013:131;18139:4;18013:131;:::i;:::-;18005:139;;17732:419;;;:::o;18157:::-;18323:4;18361:2;18350:9;18346:18;18338:26;;18410:9;18404:4;18400:20;18396:1;18385:9;18381:17;18374:47;18438:131;18564:4;18438:131;:::i;:::-;18430:139;;18157:419;;;:::o;18582:::-;18748:4;18786:2;18775:9;18771:18;18763:26;;18835:9;18829:4;18825:20;18821:1;18810:9;18806:17;18799:47;18863:131;18989:4;18863:131;:::i;:::-;18855:139;;18582:419;;;:::o;19007:::-;19173:4;19211:2;19200:9;19196:18;19188:26;;19260:9;19254:4;19250:20;19246:1;19235:9;19231:17;19224:47;19288:131;19414:4;19288:131;:::i;:::-;19280:139;;19007:419;;;:::o;19432:::-;19598:4;19636:2;19625:9;19621:18;19613:26;;19685:9;19679:4;19675:20;19671:1;19660:9;19656:17;19649:47;19713:131;19839:4;19713:131;:::i;:::-;19705:139;;19432:419;;;:::o;19857:::-;20023:4;20061:2;20050:9;20046:18;20038:26;;20110:9;20104:4;20100:20;20096:1;20085:9;20081:17;20074:47;20138:131;20264:4;20138:131;:::i;:::-;20130:139;;19857:419;;;:::o;20282:::-;20448:4;20486:2;20475:9;20471:18;20463:26;;20535:9;20529:4;20525:20;20521:1;20510:9;20506:17;20499:47;20563:131;20689:4;20563:131;:::i;:::-;20555:139;;20282:419;;;:::o;20707:::-;20873:4;20911:2;20900:9;20896:18;20888:26;;20960:9;20954:4;20950:20;20946:1;20935:9;20931:17;20924:47;20988:131;21114:4;20988:131;:::i;:::-;20980:139;;20707:419;;;:::o;21132:::-;21298:4;21336:2;21325:9;21321:18;21313:26;;21385:9;21379:4;21375:20;21371:1;21360:9;21356:17;21349:47;21413:131;21539:4;21413:131;:::i;:::-;21405:139;;21132:419;;;:::o;21557:222::-;21650:4;21688:2;21677:9;21673:18;21665:26;;21701:71;21769:1;21758:9;21754:17;21745:6;21701:71;:::i;:::-;21557:222;;;;:::o;21785:129::-;21819:6;21846:20;;:::i;:::-;21836:30;;21875:33;21903:4;21895:6;21875:33;:::i;:::-;21785:129;;;:::o;21920:75::-;21953:6;21986:2;21980:9;21970:19;;21920:75;:::o;22001:307::-;22062:4;22152:18;22144:6;22141:30;22138:56;;;22174:18;;:::i;:::-;22138:56;22212:29;22234:6;22212:29;:::i;:::-;22204:37;;22296:4;22290;22286:15;22278:23;;22001:307;;;:::o;22314:308::-;22376:4;22466:18;22458:6;22455:30;22452:56;;;22488:18;;:::i;:::-;22452:56;22526:29;22548:6;22526:29;:::i;:::-;22518:37;;22610:4;22604;22600:15;22592:23;;22314:308;;;:::o;22628:132::-;22695:4;22718:3;22710:11;;22748:4;22743:3;22739:14;22731:22;;22628:132;;;:::o;22766:141::-;22815:4;22838:3;22830:11;;22861:3;22858:1;22851:14;22895:4;22892:1;22882:18;22874:26;;22766:141;;;:::o;22913:114::-;22980:6;23014:5;23008:12;22998:22;;22913:114;;;:::o;23033:98::-;23084:6;23118:5;23112:12;23102:22;;23033:98;;;:::o;23137:99::-;23189:6;23223:5;23217:12;23207:22;;23137:99;;;:::o;23242:113::-;23312:4;23344;23339:3;23335:14;23327:22;;23242:113;;;:::o;23361:184::-;23460:11;23494:6;23489:3;23482:19;23534:4;23529:3;23525:14;23510:29;;23361:184;;;;:::o;23551:168::-;23634:11;23668:6;23663:3;23656:19;23708:4;23703:3;23699:14;23684:29;;23551:168;;;;:::o;23725:169::-;23809:11;23843:6;23838:3;23831:19;23883:4;23878:3;23874:14;23859:29;;23725:169;;;;:::o;23900:148::-;24002:11;24039:3;24024:18;;23900:148;;;;:::o;24054:305::-;24094:3;24113:20;24131:1;24113:20;:::i;:::-;24108:25;;24147:20;24165:1;24147:20;:::i;:::-;24142:25;;24301:1;24233:66;24229:74;24226:1;24223:81;24220:107;;;24307:18;;:::i;:::-;24220:107;24351:1;24348;24344:9;24337:16;;24054:305;;;;:::o;24365:185::-;24405:1;24422:20;24440:1;24422:20;:::i;:::-;24417:25;;24456:20;24474:1;24456:20;:::i;:::-;24451:25;;24495:1;24485:35;;24500:18;;:::i;:::-;24485:35;24542:1;24539;24535:9;24530:14;;24365:185;;;;:::o;24556:348::-;24596:7;24619:20;24637:1;24619:20;:::i;:::-;24614:25;;24653:20;24671:1;24653:20;:::i;:::-;24648:25;;24841:1;24773:66;24769:74;24766:1;24763:81;24758:1;24751:9;24744:17;24740:105;24737:131;;;24848:18;;:::i;:::-;24737:131;24896:1;24893;24889:9;24878:20;;24556:348;;;;:::o;24910:191::-;24950:4;24970:20;24988:1;24970:20;:::i;:::-;24965:25;;25004:20;25022:1;25004:20;:::i;:::-;24999:25;;25043:1;25040;25037:8;25034:34;;;25048:18;;:::i;:::-;25034:34;25093:1;25090;25086:9;25078:17;;24910:191;;;;:::o;25107:96::-;25144:7;25173:24;25191:5;25173:24;:::i;:::-;25162:35;;25107:96;;;:::o;25209:90::-;25243:7;25286:5;25279:13;25272:21;25261:32;;25209:90;;;:::o;25305:149::-;25341:7;25381:66;25374:5;25370:78;25359:89;;25305:149;;;:::o;25460:125::-;25526:7;25555:24;25573:5;25555:24;:::i;:::-;25544:35;;25460:125;;;:::o;25591:126::-;25628:7;25668:42;25661:5;25657:54;25646:65;;25591:126;;;:::o;25723:77::-;25760:7;25789:5;25778:16;;25723:77;;;:::o;25806:154::-;25890:6;25885:3;25880;25867:30;25952:1;25943:6;25938:3;25934:16;25927:27;25806:154;;;:::o;25966:307::-;26034:1;26044:113;26058:6;26055:1;26052:13;26044:113;;;26143:1;26138:3;26134:11;26128:18;26124:1;26119:3;26115:11;26108:39;26080:2;26077:1;26073:10;26068:15;;26044:113;;;26175:6;26172:1;26169:13;26166:101;;;26255:1;26246:6;26241:3;26237:16;26230:27;26166:101;26015:258;25966:307;;;:::o;26279:320::-;26323:6;26360:1;26354:4;26350:12;26340:22;;26407:1;26401:4;26397:12;26428:18;26418:81;;26484:4;26476:6;26472:17;26462:27;;26418:81;26546:2;26538:6;26535:14;26515:18;26512:38;26509:84;;;26565:18;;:::i;:::-;26509:84;26330:269;26279:320;;;:::o;26605:281::-;26688:27;26710:4;26688:27;:::i;:::-;26680:6;26676:40;26818:6;26806:10;26803:22;26782:18;26770:10;26767:34;26764:62;26761:88;;;26829:18;;:::i;:::-;26761:88;26869:10;26865:2;26858:22;26648:238;26605:281;;:::o;26892:233::-;26931:3;26954:24;26972:5;26954:24;:::i;:::-;26945:33;;27000:66;26993:5;26990:77;26987:103;;;27070:18;;:::i;:::-;26987:103;27117:1;27110:5;27106:13;27099:20;;26892:233;;;:::o;27131:176::-;27163:1;27180:20;27198:1;27180:20;:::i;:::-;27175:25;;27214:20;27232:1;27214:20;:::i;:::-;27209:25;;27253:1;27243:35;;27258:18;;:::i;:::-;27243:35;27299:1;27296;27292:9;27287:14;;27131:176;;;;:::o;27313:180::-;27361:77;27358:1;27351:88;27458:4;27455:1;27448:15;27482:4;27479:1;27472:15;27499:180;27547:77;27544:1;27537:88;27644:4;27641:1;27634:15;27668:4;27665:1;27658:15;27685:180;27733:77;27730:1;27723:88;27830:4;27827:1;27820:15;27854:4;27851:1;27844:15;27871:180;27919:77;27916:1;27909:88;28016:4;28013:1;28006:15;28040:4;28037:1;28030:15;28057:180;28105:77;28102:1;28095:88;28202:4;28199:1;28192:15;28226:4;28223:1;28216:15;28243:117;28352:1;28349;28342:12;28366:117;28475:1;28472;28465:12;28489:117;28598:1;28595;28588:12;28612:117;28721:1;28718;28711:12;28735:102;28776:6;28827:2;28823:7;28818:2;28811:5;28807:14;28803:28;28793:38;;28735:102;;;:::o;28843:220::-;28983:34;28979:1;28971:6;28967:14;28960:58;29052:3;29047:2;29039:6;29035:15;29028:28;28843:220;:::o;29069:225::-;29209:34;29205:1;29197:6;29193:14;29186:58;29278:8;29273:2;29265:6;29261:15;29254:33;29069:225;:::o;29300:180::-;29440:32;29436:1;29428:6;29424:14;29417:56;29300:180;:::o;29486:224::-;29626:34;29622:1;29614:6;29610:14;29603:58;29695:7;29690:2;29682:6;29678:15;29671:32;29486:224;:::o;29716:182::-;29856:34;29852:1;29844:6;29840:14;29833:58;29716:182;:::o;29904:225::-;30044:34;30040:1;30032:6;30028:14;30021:58;30113:8;30108:2;30100:6;30096:15;30089:33;29904:225;:::o;30135:169::-;30275:21;30271:1;30263:6;30259:14;30252:45;30135:169;:::o;30310:239::-;30450:34;30446:1;30438:6;30434:14;30427:58;30519:22;30514:2;30506:6;30502:15;30495:47;30310:239;:::o;30555:174::-;30695:26;30691:1;30683:6;30679:14;30672:50;30555:174;:::o;30735:228::-;30875:34;30871:1;30863:6;30859:14;30852:58;30944:11;30939:2;30931:6;30927:15;30920:36;30735:228;:::o;30969:122::-;31042:24;31060:5;31042:24;:::i;:::-;31035:5;31032:35;31022:63;;31081:1;31078;31071:12;31022:63;30969:122;:::o;31097:116::-;31167:21;31182:5;31167:21;:::i;:::-;31160:5;31157:32;31147:60;;31203:1;31200;31193:12;31147:60;31097:116;:::o;31219:120::-;31291:23;31308:5;31291:23;:::i;:::-;31284:5;31281:34;31271:62;;31329:1;31326;31319:12;31271:62;31219:120;:::o;31345:180::-;31447:53;31494:5;31447:53;:::i;:::-;31440:5;31437:64;31427:92;;31515:1;31512;31505:12;31427:92;31345:180;:::o;31531:122::-;31604:24;31622:5;31604:24;:::i;:::-;31597:5;31594:35;31584:63;;31643:1;31640;31633:12;31584:63;31531:122;:::o

Swarm Source

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