ETH Price: $3,143.44 (-4.70%)
Gas: 3 Gwei

Token

Furried (FURIED)
 

Overview

Max Total Supply

1,999 FURIED

Holders

608

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ildusgiliazev.eth
Balance
4 FURIED
0x0f7ed9d175c740675f5d3811933a9fbabdcfeecb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Furried

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-13
*/

// SPDX-License-Identifier: MIT
//     ___                                  _ 
//   /'___)                   _            ( )
//  | (__  _   _  _ __  _ __ (_)   __     _| |
//  | ,__)( ) ( )( '__)( '__)| | /'__`\ /'_` |
//  | |   | (_) || |   | |   | |(  ___/( (_| |
//  (_)   `\___/'(_)   (_)   (_)`\____)`\__,_)
//  ...... BEARS STAY HERE V2..... NOV 2022...

//  Opensea introduced new royalty policies so new contract was needed.

/**
 * @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.
 */




// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: contracts/Furried.sol

/**
 *Submitted for verification at Etherscan.io on 2022-11-12
*/

pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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


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


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

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

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

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

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

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

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

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

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

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

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

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


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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
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);
}
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 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 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 = 1;

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

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

    /**
     * @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 (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 override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 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;

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

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

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

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

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

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

library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n � 2 + 1, and for v in (302): v ? {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

contract Furried is Ownable, DefaultOperatorFilterer, ERC721A {

    uint256 public walletMax = 2;
    using Strings for uint256;

    mapping(uint256 => string) private _tokenURIs;
    bool public publicSaleOpen = false;
    string public baseURI = "ipfs://willbeupdated/";
    string public _extension = ".json";
    uint256 public price = 0 ether;
    uint256 public maxSupply = 1533;

    constructor() ERC721A("Furried", "FURIED"){}
    
    function mintNFT(uint256 _quantity) public payable {
        require(_quantity > 0 && _quantity <= walletMax, "Wallet full, check max per wallet!");
        require(totalSupply() + _quantity <= maxSupply, "Reached max supply!");
        require(msg.value == price * _quantity, "Needs to send more ETH!");
        require(getMintedCount(msg.sender) + _quantity <= walletMax, "Exceeded max minting amount!");
        require(publicSaleOpen, "Public sale not yet started!");

        _safeMint(msg.sender, _quantity);

    }


    function sendGifts(address[] memory _wallets) external onlyOwner{
        require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached.");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);

    }
   function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{
               require(totalSupply() + _num <= maxSupply, "Max Supply Reached.");
            _safeMint(_wallet, _num);
    }


    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );

        return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension));
    }

    function updateBaseURI(string memory _newBaseURI) onlyOwner public {
        baseURI = _newBaseURI;
    }
    function updateExtension(string memory _temp) onlyOwner public {
        _extension = _temp;
    }

    function getBaseURI() external view returns(string memory) {
        return baseURI;
    }

    function setPrice(uint256 _price) public onlyOwner() {
        price = _price;
    }
    function setWalletMaxs(uint256 _walletMax) public onlyOwner() {
        walletMax = _walletMax;
    }

    function setmaxSupply(uint256 _supply) public onlyOwner() {
        require(_supply <= 5858, "Error: New max supply cant be higher than original max.");
        maxSupply = _supply;
    }

    function toggleSale() public onlyOwner() {
        publicSaleOpen = !publicSaleOpen;
    }


    function getBalance() public view returns(uint) {
        return address(this).balance;
    }

    function getMintedCount(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    function withdraw() external onlyOwner {
        uint _balance = address(this).balance;
        payable(owner()).transfer(_balance); //Owner
    }

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }
    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }


    receive() external payable {}




}

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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","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":"publicSaleOpen","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":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_walletMax","type":"uint256"}],"name":"setWalletMaxs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001805560026009556000600b60006101000a81548160ff0219169083151502179055506040518060400160405280601581526020017f697066733a2f2f77696c6c6265757064617465642f0000000000000000000000815250600c9080519060200190620000759291906200047d565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000c39291906200047d565b506000600e556105fd600f55348015620000dc57600080fd5b506040518060400160405280600781526020017f46757272696564000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4655524945440000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb660016200018062000174620003b160201b60201c565b620003b960201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003755780156200023b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200020192919062000572565b600060405180830381600087803b1580156200021c57600080fd5b505af115801562000231573d6000803e3d6000fd5b5050505062000374565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002f5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002bb92919062000572565b600060405180830381600087803b158015620002d657600080fd5b505af1158015620002eb573d6000803e3d6000fd5b5050505062000373565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200033e91906200059f565b600060405180830381600087803b1580156200035957600080fd5b505af11580156200036e573d6000803e3d6000fd5b505050505b5b5b505081600390805190602001906200038f9291906200047d565b508060049080519060200190620003a89291906200047d565b50505062000620565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200048b90620005eb565b90600052602060002090601f016020900481019282620004af5760008555620004fb565b82601f10620004ca57805160ff1916838001178555620004fb565b82800160010185558215620004fb579182015b82811115620004fa578251825591602001919060010190620004dd565b5b5090506200050a91906200050e565b5090565b5b80821115620005295760008160009055506001016200050f565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200055a826200052d565b9050919050565b6200056c816200054d565b82525050565b600060408201905062000589600083018562000561565b62000598602083018462000561565b9392505050565b6000602082019050620005b6600083018462000561565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200060457607f821691505b6020821081036200061a5762000619620005bc565b5b50919050565b61456880620006306000396000f3fe60806040526004361061021e5760003560e01c80637d8966e411610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e985e9c5146107d0578063f2fde38b1461080d578063f9e2379914610836578063fe3145241461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637d8966e4146105445780637e6182d91461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a65780636c0360eb116101755780636c0360eb1461047157806370a082311461049c578063714c5398146104d9578063715018a6146105045780637c8255db1461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780635c0017c21461040b5780636352211e1461043457610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906133a8565b61088c565b60405161025e91906133f0565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b60405161028991906134a4565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906134fc565b610a00565b6040516102c6919061356a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906135b1565b610a7c565b005b34801561030457600080fd5b5061030d610b86565b60405161031a9190613600565b60405180910390f35b34801561032f57600080fd5b50610338610b8e565b6040516103459190613600565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906134fc565b610b9f565b005b34801561038357600080fd5b5061039e6004803603810190610399919061361b565b610c6a565b005b3480156103ac57600080fd5b506103b5610e4c565b6040516103c291906134a4565b60405180910390f35b3480156103d757600080fd5b506103e0610eda565b005b3480156103ee57600080fd5b506104096004803603810190610404919061361b565b610fac565b005b34801561041757600080fd5b50610432600480360381019061042d91906134fc565b61118e565b005b34801561044057600080fd5b5061045b600480360381019061045691906134fc565b611214565b604051610468919061356a565b60405180910390f35b34801561047d57600080fd5b5061048661122a565b60405161049391906134a4565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be919061366e565b6112b8565b6040516104d09190613600565b60405180910390f35b3480156104e557600080fd5b506104ee611387565b6040516104fb91906134a4565b60405180910390f35b34801561051057600080fd5b50610519611419565b005b34801561052757600080fd5b50610542600480360381019061053d91906137e3565b6114a1565b005b34801561055057600080fd5b506105596115bd565b005b34801561056757600080fd5b50610582600480360381019061057d91906138e1565b611665565b005b34801561059057600080fd5b506105996116fb565b6040516105a6919061356a565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906134fc565b611724565b005b3480156105e457600080fd5b506105ff60048036038101906105fa91906134fc565b6117aa565b60405161060c91906139ad565b60405180910390f35b61062f600480360381019061062a91906134fc565b6117c2565b005b34801561063d57600080fd5b50610658600480360381019061065391906138e1565b61196d565b005b34801561066657600080fd5b5061066f611a03565b60405161067c91906134a4565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a7919061366e565b611a95565b6040516106b99190613600565b60405180910390f35b3480156106ce57600080fd5b506106d7611aa7565b6040516106e49190613600565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906139f4565b611aad565b005b34801561072257600080fd5b5061073d60048036038101906107389190613ad5565b611c24565b005b34801561074b57600080fd5b50610766600480360381019061076191906134fc565b611e09565b60405161077391906134a4565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e91906135b1565b611e88565b005b3480156107b157600080fd5b506107ba611f69565b6040516107c79190613600565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613b58565b611f6f565b60405161080491906133f0565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f919061366e565b612003565b005b34801561084257600080fd5b5061084b6120fa565b60405161085891906133f0565b60405180910390f35b34801561086d57600080fd5b5061087661210d565b6040516108839190613600565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682612113565b5b9050919050565b60606003805461097d90613bc7565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990613bc7565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b8261217d565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782611214565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0d6121b8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b3f5750610b3d81610b386121b8565b611f6f565b155b15610b76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b818383836121c0565b505050565b600047905090565b600060016002546001540303905090565b610ba76121b8565b73ffffffffffffffffffffffffffffffffffffffff16610bc56116fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290613c44565b60405180910390fd5b6116e2811115610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790613cd6565b60405180910390fd5b80600f8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e3a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cdc57610cd7848484612272565b610e46565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d25929190613cf6565b602060405180830381865afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d669190613d34565b8015610df857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610db6929190613cf6565b602060405180830381865afa158015610dd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df79190613d34565b5b610e3957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e30919061356a565b60405180910390fd5b5b610e45848484612272565b5b50505050565b600d8054610e5990613bc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8590613bc7565b8015610ed25780601f10610ea757610100808354040283529160200191610ed2565b820191906000526020600020905b815481529060010190602001808311610eb557829003601f168201915b505050505081565b610ee26121b8565b73ffffffffffffffffffffffffffffffffffffffff16610f006116fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90613c44565b60405180910390fd5b6000479050610f636116fb565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fa8573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561117c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101e57611019848484612282565b611188565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611067929190613cf6565b602060405180830381865afa158015611084573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a89190613d34565b801561113a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110f8929190613cf6565b602060405180830381865afa158015611115573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111399190613d34565b5b61117b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611172919061356a565b60405180910390fd5b5b611187848484612282565b5b50505050565b6111966121b8565b73ffffffffffffffffffffffffffffffffffffffff166111b46116fb565b73ffffffffffffffffffffffffffffffffffffffff161461120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613c44565b60405180910390fd5b8060098190555050565b600061121f826122a2565b600001519050919050565b600c805461123790613bc7565b80601f016020809104026020016040519081016040528092919081815260200182805461126390613bc7565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361131f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c805461139690613bc7565b80601f01602080910402602001604051908101604052809291908181526020018280546113c290613bc7565b801561140f5780601f106113e45761010080835404028352916020019161140f565b820191906000526020600020905b8154815290600101906020018083116113f257829003601f168201915b5050505050905090565b6114216121b8565b73ffffffffffffffffffffffffffffffffffffffff1661143f6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90613c44565b60405180910390fd5b61149f600061251e565b565b6114a96121b8565b73ffffffffffffffffffffffffffffffffffffffff166114c76116fb565b73ffffffffffffffffffffffffffffffffffffffff161461151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490613c44565b60405180910390fd5b600f54815161152a610b8e565b6115349190613d90565b1115611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613e32565b60405180910390fd5b60005b81518110156115b9576115a682828151811061159757611596613e52565b5b602002602001015160016125e2565b80806115b190613e81565b915050611578565b5050565b6115c56121b8565b73ffffffffffffffffffffffffffffffffffffffff166115e36116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613c44565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61166d6121b8565b73ffffffffffffffffffffffffffffffffffffffff1661168b6116fb565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890613c44565b60405180910390fd5b80600d90805190602001906116f7929190613256565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61172c6121b8565b73ffffffffffffffffffffffffffffffffffffffff1661174a6116fb565b73ffffffffffffffffffffffffffffffffffffffff16146117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790613c44565b60405180910390fd5b80600e8190555050565b6117b26132dc565b6117bb826122a2565b9050919050565b6000811180156117d457506009548111155b611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613f3b565b60405180910390fd5b600f548161181f610b8e565b6118299190613d90565b111561186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190613fa7565b60405180910390fd5b80600e546118789190613fc7565b34146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b09061406d565b60405180910390fd5b600954816118c633611a95565b6118d09190613d90565b1115611911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611908906140d9565b60405180910390fd5b600b60009054906101000a900460ff16611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790614145565b60405180910390fd5b61196a33826125e2565b50565b6119756121b8565b73ffffffffffffffffffffffffffffffffffffffff166119936116fb565b73ffffffffffffffffffffffffffffffffffffffff16146119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613c44565b60405180910390fd5b80600c90805190602001906119ff929190613256565b5050565b606060048054611a1290613bc7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e90613bc7565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b5050505050905090565b6000611aa082612600565b9050919050565b600e5481565b611ab56121b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b19576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611b266121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bd36121b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c1891906133f0565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611df5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c9757611c92858585856126cf565b611e02565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611ce0929190613cf6565b602060405180830381865afa158015611cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d219190613d34565b8015611db357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d71929190613cf6565b602060405180830381865afa158015611d8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db29190613d34565b5b611df457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611deb919061356a565b60405180910390fd5b5b611e01858585856126cf565b5b5050505050565b6060611e148261217d565b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a906141d7565b60405180910390fd5b600c611e5e83612722565b600d604051602001611e72939291906142c7565b6040516020818303038152906040529050919050565b611e906121b8565b73ffffffffffffffffffffffffffffffffffffffff16611eae6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90613c44565b60405180910390fd5b600f5481611f10610b8e565b611f1a9190613d90565b1115611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290613e32565b60405180910390fd5b611f6582826125e2565b5050565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61200b6121b8565b73ffffffffffffffffffffffffffffffffffffffff166120296116fb565b73ffffffffffffffffffffffffffffffffffffffff161461207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690613c44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e59061436a565b60405180910390fd5b6120f78161251e565b50565b600b60009054906101000a900460ff1681565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600154821080156121b1575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61227d838383612882565b505050565b61229d83838360405180602001604052806000815250611c24565b505050565b6122aa6132dc565b60008290506001548110156124e7576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124e557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c9578092505050612519565b5b6001156124e457818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124df578092505050612519565b6123ca565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125fc828260405180602001604052806000815250612d71565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612667576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6126da848484612882565b6126e684848484612d83565b61271c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606060008203612769576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061287d565b600082905060005b6000821461279b57808061278490613e81565b915050600a8261279491906143b9565b9150612771565b60008167ffffffffffffffff8111156127b7576127b66136a0565b5b6040519080825280601f01601f1916602001820160405280156127e95781602001600182028036833780820191505090505b5090505b600085146128765760018261280291906143ea565b9150600a85612811919061441e565b603061281d9190613d90565b60f81b81838151811061283357612832613e52565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561286f91906143b9565b94506127ed565b8093505050505b919050565b600061288d826122a2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128b46121b8565b73ffffffffffffffffffffffffffffffffffffffff1614806128e757506128e682600001516128e16121b8565b611f6f565b5b8061292c57506128f56121b8565b73ffffffffffffffffffffffffffffffffffffffff1661291484610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612965576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129ce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a34576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a418585856001612f01565b612a5160008484600001516121c0565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d0157600154811015612d005782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d6a8585856001612f07565b5050505050565b612d7e8383836001612f0d565b505050565b6000612da48473ffffffffffffffffffffffffffffffffffffffff16613243565b15612ef4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dcd6121b8565b8786866040518563ffffffff1660e01b8152600401612def94939291906144a4565b6020604051808303816000875af1925050508015612e2b57506040513d601f19601f82011682018060405250810190612e289190614505565b60015b612ea4573d8060008114612e5b576040519150601f19603f3d011682016040523d82523d6000602084013e612e60565b606091505b506000815103612e9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ef9565b600190505b949350505050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612f7a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612fb4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fc16000868387612f01565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561322657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156131da57506131d86000888488612d83565b155b15613211576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061315f565b50806001819055505061323c6000868387612f07565b5050505050565b600080823b905060008111915050919050565b82805461326290613bc7565b90600052602060002090601f01602090048101928261328457600085556132cb565b82601f1061329d57805160ff19168380011785556132cb565b828001600101855582156132cb579182015b828111156132ca5782518255916020019190600101906132af565b5b5090506132d8919061331f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613338576000816000905550600101613320565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61338581613350565b811461339057600080fd5b50565b6000813590506133a28161337c565b92915050565b6000602082840312156133be576133bd613346565b5b60006133cc84828501613393565b91505092915050565b60008115159050919050565b6133ea816133d5565b82525050565b600060208201905061340560008301846133e1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561344557808201518184015260208101905061342a565b83811115613454576000848401525b50505050565b6000601f19601f8301169050919050565b60006134768261340b565b6134808185613416565b9350613490818560208601613427565b6134998161345a565b840191505092915050565b600060208201905081810360008301526134be818461346b565b905092915050565b6000819050919050565b6134d9816134c6565b81146134e457600080fd5b50565b6000813590506134f6816134d0565b92915050565b60006020828403121561351257613511613346565b5b6000613520848285016134e7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061355482613529565b9050919050565b61356481613549565b82525050565b600060208201905061357f600083018461355b565b92915050565b61358e81613549565b811461359957600080fd5b50565b6000813590506135ab81613585565b92915050565b600080604083850312156135c8576135c7613346565b5b60006135d68582860161359c565b92505060206135e7858286016134e7565b9150509250929050565b6135fa816134c6565b82525050565b600060208201905061361560008301846135f1565b92915050565b60008060006060848603121561363457613633613346565b5b60006136428682870161359c565b93505060206136538682870161359c565b9250506040613664868287016134e7565b9150509250925092565b60006020828403121561368457613683613346565b5b60006136928482850161359c565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136d88261345a565b810181811067ffffffffffffffff821117156136f7576136f66136a0565b5b80604052505050565b600061370a61333c565b905061371682826136cf565b919050565b600067ffffffffffffffff821115613736576137356136a0565b5b602082029050602081019050919050565b600080fd5b600061375f61375a8461371b565b613700565b9050808382526020820190506020840283018581111561378257613781613747565b5b835b818110156137ab5780613797888261359c565b845260208401935050602081019050613784565b5050509392505050565b600082601f8301126137ca576137c961369b565b5b81356137da84826020860161374c565b91505092915050565b6000602082840312156137f9576137f8613346565b5b600082013567ffffffffffffffff8111156138175761381661334b565b5b613823848285016137b5565b91505092915050565b600080fd5b600067ffffffffffffffff82111561384c5761384b6136a0565b5b6138558261345a565b9050602081019050919050565b82818337600083830152505050565b600061388461387f84613831565b613700565b9050828152602081018484840111156138a05761389f61382c565b5b6138ab848285613862565b509392505050565b600082601f8301126138c8576138c761369b565b5b81356138d8848260208601613871565b91505092915050565b6000602082840312156138f7576138f6613346565b5b600082013567ffffffffffffffff8111156139155761391461334b565b5b613921848285016138b3565b91505092915050565b61393381613549565b82525050565b600067ffffffffffffffff82169050919050565b61395681613939565b82525050565b613965816133d5565b82525050565b606082016000820151613981600085018261392a565b506020820151613994602085018261394d565b5060408201516139a7604085018261395c565b50505050565b60006060820190506139c2600083018461396b565b92915050565b6139d1816133d5565b81146139dc57600080fd5b50565b6000813590506139ee816139c8565b92915050565b60008060408385031215613a0b57613a0a613346565b5b6000613a198582860161359c565b9250506020613a2a858286016139df565b9150509250929050565b600067ffffffffffffffff821115613a4f57613a4e6136a0565b5b613a588261345a565b9050602081019050919050565b6000613a78613a7384613a34565b613700565b905082815260208101848484011115613a9457613a9361382c565b5b613a9f848285613862565b509392505050565b600082601f830112613abc57613abb61369b565b5b8135613acc848260208601613a65565b91505092915050565b60008060008060808587031215613aef57613aee613346565b5b6000613afd8782880161359c565b9450506020613b0e8782880161359c565b9350506040613b1f878288016134e7565b925050606085013567ffffffffffffffff811115613b4057613b3f61334b565b5b613b4c87828801613aa7565b91505092959194509250565b60008060408385031215613b6f57613b6e613346565b5b6000613b7d8582860161359c565b9250506020613b8e8582860161359c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bdf57607f821691505b602082108103613bf257613bf1613b98565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c2e602083613416565b9150613c3982613bf8565b602082019050919050565b60006020820190508181036000830152613c5d81613c21565b9050919050565b7f4572726f723a204e6577206d617820737570706c792063616e7420626520686960008201527f67686572207468616e206f726967696e616c206d61782e000000000000000000602082015250565b6000613cc0603783613416565b9150613ccb82613c64565b604082019050919050565b60006020820190508181036000830152613cef81613cb3565b9050919050565b6000604082019050613d0b600083018561355b565b613d18602083018461355b565b9392505050565b600081519050613d2e816139c8565b92915050565b600060208284031215613d4a57613d49613346565b5b6000613d5884828501613d1f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d9b826134c6565b9150613da6836134c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddb57613dda613d61565b5b828201905092915050565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b6000613e1c601383613416565b9150613e2782613de6565b602082019050919050565b60006020820190508181036000830152613e4b81613e0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613e8c826134c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ebe57613ebd613d61565b5b600182019050919050565b7f57616c6c65742066756c6c2c20636865636b206d6178207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f25602283613416565b9150613f3082613ec9565b604082019050919050565b60006020820190508181036000830152613f5481613f18565b9050919050565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b6000613f91601383613416565b9150613f9c82613f5b565b602082019050919050565b60006020820190508181036000830152613fc081613f84565b9050919050565b6000613fd2826134c6565b9150613fdd836134c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561401657614015613d61565b5b828202905092915050565b7f4e6565647320746f2073656e64206d6f72652045544821000000000000000000600082015250565b6000614057601783613416565b915061406282614021565b602082019050919050565b600060208201905081810360008301526140868161404a565b9050919050565b7f4578636565646564206d6178206d696e74696e6720616d6f756e742100000000600082015250565b60006140c3601c83613416565b91506140ce8261408d565b602082019050919050565b600060208201905081810360008301526140f2816140b6565b9050919050565b7f5075626c69632073616c65206e6f742079657420737461727465642100000000600082015250565b600061412f601c83613416565b915061413a826140f9565b602082019050919050565b6000602082019050818103600083015261415e81614122565b9050919050565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141c1602c83613416565b91506141cc82614165565b604082019050919050565b600060208201905081810360008301526141f0816141b4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461422481613bc7565b61422e81866141f7565b94506001821660008114614249576001811461425a5761428d565b60ff1983168652818601935061428d565b61426385614202565b60005b8381101561428557815481890152600182019150602081019050614266565b838801955050505b50505092915050565b60006142a18261340b565b6142ab81856141f7565b93506142bb818560208601613427565b80840191505092915050565b60006142d38286614217565b91506142df8285614296565b91506142eb8284614217565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614354602683613416565b915061435f826142f8565b604082019050919050565b6000602082019050818103600083015261438381614347565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143c4826134c6565b91506143cf836134c6565b9250826143df576143de61438a565b5b828204905092915050565b60006143f5826134c6565b9150614400836134c6565b92508282101561441357614412613d61565b5b828203905092915050565b6000614429826134c6565b9150614434836134c6565b9250826144445761444361438a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006144768261444f565b614480818561445a565b9350614490818560208601613427565b6144998161345a565b840191505092915050565b60006080820190506144b9600083018761355b565b6144c6602083018661355b565b6144d360408301856135f1565b81810360608301526144e5818461446b565b905095945050505050565b6000815190506144ff8161337c565b92915050565b60006020828403121561451b5761451a613346565b5b6000614529848285016144f0565b9150509291505056fea2646970667358221220d4336e19dd60e7fb8863e6bfdaea72e33e720f9335a577817e0b7ba9df8cb24a64736f6c634300080d0033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80637d8966e411610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e985e9c5146107d0578063f2fde38b1461080d578063f9e2379914610836578063fe3145241461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637d8966e4146105445780637e6182d91461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a65780636c0360eb116101755780636c0360eb1461047157806370a082311461049c578063714c5398146104d9578063715018a6146105045780637c8255db1461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780635c0017c21461040b5780636352211e1461043457610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906133a8565b61088c565b60405161025e91906133f0565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b60405161028991906134a4565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906134fc565b610a00565b6040516102c6919061356a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906135b1565b610a7c565b005b34801561030457600080fd5b5061030d610b86565b60405161031a9190613600565b60405180910390f35b34801561032f57600080fd5b50610338610b8e565b6040516103459190613600565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906134fc565b610b9f565b005b34801561038357600080fd5b5061039e6004803603810190610399919061361b565b610c6a565b005b3480156103ac57600080fd5b506103b5610e4c565b6040516103c291906134a4565b60405180910390f35b3480156103d757600080fd5b506103e0610eda565b005b3480156103ee57600080fd5b506104096004803603810190610404919061361b565b610fac565b005b34801561041757600080fd5b50610432600480360381019061042d91906134fc565b61118e565b005b34801561044057600080fd5b5061045b600480360381019061045691906134fc565b611214565b604051610468919061356a565b60405180910390f35b34801561047d57600080fd5b5061048661122a565b60405161049391906134a4565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be919061366e565b6112b8565b6040516104d09190613600565b60405180910390f35b3480156104e557600080fd5b506104ee611387565b6040516104fb91906134a4565b60405180910390f35b34801561051057600080fd5b50610519611419565b005b34801561052757600080fd5b50610542600480360381019061053d91906137e3565b6114a1565b005b34801561055057600080fd5b506105596115bd565b005b34801561056757600080fd5b50610582600480360381019061057d91906138e1565b611665565b005b34801561059057600080fd5b506105996116fb565b6040516105a6919061356a565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906134fc565b611724565b005b3480156105e457600080fd5b506105ff60048036038101906105fa91906134fc565b6117aa565b60405161060c91906139ad565b60405180910390f35b61062f600480360381019061062a91906134fc565b6117c2565b005b34801561063d57600080fd5b50610658600480360381019061065391906138e1565b61196d565b005b34801561066657600080fd5b5061066f611a03565b60405161067c91906134a4565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a7919061366e565b611a95565b6040516106b99190613600565b60405180910390f35b3480156106ce57600080fd5b506106d7611aa7565b6040516106e49190613600565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906139f4565b611aad565b005b34801561072257600080fd5b5061073d60048036038101906107389190613ad5565b611c24565b005b34801561074b57600080fd5b50610766600480360381019061076191906134fc565b611e09565b60405161077391906134a4565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e91906135b1565b611e88565b005b3480156107b157600080fd5b506107ba611f69565b6040516107c79190613600565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613b58565b611f6f565b60405161080491906133f0565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f919061366e565b612003565b005b34801561084257600080fd5b5061084b6120fa565b60405161085891906133f0565b60405180910390f35b34801561086d57600080fd5b5061087661210d565b6040516108839190613600565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682612113565b5b9050919050565b60606003805461097d90613bc7565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990613bc7565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b8261217d565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782611214565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0d6121b8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b3f5750610b3d81610b386121b8565b611f6f565b155b15610b76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b818383836121c0565b505050565b600047905090565b600060016002546001540303905090565b610ba76121b8565b73ffffffffffffffffffffffffffffffffffffffff16610bc56116fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290613c44565b60405180910390fd5b6116e2811115610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790613cd6565b60405180910390fd5b80600f8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e3a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cdc57610cd7848484612272565b610e46565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d25929190613cf6565b602060405180830381865afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d669190613d34565b8015610df857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610db6929190613cf6565b602060405180830381865afa158015610dd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df79190613d34565b5b610e3957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e30919061356a565b60405180910390fd5b5b610e45848484612272565b5b50505050565b600d8054610e5990613bc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8590613bc7565b8015610ed25780601f10610ea757610100808354040283529160200191610ed2565b820191906000526020600020905b815481529060010190602001808311610eb557829003601f168201915b505050505081565b610ee26121b8565b73ffffffffffffffffffffffffffffffffffffffff16610f006116fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90613c44565b60405180910390fd5b6000479050610f636116fb565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fa8573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561117c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101e57611019848484612282565b611188565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611067929190613cf6565b602060405180830381865afa158015611084573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a89190613d34565b801561113a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110f8929190613cf6565b602060405180830381865afa158015611115573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111399190613d34565b5b61117b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611172919061356a565b60405180910390fd5b5b611187848484612282565b5b50505050565b6111966121b8565b73ffffffffffffffffffffffffffffffffffffffff166111b46116fb565b73ffffffffffffffffffffffffffffffffffffffff161461120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613c44565b60405180910390fd5b8060098190555050565b600061121f826122a2565b600001519050919050565b600c805461123790613bc7565b80601f016020809104026020016040519081016040528092919081815260200182805461126390613bc7565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361131f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c805461139690613bc7565b80601f01602080910402602001604051908101604052809291908181526020018280546113c290613bc7565b801561140f5780601f106113e45761010080835404028352916020019161140f565b820191906000526020600020905b8154815290600101906020018083116113f257829003601f168201915b5050505050905090565b6114216121b8565b73ffffffffffffffffffffffffffffffffffffffff1661143f6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90613c44565b60405180910390fd5b61149f600061251e565b565b6114a96121b8565b73ffffffffffffffffffffffffffffffffffffffff166114c76116fb565b73ffffffffffffffffffffffffffffffffffffffff161461151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490613c44565b60405180910390fd5b600f54815161152a610b8e565b6115349190613d90565b1115611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613e32565b60405180910390fd5b60005b81518110156115b9576115a682828151811061159757611596613e52565b5b602002602001015160016125e2565b80806115b190613e81565b915050611578565b5050565b6115c56121b8565b73ffffffffffffffffffffffffffffffffffffffff166115e36116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613c44565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61166d6121b8565b73ffffffffffffffffffffffffffffffffffffffff1661168b6116fb565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890613c44565b60405180910390fd5b80600d90805190602001906116f7929190613256565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61172c6121b8565b73ffffffffffffffffffffffffffffffffffffffff1661174a6116fb565b73ffffffffffffffffffffffffffffffffffffffff16146117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790613c44565b60405180910390fd5b80600e8190555050565b6117b26132dc565b6117bb826122a2565b9050919050565b6000811180156117d457506009548111155b611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613f3b565b60405180910390fd5b600f548161181f610b8e565b6118299190613d90565b111561186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190613fa7565b60405180910390fd5b80600e546118789190613fc7565b34146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b09061406d565b60405180910390fd5b600954816118c633611a95565b6118d09190613d90565b1115611911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611908906140d9565b60405180910390fd5b600b60009054906101000a900460ff16611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790614145565b60405180910390fd5b61196a33826125e2565b50565b6119756121b8565b73ffffffffffffffffffffffffffffffffffffffff166119936116fb565b73ffffffffffffffffffffffffffffffffffffffff16146119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613c44565b60405180910390fd5b80600c90805190602001906119ff929190613256565b5050565b606060048054611a1290613bc7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e90613bc7565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b5050505050905090565b6000611aa082612600565b9050919050565b600e5481565b611ab56121b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b19576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611b266121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bd36121b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c1891906133f0565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611df5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c9757611c92858585856126cf565b611e02565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611ce0929190613cf6565b602060405180830381865afa158015611cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d219190613d34565b8015611db357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d71929190613cf6565b602060405180830381865afa158015611d8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db29190613d34565b5b611df457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611deb919061356a565b60405180910390fd5b5b611e01858585856126cf565b5b5050505050565b6060611e148261217d565b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a906141d7565b60405180910390fd5b600c611e5e83612722565b600d604051602001611e72939291906142c7565b6040516020818303038152906040529050919050565b611e906121b8565b73ffffffffffffffffffffffffffffffffffffffff16611eae6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90613c44565b60405180910390fd5b600f5481611f10610b8e565b611f1a9190613d90565b1115611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290613e32565b60405180910390fd5b611f6582826125e2565b5050565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61200b6121b8565b73ffffffffffffffffffffffffffffffffffffffff166120296116fb565b73ffffffffffffffffffffffffffffffffffffffff161461207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690613c44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e59061436a565b60405180910390fd5b6120f78161251e565b50565b600b60009054906101000a900460ff1681565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600154821080156121b1575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61227d838383612882565b505050565b61229d83838360405180602001604052806000815250611c24565b505050565b6122aa6132dc565b60008290506001548110156124e7576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124e557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c9578092505050612519565b5b6001156124e457818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124df578092505050612519565b6123ca565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125fc828260405180602001604052806000815250612d71565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612667576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6126da848484612882565b6126e684848484612d83565b61271c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606060008203612769576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061287d565b600082905060005b6000821461279b57808061278490613e81565b915050600a8261279491906143b9565b9150612771565b60008167ffffffffffffffff8111156127b7576127b66136a0565b5b6040519080825280601f01601f1916602001820160405280156127e95781602001600182028036833780820191505090505b5090505b600085146128765760018261280291906143ea565b9150600a85612811919061441e565b603061281d9190613d90565b60f81b81838151811061283357612832613e52565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561286f91906143b9565b94506127ed565b8093505050505b919050565b600061288d826122a2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128b46121b8565b73ffffffffffffffffffffffffffffffffffffffff1614806128e757506128e682600001516128e16121b8565b611f6f565b5b8061292c57506128f56121b8565b73ffffffffffffffffffffffffffffffffffffffff1661291484610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612965576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129ce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a34576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a418585856001612f01565b612a5160008484600001516121c0565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d0157600154811015612d005782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d6a8585856001612f07565b5050505050565b612d7e8383836001612f0d565b505050565b6000612da48473ffffffffffffffffffffffffffffffffffffffff16613243565b15612ef4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dcd6121b8565b8786866040518563ffffffff1660e01b8152600401612def94939291906144a4565b6020604051808303816000875af1925050508015612e2b57506040513d601f19601f82011682018060405250810190612e289190614505565b60015b612ea4573d8060008114612e5b576040519150601f19603f3d011682016040523d82523d6000602084013e612e60565b606091505b506000815103612e9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ef9565b600190505b949350505050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612f7a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612fb4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fc16000868387612f01565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561322657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156131da57506131d86000888488612d83565b155b15613211576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061315f565b50806001819055505061323c6000868387612f07565b5050505050565b600080823b905060008111915050919050565b82805461326290613bc7565b90600052602060002090601f01602090048101928261328457600085556132cb565b82601f1061329d57805160ff19168380011785556132cb565b828001600101855582156132cb579182015b828111156132ca5782518255916020019190600101906132af565b5b5090506132d8919061331f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613338576000816000905550600101613320565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61338581613350565b811461339057600080fd5b50565b6000813590506133a28161337c565b92915050565b6000602082840312156133be576133bd613346565b5b60006133cc84828501613393565b91505092915050565b60008115159050919050565b6133ea816133d5565b82525050565b600060208201905061340560008301846133e1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561344557808201518184015260208101905061342a565b83811115613454576000848401525b50505050565b6000601f19601f8301169050919050565b60006134768261340b565b6134808185613416565b9350613490818560208601613427565b6134998161345a565b840191505092915050565b600060208201905081810360008301526134be818461346b565b905092915050565b6000819050919050565b6134d9816134c6565b81146134e457600080fd5b50565b6000813590506134f6816134d0565b92915050565b60006020828403121561351257613511613346565b5b6000613520848285016134e7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061355482613529565b9050919050565b61356481613549565b82525050565b600060208201905061357f600083018461355b565b92915050565b61358e81613549565b811461359957600080fd5b50565b6000813590506135ab81613585565b92915050565b600080604083850312156135c8576135c7613346565b5b60006135d68582860161359c565b92505060206135e7858286016134e7565b9150509250929050565b6135fa816134c6565b82525050565b600060208201905061361560008301846135f1565b92915050565b60008060006060848603121561363457613633613346565b5b60006136428682870161359c565b93505060206136538682870161359c565b9250506040613664868287016134e7565b9150509250925092565b60006020828403121561368457613683613346565b5b60006136928482850161359c565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136d88261345a565b810181811067ffffffffffffffff821117156136f7576136f66136a0565b5b80604052505050565b600061370a61333c565b905061371682826136cf565b919050565b600067ffffffffffffffff821115613736576137356136a0565b5b602082029050602081019050919050565b600080fd5b600061375f61375a8461371b565b613700565b9050808382526020820190506020840283018581111561378257613781613747565b5b835b818110156137ab5780613797888261359c565b845260208401935050602081019050613784565b5050509392505050565b600082601f8301126137ca576137c961369b565b5b81356137da84826020860161374c565b91505092915050565b6000602082840312156137f9576137f8613346565b5b600082013567ffffffffffffffff8111156138175761381661334b565b5b613823848285016137b5565b91505092915050565b600080fd5b600067ffffffffffffffff82111561384c5761384b6136a0565b5b6138558261345a565b9050602081019050919050565b82818337600083830152505050565b600061388461387f84613831565b613700565b9050828152602081018484840111156138a05761389f61382c565b5b6138ab848285613862565b509392505050565b600082601f8301126138c8576138c761369b565b5b81356138d8848260208601613871565b91505092915050565b6000602082840312156138f7576138f6613346565b5b600082013567ffffffffffffffff8111156139155761391461334b565b5b613921848285016138b3565b91505092915050565b61393381613549565b82525050565b600067ffffffffffffffff82169050919050565b61395681613939565b82525050565b613965816133d5565b82525050565b606082016000820151613981600085018261392a565b506020820151613994602085018261394d565b5060408201516139a7604085018261395c565b50505050565b60006060820190506139c2600083018461396b565b92915050565b6139d1816133d5565b81146139dc57600080fd5b50565b6000813590506139ee816139c8565b92915050565b60008060408385031215613a0b57613a0a613346565b5b6000613a198582860161359c565b9250506020613a2a858286016139df565b9150509250929050565b600067ffffffffffffffff821115613a4f57613a4e6136a0565b5b613a588261345a565b9050602081019050919050565b6000613a78613a7384613a34565b613700565b905082815260208101848484011115613a9457613a9361382c565b5b613a9f848285613862565b509392505050565b600082601f830112613abc57613abb61369b565b5b8135613acc848260208601613a65565b91505092915050565b60008060008060808587031215613aef57613aee613346565b5b6000613afd8782880161359c565b9450506020613b0e8782880161359c565b9350506040613b1f878288016134e7565b925050606085013567ffffffffffffffff811115613b4057613b3f61334b565b5b613b4c87828801613aa7565b91505092959194509250565b60008060408385031215613b6f57613b6e613346565b5b6000613b7d8582860161359c565b9250506020613b8e8582860161359c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bdf57607f821691505b602082108103613bf257613bf1613b98565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c2e602083613416565b9150613c3982613bf8565b602082019050919050565b60006020820190508181036000830152613c5d81613c21565b9050919050565b7f4572726f723a204e6577206d617820737570706c792063616e7420626520686960008201527f67686572207468616e206f726967696e616c206d61782e000000000000000000602082015250565b6000613cc0603783613416565b9150613ccb82613c64565b604082019050919050565b60006020820190508181036000830152613cef81613cb3565b9050919050565b6000604082019050613d0b600083018561355b565b613d18602083018461355b565b9392505050565b600081519050613d2e816139c8565b92915050565b600060208284031215613d4a57613d49613346565b5b6000613d5884828501613d1f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d9b826134c6565b9150613da6836134c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddb57613dda613d61565b5b828201905092915050565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b6000613e1c601383613416565b9150613e2782613de6565b602082019050919050565b60006020820190508181036000830152613e4b81613e0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613e8c826134c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ebe57613ebd613d61565b5b600182019050919050565b7f57616c6c65742066756c6c2c20636865636b206d6178207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f25602283613416565b9150613f3082613ec9565b604082019050919050565b60006020820190508181036000830152613f5481613f18565b9050919050565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b6000613f91601383613416565b9150613f9c82613f5b565b602082019050919050565b60006020820190508181036000830152613fc081613f84565b9050919050565b6000613fd2826134c6565b9150613fdd836134c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561401657614015613d61565b5b828202905092915050565b7f4e6565647320746f2073656e64206d6f72652045544821000000000000000000600082015250565b6000614057601783613416565b915061406282614021565b602082019050919050565b600060208201905081810360008301526140868161404a565b9050919050565b7f4578636565646564206d6178206d696e74696e6720616d6f756e742100000000600082015250565b60006140c3601c83613416565b91506140ce8261408d565b602082019050919050565b600060208201905081810360008301526140f2816140b6565b9050919050565b7f5075626c69632073616c65206e6f742079657420737461727465642100000000600082015250565b600061412f601c83613416565b915061413a826140f9565b602082019050919050565b6000602082019050818103600083015261415e81614122565b9050919050565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141c1602c83613416565b91506141cc82614165565b604082019050919050565b600060208201905081810360008301526141f0816141b4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461422481613bc7565b61422e81866141f7565b94506001821660008114614249576001811461425a5761428d565b60ff1983168652818601935061428d565b61426385614202565b60005b8381101561428557815481890152600182019150602081019050614266565b838801955050505b50505092915050565b60006142a18261340b565b6142ab81856141f7565b93506142bb818560208601613427565b80840191505092915050565b60006142d38286614217565b91506142df8285614296565b91506142eb8284614217565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614354602683613416565b915061435f826142f8565b604082019050919050565b6000602082019050818103600083015261438381614347565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143c4826134c6565b91506143cf836134c6565b9250826143df576143de61438a565b5b828204905092915050565b60006143f5826134c6565b9150614400836134c6565b92508282101561441357614412613d61565b5b828203905092915050565b6000614429826134c6565b9150614434836134c6565b9250826144445761444361438a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006144768261444f565b614480818561445a565b9350614490818560208601613427565b6144998161345a565b840191505092915050565b60006080820190506144b9600083018761355b565b6144c6602083018661355b565b6144d360408301856135f1565b81810360608301526144e5818461446b565b905095945050505050565b6000815190506144ff8161337c565b92915050565b60006020828403121561451b5761451a613346565b5b6000614529848285016144f0565b9150509291505056fea2646970667358221220d4336e19dd60e7fb8863e6bfdaea72e33e720f9335a577817e0b7ba9df8cb24a64736f6c634300080d0033

Deployed Bytecode Sourcemap

60092:3769:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30457:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33817:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35320:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34883:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62703:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30108:277;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62403:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63235:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60379:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62923:149;;;;;;;;;;;;;:::i;:::-;;63404:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62292:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33626:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60325:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30826:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62100:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19223:94;;;;;;;;;;;;;:::i;:::-;;61093:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62601:92;;;;;;;;;;;;;:::i;:::-;;61992:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18572:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62200:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63080:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60553:530;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61879:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33986:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62806:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60420:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35596:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63583:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61566:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61350:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60457:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35946:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19472:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60284:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60163:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30457:305;30559:4;30611:25;30596:40;;;:11;:40;;;;:105;;;;30668:33;30653:48;;;:11;:48;;;;30596:105;:158;;;;30718:36;30742:11;30718:23;:36::i;:::-;30596:158;30576:178;;30457:305;;;:::o;33817:100::-;33871:13;33904:5;33897:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33817:100;:::o;35320:204::-;35388:7;35413:16;35421:7;35413;:16::i;:::-;35408:64;;35438:34;;;;;;;;;;;;;;35408:64;35492:15;:24;35508:7;35492:24;;;;;;;;;;;;;;;;;;;;;35485:31;;35320:204;;;:::o;34883:371::-;34956:13;34972:24;34988:7;34972:15;:24::i;:::-;34956:40;;35017:5;35011:11;;:2;:11;;;35007:48;;35031:24;;;;;;;;;;;;;;35007:48;35088:5;35072:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35098:37;35115:5;35122:12;:10;:12::i;:::-;35098:16;:37::i;:::-;35097:38;35072:63;35068:138;;;35159:35;;;;;;;;;;;;;;35068:138;35218:28;35227:2;35231:7;35240:5;35218:8;:28::i;:::-;34945:309;34883:371;;:::o;62703:95::-;62745:4;62769:21;62762:28;;62703:95;:::o;30108:277::-;30152:7;30361:1;30345:12;;30329:13;;:28;30328:34;30321:41;;30108:277;:::o;62403:190::-;18803:12;:10;:12::i;:::-;18792:23;;:7;:5;:7::i;:::-;:23;;;18784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62491:4:::1;62480:7;:15;;62472:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;62578:7;62566:9;:19;;;;62403:190:::0;:::o;63235:163::-;63336:4;4553:1;3367:42;4507:43;;;:47;4503:699;;;4794:10;4786:18;;:4;:18;;;4782:85;;63353:37:::1;63372:4;63378:2;63382:7;63353:18;:37::i;:::-;4845:7:::0;;4782:85;3367:42;4927:40;;;4976:4;4983:10;4927:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;3367:42;5023:40;;;5072:4;5079;5023:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4927:157;4881:310;;5164:10;5145:30;;;;;;;;;;;:::i;:::-;;;;;;;;4881:310;4503:699;63353:37:::1;63372:4;63378:2;63382:7;63353:18;:37::i;:::-;63235:163:::0;;;;;:::o;60379:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62923:149::-;18803:12;:10;:12::i;:::-;18792:23;;:7;:5;:7::i;:::-;:23;;;18784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62973:13:::1;62989:21;62973:37;;63029:7;:5;:7::i;:::-;63021:25;;:35;63047:8;63021:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;62962:110;62923:149::o:0;63404:171::-;63509:4;4553:1;3367:42;4507:43;;;:47;4503:699;;;4794:10;4786:18;;:4;:18;;;4782:85;;63526:41:::1;63549:4;63555:2;63559:7;63526:22;:41::i;:::-;4845:7:::0;;4782:85;3367:42;4927:40;;;4976:4;4983:10;4927:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;3367:42;5023:40;;;5072:4;5079;5023:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4927:157;4881:310;;5164:10;5145:30;;;;;;;;;;;:::i;:::-;;;;;;;;4881:310;4503:699;63526:41:::1;63549:4;63555:2;63559:7;63526:22;:41::i;:::-;63404:171:::0;;;;;:::o;62292:103::-;18803:12;:10;:12::i;:::-;18792:23;;:7;:5;:7::i;:::-;:23;;;18784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62377:10:::1;62365:9;:22;;;;62292:103:::0;:::o;33626:124::-;33690:7;33717:20;33729:7;33717:11;:20::i;:::-;:25;;;33710:32;;33626:124;;;:::o;60325:47::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30826:206::-;30890:7;30931:1;30914:19;;:5;:19;;;30910:60;;30942:28;;;;;;;;;;;;;;30910:60;30996:12;:19;31009:5;30996:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30988:36;;30981:43;;30826:206;;;:::o;62100:92::-;62144:13;62177:7;62170:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62100:92;:::o;19223:94::-;18803:12;:10;:12::i;:::-;18792:23;;:7;:5;:7::i;:::-;:23;;;18784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19288:21:::1;19306:1;19288:9;:21::i;:::-;19223:94::o:0;61093:252::-;18803:12;:10;:12::i;:::-;18792:23;;:7;:5;:7::i;:::-;:23;;;18784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61211:9:::1;;61192:8;:15;61176:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;61168:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;61259:6;61255:80;61275:8;:15;61271:1;:19;61255:80;;;61310:25;61320:8;61329:1;61320:11;;;;;;;;:::i;:::-;;;;;;;;61333:1;61310:9;:25::i;:::-;61292:3;;;;;:::i;:::-;;;;61255:80;;;;61093:252:::0;:::o;62601:92::-;18803:12;:10;:12::i;:::-;18792:23;;:7;:5;:7::i;:::-;:23;;;18784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62671:14:::1;;;;;;;;;;;62670:15;62653:14;;:32;;;;;;;;;;;;;;;;;;62601:92::o:0;61992:100::-;18803:12;:10;:12::i;:::-;18792:23;;:7;:5;:7::i;:::-;:23;;;18784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62079:5:::1;62066:10;:18;;;;;;;;;;;;:::i;:::-;;61992:100:::0;:::o;18572:87::-;18618:7;18645:6;;;;;;;;;;;18638:13;;18572:87;:::o;62200:86::-;18803:12;:10;:12::i;:::-;18792:23;;:7;:5;:7::i;:::-;:23;;;18784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62272:6:::1;62264:5;:14;;;;62200:86:::0;:::o;63080:147::-;63161:21;;:::i;:::-;63201:20;63213:7;63201:11;:20::i;:::-;63194:27;;63080:147;;;:::o;60553:530::-;60635:1;60623:9;:13;:39;;;;;60653:9;;60640;:22;;60623:39;60615:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;60749:9;;60736;60720:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;60712:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;60822:9;60814:5;;:17;;;;:::i;:::-;60801:9;:30;60793:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;60920:9;;60907;60878:26;60893:10;60878:14;:26::i;:::-;:38;;;;:::i;:::-;:51;;60870:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;60981:14;;;;;;;;;;;60973:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;61041:32;61051:10;61063:9;61041;:32::i;:::-;60553:530;:::o;61879:107::-;18803:12;:10;:12::i;:::-;18792:23;;:7;:5;:7::i;:::-;:23;;;18784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61967:11:::1;61957:7;:21;;;;;;;;;;;;:::i;:::-;;61879:107:::0;:::o;33986:104::-;34042:13;34075:7;34068:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33986:104;:::o;62806:109::-;62866:7;62889:20;62903:5;62889:13;:20::i;:::-;62882:27;;62806:109;;;:::o;60420:30::-;;;;:::o;35596:279::-;35699:12;:10;:12::i;:::-;35687:24;;:8;:24;;;35683:54;;35720:17;;;;;;;;;;;;;;35683:54;35795:8;35750:18;:32;35769:12;:10;:12::i;:::-;35750:32;;;;;;;;;;;;;;;:42;35783:8;35750:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35848:8;35819:48;;35834:12;:10;:12::i;:::-;35819:48;;;35858:8;35819:48;;;;;;:::i;:::-;;;;;;;;35596:279;;:::o;63583:228::-;63734:4;4553:1;3367:42;4507:43;;;:47;4503:699;;;4794:10;4786:18;;:4;:18;;;4782:85;;63756:47:::1;63779:4;63785:2;63789:7;63798:4;63756:22;:47::i;:::-;4845:7:::0;;4782:85;3367:42;4927:40;;;4976:4;4983:10;4927:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;3367:42;5023:40;;;5072:4;5079;5023:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4927:157;4881:310;;5164:10;5145:30;;;;;;;;;;;:::i;:::-;;;;;;;;4881:310;4503:699;63756:47:::1;63779:4;63785:2;63789:7;63798:4;63756:22;:47::i;:::-;63583:228:::0;;;;;;:::o;61566:305::-;61640:13;61688:17;61696:8;61688:7;:17::i;:::-;61666:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;61821:7;61830:19;:8;:17;:19::i;:::-;61851:10;61804:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61790:73;;61566:305;;;:::o;61350:206::-;18803:12;:10;:12::i;:::-;18792:23;;:7;:5;:7::i;:::-;:23;;;18784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61476:9:::1;;61468:4;61452:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:33;;61444:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61524:24;61534:7;61543:4;61524:9;:24::i;:::-;61350:206:::0;;:::o;60457:31::-;;;;:::o;35946:164::-;36043:4;36067:18;:25;36086:5;36067:25;;;;;;;;;;;;;;;:35;36093:8;36067:35;;;;;;;;;;;;;;;;;;;;;;;;;36060:42;;35946:164;;;;:::o;19472:192::-;18803:12;:10;:12::i;:::-;18792:23;;:7;:5;:7::i;:::-;:23;;;18784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19581:1:::1;19561:22;;:8;:22;;::::0;19553:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19637:19;19647:8;19637:9;:19::i;:::-;19472:192:::0;:::o;60284:34::-;;;;;;;;;;;;;:::o;60163:28::-;;;;:::o;20577:157::-;20662:4;20701:25;20686:40;;;:11;:40;;;;20679:47;;20577:157;;;:::o;37271:144::-;37328:4;37362:13;;37352:7;:23;:55;;;;;37380:11;:20;37392:7;37380:20;;;;;;;;;;;:27;;;;;;;;;;;;37379:28;37352:55;37345:62;;37271:144;;;:::o;5712:98::-;5765:7;5792:10;5785:17;;5712:98;:::o;44477:196::-;44619:2;44592:15;:24;44608:7;44592:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44657:7;44653:2;44637:28;;44646:5;44637:28;;;;;;;;;;;;44477:196;;;:::o;36177:170::-;36311:28;36321:4;36327:2;36331:7;36311:9;:28::i;:::-;36177:170;;;:::o;36418:185::-;36556:39;36573:4;36579:2;36583:7;36556:39;;;;;;;;;;;;:16;:39::i;:::-;36418:185;;;:::o;32481:1083::-;32542:21;;:::i;:::-;32576:12;32591:7;32576:22;;32647:13;;32640:4;:20;32636:861;;;32681:31;32715:11;:17;32727:4;32715:17;;;;;;;;;;;32681:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32756:9;:16;;;32751:731;;32827:1;32801:28;;:9;:14;;;:28;;;32797:101;;32865:9;32858:16;;;;;;32797:101;33202:261;33209:4;33202:261;;;33242:6;;;;;;;;33287:11;:17;33299:4;33287:17;;;;;;;;;;;33275:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33361:1;33335:28;;:9;:14;;;:28;;;33331:109;;33403:9;33396:16;;;;;;33331:109;33202:261;;;32751:731;32662:835;32636:861;33525:31;;;;;;;;;;;;;;32481:1083;;;;:::o;19672:173::-;19728:16;19747:6;;;;;;;;;;;19728:25;;19773:8;19764:6;;:17;;;;;;;;;;;;;;;;;;19828:8;19797:40;;19818:8;19797:40;;;;;;;;;;;;19717:128;19672:173;:::o;37423:104::-;37492:27;37502:2;37506:8;37492:27;;;;;;;;;;;;:9;:27::i;:::-;37423:104;;:::o;31114:207::-;31175:7;31216:1;31199:19;;:5;:19;;;31195:59;;31227:27;;;;;;;;;;;;;;31195:59;31280:12;:19;31293:5;31280:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;31272:41;;31265:48;;31114:207;;;:::o;36674:342::-;36841:28;36851:4;36857:2;36861:7;36841:9;:28::i;:::-;36885:48;36908:4;36914:2;36918:7;36927:5;36885:22;:48::i;:::-;36880:129;;36957:40;;;;;;;;;;;;;;36880:129;36674:342;;;;:::o;6177:723::-;6233:13;6463:1;6454:5;:10;6450:53;;6481:10;;;;;;;;;;;;;;;;;;;;;6450:53;6513:12;6528:5;6513:20;;6544:14;6569:78;6584:1;6576:4;:9;6569:78;;6602:8;;;;;:::i;:::-;;;;6633:2;6625:10;;;;;:::i;:::-;;;6569:78;;;6657:19;6689:6;6679:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6657:39;;6707:154;6723:1;6714:5;:10;6707:154;;6751:1;6741:11;;;;;:::i;:::-;;;6818:2;6810:5;:10;;;;:::i;:::-;6797:2;:24;;;;:::i;:::-;6784:39;;6767:6;6774;6767:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6847:2;6838:11;;;;;:::i;:::-;;;6707:154;;;6885:6;6871:21;;;;;6177:723;;;;:::o;39978:2112::-;40093:35;40131:20;40143:7;40131:11;:20::i;:::-;40093:58;;40164:22;40206:13;:18;;;40190:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40241:50;40258:13;:18;;;40278:12;:10;:12::i;:::-;40241:16;:50::i;:::-;40190:101;:154;;;;40332:12;:10;:12::i;:::-;40308:36;;:20;40320:7;40308:11;:20::i;:::-;:36;;;40190:154;40164:181;;40363:17;40358:66;;40389:35;;;;;;;;;;;;;;40358:66;40461:4;40439:26;;:13;:18;;;:26;;;40435:67;;40474:28;;;;;;;;;;;;;;40435:67;40531:1;40517:16;;:2;:16;;;40513:52;;40542:23;;;;;;;;;;;;;;40513:52;40578:43;40600:4;40606:2;40610:7;40619:1;40578:21;:43::i;:::-;40686:49;40703:1;40707:7;40716:13;:18;;;40686:8;:49::i;:::-;41061:1;41031:12;:18;41044:4;41031:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41105:1;41077:12;:16;41090:2;41077:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41151:2;41123:11;:20;41135:7;41123:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41213:15;41168:11;:20;41180:7;41168:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41481:19;41513:1;41503:7;:11;41481:33;;41574:1;41533:43;;:11;:24;41545:11;41533:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;41529:445;;41758:13;;41744:11;:27;41740:219;;;41828:13;:18;;;41796:11;:24;41808:11;41796:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;41911:13;:28;;;41869:11;:24;41881:11;41869:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;41740:219;41529:445;41006:979;42021:7;42017:2;42002:27;;42011:4;42002:27;;;;;;;;;;;;42040:42;42061:4;42067:2;42071:7;42080:1;42040:20;:42::i;:::-;40082:2008;;39978:2112;;;:::o;37890:163::-;38013:32;38019:2;38023:8;38033:5;38040:4;38013:5;:32::i;:::-;37890:163;;;:::o;45238:790::-;45393:4;45414:15;:2;:13;;;:15::i;:::-;45410:611;;;45466:2;45450:36;;;45487:12;:10;:12::i;:::-;45501:4;45507:7;45516:5;45450:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45446:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45713:1;45696:6;:13;:18;45692:259;;45746:40;;;;;;;;;;;;;;45692:259;45901:6;45895:13;45886:6;45882:2;45878:15;45871:38;45446:520;45583:45;;;45573:55;;;:6;:55;;;;45566:62;;;;;45410:611;46005:4;45998:11;;45238:790;;;;;;;:::o;46676:159::-;;;;;:::o;47494:158::-;;;;;:::o;38312:1412::-;38451:20;38474:13;;38451:36;;38516:1;38502:16;;:2;:16;;;38498:48;;38527:19;;;;;;;;;;;;;;38498:48;38573:1;38561:8;:13;38557:44;;38583:18;;;;;;;;;;;;;;38557:44;38614:61;38644:1;38648:2;38652:12;38666:8;38614:21;:61::i;:::-;38987:8;38952:12;:16;38965:2;38952:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39051:8;39011:12;:16;39024:2;39011:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39110:2;39077:11;:25;39089:12;39077:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39177:15;39127:11;:25;39139:12;39127:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39210:20;39233:12;39210:35;;39267:9;39262:328;39282:8;39278:1;:12;39262:328;;;39346:12;39342:2;39321:38;;39338:1;39321:38;;;;;;;;;;;;39382:4;:68;;;;;39391:59;39422:1;39426:2;39430:12;39444:5;39391:22;:59::i;:::-;39390:60;39382:68;39378:164;;;39482:40;;;;;;;;;;;;;;39378:164;39560:14;;;;;;;39292:3;;;;;;;39262:328;;;;39622:12;39606:13;:28;;;;38927:719;39656:60;39685:1;39689:2;39693:12;39707:8;39656:20;:60::i;:::-;38440:1284;38312:1412;;;;:::o;8642:387::-;8702:4;8910:12;8977:7;8965:20;8957:28;;9020:1;9013:4;:8;9006:15;;;8642:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:180;6421:77;6418:1;6411:88;6518:4;6515:1;6508:15;6542:4;6539:1;6532:15;6559:281;6642:27;6664:4;6642:27;:::i;:::-;6634:6;6630:40;6772:6;6760:10;6757:22;6736:18;6724:10;6721:34;6718:62;6715:88;;;6783:18;;:::i;:::-;6715:88;6823:10;6819:2;6812:22;6602:238;6559:281;;:::o;6846:129::-;6880:6;6907:20;;:::i;:::-;6897:30;;6936:33;6964:4;6956:6;6936:33;:::i;:::-;6846:129;;;:::o;6981:311::-;7058:4;7148:18;7140:6;7137:30;7134:56;;;7170:18;;:::i;:::-;7134:56;7220:4;7212:6;7208:17;7200:25;;7280:4;7274;7270:15;7262:23;;6981:311;;;:::o;7298:117::-;7407:1;7404;7397:12;7438:710;7534:5;7559:81;7575:64;7632:6;7575:64;:::i;:::-;7559:81;:::i;:::-;7550:90;;7660:5;7689:6;7682:5;7675:21;7723:4;7716:5;7712:16;7705:23;;7776:4;7768:6;7764:17;7756:6;7752:30;7805:3;7797:6;7794:15;7791:122;;;7824:79;;:::i;:::-;7791:122;7939:6;7922:220;7956:6;7951:3;7948:15;7922:220;;;8031:3;8060:37;8093:3;8081:10;8060:37;:::i;:::-;8055:3;8048:50;8127:4;8122:3;8118:14;8111:21;;7998:144;7982:4;7977:3;7973:14;7966:21;;7922:220;;;7926:21;7540:608;;7438:710;;;;;:::o;8171:370::-;8242:5;8291:3;8284:4;8276:6;8272:17;8268:27;8258:122;;8299:79;;:::i;:::-;8258:122;8416:6;8403:20;8441:94;8531:3;8523:6;8516:4;8508:6;8504:17;8441:94;:::i;:::-;8432:103;;8248:293;8171:370;;;;:::o;8547:539::-;8631:6;8680:2;8668:9;8659:7;8655:23;8651:32;8648:119;;;8686:79;;:::i;:::-;8648:119;8834:1;8823:9;8819:17;8806:31;8864:18;8856:6;8853:30;8850:117;;;8886:79;;:::i;:::-;8850:117;8991:78;9061:7;9052:6;9041:9;9037:22;8991:78;:::i;:::-;8981:88;;8777:302;8547:539;;;;:::o;9092:117::-;9201:1;9198;9191:12;9215:308;9277:4;9367:18;9359:6;9356:30;9353:56;;;9389:18;;:::i;:::-;9353:56;9427:29;9449:6;9427:29;:::i;:::-;9419:37;;9511:4;9505;9501:15;9493:23;;9215:308;;;:::o;9529:154::-;9613:6;9608:3;9603;9590:30;9675:1;9666:6;9661:3;9657:16;9650:27;9529:154;;;:::o;9689:412::-;9767:5;9792:66;9808:49;9850:6;9808:49;:::i;:::-;9792:66;:::i;:::-;9783:75;;9881:6;9874:5;9867:21;9919:4;9912:5;9908:16;9957:3;9948:6;9943:3;9939:16;9936:25;9933:112;;;9964:79;;:::i;:::-;9933:112;10054:41;10088:6;10083:3;10078;10054:41;:::i;:::-;9773:328;9689:412;;;;;:::o;10121:340::-;10177:5;10226:3;10219:4;10211:6;10207:17;10203:27;10193:122;;10234:79;;:::i;:::-;10193:122;10351:6;10338:20;10376:79;10451:3;10443:6;10436:4;10428:6;10424:17;10376:79;:::i;:::-;10367:88;;10183:278;10121:340;;;;:::o;10467:509::-;10536:6;10585:2;10573:9;10564:7;10560:23;10556:32;10553:119;;;10591:79;;:::i;:::-;10553:119;10739:1;10728:9;10724:17;10711:31;10769:18;10761:6;10758:30;10755:117;;;10791:79;;:::i;:::-;10755:117;10896:63;10951:7;10942:6;10931:9;10927:22;10896:63;:::i;:::-;10886:73;;10682:287;10467:509;;;;:::o;10982:108::-;11059:24;11077:5;11059:24;:::i;:::-;11054:3;11047:37;10982:108;;:::o;11096:101::-;11132:7;11172:18;11165:5;11161:30;11150:41;;11096:101;;;:::o;11203:105::-;11278:23;11295:5;11278:23;:::i;:::-;11273:3;11266:36;11203:105;;:::o;11314:99::-;11385:21;11400:5;11385:21;:::i;:::-;11380:3;11373:34;11314:99;;:::o;11489:699::-;11650:4;11645:3;11641:14;11737:4;11730:5;11726:16;11720:23;11756:63;11813:4;11808:3;11804:14;11790:12;11756:63;:::i;:::-;11665:164;11921:4;11914:5;11910:16;11904:23;11940:61;11995:4;11990:3;11986:14;11972:12;11940:61;:::i;:::-;11839:172;12095:4;12088:5;12084:16;12078:23;12114:57;12165:4;12160:3;12156:14;12142:12;12114:57;:::i;:::-;12021:160;11619:569;11489:699;;:::o;12194:350::-;12351:4;12389:2;12378:9;12374:18;12366:26;;12402:135;12534:1;12523:9;12519:17;12510:6;12402:135;:::i;:::-;12194:350;;;;:::o;12550:116::-;12620:21;12635:5;12620:21;:::i;:::-;12613:5;12610:32;12600:60;;12656:1;12653;12646:12;12600:60;12550:116;:::o;12672:133::-;12715:5;12753:6;12740:20;12731:29;;12769:30;12793:5;12769:30;:::i;:::-;12672:133;;;;:::o;12811:468::-;12876:6;12884;12933:2;12921:9;12912:7;12908:23;12904:32;12901:119;;;12939:79;;:::i;:::-;12901:119;13059:1;13084:53;13129:7;13120:6;13109:9;13105:22;13084:53;:::i;:::-;13074:63;;13030:117;13186:2;13212:50;13254:7;13245:6;13234:9;13230:22;13212:50;:::i;:::-;13202:60;;13157:115;12811:468;;;;;:::o;13285:307::-;13346:4;13436:18;13428:6;13425:30;13422:56;;;13458:18;;:::i;:::-;13422:56;13496:29;13518:6;13496:29;:::i;:::-;13488:37;;13580:4;13574;13570:15;13562:23;;13285:307;;;:::o;13598:410::-;13675:5;13700:65;13716:48;13757:6;13716:48;:::i;:::-;13700:65;:::i;:::-;13691:74;;13788:6;13781:5;13774:21;13826:4;13819:5;13815:16;13864:3;13855:6;13850:3;13846:16;13843:25;13840:112;;;13871:79;;:::i;:::-;13840:112;13961:41;13995:6;13990:3;13985;13961:41;:::i;:::-;13681:327;13598:410;;;;;:::o;14027:338::-;14082:5;14131:3;14124:4;14116:6;14112:17;14108:27;14098:122;;14139:79;;:::i;:::-;14098:122;14256:6;14243:20;14281:78;14355:3;14347:6;14340:4;14332:6;14328:17;14281:78;:::i;:::-;14272:87;;14088:277;14027:338;;;;:::o;14371:943::-;14466:6;14474;14482;14490;14539:3;14527:9;14518:7;14514:23;14510:33;14507:120;;;14546:79;;:::i;:::-;14507:120;14666:1;14691:53;14736:7;14727:6;14716:9;14712:22;14691:53;:::i;:::-;14681:63;;14637:117;14793:2;14819:53;14864:7;14855:6;14844:9;14840:22;14819:53;:::i;:::-;14809:63;;14764:118;14921:2;14947:53;14992:7;14983:6;14972:9;14968:22;14947:53;:::i;:::-;14937:63;;14892:118;15077:2;15066:9;15062:18;15049:32;15108:18;15100:6;15097:30;15094:117;;;15130:79;;:::i;:::-;15094:117;15235:62;15289:7;15280:6;15269:9;15265:22;15235:62;:::i;:::-;15225:72;;15020:287;14371:943;;;;;;;:::o;15320:474::-;15388:6;15396;15445:2;15433:9;15424:7;15420:23;15416:32;15413:119;;;15451:79;;:::i;:::-;15413:119;15571:1;15596:53;15641:7;15632:6;15621:9;15617:22;15596:53;:::i;:::-;15586:63;;15542:117;15698:2;15724:53;15769:7;15760:6;15749:9;15745:22;15724:53;:::i;:::-;15714:63;;15669:118;15320:474;;;;;:::o;15800:180::-;15848:77;15845:1;15838:88;15945:4;15942:1;15935:15;15969:4;15966:1;15959:15;15986:320;16030:6;16067:1;16061:4;16057:12;16047:22;;16114:1;16108:4;16104:12;16135:18;16125:81;;16191:4;16183:6;16179:17;16169:27;;16125:81;16253:2;16245:6;16242:14;16222:18;16219:38;16216:84;;16272:18;;:::i;:::-;16216:84;16037:269;15986:320;;;:::o;16312:182::-;16452:34;16448:1;16440:6;16436:14;16429:58;16312:182;:::o;16500:366::-;16642:3;16663:67;16727:2;16722:3;16663:67;:::i;:::-;16656:74;;16739:93;16828:3;16739:93;:::i;:::-;16857:2;16852:3;16848:12;16841:19;;16500:366;;;:::o;16872:419::-;17038:4;17076:2;17065:9;17061:18;17053:26;;17125:9;17119:4;17115:20;17111:1;17100:9;17096:17;17089:47;17153:131;17279:4;17153:131;:::i;:::-;17145:139;;16872:419;;;:::o;17297:242::-;17437:34;17433:1;17425:6;17421:14;17414:58;17506:25;17501:2;17493:6;17489:15;17482:50;17297:242;:::o;17545:366::-;17687:3;17708:67;17772:2;17767:3;17708:67;:::i;:::-;17701:74;;17784:93;17873:3;17784:93;:::i;:::-;17902:2;17897:3;17893:12;17886:19;;17545:366;;;:::o;17917:419::-;18083:4;18121:2;18110:9;18106:18;18098:26;;18170:9;18164:4;18160:20;18156:1;18145:9;18141:17;18134:47;18198:131;18324:4;18198:131;:::i;:::-;18190:139;;17917:419;;;:::o;18342:332::-;18463:4;18501:2;18490:9;18486:18;18478:26;;18514:71;18582:1;18571:9;18567:17;18558:6;18514:71;:::i;:::-;18595:72;18663:2;18652:9;18648:18;18639:6;18595:72;:::i;:::-;18342:332;;;;;:::o;18680:137::-;18734:5;18765:6;18759:13;18750:22;;18781:30;18805:5;18781:30;:::i;:::-;18680:137;;;;:::o;18823:345::-;18890:6;18939:2;18927:9;18918:7;18914:23;18910:32;18907:119;;;18945:79;;:::i;:::-;18907:119;19065:1;19090:61;19143:7;19134:6;19123:9;19119:22;19090:61;:::i;:::-;19080:71;;19036:125;18823:345;;;;:::o;19174:180::-;19222:77;19219:1;19212:88;19319:4;19316:1;19309:15;19343:4;19340:1;19333:15;19360:305;19400:3;19419:20;19437:1;19419:20;:::i;:::-;19414:25;;19453:20;19471:1;19453:20;:::i;:::-;19448:25;;19607:1;19539:66;19535:74;19532:1;19529:81;19526:107;;;19613:18;;:::i;:::-;19526:107;19657:1;19654;19650:9;19643:16;;19360:305;;;;:::o;19671:169::-;19811:21;19807:1;19799:6;19795:14;19788:45;19671:169;:::o;19846:366::-;19988:3;20009:67;20073:2;20068:3;20009:67;:::i;:::-;20002:74;;20085:93;20174:3;20085:93;:::i;:::-;20203:2;20198:3;20194:12;20187:19;;19846:366;;;:::o;20218:419::-;20384:4;20422:2;20411:9;20407:18;20399:26;;20471:9;20465:4;20461:20;20457:1;20446:9;20442:17;20435:47;20499:131;20625:4;20499:131;:::i;:::-;20491:139;;20218:419;;;:::o;20643:180::-;20691:77;20688:1;20681:88;20788:4;20785:1;20778:15;20812:4;20809:1;20802:15;20829:233;20868:3;20891:24;20909:5;20891:24;:::i;:::-;20882:33;;20937:66;20930:5;20927:77;20924:103;;21007:18;;:::i;:::-;20924:103;21054:1;21047:5;21043:13;21036:20;;20829:233;;;:::o;21068:221::-;21208:34;21204:1;21196:6;21192:14;21185:58;21277:4;21272:2;21264:6;21260:15;21253:29;21068:221;:::o;21295:366::-;21437:3;21458:67;21522:2;21517:3;21458:67;:::i;:::-;21451:74;;21534:93;21623:3;21534:93;:::i;:::-;21652:2;21647:3;21643:12;21636:19;;21295:366;;;:::o;21667:419::-;21833:4;21871:2;21860:9;21856:18;21848:26;;21920:9;21914:4;21910:20;21906:1;21895:9;21891:17;21884:47;21948:131;22074:4;21948:131;:::i;:::-;21940:139;;21667:419;;;:::o;22092:169::-;22232:21;22228:1;22220:6;22216:14;22209:45;22092:169;:::o;22267:366::-;22409:3;22430:67;22494:2;22489:3;22430:67;:::i;:::-;22423:74;;22506:93;22595:3;22506:93;:::i;:::-;22624:2;22619:3;22615:12;22608:19;;22267:366;;;:::o;22639:419::-;22805:4;22843:2;22832:9;22828:18;22820:26;;22892:9;22886:4;22882:20;22878:1;22867:9;22863:17;22856:47;22920:131;23046:4;22920:131;:::i;:::-;22912:139;;22639:419;;;:::o;23064:348::-;23104:7;23127:20;23145:1;23127:20;:::i;:::-;23122:25;;23161:20;23179:1;23161:20;:::i;:::-;23156:25;;23349:1;23281:66;23277:74;23274:1;23271:81;23266:1;23259:9;23252:17;23248:105;23245:131;;;23356:18;;:::i;:::-;23245:131;23404:1;23401;23397:9;23386:20;;23064:348;;;;:::o;23418:173::-;23558:25;23554:1;23546:6;23542:14;23535:49;23418:173;:::o;23597:366::-;23739:3;23760:67;23824:2;23819:3;23760:67;:::i;:::-;23753:74;;23836:93;23925:3;23836:93;:::i;:::-;23954:2;23949:3;23945:12;23938:19;;23597:366;;;:::o;23969:419::-;24135:4;24173:2;24162:9;24158:18;24150:26;;24222:9;24216:4;24212:20;24208:1;24197:9;24193:17;24186:47;24250:131;24376:4;24250:131;:::i;:::-;24242:139;;23969:419;;;:::o;24394:178::-;24534:30;24530:1;24522:6;24518:14;24511:54;24394:178;:::o;24578:366::-;24720:3;24741:67;24805:2;24800:3;24741:67;:::i;:::-;24734:74;;24817:93;24906:3;24817:93;:::i;:::-;24935:2;24930:3;24926:12;24919:19;;24578:366;;;:::o;24950:419::-;25116:4;25154:2;25143:9;25139:18;25131:26;;25203:9;25197:4;25193:20;25189:1;25178:9;25174:17;25167:47;25231:131;25357:4;25231:131;:::i;:::-;25223:139;;24950:419;;;:::o;25375:178::-;25515:30;25511:1;25503:6;25499:14;25492:54;25375:178;:::o;25559:366::-;25701:3;25722:67;25786:2;25781:3;25722:67;:::i;:::-;25715:74;;25798:93;25887:3;25798:93;:::i;:::-;25916:2;25911:3;25907:12;25900:19;;25559:366;;;:::o;25931:419::-;26097:4;26135:2;26124:9;26120:18;26112:26;;26184:9;26178:4;26174:20;26170:1;26159:9;26155:17;26148:47;26212:131;26338:4;26212:131;:::i;:::-;26204:139;;25931:419;;;:::o;26356:231::-;26496:34;26492:1;26484:6;26480:14;26473:58;26565:14;26560:2;26552:6;26548:15;26541:39;26356:231;:::o;26593:366::-;26735:3;26756:67;26820:2;26815:3;26756:67;:::i;:::-;26749:74;;26832:93;26921:3;26832:93;:::i;:::-;26950:2;26945:3;26941:12;26934:19;;26593:366;;;:::o;26965:419::-;27131:4;27169:2;27158:9;27154:18;27146:26;;27218:9;27212:4;27208:20;27204:1;27193:9;27189:17;27182:47;27246:131;27372:4;27246:131;:::i;:::-;27238:139;;26965:419;;;:::o;27390:148::-;27492:11;27529:3;27514:18;;27390:148;;;;:::o;27544:141::-;27593:4;27616:3;27608:11;;27639:3;27636:1;27629:14;27673:4;27670:1;27660:18;27652:26;;27544:141;;;:::o;27715:845::-;27818:3;27855:5;27849:12;27884:36;27910:9;27884:36;:::i;:::-;27936:89;28018:6;28013:3;27936:89;:::i;:::-;27929:96;;28056:1;28045:9;28041:17;28072:1;28067:137;;;;28218:1;28213:341;;;;28034:520;;28067:137;28151:4;28147:9;28136;28132:25;28127:3;28120:38;28187:6;28182:3;28178:16;28171:23;;28067:137;;28213:341;28280:38;28312:5;28280:38;:::i;:::-;28340:1;28354:154;28368:6;28365:1;28362:13;28354:154;;;28442:7;28436:14;28432:1;28427:3;28423:11;28416:35;28492:1;28483:7;28479:15;28468:26;;28390:4;28387:1;28383:12;28378:17;;28354:154;;;28537:6;28532:3;28528:16;28521:23;;28220:334;;28034:520;;27822:738;;27715:845;;;;:::o;28566:377::-;28672:3;28700:39;28733:5;28700:39;:::i;:::-;28755:89;28837:6;28832:3;28755:89;:::i;:::-;28748:96;;28853:52;28898:6;28893:3;28886:4;28879:5;28875:16;28853:52;:::i;:::-;28930:6;28925:3;28921:16;28914:23;;28676:267;28566:377;;;;:::o;28949:583::-;29171:3;29193:92;29281:3;29272:6;29193:92;:::i;:::-;29186:99;;29302:95;29393:3;29384:6;29302:95;:::i;:::-;29295:102;;29414:92;29502:3;29493:6;29414:92;:::i;:::-;29407:99;;29523:3;29516:10;;28949:583;;;;;;:::o;29538:225::-;29678:34;29674:1;29666:6;29662:14;29655:58;29747:8;29742:2;29734:6;29730:15;29723:33;29538:225;:::o;29769:366::-;29911:3;29932:67;29996:2;29991:3;29932:67;:::i;:::-;29925:74;;30008:93;30097:3;30008:93;:::i;:::-;30126:2;30121:3;30117:12;30110:19;;29769:366;;;:::o;30141:419::-;30307:4;30345:2;30334:9;30330:18;30322:26;;30394:9;30388:4;30384:20;30380:1;30369:9;30365:17;30358:47;30422:131;30548:4;30422:131;:::i;:::-;30414:139;;30141:419;;;:::o;30566:180::-;30614:77;30611:1;30604:88;30711:4;30708:1;30701:15;30735:4;30732:1;30725:15;30752:185;30792:1;30809:20;30827:1;30809:20;:::i;:::-;30804:25;;30843:20;30861:1;30843:20;:::i;:::-;30838:25;;30882:1;30872:35;;30887:18;;:::i;:::-;30872:35;30929:1;30926;30922:9;30917:14;;30752:185;;;;:::o;30943:191::-;30983:4;31003:20;31021:1;31003:20;:::i;:::-;30998:25;;31037:20;31055:1;31037:20;:::i;:::-;31032:25;;31076:1;31073;31070:8;31067:34;;;31081:18;;:::i;:::-;31067:34;31126:1;31123;31119:9;31111:17;;30943:191;;;;:::o;31140:176::-;31172:1;31189:20;31207:1;31189:20;:::i;:::-;31184:25;;31223:20;31241:1;31223:20;:::i;:::-;31218:25;;31262:1;31252:35;;31267:18;;:::i;:::-;31252:35;31308:1;31305;31301:9;31296:14;;31140:176;;;;:::o;31322:98::-;31373:6;31407:5;31401:12;31391:22;;31322:98;;;:::o;31426:168::-;31509:11;31543:6;31538:3;31531:19;31583:4;31578:3;31574:14;31559:29;;31426:168;;;;:::o;31600:360::-;31686:3;31714:38;31746:5;31714:38;:::i;:::-;31768:70;31831:6;31826:3;31768:70;:::i;:::-;31761:77;;31847:52;31892:6;31887:3;31880:4;31873:5;31869:16;31847:52;:::i;:::-;31924:29;31946:6;31924:29;:::i;:::-;31919:3;31915:39;31908:46;;31690:270;31600:360;;;;:::o;31966:640::-;32161:4;32199:3;32188:9;32184:19;32176:27;;32213:71;32281:1;32270:9;32266:17;32257:6;32213:71;:::i;:::-;32294:72;32362:2;32351:9;32347:18;32338:6;32294:72;:::i;:::-;32376;32444:2;32433:9;32429:18;32420:6;32376:72;:::i;:::-;32495:9;32489:4;32485:20;32480:2;32469:9;32465:18;32458:48;32523:76;32594:4;32585:6;32523:76;:::i;:::-;32515:84;;31966:640;;;;;;;:::o;32612:141::-;32668:5;32699:6;32693:13;32684:22;;32715:32;32741:5;32715:32;:::i;:::-;32612:141;;;;:::o;32759:349::-;32828:6;32877:2;32865:9;32856:7;32852:23;32848:32;32845:119;;;32883:79;;:::i;:::-;32845:119;33003:1;33028:63;33083:7;33074:6;33063:9;33059:22;33028:63;:::i;:::-;33018:73;;32974:127;32759:349;;;;:::o

Swarm Source

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