ETH Price: $3,046.49 (+0.75%)
Gas: 2 Gwei

Token

DRIVEN Alpha Collection (DVN)
 

Overview

Max Total Supply

1,417 DVN

Holders

369

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
15 DVN
0xc81538c486a54737c79db2039367c378c621a8fd
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The first ever NFT Collection powered by DRIVEN. Backed by a community of elite traders and influencers impacting the world through trading education and technology.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DVN

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @title 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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

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

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

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

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

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

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

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

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

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


error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        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**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // 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**256.
        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 contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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



contract DVN is ERC721A , Ownable  {
    using SafeMath for uint256;

    uint256 public price = 120000000000000000; // 0.12 ether
    string public baseUri;
    address private signatureContract;


    uint public maxPurchase = 5;

    uint256 public MAX = 5000;
    uint256 public MAXWhitelist1 = 1000;
    uint256 public MAXWhitelist2 = 2500;


    bool public saleIsActive = false;
    bool public whitelistPhase1 = true;
    bool public whitelistPhase2 = false;
    bool public publicSale = false;

     function changePrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

     function changeSigner(address signer) public onlyOwner {
        signatureContract = signer;
      }

    function changeMaxMint(uint256 maxMint) public onlyOwner {
        maxPurchase = maxMint;
    }

     constructor() ERC721A("DRIVEN Alpha Collection", "DVN") {}

        function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        
        address payable one = payable(0x85DA080d0fd6D35A1cA565F868cd4F84c897B119);
        address payable two = payable(0xBd33e3Db1b52C1D35964a439748071f7db69e8D3);
   
        one.transfer(balance.mul(97500000000000000000).div(100000000000000000000));
        two.transfer(balance.mul(2500000000000000000).div(100000000000000000000));
        
    }

    function mint(uint256 quantity , uint256 deadline , uint8 v, bytes32 r, bytes32 s) external payable {

         require(saleIsActive, "Sale must be active to mint nft");
        require(quantity <= maxPurchase, "Can only mint certain tokens at a time");
        require(price.mul(quantity) <= msg.value, "Not Enough Ether Sent");

         if(whitelistPhase1){
            require(totalSupply().add(quantity) <= MAXWhitelist1, "Purchase would exceed max first whitelist supply of nfts");
            require(deadline >= block.timestamp, "deadline passed");
            require(signatureContract == ecrecover(getSignedHash(keccak256(abi.encodePacked(this, msg.sender , deadline , quantity))), v, r, s), "owner should sign Transactioon");
        } else if(whitelistPhase2){
            require(totalSupply().add(quantity) <= MAXWhitelist2, "Purchase would exceed max second whitelist supply of nfts");
            require(deadline >= block.timestamp, "deadline passed");
            require(signatureContract == ecrecover(getSignedHash(keccak256(abi.encodePacked(this, msg.sender , deadline , quantity))), v, r, s), "owner should sign Transactioon");
        }else if(publicSale){
            require(totalSupply().add(quantity) <= MAX, "Purchase would exceed max supply of nfts");
        }else{
            revert();
        }

        // _safeMint's second argument now takes in a quantity, not a tokenId.
        _safeMint(msg.sender, quantity);
     }
    
    function setBaseURI(string memory baseURI_) public onlyOwner {
        baseUri = baseURI_;
    }

    /*
    * Pause sale if active, make active if paused
    */
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

     /*
    * 
    */
    function changeWhitelist1(bool state) public onlyOwner {
        whitelistPhase1 = state;
    }
    
    function changeWhitelist2(bool state) public onlyOwner {
        whitelistPhase2 = state;
    }

    function changePublicSale(bool state) public onlyOwner {
        publicSale = state;
    }
      /**
     * @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
     */
    function _baseURI() internal view override returns (string memory) {
        return baseUri;
    }

    function getSignedHash(bytes32 _messageHash) private pure returns(bytes32){
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXWhitelist1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXWhitelist2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"changeMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"changePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"changeSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"changeWhitelist1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"changeWhitelist2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","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":"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":"whitelistPhase1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPhase2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526701aa535d3d0c00006009556005600c55611388600d556103e8600e556109c4600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055506000601060036101000a81548160ff021916908315150217905550348015620000a057600080fd5b506040518060400160405280601781526020017f44524956454e20416c70686120436f6c6c656374696f6e0000000000000000008152506040518060400160405280600381526020017f44564e00000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001259291906200021b565b5080600390805190602001906200013e9291906200021b565b506200014f6200020e60201b60201c565b60008190555050506000620001696200021360201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000330565b600090565b600033905090565b8280546200022990620002cb565b90600052602060002090601f0160209004810192826200024d576000855562000299565b82601f106200026857805160ff191683800117855562000299565b8280016001018555821562000299579182015b82811115620002985782518255916020019190600101906200027b565b5b509050620002a89190620002ac565b5090565b5b80821115620002c7576000816000905550600101620002ad565b5090565b60006002820490506001821680620002e457607f821691505b60208210811415620002fb57620002fa62000301565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146b680620003406000396000f3fe60806040526004361061021a5760003560e01c806373fc441b11610123578063a8f97fa3116100ab578063d49d51811161006f578063d49d518114610778578063e379d108146107a3578063e985e9c5146107cc578063eb8d244414610809578063f2fde38b146108345761021a565b8063a8f97fa314610695578063aad2b723146106be578063b88d4fde146106e7578063c87b56dd14610710578063cf18097e1461074d5761021a565b8063977b055b116100f2578063977b055b146105c25780639abc8320146105ed578063a035b1fe14610618578063a22cb46514610643578063a2b40d191461066c5761021a565b806373fc441b146105255780637fb9a063146105505780638da5cb5b1461056c57806395d89b41146105975761021a565b806333bc1c5c116101a65780635233e296116101755780635233e2961461044257806355f804b31461046b5780636352211e1461049457806370a08231146104d1578063715018a61461050e5761021a565b806333bc1c5c146103c057806334918dfd146103eb5780633ccfd60b1461040257806342842e0e146104195761021a565b806317f293f3116101ed57806317f293f3146102ed57806318160ddd1461031857806320c63e3b1461034357806323b872dd1461036c57806326bf3251146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613605565b61085d565b6040516102539190613b83565b60405180910390f35b34801561026857600080fd5b5061027161093f565b60405161027e9190613be3565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906136a8565b6109d1565b6040516102bb9190613b1c565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613598565b610a4d565b005b3480156102f957600080fd5b50610302610b58565b60405161030f9190613b83565b60405180910390f35b34801561032457600080fd5b5061032d610b6b565b60405161033a9190613da5565b60405180910390f35b34801561034f57600080fd5b5061036a600480360381019061036591906136a8565b610b82565b005b34801561037857600080fd5b50610393600480360381019061038e9190613482565b610c08565b005b3480156103a157600080fd5b506103aa610c18565b6040516103b79190613da5565b60405180910390f35b3480156103cc57600080fd5b506103d5610c1e565b6040516103e29190613b83565b60405180910390f35b3480156103f757600080fd5b50610400610c31565b005b34801561040e57600080fd5b50610417610cd9565b005b34801561042557600080fd5b50610440600480360381019061043b9190613482565b610e8a565b005b34801561044e57600080fd5b50610469600480360381019061046491906135d8565b610eaa565b005b34801561047757600080fd5b50610492600480360381019061048d919061365f565b610f43565b005b3480156104a057600080fd5b506104bb60048036038101906104b691906136a8565b610fd9565b6040516104c89190613b1c565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613415565b610fef565b6040516105059190613da5565b60405180910390f35b34801561051a57600080fd5b506105236110bf565b005b34801561053157600080fd5b5061053a6111fc565b6040516105479190613da5565b60405180910390f35b61056a600480360381019061056591906136d5565b611202565b005b34801561057857600080fd5b50610581611717565b60405161058e9190613b1c565b60405180910390f35b3480156105a357600080fd5b506105ac611741565b6040516105b99190613be3565b60405180910390f35b3480156105ce57600080fd5b506105d76117d3565b6040516105e49190613da5565b60405180910390f35b3480156105f957600080fd5b506106026117d9565b60405161060f9190613be3565b60405180910390f35b34801561062457600080fd5b5061062d611867565b60405161063a9190613da5565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190613558565b61186d565b005b34801561067857600080fd5b50610693600480360381019061068e91906136a8565b6119e5565b005b3480156106a157600080fd5b506106bc60048036038101906106b791906135d8565b611a6b565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190613415565b611b04565b005b3480156106f357600080fd5b5061070e600480360381019061070991906134d5565b611bc4565b005b34801561071c57600080fd5b50610737600480360381019061073291906136a8565b611c40565b6040516107449190613be3565b60405180910390f35b34801561075957600080fd5b50610762611cdf565b60405161076f9190613b83565b60405180910390f35b34801561078457600080fd5b5061078d611cf2565b60405161079a9190613da5565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906135d8565b611cf8565b005b3480156107d857600080fd5b506107f360048036038101906107ee9190613442565b611d91565b6040516108009190613b83565b60405180910390f35b34801561081557600080fd5b5061081e611e25565b60405161082b9190613b83565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613415565b611e38565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610938575061093782611fe4565b5b9050919050565b60606002805461094e906140a2565b80601f016020809104026020016040519081016040528092919081815260200182805461097a906140a2565b80156109c75780601f1061099c576101008083540402835291602001916109c7565b820191906000526020600020905b8154815290600101906020018083116109aa57829003601f168201915b5050505050905090565b60006109dc8261204e565b610a12576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5882610fd9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adf61209c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b115750610b0f81610b0a61209c565b611d91565b155b15610b48576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b538383836120a4565b505050565b601060029054906101000a900460ff1681565b6000610b75612156565b6001546000540303905090565b610b8a61209c565b73ffffffffffffffffffffffffffffffffffffffff16610ba8611717565b73ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590613d05565b60405180910390fd5b80600c8190555050565b610c1383838361215b565b505050565b600e5481565b601060039054906101000a900460ff1681565b610c3961209c565b73ffffffffffffffffffffffffffffffffffffffff16610c57611717565b73ffffffffffffffffffffffffffffffffffffffff1614610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490613d05565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610ce161209c565b73ffffffffffffffffffffffffffffffffffffffff16610cff611717565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613d05565b60405180910390fd5b600047905060007385da080d0fd6d35a1ca565f868cd4f84c897b1199050600073bd33e3db1b52c1d35964a439748071f7db69e8d390508173ffffffffffffffffffffffffffffffffffffffff166108fc610ddd68056bc75e2d63100000610dcf68054915956c409600008861264c90919063ffffffff16565b6126c790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015610e08573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff166108fc610e5968056bc75e2d63100000610e4b6722b1c8c1227a00008861264c90919063ffffffff16565b6126c790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015610e84573d6000803e3d6000fd5b50505050565b610ea583838360405180602001604052806000815250611bc4565b505050565b610eb261209c565b73ffffffffffffffffffffffffffffffffffffffff16610ed0611717565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90613d05565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610f4b61209c565b73ffffffffffffffffffffffffffffffffffffffff16610f69611717565b73ffffffffffffffffffffffffffffffffffffffff1614610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690613d05565b60405180910390fd5b80600a9080519060200190610fd59291906131bc565b5050565b6000610fe48261271f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611057576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110c761209c565b73ffffffffffffffffffffffffffffffffffffffff166110e5611717565b73ffffffffffffffffffffffffffffffffffffffff161461113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290613d05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b601060009054906101000a900460ff16611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613d65565b60405180910390fd5b600c54851115611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90613d25565b60405180910390fd5b346112ac8660095461264c90919063ffffffff16565b11156112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613d85565b60405180910390fd5b601060019054906101000a900460ff16156114ba57600e5461131f86611311610b6b565b6129ae90919063ffffffff16565b1115611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613c05565b60405180910390fd5b428410156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90613d45565b60405180910390fd5b60016113da303387896040516020016113bf9493929190613a84565b60405160208183030381529060405280519060200120612a0c565b848484604051600081526020016040526040516113fa9493929190613b9e565b6020604051602081039080840390855afa15801561141c573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613c25565b60405180910390fd5b611706565b601060029054906101000a900460ff161561168757600f546114ec866114de610b6b565b6129ae90919063ffffffff16565b111561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490613c45565b60405180910390fd5b42841015611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790613d45565b60405180910390fd5b60016115a73033878960405160200161158c9493929190613a84565b60405160208183030381529060405280519060200120612a0c565b848484604051600081526020016040526040516115c79493929190613b9e565b6020604051602081039080840390855afa1580156115e9573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613c25565b60405180910390fd5b611705565b601060039054906101000a900460ff16156116ff57600d546116b9866116ab610b6b565b6129ae90919063ffffffff16565b11156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613cc5565b60405180910390fd5b611704565b600080fd5b5b5b6117103386612a3c565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611750906140a2565b80601f016020809104026020016040519081016040528092919081815260200182805461177c906140a2565b80156117c95780601f1061179e576101008083540402835291602001916117c9565b820191906000526020600020905b8154815290600101906020018083116117ac57829003601f168201915b5050505050905090565b600c5481565b600a80546117e6906140a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611812906140a2565b801561185f5780601f106118345761010080835404028352916020019161185f565b820191906000526020600020905b81548152906001019060200180831161184257829003601f168201915b505050505081565b60095481565b61187561209c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118da576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118e761209c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661199461209c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d99190613b83565b60405180910390a35050565b6119ed61209c565b73ffffffffffffffffffffffffffffffffffffffff16611a0b611717565b73ffffffffffffffffffffffffffffffffffffffff1614611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613d05565b60405180910390fd5b8060098190555050565b611a7361209c565b73ffffffffffffffffffffffffffffffffffffffff16611a91611717565b73ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90613d05565b60405180910390fd5b80601060036101000a81548160ff02191690831515021790555050565b611b0c61209c565b73ffffffffffffffffffffffffffffffffffffffff16611b2a611717565b73ffffffffffffffffffffffffffffffffffffffff1614611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790613d05565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611bcf84848461215b565b611bee8373ffffffffffffffffffffffffffffffffffffffff16612a5a565b8015611c035750611c0184848484612a7d565b155b15611c3a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611c4b8261204e565b611c81576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c8b612bdd565b9050600081511415611cac5760405180602001604052806000815250611cd7565b80611cb684612c6f565b604051602001611cc7929190613ad2565b6040516020818303038152906040525b915050919050565b601060019054906101000a900460ff1681565b600d5481565b611d0061209c565b73ffffffffffffffffffffffffffffffffffffffff16611d1e611717565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613d05565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611e4061209c565b73ffffffffffffffffffffffffffffffffffffffff16611e5e611717565b73ffffffffffffffffffffffffffffffffffffffff1614611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90613d05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1b90613c65565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612059612156565b11158015612068575060005482105b8015612095575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006121668261271f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661218d61209c565b73ffffffffffffffffffffffffffffffffffffffff1614806121c057506121bf82600001516121ba61209c565b611d91565b5b8061220557506121ce61209c565b73ffffffffffffffffffffffffffffffffffffffff166121ed846109d1565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061223e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122a7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561230e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61231b8585856001612dd0565b61232b60008484600001516120a4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125dc576000548110156125db5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126458585856001612dd6565b5050505050565b60008083141561265f57600090506126c1565b6000828461266d9190613f11565b905082848261267c9190613ee0565b146126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390613ce5565b60405180910390fd5b809150505b92915050565b600080821161270b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270290613ca5565b60405180910390fd5b81836127179190613ee0565b905092915050565b612727613242565b600082905080612735612156565b11158015612744575060005481105b15612977576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161297557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128595780925050506129a9565b5b60011561297457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461296f5780925050506129a9565b61285a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008082846129bd9190613e8a565b905083811015612a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f990613c85565b60405180910390fd5b8091505092915050565b600081604051602001612a1f9190613af6565b604051602081830303815290604052805190602001209050919050565b612a56828260405180602001604052806000815250612ddc565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa361209c565b8786866040518563ffffffff1660e01b8152600401612ac59493929190613b37565b602060405180830381600087803b158015612adf57600080fd5b505af1925050508015612b1057506040513d601f19601f82011682018060405250810190612b0d9190613632565b60015b612b8a573d8060008114612b40576040519150601f19603f3d011682016040523d82523d6000602084013e612b45565b606091505b50600081511415612b82576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612bec906140a2565b80601f0160208091040260200160405190810160405280929190818152602001828054612c18906140a2565b8015612c655780601f10612c3a57610100808354040283529160200191612c65565b820191906000526020600020905b815481529060010190602001808311612c4857829003601f168201915b5050505050905090565b60606000821415612cb7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dcb565b600082905060005b60008214612ce9578080612cd290614105565b915050600a82612ce29190613ee0565b9150612cbf565b60008167ffffffffffffffff811115612d0557612d04614273565b5b6040519080825280601f01601f191660200182016040528015612d375781602001600182028036833780820191505090505b5090505b60008514612dc457600182612d509190613f6b565b9150600a85612d5f9190614186565b6030612d6b9190613e8a565b60f81b818381518110612d8157612d80614244565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dbd9190613ee0565b9450612d3b565b8093505050505b919050565b50505050565b50505050565b612de98383836001612dee565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e5b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e96576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ea36000868387612dd0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561306d575061306c8773ffffffffffffffffffffffffffffffffffffffff16612a5a565b5b15613133575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130e26000888480600101955088612a7d565b613118576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561307357826000541461312e57600080fd5b61319f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613134575b8160008190555050506131b56000868387612dd6565b5050505050565b8280546131c8906140a2565b90600052602060002090601f0160209004810192826131ea5760008555613231565b82601f1061320357805160ff1916838001178555613231565b82800160010185558215613231579182015b82811115613230578251825591602001919060010190613215565b5b50905061323e9190613285565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561329e576000816000905550600101613286565b5090565b60006132b56132b084613de5565b613dc0565b9050828152602081018484840111156132d1576132d06142a7565b5b6132dc848285614060565b509392505050565b60006132f76132f284613e16565b613dc0565b905082815260208101848484011115613313576133126142a7565b5b61331e848285614060565b509392505050565b600081359050613335816145f6565b92915050565b60008135905061334a8161460d565b92915050565b60008135905061335f81614624565b92915050565b6000813590506133748161463b565b92915050565b6000815190506133898161463b565b92915050565b600082601f8301126133a4576133a36142a2565b5b81356133b48482602086016132a2565b91505092915050565b600082601f8301126133d2576133d16142a2565b5b81356133e28482602086016132e4565b91505092915050565b6000813590506133fa81614652565b92915050565b60008135905061340f81614669565b92915050565b60006020828403121561342b5761342a6142b1565b5b600061343984828501613326565b91505092915050565b60008060408385031215613459576134586142b1565b5b600061346785828601613326565b925050602061347885828601613326565b9150509250929050565b60008060006060848603121561349b5761349a6142b1565b5b60006134a986828701613326565b93505060206134ba86828701613326565b92505060406134cb868287016133eb565b9150509250925092565b600080600080608085870312156134ef576134ee6142b1565b5b60006134fd87828801613326565b945050602061350e87828801613326565b935050604061351f878288016133eb565b925050606085013567ffffffffffffffff8111156135405761353f6142ac565b5b61354c8782880161338f565b91505092959194509250565b6000806040838503121561356f5761356e6142b1565b5b600061357d85828601613326565b925050602061358e8582860161333b565b9150509250929050565b600080604083850312156135af576135ae6142b1565b5b60006135bd85828601613326565b92505060206135ce858286016133eb565b9150509250929050565b6000602082840312156135ee576135ed6142b1565b5b60006135fc8482850161333b565b91505092915050565b60006020828403121561361b5761361a6142b1565b5b600061362984828501613365565b91505092915050565b600060208284031215613648576136476142b1565b5b60006136568482850161337a565b91505092915050565b600060208284031215613675576136746142b1565b5b600082013567ffffffffffffffff811115613693576136926142ac565b5b61369f848285016133bd565b91505092915050565b6000602082840312156136be576136bd6142b1565b5b60006136cc848285016133eb565b91505092915050565b600080600080600060a086880312156136f1576136f06142b1565b5b60006136ff888289016133eb565b9550506020613710888289016133eb565b945050604061372188828901613400565b935050606061373288828901613350565b925050608061374388828901613350565b9150509295509295909350565b61375981613f9f565b82525050565b61377061376b82613f9f565b61414e565b82525050565b61377f81613fb1565b82525050565b61378e81613fbd565b82525050565b6137a56137a082613fbd565b614160565b82525050565b60006137b682613e47565b6137c08185613e5d565b93506137d081856020860161406f565b6137d9816142b6565b840191505092915050565b6137f56137f08261402a565b61414e565b82525050565b600061380682613e52565b6138108185613e6e565b935061382081856020860161406f565b613829816142b6565b840191505092915050565b600061383f82613e52565b6138498185613e7f565b935061385981856020860161406f565b80840191505092915050565b6000613872603883613e6e565b915061387d826142d4565b604082019050919050565b6000613895601e83613e6e565b91506138a082614323565b602082019050919050565b60006138b8603983613e6e565b91506138c38261434c565b604082019050919050565b60006138db601c83613e7f565b91506138e68261439b565b601c82019050919050565b60006138fe602683613e6e565b9150613909826143c4565b604082019050919050565b6000613921601b83613e6e565b915061392c82614413565b602082019050919050565b6000613944601a83613e6e565b915061394f8261443c565b602082019050919050565b6000613967602883613e6e565b915061397282614465565b604082019050919050565b600061398a602183613e6e565b9150613995826144b4565b604082019050919050565b60006139ad602083613e6e565b91506139b882614503565b602082019050919050565b60006139d0602683613e6e565b91506139db8261452c565b604082019050919050565b60006139f3600f83613e6e565b91506139fe8261457b565b602082019050919050565b6000613a16601f83613e6e565b9150613a21826145a4565b602082019050919050565b6000613a39601583613e6e565b9150613a44826145cd565b602082019050919050565b613a5881614013565b82525050565b613a6f613a6a82614013565b61417c565b82525050565b613a7e8161401d565b82525050565b6000613a9082876137e4565b601482019150613aa0828661375f565b601482019150613ab08285613a5e565b602082019150613ac08284613a5e565b60208201915081905095945050505050565b6000613ade8285613834565b9150613aea8284613834565b91508190509392505050565b6000613b01826138ce565b9150613b0d8284613794565b60208201915081905092915050565b6000602082019050613b316000830184613750565b92915050565b6000608082019050613b4c6000830187613750565b613b596020830186613750565b613b666040830185613a4f565b8181036060830152613b7881846137ab565b905095945050505050565b6000602082019050613b986000830184613776565b92915050565b6000608082019050613bb36000830187613785565b613bc06020830186613a75565b613bcd6040830185613785565b613bda6060830184613785565b95945050505050565b60006020820190508181036000830152613bfd81846137fb565b905092915050565b60006020820190508181036000830152613c1e81613865565b9050919050565b60006020820190508181036000830152613c3e81613888565b9050919050565b60006020820190508181036000830152613c5e816138ab565b9050919050565b60006020820190508181036000830152613c7e816138f1565b9050919050565b60006020820190508181036000830152613c9e81613914565b9050919050565b60006020820190508181036000830152613cbe81613937565b9050919050565b60006020820190508181036000830152613cde8161395a565b9050919050565b60006020820190508181036000830152613cfe8161397d565b9050919050565b60006020820190508181036000830152613d1e816139a0565b9050919050565b60006020820190508181036000830152613d3e816139c3565b9050919050565b60006020820190508181036000830152613d5e816139e6565b9050919050565b60006020820190508181036000830152613d7e81613a09565b9050919050565b60006020820190508181036000830152613d9e81613a2c565b9050919050565b6000602082019050613dba6000830184613a4f565b92915050565b6000613dca613ddb565b9050613dd682826140d4565b919050565b6000604051905090565b600067ffffffffffffffff821115613e0057613dff614273565b5b613e09826142b6565b9050602081019050919050565b600067ffffffffffffffff821115613e3157613e30614273565b5b613e3a826142b6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e9582614013565b9150613ea083614013565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ed557613ed46141b7565b5b828201905092915050565b6000613eeb82614013565b9150613ef683614013565b925082613f0657613f056141e6565b5b828204905092915050565b6000613f1c82614013565b9150613f2783614013565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f6057613f5f6141b7565b5b828202905092915050565b6000613f7682614013565b9150613f8183614013565b925082821015613f9457613f936141b7565b5b828203905092915050565b6000613faa82613ff3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006140358261403c565b9050919050565b60006140478261404e565b9050919050565b600061405982613ff3565b9050919050565b82818337600083830152505050565b60005b8381101561408d578082015181840152602081019050614072565b8381111561409c576000848401525b50505050565b600060028204905060018216806140ba57607f821691505b602082108114156140ce576140cd614215565b5b50919050565b6140dd826142b6565b810181811067ffffffffffffffff821117156140fc576140fb614273565b5b80604052505050565b600061411082614013565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614143576141426141b7565b5b600182019050919050565b60006141598261416a565b9050919050565b6000819050919050565b6000614175826142c7565b9050919050565b6000819050919050565b600061419182614013565b915061419c83614013565b9250826141ac576141ab6141e6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f507572636861736520776f756c6420657863656564206d61782066697273742060008201527f77686974656c69737420737570706c79206f66206e6674730000000000000000602082015250565b7f6f776e65722073686f756c64207369676e205472616e73616374696f6f6e0000600082015250565b7f507572636861736520776f756c6420657863656564206d6178207365636f6e6460008201527f2077686974656c69737420737570706c79206f66206e66747300000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f536166654d6174683a206469766973696f6e206279207a65726f000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66206e667473000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e206f6e6c79206d696e74206365727461696e20746f6b656e732061742060008201527f612074696d650000000000000000000000000000000000000000000000000000602082015250565b7f646561646c696e65207061737365640000000000000000000000000000000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74206e667400600082015250565b7f4e6f7420456e6f7567682045746865722053656e740000000000000000000000600082015250565b6145ff81613f9f565b811461460a57600080fd5b50565b61461681613fb1565b811461462157600080fd5b50565b61462d81613fbd565b811461463857600080fd5b50565b61464481613fc7565b811461464f57600080fd5b50565b61465b81614013565b811461466657600080fd5b50565b6146728161401d565b811461467d57600080fd5b5056fea26469706673582212206e5e27947eb693d918239ec5a6f1d883a8e30a63e0c54de18b40a64f45861c4664736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806373fc441b11610123578063a8f97fa3116100ab578063d49d51811161006f578063d49d518114610778578063e379d108146107a3578063e985e9c5146107cc578063eb8d244414610809578063f2fde38b146108345761021a565b8063a8f97fa314610695578063aad2b723146106be578063b88d4fde146106e7578063c87b56dd14610710578063cf18097e1461074d5761021a565b8063977b055b116100f2578063977b055b146105c25780639abc8320146105ed578063a035b1fe14610618578063a22cb46514610643578063a2b40d191461066c5761021a565b806373fc441b146105255780637fb9a063146105505780638da5cb5b1461056c57806395d89b41146105975761021a565b806333bc1c5c116101a65780635233e296116101755780635233e2961461044257806355f804b31461046b5780636352211e1461049457806370a08231146104d1578063715018a61461050e5761021a565b806333bc1c5c146103c057806334918dfd146103eb5780633ccfd60b1461040257806342842e0e146104195761021a565b806317f293f3116101ed57806317f293f3146102ed57806318160ddd1461031857806320c63e3b1461034357806323b872dd1461036c57806326bf3251146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613605565b61085d565b6040516102539190613b83565b60405180910390f35b34801561026857600080fd5b5061027161093f565b60405161027e9190613be3565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906136a8565b6109d1565b6040516102bb9190613b1c565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613598565b610a4d565b005b3480156102f957600080fd5b50610302610b58565b60405161030f9190613b83565b60405180910390f35b34801561032457600080fd5b5061032d610b6b565b60405161033a9190613da5565b60405180910390f35b34801561034f57600080fd5b5061036a600480360381019061036591906136a8565b610b82565b005b34801561037857600080fd5b50610393600480360381019061038e9190613482565b610c08565b005b3480156103a157600080fd5b506103aa610c18565b6040516103b79190613da5565b60405180910390f35b3480156103cc57600080fd5b506103d5610c1e565b6040516103e29190613b83565b60405180910390f35b3480156103f757600080fd5b50610400610c31565b005b34801561040e57600080fd5b50610417610cd9565b005b34801561042557600080fd5b50610440600480360381019061043b9190613482565b610e8a565b005b34801561044e57600080fd5b50610469600480360381019061046491906135d8565b610eaa565b005b34801561047757600080fd5b50610492600480360381019061048d919061365f565b610f43565b005b3480156104a057600080fd5b506104bb60048036038101906104b691906136a8565b610fd9565b6040516104c89190613b1c565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613415565b610fef565b6040516105059190613da5565b60405180910390f35b34801561051a57600080fd5b506105236110bf565b005b34801561053157600080fd5b5061053a6111fc565b6040516105479190613da5565b60405180910390f35b61056a600480360381019061056591906136d5565b611202565b005b34801561057857600080fd5b50610581611717565b60405161058e9190613b1c565b60405180910390f35b3480156105a357600080fd5b506105ac611741565b6040516105b99190613be3565b60405180910390f35b3480156105ce57600080fd5b506105d76117d3565b6040516105e49190613da5565b60405180910390f35b3480156105f957600080fd5b506106026117d9565b60405161060f9190613be3565b60405180910390f35b34801561062457600080fd5b5061062d611867565b60405161063a9190613da5565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190613558565b61186d565b005b34801561067857600080fd5b50610693600480360381019061068e91906136a8565b6119e5565b005b3480156106a157600080fd5b506106bc60048036038101906106b791906135d8565b611a6b565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190613415565b611b04565b005b3480156106f357600080fd5b5061070e600480360381019061070991906134d5565b611bc4565b005b34801561071c57600080fd5b50610737600480360381019061073291906136a8565b611c40565b6040516107449190613be3565b60405180910390f35b34801561075957600080fd5b50610762611cdf565b60405161076f9190613b83565b60405180910390f35b34801561078457600080fd5b5061078d611cf2565b60405161079a9190613da5565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906135d8565b611cf8565b005b3480156107d857600080fd5b506107f360048036038101906107ee9190613442565b611d91565b6040516108009190613b83565b60405180910390f35b34801561081557600080fd5b5061081e611e25565b60405161082b9190613b83565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613415565b611e38565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610938575061093782611fe4565b5b9050919050565b60606002805461094e906140a2565b80601f016020809104026020016040519081016040528092919081815260200182805461097a906140a2565b80156109c75780601f1061099c576101008083540402835291602001916109c7565b820191906000526020600020905b8154815290600101906020018083116109aa57829003601f168201915b5050505050905090565b60006109dc8261204e565b610a12576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5882610fd9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adf61209c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b115750610b0f81610b0a61209c565b611d91565b155b15610b48576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b538383836120a4565b505050565b601060029054906101000a900460ff1681565b6000610b75612156565b6001546000540303905090565b610b8a61209c565b73ffffffffffffffffffffffffffffffffffffffff16610ba8611717565b73ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590613d05565b60405180910390fd5b80600c8190555050565b610c1383838361215b565b505050565b600e5481565b601060039054906101000a900460ff1681565b610c3961209c565b73ffffffffffffffffffffffffffffffffffffffff16610c57611717565b73ffffffffffffffffffffffffffffffffffffffff1614610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490613d05565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610ce161209c565b73ffffffffffffffffffffffffffffffffffffffff16610cff611717565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613d05565b60405180910390fd5b600047905060007385da080d0fd6d35a1ca565f868cd4f84c897b1199050600073bd33e3db1b52c1d35964a439748071f7db69e8d390508173ffffffffffffffffffffffffffffffffffffffff166108fc610ddd68056bc75e2d63100000610dcf68054915956c409600008861264c90919063ffffffff16565b6126c790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015610e08573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff166108fc610e5968056bc75e2d63100000610e4b6722b1c8c1227a00008861264c90919063ffffffff16565b6126c790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015610e84573d6000803e3d6000fd5b50505050565b610ea583838360405180602001604052806000815250611bc4565b505050565b610eb261209c565b73ffffffffffffffffffffffffffffffffffffffff16610ed0611717565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90613d05565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610f4b61209c565b73ffffffffffffffffffffffffffffffffffffffff16610f69611717565b73ffffffffffffffffffffffffffffffffffffffff1614610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690613d05565b60405180910390fd5b80600a9080519060200190610fd59291906131bc565b5050565b6000610fe48261271f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611057576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110c761209c565b73ffffffffffffffffffffffffffffffffffffffff166110e5611717565b73ffffffffffffffffffffffffffffffffffffffff161461113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113290613d05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b601060009054906101000a900460ff16611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613d65565b60405180910390fd5b600c54851115611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90613d25565b60405180910390fd5b346112ac8660095461264c90919063ffffffff16565b11156112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490613d85565b60405180910390fd5b601060019054906101000a900460ff16156114ba57600e5461131f86611311610b6b565b6129ae90919063ffffffff16565b1115611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613c05565b60405180910390fd5b428410156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90613d45565b60405180910390fd5b60016113da303387896040516020016113bf9493929190613a84565b60405160208183030381529060405280519060200120612a0c565b848484604051600081526020016040526040516113fa9493929190613b9e565b6020604051602081039080840390855afa15801561141c573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613c25565b60405180910390fd5b611706565b601060029054906101000a900460ff161561168757600f546114ec866114de610b6b565b6129ae90919063ffffffff16565b111561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490613c45565b60405180910390fd5b42841015611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790613d45565b60405180910390fd5b60016115a73033878960405160200161158c9493929190613a84565b60405160208183030381529060405280519060200120612a0c565b848484604051600081526020016040526040516115c79493929190613b9e565b6020604051602081039080840390855afa1580156115e9573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613c25565b60405180910390fd5b611705565b601060039054906101000a900460ff16156116ff57600d546116b9866116ab610b6b565b6129ae90919063ffffffff16565b11156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613cc5565b60405180910390fd5b611704565b600080fd5b5b5b6117103386612a3c565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611750906140a2565b80601f016020809104026020016040519081016040528092919081815260200182805461177c906140a2565b80156117c95780601f1061179e576101008083540402835291602001916117c9565b820191906000526020600020905b8154815290600101906020018083116117ac57829003601f168201915b5050505050905090565b600c5481565b600a80546117e6906140a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611812906140a2565b801561185f5780601f106118345761010080835404028352916020019161185f565b820191906000526020600020905b81548152906001019060200180831161184257829003601f168201915b505050505081565b60095481565b61187561209c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118da576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118e761209c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661199461209c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d99190613b83565b60405180910390a35050565b6119ed61209c565b73ffffffffffffffffffffffffffffffffffffffff16611a0b611717565b73ffffffffffffffffffffffffffffffffffffffff1614611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613d05565b60405180910390fd5b8060098190555050565b611a7361209c565b73ffffffffffffffffffffffffffffffffffffffff16611a91611717565b73ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90613d05565b60405180910390fd5b80601060036101000a81548160ff02191690831515021790555050565b611b0c61209c565b73ffffffffffffffffffffffffffffffffffffffff16611b2a611717565b73ffffffffffffffffffffffffffffffffffffffff1614611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790613d05565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611bcf84848461215b565b611bee8373ffffffffffffffffffffffffffffffffffffffff16612a5a565b8015611c035750611c0184848484612a7d565b155b15611c3a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611c4b8261204e565b611c81576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c8b612bdd565b9050600081511415611cac5760405180602001604052806000815250611cd7565b80611cb684612c6f565b604051602001611cc7929190613ad2565b6040516020818303038152906040525b915050919050565b601060019054906101000a900460ff1681565b600d5481565b611d0061209c565b73ffffffffffffffffffffffffffffffffffffffff16611d1e611717565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613d05565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b611e4061209c565b73ffffffffffffffffffffffffffffffffffffffff16611e5e611717565b73ffffffffffffffffffffffffffffffffffffffff1614611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90613d05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1b90613c65565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612059612156565b11158015612068575060005482105b8015612095575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006121668261271f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661218d61209c565b73ffffffffffffffffffffffffffffffffffffffff1614806121c057506121bf82600001516121ba61209c565b611d91565b5b8061220557506121ce61209c565b73ffffffffffffffffffffffffffffffffffffffff166121ed846109d1565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061223e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122a7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561230e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61231b8585856001612dd0565b61232b60008484600001516120a4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125dc576000548110156125db5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126458585856001612dd6565b5050505050565b60008083141561265f57600090506126c1565b6000828461266d9190613f11565b905082848261267c9190613ee0565b146126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390613ce5565b60405180910390fd5b809150505b92915050565b600080821161270b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270290613ca5565b60405180910390fd5b81836127179190613ee0565b905092915050565b612727613242565b600082905080612735612156565b11158015612744575060005481105b15612977576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161297557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128595780925050506129a9565b5b60011561297457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461296f5780925050506129a9565b61285a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008082846129bd9190613e8a565b905083811015612a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f990613c85565b60405180910390fd5b8091505092915050565b600081604051602001612a1f9190613af6565b604051602081830303815290604052805190602001209050919050565b612a56828260405180602001604052806000815250612ddc565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa361209c565b8786866040518563ffffffff1660e01b8152600401612ac59493929190613b37565b602060405180830381600087803b158015612adf57600080fd5b505af1925050508015612b1057506040513d601f19601f82011682018060405250810190612b0d9190613632565b60015b612b8a573d8060008114612b40576040519150601f19603f3d011682016040523d82523d6000602084013e612b45565b606091505b50600081511415612b82576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612bec906140a2565b80601f0160208091040260200160405190810160405280929190818152602001828054612c18906140a2565b8015612c655780601f10612c3a57610100808354040283529160200191612c65565b820191906000526020600020905b815481529060010190602001808311612c4857829003601f168201915b5050505050905090565b60606000821415612cb7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dcb565b600082905060005b60008214612ce9578080612cd290614105565b915050600a82612ce29190613ee0565b9150612cbf565b60008167ffffffffffffffff811115612d0557612d04614273565b5b6040519080825280601f01601f191660200182016040528015612d375781602001600182028036833780820191505090505b5090505b60008514612dc457600182612d509190613f6b565b9150600a85612d5f9190614186565b6030612d6b9190613e8a565b60f81b818381518110612d8157612d80614244565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dbd9190613ee0565b9450612d3b565b8093505050505b919050565b50505050565b50505050565b612de98383836001612dee565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e5b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e96576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ea36000868387612dd0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561306d575061306c8773ffffffffffffffffffffffffffffffffffffffff16612a5a565b5b15613133575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130e26000888480600101955088612a7d565b613118576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561307357826000541461312e57600080fd5b61319f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613134575b8160008190555050506131b56000868387612dd6565b5050505050565b8280546131c8906140a2565b90600052602060002090601f0160209004810192826131ea5760008555613231565b82601f1061320357805160ff1916838001178555613231565b82800160010185558215613231579182015b82811115613230578251825591602001919060010190613215565b5b50905061323e9190613285565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561329e576000816000905550600101613286565b5090565b60006132b56132b084613de5565b613dc0565b9050828152602081018484840111156132d1576132d06142a7565b5b6132dc848285614060565b509392505050565b60006132f76132f284613e16565b613dc0565b905082815260208101848484011115613313576133126142a7565b5b61331e848285614060565b509392505050565b600081359050613335816145f6565b92915050565b60008135905061334a8161460d565b92915050565b60008135905061335f81614624565b92915050565b6000813590506133748161463b565b92915050565b6000815190506133898161463b565b92915050565b600082601f8301126133a4576133a36142a2565b5b81356133b48482602086016132a2565b91505092915050565b600082601f8301126133d2576133d16142a2565b5b81356133e28482602086016132e4565b91505092915050565b6000813590506133fa81614652565b92915050565b60008135905061340f81614669565b92915050565b60006020828403121561342b5761342a6142b1565b5b600061343984828501613326565b91505092915050565b60008060408385031215613459576134586142b1565b5b600061346785828601613326565b925050602061347885828601613326565b9150509250929050565b60008060006060848603121561349b5761349a6142b1565b5b60006134a986828701613326565b93505060206134ba86828701613326565b92505060406134cb868287016133eb565b9150509250925092565b600080600080608085870312156134ef576134ee6142b1565b5b60006134fd87828801613326565b945050602061350e87828801613326565b935050604061351f878288016133eb565b925050606085013567ffffffffffffffff8111156135405761353f6142ac565b5b61354c8782880161338f565b91505092959194509250565b6000806040838503121561356f5761356e6142b1565b5b600061357d85828601613326565b925050602061358e8582860161333b565b9150509250929050565b600080604083850312156135af576135ae6142b1565b5b60006135bd85828601613326565b92505060206135ce858286016133eb565b9150509250929050565b6000602082840312156135ee576135ed6142b1565b5b60006135fc8482850161333b565b91505092915050565b60006020828403121561361b5761361a6142b1565b5b600061362984828501613365565b91505092915050565b600060208284031215613648576136476142b1565b5b60006136568482850161337a565b91505092915050565b600060208284031215613675576136746142b1565b5b600082013567ffffffffffffffff811115613693576136926142ac565b5b61369f848285016133bd565b91505092915050565b6000602082840312156136be576136bd6142b1565b5b60006136cc848285016133eb565b91505092915050565b600080600080600060a086880312156136f1576136f06142b1565b5b60006136ff888289016133eb565b9550506020613710888289016133eb565b945050604061372188828901613400565b935050606061373288828901613350565b925050608061374388828901613350565b9150509295509295909350565b61375981613f9f565b82525050565b61377061376b82613f9f565b61414e565b82525050565b61377f81613fb1565b82525050565b61378e81613fbd565b82525050565b6137a56137a082613fbd565b614160565b82525050565b60006137b682613e47565b6137c08185613e5d565b93506137d081856020860161406f565b6137d9816142b6565b840191505092915050565b6137f56137f08261402a565b61414e565b82525050565b600061380682613e52565b6138108185613e6e565b935061382081856020860161406f565b613829816142b6565b840191505092915050565b600061383f82613e52565b6138498185613e7f565b935061385981856020860161406f565b80840191505092915050565b6000613872603883613e6e565b915061387d826142d4565b604082019050919050565b6000613895601e83613e6e565b91506138a082614323565b602082019050919050565b60006138b8603983613e6e565b91506138c38261434c565b604082019050919050565b60006138db601c83613e7f565b91506138e68261439b565b601c82019050919050565b60006138fe602683613e6e565b9150613909826143c4565b604082019050919050565b6000613921601b83613e6e565b915061392c82614413565b602082019050919050565b6000613944601a83613e6e565b915061394f8261443c565b602082019050919050565b6000613967602883613e6e565b915061397282614465565b604082019050919050565b600061398a602183613e6e565b9150613995826144b4565b604082019050919050565b60006139ad602083613e6e565b91506139b882614503565b602082019050919050565b60006139d0602683613e6e565b91506139db8261452c565b604082019050919050565b60006139f3600f83613e6e565b91506139fe8261457b565b602082019050919050565b6000613a16601f83613e6e565b9150613a21826145a4565b602082019050919050565b6000613a39601583613e6e565b9150613a44826145cd565b602082019050919050565b613a5881614013565b82525050565b613a6f613a6a82614013565b61417c565b82525050565b613a7e8161401d565b82525050565b6000613a9082876137e4565b601482019150613aa0828661375f565b601482019150613ab08285613a5e565b602082019150613ac08284613a5e565b60208201915081905095945050505050565b6000613ade8285613834565b9150613aea8284613834565b91508190509392505050565b6000613b01826138ce565b9150613b0d8284613794565b60208201915081905092915050565b6000602082019050613b316000830184613750565b92915050565b6000608082019050613b4c6000830187613750565b613b596020830186613750565b613b666040830185613a4f565b8181036060830152613b7881846137ab565b905095945050505050565b6000602082019050613b986000830184613776565b92915050565b6000608082019050613bb36000830187613785565b613bc06020830186613a75565b613bcd6040830185613785565b613bda6060830184613785565b95945050505050565b60006020820190508181036000830152613bfd81846137fb565b905092915050565b60006020820190508181036000830152613c1e81613865565b9050919050565b60006020820190508181036000830152613c3e81613888565b9050919050565b60006020820190508181036000830152613c5e816138ab565b9050919050565b60006020820190508181036000830152613c7e816138f1565b9050919050565b60006020820190508181036000830152613c9e81613914565b9050919050565b60006020820190508181036000830152613cbe81613937565b9050919050565b60006020820190508181036000830152613cde8161395a565b9050919050565b60006020820190508181036000830152613cfe8161397d565b9050919050565b60006020820190508181036000830152613d1e816139a0565b9050919050565b60006020820190508181036000830152613d3e816139c3565b9050919050565b60006020820190508181036000830152613d5e816139e6565b9050919050565b60006020820190508181036000830152613d7e81613a09565b9050919050565b60006020820190508181036000830152613d9e81613a2c565b9050919050565b6000602082019050613dba6000830184613a4f565b92915050565b6000613dca613ddb565b9050613dd682826140d4565b919050565b6000604051905090565b600067ffffffffffffffff821115613e0057613dff614273565b5b613e09826142b6565b9050602081019050919050565b600067ffffffffffffffff821115613e3157613e30614273565b5b613e3a826142b6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e9582614013565b9150613ea083614013565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ed557613ed46141b7565b5b828201905092915050565b6000613eeb82614013565b9150613ef683614013565b925082613f0657613f056141e6565b5b828204905092915050565b6000613f1c82614013565b9150613f2783614013565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f6057613f5f6141b7565b5b828202905092915050565b6000613f7682614013565b9150613f8183614013565b925082821015613f9457613f936141b7565b5b828203905092915050565b6000613faa82613ff3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006140358261403c565b9050919050565b60006140478261404e565b9050919050565b600061405982613ff3565b9050919050565b82818337600083830152505050565b60005b8381101561408d578082015181840152602081019050614072565b8381111561409c576000848401525b50505050565b600060028204905060018216806140ba57607f821691505b602082108114156140ce576140cd614215565b5b50919050565b6140dd826142b6565b810181811067ffffffffffffffff821117156140fc576140fb614273565b5b80604052505050565b600061411082614013565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614143576141426141b7565b5b600182019050919050565b60006141598261416a565b9050919050565b6000819050919050565b6000614175826142c7565b9050919050565b6000819050919050565b600061419182614013565b915061419c83614013565b9250826141ac576141ab6141e6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f507572636861736520776f756c6420657863656564206d61782066697273742060008201527f77686974656c69737420737570706c79206f66206e6674730000000000000000602082015250565b7f6f776e65722073686f756c64207369676e205472616e73616374696f6f6e0000600082015250565b7f507572636861736520776f756c6420657863656564206d6178207365636f6e6460008201527f2077686974656c69737420737570706c79206f66206e66747300000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f536166654d6174683a206469766973696f6e206279207a65726f000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66206e667473000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e206f6e6c79206d696e74206365727461696e20746f6b656e732061742060008201527f612074696d650000000000000000000000000000000000000000000000000000602082015250565b7f646561646c696e65207061737365640000000000000000000000000000000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74206e667400600082015250565b7f4e6f7420456e6f7567682045746865722053656e740000000000000000000000600082015250565b6145ff81613f9f565b811461460a57600080fd5b50565b61461681613fb1565b811461462157600080fd5b50565b61462d81613fbd565b811461463857600080fd5b50565b61464481613fc7565b811461464f57600080fd5b50565b61465b81614013565b811461466657600080fd5b50565b6146728161401d565b811461467d57600080fd5b5056fea26469706673582212206e5e27947eb693d918239ec5a6f1d883a8e30a63e0c54de18b40a64f45861c4664736f6c63430008070033

Deployed Bytecode Sourcemap

51267:3965:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33792:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37177:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38680:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38243:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51714:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33041:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52006:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39545:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51546:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51756:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54306:89;;;;;;;;;;;;;:::i;:::-;;52182:454;;;;;;;;;;;;;:::i;:::-;;39786:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54428:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54133:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36986:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34161:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29508:148;;;;;;;;;;;;;:::i;:::-;;51588:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52644:1477;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28857:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37346:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51478:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51406:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51344:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38956:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51796:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54642:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51896:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40042:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37521:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51673:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51514:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54537:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39314:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51634:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29811:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33792:305;33894:4;33946:25;33931:40;;;:11;:40;;;;:105;;;;34003:33;33988:48;;;:11;:48;;;;33931:105;:158;;;;34053:36;34077:11;34053:23;:36::i;:::-;33931:158;33911:178;;33792:305;;;:::o;37177:100::-;37231:13;37264:5;37257:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37177:100;:::o;38680:204::-;38748:7;38773:16;38781:7;38773;:16::i;:::-;38768:64;;38798:34;;;;;;;;;;;;;;38768:64;38852:15;:24;38868:7;38852:24;;;;;;;;;;;;;;;;;;;;;38845:31;;38680:204;;;:::o;38243:371::-;38316:13;38332:24;38348:7;38332:15;:24::i;:::-;38316:40;;38377:5;38371:11;;:2;:11;;;38367:48;;;38391:24;;;;;;;;;;;;;;38367:48;38448:5;38432:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;38458:37;38475:5;38482:12;:10;:12::i;:::-;38458:16;:37::i;:::-;38457:38;38432:63;38428:138;;;38519:35;;;;;;;;;;;;;;38428:138;38578:28;38587:2;38591:7;38600:5;38578:8;:28::i;:::-;38305:309;38243:371;;:::o;51714:35::-;;;;;;;;;;;;;:::o;33041:303::-;33085:7;33310:15;:13;:15::i;:::-;33295:12;;33279:13;;:28;:46;33272:53;;33041:303;:::o;52006:97::-;29088:12;:10;:12::i;:::-;29077:23;;:7;:5;:7::i;:::-;:23;;;29069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52088:7:::1;52074:11;:21;;;;52006:97:::0;:::o;39545:170::-;39679:28;39689:4;39695:2;39699:7;39679:9;:28::i;:::-;39545:170;;;:::o;51546:35::-;;;;:::o;51756:30::-;;;;;;;;;;;;;:::o;54306:89::-;29088:12;:10;:12::i;:::-;29077:23;;:7;:5;:7::i;:::-;:23;;;29069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54375:12:::1;;;;;;;;;;;54374:13;54359:12;;:28;;;;;;;;;;;;;;;;;;54306:89::o:0;52182:454::-;29088:12;:10;:12::i;:::-;29077:23;;:7;:5;:7::i;:::-;:23;;;29069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52230:12:::1;52245:21;52230:36;;52287:19;52317:42;52287:73;;52371:19;52401:42;52371:73;;52460:3;:12;;:74;52473:60;52511:21;52473:33;52485:20;52473:7;:11;;:33;;;;:::i;:::-;:37;;:60;;;;:::i;:::-;52460:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52545:3;:12;;:73;52558:59;52595:21;52558:32;52570:19;52558:7;:11;;:32;;;;:::i;:::-;:36;;:59;;;;:::i;:::-;52545:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52219:417;;;52182:454::o:0;39786:185::-;39924:39;39941:4;39947:2;39951:7;39924:39;;;;;;;;;;;;:16;:39::i;:::-;39786:185;;;:::o;54428:97::-;29088:12;:10;:12::i;:::-;29077:23;;:7;:5;:7::i;:::-;:23;;;29069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54512:5:::1;54494:15;;:23;;;;;;;;;;;;;;;;;;54428:97:::0;:::o;54133:98::-;29088:12;:10;:12::i;:::-;29077:23;;:7;:5;:7::i;:::-;:23;;;29069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54215:8:::1;54205:7;:18;;;;;;;;;;;;:::i;:::-;;54133:98:::0;:::o;36986:124::-;37050:7;37077:20;37089:7;37077:11;:20::i;:::-;:25;;;37070:32;;36986:124;;;:::o;34161:206::-;34225:7;34266:1;34249:19;;:5;:19;;;34245:60;;;34277:28;;;;;;;;;;;;;;34245:60;34331:12;:19;34344:5;34331:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;34323:36;;34316:43;;34161:206;;;:::o;29508:148::-;29088:12;:10;:12::i;:::-;29077:23;;:7;:5;:7::i;:::-;:23;;;29069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29615:1:::1;29578:40;;29599:6;;;;;;;;;;;29578:40;;;;;;;;;;;;29646:1;29629:6;;:19;;;;;;;;;;;;;;;;;;29508:148::o:0;51588:35::-;;;;:::o;52644:1477::-;52766:12;;;;;;;;;;;52758:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;52845:11;;52833:8;:23;;52825:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;52941:9;52918:19;52928:8;52918:5;;:9;;:19;;;;:::i;:::-;:32;;52910:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;52993:15;;;;;;;;;;;52990:999;;;53063:13;;53032:27;53050:8;53032:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:44;;53024:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;53172:15;53160:8;:27;;53152:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53251:102;53261:82;53302:4;53308:10;53321:8;53332;53285:56;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53275:67;;;;;;53261:13;:82::i;:::-;53345:1;53348;53351;53251:102;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53230:123;;:17;;;;;;;;;;;:123;;;53222:166;;;;;;;;;;;;:::i;:::-;;;;;;;;;52990:999;;;53409:15;;;;;;;;;;;53406:583;;;53479:13;;53448:27;53466:8;53448:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:44;;53440:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;53589:15;53577:8;:27;;53569:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53668:102;53678:82;53719:4;53725:10;53738:8;53749;53702:56;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53692:67;;;;;;53678:13;:82::i;:::-;53762:1;53765;53768;53668:102;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53647:123;;:17;;;;;;;;;;;:123;;;53639:166;;;;;;;;;;;;:::i;:::-;;;;;;;;;53406:583;;;53825:10;;;;;;;;;;;53822:167;;;53890:3;;53859:27;53877:8;53859:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:34;;53851:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;53822:167;;;53969:8;;;53822:167;53406:583;52990:999;54081:31;54091:10;54103:8;54081:9;:31::i;:::-;52644:1477;;;;;:::o;28857:87::-;28903:7;28930:6;;;;;;;;;;;28923:13;;28857:87;:::o;37346:104::-;37402:13;37435:7;37428:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37346:104;:::o;51478:27::-;;;;:::o;51406:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51344:41::-;;;;:::o;38956:287::-;39067:12;:10;:12::i;:::-;39055:24;;:8;:24;;;39051:54;;;39088:17;;;;;;;;;;;;;;39051:54;39163:8;39118:18;:32;39137:12;:10;:12::i;:::-;39118:32;;;;;;;;;;;;;;;:42;39151:8;39118:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;39216:8;39187:48;;39202:12;:10;:12::i;:::-;39187:48;;;39226:8;39187:48;;;;;;:::i;:::-;;;;;;;;38956:287;;:::o;51796:91::-;29088:12;:10;:12::i;:::-;29077:23;;:7;:5;:7::i;:::-;:23;;;29069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51871:8:::1;51863:5;:16;;;;51796:91:::0;:::o;54642:92::-;29088:12;:10;:12::i;:::-;29077:23;;:7;:5;:7::i;:::-;:23;;;29069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54721:5:::1;54708:10;;:18;;;;;;;;;;;;;;;;;;54642:92:::0;:::o;51896:102::-;29088:12;:10;:12::i;:::-;29077:23;;:7;:5;:7::i;:::-;:23;;;29069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51982:6:::1;51962:17;;:26;;;;;;;;;;;;;;;;;;51896:102:::0;:::o;40042:369::-;40209:28;40219:4;40225:2;40229:7;40209:9;:28::i;:::-;40252:15;:2;:13;;;:15::i;:::-;:76;;;;;40272:56;40303:4;40309:2;40313:7;40322:5;40272:30;:56::i;:::-;40271:57;40252:76;40248:156;;;40352:40;;;;;;;;;;;;;;40248:156;40042:369;;;;:::o;37521:318::-;37594:13;37625:16;37633:7;37625;:16::i;:::-;37620:59;;37650:29;;;;;;;;;;;;;;37620:59;37692:21;37716:10;:8;:10::i;:::-;37692:34;;37769:1;37750:7;37744:21;:26;;:87;;;;;;;;;;;;;;;;;37797:7;37806:18;:7;:16;:18::i;:::-;37780:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37744:87;37737:94;;;37521:318;;;:::o;51673:34::-;;;;;;;;;;;;;:::o;51514:25::-;;;;:::o;54537:97::-;29088:12;:10;:12::i;:::-;29077:23;;:7;:5;:7::i;:::-;:23;;;29069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54621:5:::1;54603:15;;:23;;;;;;;;;;;;;;;;;;54537:97:::0;:::o;39314:164::-;39411:4;39435:18;:25;39454:5;39435:25;;;;;;;;;;;;;;;:35;39461:8;39435:35;;;;;;;;;;;;;;;;;;;;;;;;;39428:42;;39314:164;;;;:::o;51634:32::-;;;;;;;;;;;;;:::o;29811:244::-;29088:12;:10;:12::i;:::-;29077:23;;:7;:5;:7::i;:::-;:23;;;29069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29920:1:::1;29900:22;;:8;:22;;;;29892:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30010:8;29981:38;;30002:6;;;;;;;;;;;29981:38;;;;;;;;;;;;30039:8;30030:6;;:17;;;;;;;;;;;;;;;;;;29811:244:::0;:::o;27034:157::-;27119:4;27158:25;27143:40;;;:11;:40;;;;27136:47;;27034:157;;;:::o;40666:187::-;40723:4;40766:7;40747:15;:13;:15::i;:::-;:26;;:53;;;;;40787:13;;40777:7;:23;40747:53;:98;;;;;40818:11;:20;40830:7;40818:20;;;;;;;;;;;:27;;;;;;;;;;;;40817:28;40747:98;40740:105;;40666:187;;;:::o;24137:98::-;24190:7;24217:10;24210:17;;24137:98;:::o;48277:196::-;48419:2;48392:15;:24;48408:7;48392:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48457:7;48453:2;48437:28;;48446:5;48437:28;;;;;;;;;;;;48277:196;;;:::o;32765:92::-;32821:7;32765:92;:::o;43779:2112::-;43894:35;43932:20;43944:7;43932:11;:20::i;:::-;43894:58;;43965:22;44007:13;:18;;;43991:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;44042:50;44059:13;:18;;;44079:12;:10;:12::i;:::-;44042:16;:50::i;:::-;43991:101;:154;;;;44133:12;:10;:12::i;:::-;44109:36;;:20;44121:7;44109:11;:20::i;:::-;:36;;;43991:154;43965:181;;44164:17;44159:66;;44190:35;;;;;;;;;;;;;;44159:66;44262:4;44240:26;;:13;:18;;;:26;;;44236:67;;44275:28;;;;;;;;;;;;;;44236:67;44332:1;44318:16;;:2;:16;;;44314:52;;;44343:23;;;;;;;;;;;;;;44314:52;44379:43;44401:4;44407:2;44411:7;44420:1;44379:21;:43::i;:::-;44487:49;44504:1;44508:7;44517:13;:18;;;44487:8;:49::i;:::-;44862:1;44832:12;:18;44845:4;44832:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44906:1;44878:12;:16;44891:2;44878:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44952:2;44924:11;:20;44936:7;44924:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;45014:15;44969:11;:20;44981:7;44969:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;45282:19;45314:1;45304:7;:11;45282:33;;45375:1;45334:43;;:11;:24;45346:11;45334:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;45330:445;;;45559:13;;45545:11;:27;45541:219;;;45629:13;:18;;;45597:11;:24;45609:11;45597:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;45712:13;:28;;;45670:11;:24;45682:11;45670:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;45541:219;45330:445;44807:979;45822:7;45818:2;45803:27;;45812:4;45803:27;;;;;;;;;;;;45841:42;45862:4;45868:2;45872:7;45881:1;45841:20;:42::i;:::-;43883:2008;;43779:2112;;;:::o;3645:220::-;3703:7;3732:1;3727;:6;3723:20;;;3742:1;3735:8;;;;3723:20;3754:9;3770:1;3766;:5;;;;:::i;:::-;3754:17;;3799:1;3794;3790;:5;;;;:::i;:::-;:10;3782:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;3856:1;3849:8;;;3645:220;;;;;:::o;4343:153::-;4401:7;4433:1;4429;:5;4421:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;4487:1;4483;:5;;;;:::i;:::-;4476:12;;4343:153;;;;:::o;35816:1108::-;35877:21;;:::i;:::-;35911:12;35926:7;35911:22;;35994:4;35975:15;:13;:15::i;:::-;:23;;:47;;;;;36009:13;;36002:4;:20;35975:47;35971:886;;;36043:31;36077:11;:17;36089:4;36077:17;;;;;;;;;;;36043:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36118:9;:16;;;36113:729;;36189:1;36163:28;;:9;:14;;;:28;;;36159:101;;36227:9;36220:16;;;;;;36159:101;36562:261;36569:4;36562:261;;;36602:6;;;;;;;;36647:11;:17;36659:4;36647:17;;;;;;;;;;;36635:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36721:1;36695:28;;:9;:14;;;:28;;;36691:109;;36763:9;36756:16;;;;;;36691:109;36562:261;;;36113:729;36024:833;35971:886;36885:31;;;;;;;;;;;;;;35816:1108;;;;:::o;2766:179::-;2824:7;2844:9;2860:1;2856;:5;;;;:::i;:::-;2844:17;;2885:1;2880;:6;;2872:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2936:1;2929:8;;;2766:179;;;;:::o;55052:177::-;55118:7;55207:12;55154:66;;;;;;;;:::i;:::-;;;;;;;;;;;;;55144:77;;;;;;55137:84;;55052:177;;;:::o;40861:104::-;40930:27;40940:2;40944:8;40930:27;;;;;;;;;;;;:9;:27::i;:::-;40861:104;;:::o;16327:326::-;16387:4;16644:1;16622:7;:19;;;:23;16615:30;;16327:326;;;:::o;48965:667::-;49128:4;49165:2;49149:36;;;49186:12;:10;:12::i;:::-;49200:4;49206:7;49215:5;49149:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49145:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49400:1;49383:6;:13;:18;49379:235;;;49429:40;;;;;;;;;;;;;;49379:235;49572:6;49566:13;49557:6;49553:2;49549:15;49542:38;49145:480;49278:45;;;49268:55;;;:6;:55;;;;49261:62;;;48965:667;;;;;;:::o;54944:100::-;54996:13;55029:7;55022:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54944:100;:::o;24577:723::-;24633:13;24863:1;24854:5;:10;24850:53;;;24881:10;;;;;;;;;;;;;;;;;;;;;24850:53;24913:12;24928:5;24913:20;;24944:14;24969:78;24984:1;24976:4;:9;24969:78;;25002:8;;;;;:::i;:::-;;;;25033:2;25025:10;;;;;:::i;:::-;;;24969:78;;;25057:19;25089:6;25079:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25057:39;;25107:154;25123:1;25114:5;:10;25107:154;;25151:1;25141:11;;;;;:::i;:::-;;;25218:2;25210:5;:10;;;;:::i;:::-;25197:2;:24;;;;:::i;:::-;25184:39;;25167:6;25174;25167:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;25247:2;25238:11;;;;;:::i;:::-;;;25107:154;;;25285:6;25271:21;;;;;24577:723;;;;:::o;50280:159::-;;;;;:::o;51098:158::-;;;;;:::o;41328:163::-;41451:32;41457:2;41461:8;41471:5;41478:4;41451:5;:32::i;:::-;41328:163;;;:::o;41750:1775::-;41889:20;41912:13;;41889:36;;41954:1;41940:16;;:2;:16;;;41936:48;;;41965:19;;;;;;;;;;;;;;41936:48;42011:1;41999:8;:13;41995:44;;;42021:18;;;;;;;;;;;;;;41995:44;42052:61;42082:1;42086:2;42090:12;42104:8;42052:21;:61::i;:::-;42425:8;42390:12;:16;42403:2;42390:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42489:8;42449:12;:16;42462:2;42449:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42548:2;42515:11;:25;42527:12;42515:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42615:15;42565:11;:25;42577:12;42565:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;42648:20;42671:12;42648:35;;42698:11;42727:8;42712:12;:23;42698:37;;42756:4;:23;;;;;42764:15;:2;:13;;;:15::i;:::-;42756:23;42752:641;;;42800:314;42856:12;42852:2;42831:38;;42848:1;42831:38;;;;;;;;;;;;42897:69;42936:1;42940:2;42944:14;;;;;;42960:5;42897:30;:69::i;:::-;42892:174;;43002:40;;;;;;;;;;;;;;42892:174;43109:3;43093:12;:19;;42800:314;;43195:12;43178:13;;:29;43174:43;;43209:8;;;43174:43;42752:641;;;43258:120;43314:14;;;;;;43310:2;43289:40;;43306:1;43289:40;;;;;;;;;;;;43373:3;43357:12;:19;;43258:120;;42752:641;43423:12;43407:13;:28;;;;42365:1082;;43457:60;43486:1;43490:2;43494:12;43508:8;43457:20;:60::i;:::-;41878:1647;41750:1775;;;;:::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:139::-;1171:5;1209:6;1196:20;1187:29;;1225:33;1252:5;1225:33;:::i;:::-;1125:139;;;;:::o;1270:137::-;1315:5;1353:6;1340:20;1331:29;;1369:32;1395:5;1369:32;:::i;:::-;1270:137;;;;:::o;1413:141::-;1469:5;1500:6;1494:13;1485:22;;1516:32;1542:5;1516:32;:::i;:::-;1413:141;;;;:::o;1573:338::-;1628:5;1677:3;1670:4;1662:6;1658:17;1654:27;1644:122;;1685:79;;:::i;:::-;1644:122;1802:6;1789:20;1827:78;1901:3;1893:6;1886:4;1878:6;1874:17;1827:78;:::i;:::-;1818:87;;1634:277;1573:338;;;;:::o;1931:340::-;1987:5;2036:3;2029:4;2021:6;2017:17;2013:27;2003:122;;2044:79;;:::i;:::-;2003:122;2161:6;2148:20;2186:79;2261:3;2253:6;2246:4;2238:6;2234:17;2186:79;:::i;:::-;2177:88;;1993:278;1931:340;;;;:::o;2277:139::-;2323:5;2361:6;2348:20;2339:29;;2377:33;2404:5;2377:33;:::i;:::-;2277:139;;;;:::o;2422:135::-;2466:5;2504:6;2491:20;2482:29;;2520:31;2545:5;2520:31;:::i;:::-;2422:135;;;;:::o;2563:329::-;2622:6;2671:2;2659:9;2650:7;2646:23;2642:32;2639:119;;;2677:79;;:::i;:::-;2639:119;2797:1;2822:53;2867:7;2858:6;2847:9;2843:22;2822:53;:::i;:::-;2812:63;;2768:117;2563:329;;;;:::o;2898:474::-;2966:6;2974;3023:2;3011:9;3002:7;2998:23;2994:32;2991:119;;;3029:79;;:::i;:::-;2991:119;3149:1;3174:53;3219:7;3210:6;3199:9;3195:22;3174:53;:::i;:::-;3164:63;;3120:117;3276:2;3302:53;3347:7;3338:6;3327:9;3323:22;3302:53;:::i;:::-;3292:63;;3247:118;2898:474;;;;;:::o;3378:619::-;3455:6;3463;3471;3520:2;3508:9;3499:7;3495:23;3491:32;3488:119;;;3526:79;;:::i;:::-;3488:119;3646:1;3671:53;3716:7;3707:6;3696:9;3692:22;3671:53;:::i;:::-;3661:63;;3617:117;3773:2;3799:53;3844:7;3835:6;3824:9;3820:22;3799:53;:::i;:::-;3789:63;;3744:118;3901:2;3927:53;3972:7;3963:6;3952:9;3948:22;3927:53;:::i;:::-;3917:63;;3872:118;3378:619;;;;;:::o;4003:943::-;4098:6;4106;4114;4122;4171:3;4159:9;4150:7;4146:23;4142:33;4139:120;;;4178:79;;:::i;:::-;4139:120;4298:1;4323:53;4368:7;4359:6;4348:9;4344:22;4323:53;:::i;:::-;4313:63;;4269:117;4425:2;4451:53;4496:7;4487:6;4476:9;4472:22;4451:53;:::i;:::-;4441:63;;4396:118;4553:2;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4524:118;4709:2;4698:9;4694:18;4681:32;4740:18;4732:6;4729:30;4726:117;;;4762:79;;:::i;:::-;4726:117;4867:62;4921:7;4912:6;4901:9;4897:22;4867:62;:::i;:::-;4857:72;;4652:287;4003:943;;;;;;;:::o;4952:468::-;5017:6;5025;5074:2;5062:9;5053:7;5049:23;5045:32;5042:119;;;5080:79;;:::i;:::-;5042:119;5200:1;5225:53;5270:7;5261:6;5250:9;5246:22;5225:53;:::i;:::-;5215:63;;5171:117;5327:2;5353:50;5395:7;5386:6;5375:9;5371:22;5353:50;:::i;:::-;5343:60;;5298:115;4952:468;;;;;:::o;5426:474::-;5494:6;5502;5551:2;5539:9;5530:7;5526:23;5522:32;5519:119;;;5557:79;;:::i;:::-;5519:119;5677:1;5702:53;5747:7;5738:6;5727:9;5723:22;5702:53;:::i;:::-;5692:63;;5648:117;5804:2;5830:53;5875:7;5866:6;5855:9;5851:22;5830:53;:::i;:::-;5820:63;;5775:118;5426:474;;;;;:::o;5906:323::-;5962:6;6011:2;5999:9;5990:7;5986:23;5982:32;5979:119;;;6017:79;;:::i;:::-;5979:119;6137:1;6162:50;6204:7;6195:6;6184:9;6180:22;6162:50;:::i;:::-;6152:60;;6108:114;5906:323;;;;:::o;6235:327::-;6293:6;6342:2;6330:9;6321:7;6317:23;6313:32;6310:119;;;6348:79;;:::i;:::-;6310:119;6468:1;6493:52;6537:7;6528:6;6517:9;6513:22;6493:52;:::i;:::-;6483:62;;6439:116;6235:327;;;;:::o;6568:349::-;6637:6;6686:2;6674:9;6665:7;6661:23;6657:32;6654:119;;;6692:79;;:::i;:::-;6654:119;6812:1;6837:63;6892:7;6883:6;6872:9;6868:22;6837:63;:::i;:::-;6827:73;;6783:127;6568:349;;;;:::o;6923:509::-;6992:6;7041:2;7029:9;7020:7;7016:23;7012:32;7009:119;;;7047:79;;:::i;:::-;7009:119;7195:1;7184:9;7180:17;7167:31;7225:18;7217:6;7214:30;7211:117;;;7247:79;;:::i;:::-;7211:117;7352:63;7407:7;7398:6;7387:9;7383:22;7352:63;:::i;:::-;7342:73;;7138:287;6923:509;;;;:::o;7438:329::-;7497:6;7546:2;7534:9;7525:7;7521:23;7517:32;7514:119;;;7552:79;;:::i;:::-;7514:119;7672:1;7697:53;7742:7;7733:6;7722:9;7718:22;7697:53;:::i;:::-;7687:63;;7643:117;7438:329;;;;:::o;7773:907::-;7866:6;7874;7882;7890;7898;7947:3;7935:9;7926:7;7922:23;7918:33;7915:120;;;7954:79;;:::i;:::-;7915:120;8074:1;8099:53;8144:7;8135:6;8124:9;8120:22;8099:53;:::i;:::-;8089:63;;8045:117;8201:2;8227:53;8272:7;8263:6;8252:9;8248:22;8227:53;:::i;:::-;8217:63;;8172:118;8329:2;8355:51;8398:7;8389:6;8378:9;8374:22;8355:51;:::i;:::-;8345:61;;8300:116;8455:2;8481:53;8526:7;8517:6;8506:9;8502:22;8481:53;:::i;:::-;8471:63;;8426:118;8583:3;8610:53;8655:7;8646:6;8635:9;8631:22;8610:53;:::i;:::-;8600:63;;8554:119;7773:907;;;;;;;;:::o;8686:118::-;8773:24;8791:5;8773:24;:::i;:::-;8768:3;8761:37;8686:118;;:::o;8810:157::-;8915:45;8935:24;8953:5;8935:24;:::i;:::-;8915:45;:::i;:::-;8910:3;8903:58;8810:157;;:::o;8973:109::-;9054:21;9069:5;9054:21;:::i;:::-;9049:3;9042:34;8973:109;;:::o;9088:118::-;9175:24;9193:5;9175:24;:::i;:::-;9170:3;9163:37;9088:118;;:::o;9212:157::-;9317:45;9337:24;9355:5;9337:24;:::i;:::-;9317:45;:::i;:::-;9312:3;9305:58;9212:157;;:::o;9375:360::-;9461:3;9489:38;9521:5;9489:38;:::i;:::-;9543:70;9606:6;9601:3;9543:70;:::i;:::-;9536:77;;9622:52;9667:6;9662:3;9655:4;9648:5;9644:16;9622:52;:::i;:::-;9699:29;9721:6;9699:29;:::i;:::-;9694:3;9690:39;9683:46;;9465:270;9375:360;;;;:::o;9741:194::-;9858:70;9878:49;9921:5;9878:49;:::i;:::-;9858:70;:::i;:::-;9853:3;9846:83;9741:194;;:::o;9941:364::-;10029:3;10057:39;10090:5;10057:39;:::i;:::-;10112:71;10176:6;10171:3;10112:71;:::i;:::-;10105:78;;10192:52;10237:6;10232:3;10225:4;10218:5;10214:16;10192:52;:::i;:::-;10269:29;10291:6;10269:29;:::i;:::-;10264:3;10260:39;10253:46;;10033:272;9941:364;;;;:::o;10311:377::-;10417:3;10445:39;10478:5;10445:39;:::i;:::-;10500:89;10582:6;10577:3;10500:89;:::i;:::-;10493:96;;10598:52;10643:6;10638:3;10631:4;10624:5;10620:16;10598:52;:::i;:::-;10675:6;10670:3;10666:16;10659:23;;10421:267;10311:377;;;;:::o;10694:366::-;10836:3;10857:67;10921:2;10916:3;10857:67;:::i;:::-;10850:74;;10933:93;11022:3;10933:93;:::i;:::-;11051:2;11046:3;11042:12;11035:19;;10694:366;;;:::o;11066:::-;11208:3;11229:67;11293:2;11288:3;11229:67;:::i;:::-;11222:74;;11305:93;11394:3;11305:93;:::i;:::-;11423:2;11418:3;11414:12;11407:19;;11066:366;;;:::o;11438:::-;11580:3;11601:67;11665:2;11660:3;11601:67;:::i;:::-;11594:74;;11677:93;11766:3;11677:93;:::i;:::-;11795:2;11790:3;11786:12;11779:19;;11438:366;;;:::o;11810:402::-;11970:3;11991:85;12073:2;12068:3;11991:85;:::i;:::-;11984:92;;12085:93;12174:3;12085:93;:::i;:::-;12203:2;12198:3;12194:12;12187:19;;11810:402;;;:::o;12218:366::-;12360:3;12381:67;12445:2;12440:3;12381:67;:::i;:::-;12374:74;;12457:93;12546:3;12457:93;:::i;:::-;12575:2;12570:3;12566:12;12559:19;;12218:366;;;:::o;12590:::-;12732:3;12753:67;12817:2;12812:3;12753:67;:::i;:::-;12746:74;;12829:93;12918:3;12829:93;:::i;:::-;12947:2;12942:3;12938:12;12931:19;;12590:366;;;:::o;12962:::-;13104:3;13125:67;13189:2;13184:3;13125:67;:::i;:::-;13118:74;;13201:93;13290:3;13201:93;:::i;:::-;13319:2;13314:3;13310:12;13303:19;;12962:366;;;:::o;13334:::-;13476:3;13497:67;13561:2;13556:3;13497:67;:::i;:::-;13490:74;;13573:93;13662:3;13573:93;:::i;:::-;13691:2;13686:3;13682:12;13675:19;;13334:366;;;:::o;13706:::-;13848:3;13869:67;13933:2;13928:3;13869:67;:::i;:::-;13862:74;;13945:93;14034:3;13945:93;:::i;:::-;14063:2;14058:3;14054:12;14047:19;;13706:366;;;:::o;14078:::-;14220:3;14241:67;14305:2;14300:3;14241:67;:::i;:::-;14234:74;;14317:93;14406:3;14317:93;:::i;:::-;14435:2;14430:3;14426:12;14419:19;;14078:366;;;:::o;14450:::-;14592:3;14613:67;14677:2;14672:3;14613:67;:::i;:::-;14606:74;;14689:93;14778:3;14689:93;:::i;:::-;14807:2;14802:3;14798:12;14791:19;;14450:366;;;:::o;14822:::-;14964:3;14985:67;15049:2;15044:3;14985:67;:::i;:::-;14978:74;;15061:93;15150:3;15061:93;:::i;:::-;15179:2;15174:3;15170:12;15163:19;;14822:366;;;:::o;15194:::-;15336:3;15357:67;15421:2;15416:3;15357:67;:::i;:::-;15350:74;;15433:93;15522:3;15433:93;:::i;:::-;15551:2;15546:3;15542:12;15535:19;;15194:366;;;:::o;15566:::-;15708:3;15729:67;15793:2;15788:3;15729:67;:::i;:::-;15722:74;;15805:93;15894:3;15805:93;:::i;:::-;15923:2;15918:3;15914:12;15907:19;;15566:366;;;:::o;15938:118::-;16025:24;16043:5;16025:24;:::i;:::-;16020:3;16013:37;15938:118;;:::o;16062:157::-;16167:45;16187:24;16205:5;16187:24;:::i;:::-;16167:45;:::i;:::-;16162:3;16155:58;16062:157;;:::o;16225:112::-;16308:22;16324:5;16308:22;:::i;:::-;16303:3;16296:35;16225:112;;:::o;16343:703::-;16551:3;16566:87;16649:3;16640:6;16566:87;:::i;:::-;16678:2;16673:3;16669:12;16662:19;;16691:75;16762:3;16753:6;16691:75;:::i;:::-;16791:2;16786:3;16782:12;16775:19;;16804:75;16875:3;16866:6;16804:75;:::i;:::-;16904:2;16899:3;16895:12;16888:19;;16917:75;16988:3;16979:6;16917:75;:::i;:::-;17017:2;17012:3;17008:12;17001:19;;17037:3;17030:10;;16343:703;;;;;;;:::o;17052:435::-;17232:3;17254:95;17345:3;17336:6;17254:95;:::i;:::-;17247:102;;17366:95;17457:3;17448:6;17366:95;:::i;:::-;17359:102;;17478:3;17471:10;;17052:435;;;;;:::o;17493:522::-;17706:3;17728:148;17872:3;17728:148;:::i;:::-;17721:155;;17886:75;17957:3;17948:6;17886:75;:::i;:::-;17986:2;17981:3;17977:12;17970:19;;18006:3;17999:10;;17493:522;;;;:::o;18021:222::-;18114:4;18152:2;18141:9;18137:18;18129:26;;18165:71;18233:1;18222:9;18218:17;18209:6;18165:71;:::i;:::-;18021:222;;;;:::o;18249:640::-;18444:4;18482:3;18471:9;18467:19;18459:27;;18496:71;18564:1;18553:9;18549:17;18540:6;18496:71;:::i;:::-;18577:72;18645:2;18634:9;18630:18;18621:6;18577:72;:::i;:::-;18659;18727:2;18716:9;18712:18;18703:6;18659:72;:::i;:::-;18778:9;18772:4;18768:20;18763:2;18752:9;18748:18;18741:48;18806:76;18877:4;18868:6;18806:76;:::i;:::-;18798:84;;18249:640;;;;;;;:::o;18895:210::-;18982:4;19020:2;19009:9;19005:18;18997:26;;19033:65;19095:1;19084:9;19080:17;19071:6;19033:65;:::i;:::-;18895:210;;;;:::o;19111:545::-;19284:4;19322:3;19311:9;19307:19;19299:27;;19336:71;19404:1;19393:9;19389:17;19380:6;19336:71;:::i;:::-;19417:68;19481:2;19470:9;19466:18;19457:6;19417:68;:::i;:::-;19495:72;19563:2;19552:9;19548:18;19539:6;19495:72;:::i;:::-;19577;19645:2;19634:9;19630:18;19621:6;19577:72;:::i;:::-;19111:545;;;;;;;:::o;19662:313::-;19775:4;19813:2;19802:9;19798:18;19790:26;;19862:9;19856:4;19852:20;19848:1;19837:9;19833:17;19826:47;19890:78;19963:4;19954:6;19890:78;:::i;:::-;19882:86;;19662:313;;;;:::o;19981:419::-;20147:4;20185:2;20174:9;20170:18;20162:26;;20234:9;20228:4;20224:20;20220:1;20209:9;20205:17;20198:47;20262:131;20388:4;20262:131;:::i;:::-;20254:139;;19981:419;;;:::o;20406:::-;20572:4;20610:2;20599:9;20595:18;20587:26;;20659:9;20653:4;20649:20;20645:1;20634:9;20630:17;20623:47;20687:131;20813:4;20687:131;:::i;:::-;20679:139;;20406:419;;;:::o;20831:::-;20997:4;21035:2;21024:9;21020:18;21012:26;;21084:9;21078:4;21074:20;21070:1;21059:9;21055:17;21048:47;21112:131;21238:4;21112:131;:::i;:::-;21104:139;;20831:419;;;:::o;21256:::-;21422:4;21460:2;21449:9;21445:18;21437:26;;21509:9;21503:4;21499:20;21495:1;21484:9;21480:17;21473:47;21537:131;21663:4;21537:131;:::i;:::-;21529:139;;21256:419;;;:::o;21681:::-;21847:4;21885:2;21874:9;21870:18;21862:26;;21934:9;21928:4;21924:20;21920:1;21909:9;21905:17;21898:47;21962:131;22088:4;21962:131;:::i;:::-;21954:139;;21681:419;;;:::o;22106:::-;22272:4;22310:2;22299:9;22295:18;22287:26;;22359:9;22353:4;22349:20;22345:1;22334:9;22330:17;22323:47;22387:131;22513:4;22387:131;:::i;:::-;22379:139;;22106:419;;;:::o;22531:::-;22697:4;22735:2;22724:9;22720:18;22712:26;;22784:9;22778:4;22774:20;22770:1;22759:9;22755:17;22748:47;22812:131;22938:4;22812:131;:::i;:::-;22804:139;;22531:419;;;:::o;22956:::-;23122:4;23160:2;23149:9;23145:18;23137:26;;23209:9;23203:4;23199:20;23195:1;23184:9;23180:17;23173:47;23237:131;23363:4;23237:131;:::i;:::-;23229:139;;22956:419;;;:::o;23381:::-;23547:4;23585:2;23574:9;23570:18;23562:26;;23634:9;23628:4;23624:20;23620:1;23609:9;23605:17;23598:47;23662:131;23788:4;23662:131;:::i;:::-;23654:139;;23381:419;;;:::o;23806:::-;23972:4;24010:2;23999:9;23995:18;23987:26;;24059:9;24053:4;24049:20;24045:1;24034:9;24030:17;24023:47;24087:131;24213:4;24087:131;:::i;:::-;24079:139;;23806:419;;;:::o;24231:::-;24397:4;24435:2;24424:9;24420:18;24412:26;;24484:9;24478:4;24474:20;24470:1;24459:9;24455:17;24448:47;24512:131;24638:4;24512:131;:::i;:::-;24504:139;;24231:419;;;:::o;24656:::-;24822:4;24860:2;24849:9;24845:18;24837:26;;24909:9;24903:4;24899:20;24895:1;24884:9;24880:17;24873:47;24937:131;25063:4;24937:131;:::i;:::-;24929:139;;24656:419;;;:::o;25081:::-;25247:4;25285:2;25274:9;25270:18;25262:26;;25334:9;25328:4;25324:20;25320:1;25309:9;25305:17;25298:47;25362:131;25488:4;25362:131;:::i;:::-;25354:139;;25081:419;;;:::o;25506:222::-;25599:4;25637:2;25626:9;25622:18;25614:26;;25650:71;25718:1;25707:9;25703:17;25694:6;25650:71;:::i;:::-;25506:222;;;;:::o;25734:129::-;25768:6;25795:20;;:::i;:::-;25785:30;;25824:33;25852:4;25844:6;25824:33;:::i;:::-;25734:129;;;:::o;25869:75::-;25902:6;25935:2;25929:9;25919:19;;25869:75;:::o;25950:307::-;26011:4;26101:18;26093:6;26090:30;26087:56;;;26123:18;;:::i;:::-;26087:56;26161:29;26183:6;26161:29;:::i;:::-;26153:37;;26245:4;26239;26235:15;26227:23;;25950:307;;;:::o;26263:308::-;26325:4;26415:18;26407:6;26404:30;26401:56;;;26437:18;;:::i;:::-;26401:56;26475:29;26497:6;26475:29;:::i;:::-;26467:37;;26559:4;26553;26549:15;26541:23;;26263:308;;;:::o;26577:98::-;26628:6;26662:5;26656:12;26646:22;;26577:98;;;:::o;26681:99::-;26733:6;26767:5;26761:12;26751:22;;26681:99;;;:::o;26786:168::-;26869:11;26903:6;26898:3;26891:19;26943:4;26938:3;26934:14;26919:29;;26786:168;;;;:::o;26960:169::-;27044:11;27078:6;27073:3;27066:19;27118:4;27113:3;27109:14;27094:29;;26960:169;;;;:::o;27135:148::-;27237:11;27274:3;27259:18;;27135:148;;;;:::o;27289:305::-;27329:3;27348:20;27366:1;27348:20;:::i;:::-;27343:25;;27382:20;27400:1;27382:20;:::i;:::-;27377:25;;27536:1;27468:66;27464:74;27461:1;27458:81;27455:107;;;27542:18;;:::i;:::-;27455:107;27586:1;27583;27579:9;27572:16;;27289:305;;;;:::o;27600:185::-;27640:1;27657:20;27675:1;27657:20;:::i;:::-;27652:25;;27691:20;27709:1;27691:20;:::i;:::-;27686:25;;27730:1;27720:35;;27735:18;;:::i;:::-;27720:35;27777:1;27774;27770:9;27765:14;;27600:185;;;;:::o;27791:348::-;27831:7;27854:20;27872:1;27854:20;:::i;:::-;27849:25;;27888:20;27906:1;27888:20;:::i;:::-;27883:25;;28076:1;28008:66;28004:74;28001:1;27998:81;27993:1;27986:9;27979:17;27975:105;27972:131;;;28083:18;;:::i;:::-;27972:131;28131:1;28128;28124:9;28113:20;;27791:348;;;;:::o;28145:191::-;28185:4;28205:20;28223:1;28205:20;:::i;:::-;28200:25;;28239:20;28257:1;28239:20;:::i;:::-;28234:25;;28278:1;28275;28272:8;28269:34;;;28283:18;;:::i;:::-;28269:34;28328:1;28325;28321:9;28313:17;;28145:191;;;;:::o;28342:96::-;28379:7;28408:24;28426:5;28408:24;:::i;:::-;28397:35;;28342:96;;;:::o;28444:90::-;28478:7;28521:5;28514:13;28507:21;28496:32;;28444:90;;;:::o;28540:77::-;28577:7;28606:5;28595:16;;28540:77;;;:::o;28623:149::-;28659:7;28699:66;28692:5;28688:78;28677:89;;28623:149;;;:::o;28778:126::-;28815:7;28855:42;28848:5;28844:54;28833:65;;28778:126;;;:::o;28910:77::-;28947:7;28976:5;28965:16;;28910:77;;;:::o;28993:86::-;29028:7;29068:4;29061:5;29057:16;29046:27;;28993:86;;;:::o;29085:138::-;29147:9;29180:37;29211:5;29180:37;:::i;:::-;29167:50;;29085:138;;;:::o;29229:126::-;29279:9;29312:37;29343:5;29312:37;:::i;:::-;29299:50;;29229:126;;;:::o;29361:113::-;29411:9;29444:24;29462:5;29444:24;:::i;:::-;29431:37;;29361:113;;;:::o;29480:154::-;29564:6;29559:3;29554;29541:30;29626:1;29617:6;29612:3;29608:16;29601:27;29480:154;;;:::o;29640:307::-;29708:1;29718:113;29732:6;29729:1;29726:13;29718:113;;;29817:1;29812:3;29808:11;29802:18;29798:1;29793:3;29789:11;29782:39;29754:2;29751:1;29747:10;29742:15;;29718:113;;;29849:6;29846:1;29843:13;29840:101;;;29929:1;29920:6;29915:3;29911:16;29904:27;29840:101;29689:258;29640:307;;;:::o;29953:320::-;29997:6;30034:1;30028:4;30024:12;30014:22;;30081:1;30075:4;30071:12;30102:18;30092:81;;30158:4;30150:6;30146:17;30136:27;;30092:81;30220:2;30212:6;30209:14;30189:18;30186:38;30183:84;;;30239:18;;:::i;:::-;30183:84;30004:269;29953:320;;;:::o;30279:281::-;30362:27;30384:4;30362:27;:::i;:::-;30354:6;30350:40;30492:6;30480:10;30477:22;30456:18;30444:10;30441:34;30438:62;30435:88;;;30503:18;;:::i;:::-;30435:88;30543:10;30539:2;30532:22;30322:238;30279:281;;:::o;30566:233::-;30605:3;30628:24;30646:5;30628:24;:::i;:::-;30619:33;;30674:66;30667:5;30664:77;30661:103;;;30744:18;;:::i;:::-;30661:103;30791:1;30784:5;30780:13;30773:20;;30566:233;;;:::o;30805:100::-;30844:7;30873:26;30893:5;30873:26;:::i;:::-;30862:37;;30805:100;;;:::o;30911:79::-;30950:7;30979:5;30968:16;;30911:79;;;:::o;30996:94::-;31035:7;31064:20;31078:5;31064:20;:::i;:::-;31053:31;;30996:94;;;:::o;31096:79::-;31135:7;31164:5;31153:16;;31096:79;;;:::o;31181:176::-;31213:1;31230:20;31248:1;31230:20;:::i;:::-;31225:25;;31264:20;31282:1;31264:20;:::i;:::-;31259:25;;31303:1;31293:35;;31308:18;;:::i;:::-;31293:35;31349:1;31346;31342:9;31337:14;;31181:176;;;;:::o;31363:180::-;31411:77;31408:1;31401:88;31508:4;31505:1;31498:15;31532:4;31529:1;31522:15;31549:180;31597:77;31594:1;31587:88;31694:4;31691:1;31684:15;31718:4;31715:1;31708:15;31735:180;31783:77;31780:1;31773:88;31880:4;31877:1;31870:15;31904:4;31901:1;31894:15;31921:180;31969:77;31966:1;31959:88;32066:4;32063:1;32056:15;32090:4;32087:1;32080:15;32107:180;32155:77;32152:1;32145:88;32252:4;32249:1;32242:15;32276:4;32273:1;32266:15;32293:117;32402:1;32399;32392:12;32416:117;32525:1;32522;32515:12;32539:117;32648:1;32645;32638:12;32662:117;32771:1;32768;32761:12;32785:102;32826:6;32877:2;32873:7;32868:2;32861:5;32857:14;32853:28;32843:38;;32785:102;;;:::o;32893:94::-;32926:8;32974:5;32970:2;32966:14;32945:35;;32893:94;;;:::o;32993:243::-;33133:34;33129:1;33121:6;33117:14;33110:58;33202:26;33197:2;33189:6;33185:15;33178:51;32993:243;:::o;33242:180::-;33382:32;33378:1;33370:6;33366:14;33359:56;33242:180;:::o;33428:244::-;33568:34;33564:1;33556:6;33552:14;33545:58;33637:27;33632:2;33624:6;33620:15;33613:52;33428:244;:::o;33678:214::-;33818:66;33814:1;33806:6;33802:14;33795:90;33678:214;:::o;33898:225::-;34038:34;34034:1;34026:6;34022:14;34015:58;34107:8;34102:2;34094:6;34090:15;34083:33;33898:225;:::o;34129:177::-;34269:29;34265:1;34257:6;34253:14;34246:53;34129:177;:::o;34312:176::-;34452:28;34448:1;34440:6;34436:14;34429:52;34312:176;:::o;34494:227::-;34634:34;34630:1;34622:6;34618:14;34611:58;34703:10;34698:2;34690:6;34686:15;34679:35;34494:227;:::o;34727:220::-;34867:34;34863:1;34855:6;34851:14;34844:58;34936:3;34931:2;34923:6;34919:15;34912:28;34727:220;:::o;34953:182::-;35093:34;35089:1;35081:6;35077:14;35070:58;34953:182;:::o;35141:225::-;35281:34;35277:1;35269:6;35265:14;35258:58;35350:8;35345:2;35337:6;35333:15;35326:33;35141:225;:::o;35372:165::-;35512:17;35508:1;35500:6;35496:14;35489:41;35372:165;:::o;35543:181::-;35683:33;35679:1;35671:6;35667:14;35660:57;35543:181;:::o;35730:171::-;35870:23;35866:1;35858:6;35854:14;35847:47;35730:171;:::o;35907:122::-;35980:24;35998:5;35980:24;:::i;:::-;35973:5;35970:35;35960:63;;36019:1;36016;36009:12;35960:63;35907:122;:::o;36035:116::-;36105:21;36120:5;36105:21;:::i;:::-;36098:5;36095:32;36085:60;;36141:1;36138;36131:12;36085:60;36035:116;:::o;36157:122::-;36230:24;36248:5;36230:24;:::i;:::-;36223:5;36220:35;36210:63;;36269:1;36266;36259:12;36210:63;36157:122;:::o;36285:120::-;36357:23;36374:5;36357:23;:::i;:::-;36350:5;36347:34;36337:62;;36395:1;36392;36385:12;36337:62;36285:120;:::o;36411:122::-;36484:24;36502:5;36484:24;:::i;:::-;36477:5;36474:35;36464:63;;36523:1;36520;36513:12;36464:63;36411:122;:::o;36539:118::-;36610:22;36626:5;36610:22;:::i;:::-;36603:5;36600:33;36590:61;;36647:1;36644;36637:12;36590:61;36539:118;:::o

Swarm Source

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