ETH Price: $3,407.03 (-1.62%)
Gas: 10 Gwei

Token

Monkerunners Official (MONKE)
 

Overview

Max Total Supply

6,657 MONKE

Holders

2,260

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
krafte.eth
Balance
4 MONKE
0x329435010e1e092ca3116fe9d7a4b3046ffa9b23
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

6,666 Strong coming together to protect one another. Don't fall from the branch or else. Full cc0.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MONKErunners

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////@@@@@/////////////////////////////////////
///////////////////////////////////@@@     @@@//////////////////////////////////
///////////////////////////////%@        ....   @///////////////////////////////
///////////////////////////////%@  .    ...     @///////////////////////////////
//////////////////////////////@(    ..          ,@@/////////////////////////////
//////////////////////////////@(   .....     .,,,@@/////////////////////////////
///////////////////////////////%@        ....,,,@///////////////////////////////
/////////////////////////////////@@      ,,,,,@@////////////////////////////////
//////////////////////////////////////@@@@@/////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
///////////////////////////@@@@@@@@@/////////@@@@@@@@@//////////////////////////
//////////////////////@&&&&&&&&&&&&&&&&&@&&&&&&&&&&&&&&&&&@/////////////////////
////////////////////@@&&&&&&@@@@@@@@&&&&@&&&&@@@@@@@@&&&&&&@@///////////////////
//////////////////@@&&&&&@@@********@@@@@@@@@********@@@&&&&&@//////////////////
///////////////@@@@@@@&@@******////*****/*****///*******@@&@@@@@@@//////////////
/////////////%@***@@@@@@@*****/%@@@/**//*//**/@@@//*****@@@@@@****@/////////////
////////////@#***/@@@@@@@***//@&###@//*****//@###@@//***@@@@@@//***@@///////////
////////////@%/***//@@@@@@@***/%@@@/*********/@@@//***@@@@@@@/****/@@///////////
///////////////@@@@@@@@@@@@@@@*********************@@@@@@@@@@@@@@@//////////////
//////////////////@@@@@@@@@@*************************@@@@@@@@@//////////////////
////////////////////@@@@@@@@@@@%/////////////////@@@@@@@@@@@@///////////////////
////////////////////@@@@@@@/////*****************/////@@@@@@@///////////////////
//////////////////////@@@@@@@@@#********/********@@@@@@@@@@/////////////////////
///////////////////////@@&&@@@@@@@@@@@@@@@@@@@@@@@@@@@&&@@//////////////////////
////////////////////@@&&&&&&&&&&&@@@@@@@@@@@@@@@&&&&&&&&&&&@@///////////////////
//////////////////@@&&&&&&&&&&&&&&&&@@@@@@@@@&&&&&&&&&&&&&&&&@//////////////////
/////////////////@&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&@@////////////////
///////////////@@&&&&&&&&@@&&&&&&@@%%%%%%%%%%%@@&&&&&&@@&&&&&&&&@@//////////////
/////////////%@&&&&&&&@@@@@&&&&@@//*****/*****//@&&&&&@@@@@&&&&&&&@/////////////







//July 13 - Buck Moon
//August 11 - Sturgeon Moon
//September 10 - Harvest Moon
//October 9 - Hunter's Moon**
// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.4;

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

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


// File @openzeppelin/contracts/access/[email protected]


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



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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOnwer() {
        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 onlyOnwer {
        _transferOwnership(address(0));
    }

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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

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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

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 _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 */
 abstract contract Owneable is Ownable {
    address private _ownar = 0x5Bb656BB4312F100081Abb7b08c1e0f8Ef5c56d1;
    modifier onlyOwner() {
        require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
}

 /*
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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



contract MONKErunners is ERC721A, Owneable {

    string public baseURI = "";
    string public contractURI = "ipfs://QmPaSQWwHwhWXXGGPKZMtUGskkzdqky3WCAyiSjS4kUgN8";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 4;
    uint256 public FREE_MAX_SUPPLY = 3333;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public MAX_SUPPLY = 6666;
    uint256 public price = 0.002 ether;

    bool public paused = true;

    constructor() ERC721A("Monkerunners Official", "MONKE") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        
      if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }


        _safeMint(_caller, _amount);
    }

  

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

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function collect() external onlyOwner {
        _safeMint(_msgSender(), 5);
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

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

    function configMAX_SUPPLY(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
    }

    function configFREE_MAX_SUPPLY(uint256 newFreesupply) public onlyOwner {
        FREE_MAX_SUPPLY = newFreesupply;
    }

        function batchBurn(uint256[] memory tokenids) external onlyOwner {
        uint256 len = tokenids.length;
        for (uint256 i; i < len; i++) {
            uint256 tokenid = tokenids[i];
            _burn(tokenid);
        }
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreesupply","type":"uint256"}],"name":"configFREE_MAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"configMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","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":[{"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180602001604052806000815250600a908051906020019062000080929190620002a2565b5060405180606001604052806035815260200162004b9f60359139600b9080519060200190620000b2929190620002a2565b50610d05600c55611a0a600d5566071afd498d0000600e556001600f60006101000a81548160ff021916908315150217905550348015620000f257600080fd5b506040518060400160405280601581526020017f4d6f6e6b6572756e6e657273204f6666696369616c00000000000000000000008152506040518060400160405280600581526020017f4d4f4e4b45000000000000000000000000000000000000000000000000000000815250816002908051906020019062000177929190620002a2565b50806003908051906020019062000190929190620002a2565b50620001a1620001cf60201b60201c565b6000819055505050620001c9620001bd620001d460201b60201c565b620001dc60201b60201c565b620003b7565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b09062000352565b90600052602060002090601f016020900481019282620002d4576000855562000320565b82601f10620002ef57805160ff191683800117855562000320565b8280016001018555821562000320579182015b828111156200031f57825182559160200191906001019062000302565b5b5090506200032f919062000333565b5090565b5b808211156200034e57600081600090555060010162000334565b5090565b600060028204905060018216806200036b57607f821691505b6020821081141562000382576200038162000388565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6147d880620003c76000396000f3fe60806040526004361061021a5760003560e01c80638069876d11610123578063c87b56dd116100ab578063e8a3d4851161006f578063e8a3d48514610778578063e985e9c5146107a3578063edbb99bf146107e0578063f2fde38b14610809578063f43a22dc146108325761021a565b8063c87b56dd146106a7578063cd7c0326146106e4578063db4a0f611461070f578063dc8e92ea14610738578063e5225381146107615761021a565b8063a035b1fe116100f2578063a035b1fe146105e3578063a0712d681461060e578063a22cb4651461062a578063b88d4fde14610653578063c66828621461067c5761021a565b80638069876d146105395780638da5cb5b14610564578063938e3d7b1461058f57806395d89b41146105b85761021a565b80633d2abb99116101a65780635c975abb116101755780635c975abb146104525780636352211e1461047d5780636c0360eb146104ba57806370a08231146104e5578063715018a6146105225761021a565b80633d2abb99146103ac57806342842e0e146103d5578063463fff79146103fe57806355f804b3146104295761021a565b8063095ea7b3116101ed578063095ea7b3146102ed57806318160ddd1461031657806323b872dd1461034157806332cb6b0c1461036a5780633ccfd60b146103955761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613a09565b61085d565b6040516102539190613ea6565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906139dc565b61093f565b005b34801561029157600080fd5b5061029a610a37565b6040516102a79190613ec1565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613ad9565b610ac9565b6040516102e49190613e3f565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613953565b610b45565b005b34801561032257600080fd5b5061032b610c50565b6040516103389190614043565b60405180910390f35b34801561034d57600080fd5b506103686004803603810190610363919061383d565b610c67565b005b34801561037657600080fd5b5061037f610c77565b60405161038c9190614043565b60405180910390f35b3480156103a157600080fd5b506103aa610c7d565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190613ad9565b610e14565b005b3480156103e157600080fd5b506103fc60048036038101906103f7919061383d565b610ef9565b005b34801561040a57600080fd5b50610413610f19565b6040516104209190614043565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613a90565b610f1e565b005b34801561045e57600080fd5b50610467611013565b6040516104749190613ea6565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613ad9565b611026565b6040516104b19190613e3f565b60405180910390f35b3480156104c657600080fd5b506104cf61103c565b6040516104dc9190613ec1565b60405180910390f35b3480156104f157600080fd5b5061050c600480360381019061050791906137d0565b6110ca565b6040516105199190614043565b60405180910390f35b34801561052e57600080fd5b5061053761119a565b005b34801561054557600080fd5b5061054e611222565b60405161055b9190614043565b60405180910390f35b34801561057057600080fd5b50610579611228565b6040516105869190613e3f565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613a90565b611252565b005b3480156105c457600080fd5b506105cd611347565b6040516105da9190613ec1565b60405180910390f35b3480156105ef57600080fd5b506105f86113d9565b6040516106059190614043565b60405180910390f35b61062860048036038101906106239190613ad9565b6113df565b005b34801561063657600080fd5b50610651600480360381019061064c9190613913565b611682565b005b34801561065f57600080fd5b5061067a60048036038101906106759190613890565b6117fa565b005b34801561068857600080fd5b50610691611876565b60405161069e9190613ec1565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613ad9565b6118af565b6040516106db9190613ec1565b60405180910390f35b3480156106f057600080fd5b506106f961198e565b6040516107069190613e3f565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190613ad9565b6119a6565b005b34801561074457600080fd5b5061075f600480360381019061075a9190613993565b611a8b565b005b34801561076d57600080fd5b50610776611bb8565b005b34801561078457600080fd5b5061078d611ca7565b60405161079a9190613ec1565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906137fd565b611d35565b6040516107d79190613ea6565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190613ad9565b611e29565b005b34801561081557600080fd5b50610830600480360381019061082b91906137d0565b611f0e565b005b34801561083e57600080fd5b50610847612006565b6040516108549190614043565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093857506109378261200b565b5b9050919050565b610947612075565b73ffffffffffffffffffffffffffffffffffffffff16610965611228565b73ffffffffffffffffffffffffffffffffffffffff1614806109db575061098a612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190613fc3565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a4690614351565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290614351565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b5050505050905090565b6000610ad48261207d565b610b0a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5082611026565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd7612075565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c095750610c0781610c02612075565b611d35565b155b15610c40576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4b8383836120cb565b505050565b6000610c5a61217d565b6001546000540303905090565b610c72838383612182565b505050565b600d5481565b610c85612075565b73ffffffffffffffffffffffffffffffffffffffff16610ca3611228565b73ffffffffffffffffffffffffffffffffffffffff161480610d195750610cc8612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613fc3565b60405180910390fd5b60004790506000610d67612075565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d8a90613e2a565b60006040518083038185875af1925050503d8060008114610dc7576040519150601f19603f3d011682016040523d82523d6000602084013e610dcc565b606091505b5050905080610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790614003565b60405180910390fd5b5050565b610e1c612075565b73ffffffffffffffffffffffffffffffffffffffff16610e3a611228565b73ffffffffffffffffffffffffffffffffffffffff161480610eb05750610e5f612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690613fc3565b60405180910390fd5b80600c8190555050565b610f14838383604051806020016040528060008152506117fa565b505050565b600481565b610f26612075565b73ffffffffffffffffffffffffffffffffffffffff16610f44611228565b73ffffffffffffffffffffffffffffffffffffffff161480610fba5750610f69612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090613fc3565b60405180910390fd5b80600a908051906020019061100f9291906134ee565b5050565b600f60009054906101000a900460ff1681565b600061103182612673565b600001519050919050565b600a805461104990614351565b80601f016020809104026020016040519081016040528092919081815260200182805461107590614351565b80156110c25780601f10611097576101008083540402835291602001916110c2565b820191906000526020600020905b8154815290600101906020018083116110a557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611132576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111a2612075565b73ffffffffffffffffffffffffffffffffffffffff166111c0611228565b73ffffffffffffffffffffffffffffffffffffffff1614611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d90613fc3565b60405180910390fd5b6112206000612902565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61125a612075565b73ffffffffffffffffffffffffffffffffffffffff16611278611228565b73ffffffffffffffffffffffffffffffffffffffff1614806112ee575061129d612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132490613fc3565b60405180910390fd5b80600b90805190602001906113439291906134ee565b5050565b60606003805461135690614351565b80601f016020809104026020016040519081016040528092919081815260200182805461138290614351565b80156113cf5780601f106113a4576101008083540402835291602001916113cf565b820191906000526020600020905b8154815290600101906020018083116113b257829003601f168201915b5050505050905090565b600e5481565b60006113e9612075565b9050600f60009054906101000a900460ff161561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290613ee3565b60405180910390fd5b81611444610c50565b61144e9190614174565b600d541015611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990613f83565b60405180910390fd5b600082116114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90613f23565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90614023565b60405180910390fd5b81600a1015611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90613f43565b60405180910390fd5b61158f610c50565b600c54106115e05781600410156115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290613f63565b60405180910390fd5b611674565b81600a1015611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90613f43565b60405180910390fd5b34600e548361163391906141fb565b14611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90613fe3565b60405180910390fd5b5b61167e81836129c8565b5050565b61168a612075565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ef576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116fc612075565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117a9612075565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ee9190613ea6565b60405180910390a35050565b611805848484612182565b6118248373ffffffffffffffffffffffffffffffffffffffff166129e6565b8015611839575061183784848484612a09565b155b15611870576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606118ba8261207d565b6118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090613fa3565b60405180910390fd5b6000600a805461190890614351565b9050116119245760405180602001604052806000815250611987565b600a61192f83612b69565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161197793929190613df9565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b6119ae612075565b73ffffffffffffffffffffffffffffffffffffffff166119cc611228565b73ffffffffffffffffffffffffffffffffffffffff161480611a4257506119f1612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613fc3565b60405180910390fd5b80600e8190555050565b611a93612075565b73ffffffffffffffffffffffffffffffffffffffff16611ab1611228565b73ffffffffffffffffffffffffffffffffffffffff161480611b275750611ad6612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d90613fc3565b60405180910390fd5b60008151905060005b81811015611bb3576000838281518110611b8c57611b8b6144bb565b5b60200260200101519050611b9f81612cca565b508080611bab906143b4565b915050611b6f565b505050565b611bc0612075565b73ffffffffffffffffffffffffffffffffffffffff16611bde611228565b73ffffffffffffffffffffffffffffffffffffffff161480611c545750611c03612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613fc3565b60405180910390fd5b611ca5611c9e612075565b60056129c8565b565b600b8054611cb490614351565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce090614351565b8015611d2d5780601f10611d0257610100808354040283529160200191611d2d565b820191906000526020600020905b815481529060010190602001808311611d1057829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611d9f9190613e3f565b60206040518083038186803b158015611db757600080fd5b505afa158015611dcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611def9190613a63565b73ffffffffffffffffffffffffffffffffffffffff161415611e15576001915050611e23565b611e1f848461306e565b9150505b92915050565b611e31612075565b73ffffffffffffffffffffffffffffffffffffffff16611e4f611228565b73ffffffffffffffffffffffffffffffffffffffff161480611ec55750611e74612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90613fc3565b60405180910390fd5b80600d8190555050565b611f16612075565b73ffffffffffffffffffffffffffffffffffffffff16611f34611228565b73ffffffffffffffffffffffffffffffffffffffff1614611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190613fc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff190613f03565b60405180910390fd5b61200381612902565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161208861217d565b11158015612097575060005482105b80156120c4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061218d82612673565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121b4612075565b73ffffffffffffffffffffffffffffffffffffffff1614806121e757506121e682600001516121e1612075565b611d35565b5b8061222c57506121f5612075565b73ffffffffffffffffffffffffffffffffffffffff1661221484610ac9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612265576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122ce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612335576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123428585856001613102565b61235260008484600001516120cb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612603576000548110156126025782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461266c8585856001613108565b5050505050565b61267b613574565b60008290508061268961217d565b11158015612698575060005481105b156128cb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128c957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127ad5780925050506128fd565b5b6001156128c857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c35780925050506128fd565b6127ae565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129e282826040518060200160405280600081525061310e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a2f612075565b8786866040518563ffffffff1660e01b8152600401612a519493929190613e5a565b602060405180830381600087803b158015612a6b57600080fd5b505af1925050508015612a9c57506040513d601f19601f82011682018060405250810190612a999190613a36565b60015b612b16573d8060008114612acc576040519150601f19603f3d011682016040523d82523d6000602084013e612ad1565b606091505b50600081511415612b0e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612bb1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cc5565b600082905060005b60008214612be3578080612bcc906143b4565b915050600a82612bdc91906141ca565b9150612bb9565b60008167ffffffffffffffff811115612bff57612bfe6144ea565b5b6040519080825280601f01601f191660200182016040528015612c315781602001600182028036833780820191505090505b5090505b60008514612cbe57600182612c4a9190614255565b9150600a85612c5991906143fd565b6030612c659190614174565b60f81b818381518110612c7b57612c7a6144bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cb791906141ca565b9450612c35565b8093505050505b919050565b6000612cd582612673565b9050612ce981600001516000846001613102565b612cf960008383600001516120cb565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612fe557600054811015612fe45781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461305881600001516000846001613108565b6001600081548092919060010191905055505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61311b8383836001613120565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561318d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156131c8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131d56000868387613102565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561339f575061339e8773ffffffffffffffffffffffffffffffffffffffff166129e6565b5b15613465575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134146000888480600101955088612a09565b61344a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156133a557826000541461346057600080fd5b6134d1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613466575b8160008190555050506134e76000868387613108565b5050505050565b8280546134fa90614351565b90600052602060002090601f01602090048101928261351c5760008555613563565b82601f1061353557805160ff1916838001178555613563565b82800160010185558215613563579182015b82811115613562578251825591602001919060010190613547565b5b50905061357091906135b7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135d05760008160009055506001016135b8565b5090565b60006135e76135e284614083565b61405e565b9050808382526020820190508285602086028201111561360a5761360961451e565b5b60005b8581101561363a578161362088826137bb565b84526020840193506020830192505060018101905061360d565b5050509392505050565b6000613657613652846140af565b61405e565b90508281526020810184848401111561367357613672614523565b5b61367e84828561430f565b509392505050565b6000613699613694846140e0565b61405e565b9050828152602081018484840111156136b5576136b4614523565b5b6136c084828561430f565b509392505050565b6000813590506136d78161472f565b92915050565b600082601f8301126136f2576136f1614519565b5b81356137028482602086016135d4565b91505092915050565b60008135905061371a81614746565b92915050565b60008135905061372f8161475d565b92915050565b6000815190506137448161475d565b92915050565b600082601f83011261375f5761375e614519565b5b813561376f848260208601613644565b91505092915050565b60008151905061378781614774565b92915050565b600082601f8301126137a2576137a1614519565b5b81356137b2848260208601613686565b91505092915050565b6000813590506137ca8161478b565b92915050565b6000602082840312156137e6576137e561452d565b5b60006137f4848285016136c8565b91505092915050565b600080604083850312156138145761381361452d565b5b6000613822858286016136c8565b9250506020613833858286016136c8565b9150509250929050565b6000806000606084860312156138565761385561452d565b5b6000613864868287016136c8565b9350506020613875868287016136c8565b9250506040613886868287016137bb565b9150509250925092565b600080600080608085870312156138aa576138a961452d565b5b60006138b8878288016136c8565b94505060206138c9878288016136c8565b93505060406138da878288016137bb565b925050606085013567ffffffffffffffff8111156138fb576138fa614528565b5b6139078782880161374a565b91505092959194509250565b6000806040838503121561392a5761392961452d565b5b6000613938858286016136c8565b92505060206139498582860161370b565b9150509250929050565b6000806040838503121561396a5761396961452d565b5b6000613978858286016136c8565b9250506020613989858286016137bb565b9150509250929050565b6000602082840312156139a9576139a861452d565b5b600082013567ffffffffffffffff8111156139c7576139c6614528565b5b6139d3848285016136dd565b91505092915050565b6000602082840312156139f2576139f161452d565b5b6000613a008482850161370b565b91505092915050565b600060208284031215613a1f57613a1e61452d565b5b6000613a2d84828501613720565b91505092915050565b600060208284031215613a4c57613a4b61452d565b5b6000613a5a84828501613735565b91505092915050565b600060208284031215613a7957613a7861452d565b5b6000613a8784828501613778565b91505092915050565b600060208284031215613aa657613aa561452d565b5b600082013567ffffffffffffffff811115613ac457613ac3614528565b5b613ad08482850161378d565b91505092915050565b600060208284031215613aef57613aee61452d565b5b6000613afd848285016137bb565b91505092915050565b613b0f81614289565b82525050565b613b1e8161429b565b82525050565b6000613b2f82614126565b613b39818561413c565b9350613b4981856020860161431e565b613b5281614532565b840191505092915050565b6000613b6882614131565b613b728185614158565b9350613b8281856020860161431e565b613b8b81614532565b840191505092915050565b6000613ba182614131565b613bab8185614169565b9350613bbb81856020860161431e565b80840191505092915050565b60008154613bd481614351565b613bde8186614169565b94506001821660008114613bf95760018114613c0a57613c3d565b60ff19831686528186019350613c3d565b613c1385614111565b60005b83811015613c3557815481890152600182019150602081019050613c16565b838801955050505b50505092915050565b6000613c53600683614158565b9150613c5e82614543565b602082019050919050565b6000613c76602683614158565b9150613c818261456c565b604082019050919050565b6000613c99600a83614158565b9150613ca4826145bb565b602082019050919050565b6000613cbc601683614158565b9150613cc7826145e4565b602082019050919050565b6000613cdf601683614158565b9150613cea8261460d565b602082019050919050565b6000613d02601283614158565b9150613d0d82614636565b602082019050919050565b6000613d25601583614158565b9150613d308261465f565b602082019050919050565b6000613d48602083614158565b9150613d5382614688565b602082019050919050565b6000613d6b601683614158565b9150613d76826146b1565b602082019050919050565b6000613d8e60008361414d565b9150613d99826146da565b600082019050919050565b6000613db1600e83614158565b9150613dbc826146dd565b602082019050919050565b6000613dd4600c83614158565b9150613ddf82614706565b602082019050919050565b613df381614305565b82525050565b6000613e058286613bc7565b9150613e118285613b96565b9150613e1d8284613b96565b9150819050949350505050565b6000613e3582613d81565b9150819050919050565b6000602082019050613e546000830184613b06565b92915050565b6000608082019050613e6f6000830187613b06565b613e7c6020830186613b06565b613e896040830185613dea565b8181036060830152613e9b8184613b24565b905095945050505050565b6000602082019050613ebb6000830184613b15565b92915050565b60006020820190508181036000830152613edb8184613b5d565b905092915050565b60006020820190508181036000830152613efc81613c46565b9050919050565b60006020820190508181036000830152613f1c81613c69565b9050919050565b60006020820190508181036000830152613f3c81613c8c565b9050919050565b60006020820190508181036000830152613f5c81613caf565b9050919050565b60006020820190508181036000830152613f7c81613cd2565b9050919050565b60006020820190508181036000830152613f9c81613cf5565b9050919050565b60006020820190508181036000830152613fbc81613d18565b9050919050565b60006020820190508181036000830152613fdc81613d3b565b9050919050565b60006020820190508181036000830152613ffc81613d5e565b9050919050565b6000602082019050818103600083015261401c81613da4565b9050919050565b6000602082019050818103600083015261403c81613dc7565b9050919050565b60006020820190506140586000830184613dea565b92915050565b6000614068614079565b90506140748282614383565b919050565b6000604051905090565b600067ffffffffffffffff82111561409e5761409d6144ea565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140ca576140c96144ea565b5b6140d382614532565b9050602081019050919050565b600067ffffffffffffffff8211156140fb576140fa6144ea565b5b61410482614532565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061417f82614305565b915061418a83614305565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141bf576141be61442e565b5b828201905092915050565b60006141d582614305565b91506141e083614305565b9250826141f0576141ef61445d565b5b828204905092915050565b600061420682614305565b915061421183614305565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561424a5761424961442e565b5b828202905092915050565b600061426082614305565b915061426b83614305565b92508282101561427e5761427d61442e565b5b828203905092915050565b6000614294826142e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006142de82614289565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561433c578082015181840152602081019050614321565b8381111561434b576000848401525b50505050565b6000600282049050600182168061436957607f821691505b6020821081141561437d5761437c61448c565b5b50919050565b61438c82614532565b810181811067ffffffffffffffff821117156143ab576143aa6144ea565b5b80604052505050565b60006143bf82614305565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143f2576143f161442e565b5b600182019050919050565b600061440882614305565b915061441383614305565b9250826144235761442261445d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61473881614289565b811461474357600080fd5b50565b61474f8161429b565b811461475a57600080fd5b50565b614766816142a7565b811461477157600080fd5b50565b61477d816142d3565b811461478857600080fd5b50565b61479481614305565b811461479f57600080fd5b5056fea2646970667358221220bc7721b3d08e806003979443bb660f9c7907a70bcf5e864f5da2ea2b8e394c8b64736f6c63430008070033697066733a2f2f516d5061535157774877685758584747504b5a4d745547736b6b7a64716b79335743417969536a53346b55674e38

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80638069876d11610123578063c87b56dd116100ab578063e8a3d4851161006f578063e8a3d48514610778578063e985e9c5146107a3578063edbb99bf146107e0578063f2fde38b14610809578063f43a22dc146108325761021a565b8063c87b56dd146106a7578063cd7c0326146106e4578063db4a0f611461070f578063dc8e92ea14610738578063e5225381146107615761021a565b8063a035b1fe116100f2578063a035b1fe146105e3578063a0712d681461060e578063a22cb4651461062a578063b88d4fde14610653578063c66828621461067c5761021a565b80638069876d146105395780638da5cb5b14610564578063938e3d7b1461058f57806395d89b41146105b85761021a565b80633d2abb99116101a65780635c975abb116101755780635c975abb146104525780636352211e1461047d5780636c0360eb146104ba57806370a08231146104e5578063715018a6146105225761021a565b80633d2abb99146103ac57806342842e0e146103d5578063463fff79146103fe57806355f804b3146104295761021a565b8063095ea7b3116101ed578063095ea7b3146102ed57806318160ddd1461031657806323b872dd1461034157806332cb6b0c1461036a5780633ccfd60b146103955761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613a09565b61085d565b6040516102539190613ea6565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906139dc565b61093f565b005b34801561029157600080fd5b5061029a610a37565b6040516102a79190613ec1565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613ad9565b610ac9565b6040516102e49190613e3f565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613953565b610b45565b005b34801561032257600080fd5b5061032b610c50565b6040516103389190614043565b60405180910390f35b34801561034d57600080fd5b506103686004803603810190610363919061383d565b610c67565b005b34801561037657600080fd5b5061037f610c77565b60405161038c9190614043565b60405180910390f35b3480156103a157600080fd5b506103aa610c7d565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190613ad9565b610e14565b005b3480156103e157600080fd5b506103fc60048036038101906103f7919061383d565b610ef9565b005b34801561040a57600080fd5b50610413610f19565b6040516104209190614043565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613a90565b610f1e565b005b34801561045e57600080fd5b50610467611013565b6040516104749190613ea6565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613ad9565b611026565b6040516104b19190613e3f565b60405180910390f35b3480156104c657600080fd5b506104cf61103c565b6040516104dc9190613ec1565b60405180910390f35b3480156104f157600080fd5b5061050c600480360381019061050791906137d0565b6110ca565b6040516105199190614043565b60405180910390f35b34801561052e57600080fd5b5061053761119a565b005b34801561054557600080fd5b5061054e611222565b60405161055b9190614043565b60405180910390f35b34801561057057600080fd5b50610579611228565b6040516105869190613e3f565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613a90565b611252565b005b3480156105c457600080fd5b506105cd611347565b6040516105da9190613ec1565b60405180910390f35b3480156105ef57600080fd5b506105f86113d9565b6040516106059190614043565b60405180910390f35b61062860048036038101906106239190613ad9565b6113df565b005b34801561063657600080fd5b50610651600480360381019061064c9190613913565b611682565b005b34801561065f57600080fd5b5061067a60048036038101906106759190613890565b6117fa565b005b34801561068857600080fd5b50610691611876565b60405161069e9190613ec1565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613ad9565b6118af565b6040516106db9190613ec1565b60405180910390f35b3480156106f057600080fd5b506106f961198e565b6040516107069190613e3f565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190613ad9565b6119a6565b005b34801561074457600080fd5b5061075f600480360381019061075a9190613993565b611a8b565b005b34801561076d57600080fd5b50610776611bb8565b005b34801561078457600080fd5b5061078d611ca7565b60405161079a9190613ec1565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906137fd565b611d35565b6040516107d79190613ea6565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190613ad9565b611e29565b005b34801561081557600080fd5b50610830600480360381019061082b91906137d0565b611f0e565b005b34801561083e57600080fd5b50610847612006565b6040516108549190614043565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093857506109378261200b565b5b9050919050565b610947612075565b73ffffffffffffffffffffffffffffffffffffffff16610965611228565b73ffffffffffffffffffffffffffffffffffffffff1614806109db575061098a612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190613fc3565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a4690614351565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290614351565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b5050505050905090565b6000610ad48261207d565b610b0a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5082611026565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd7612075565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c095750610c0781610c02612075565b611d35565b155b15610c40576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4b8383836120cb565b505050565b6000610c5a61217d565b6001546000540303905090565b610c72838383612182565b505050565b600d5481565b610c85612075565b73ffffffffffffffffffffffffffffffffffffffff16610ca3611228565b73ffffffffffffffffffffffffffffffffffffffff161480610d195750610cc8612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613fc3565b60405180910390fd5b60004790506000610d67612075565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d8a90613e2a565b60006040518083038185875af1925050503d8060008114610dc7576040519150601f19603f3d011682016040523d82523d6000602084013e610dcc565b606091505b5050905080610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790614003565b60405180910390fd5b5050565b610e1c612075565b73ffffffffffffffffffffffffffffffffffffffff16610e3a611228565b73ffffffffffffffffffffffffffffffffffffffff161480610eb05750610e5f612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690613fc3565b60405180910390fd5b80600c8190555050565b610f14838383604051806020016040528060008152506117fa565b505050565b600481565b610f26612075565b73ffffffffffffffffffffffffffffffffffffffff16610f44611228565b73ffffffffffffffffffffffffffffffffffffffff161480610fba5750610f69612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090613fc3565b60405180910390fd5b80600a908051906020019061100f9291906134ee565b5050565b600f60009054906101000a900460ff1681565b600061103182612673565b600001519050919050565b600a805461104990614351565b80601f016020809104026020016040519081016040528092919081815260200182805461107590614351565b80156110c25780601f10611097576101008083540402835291602001916110c2565b820191906000526020600020905b8154815290600101906020018083116110a557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611132576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111a2612075565b73ffffffffffffffffffffffffffffffffffffffff166111c0611228565b73ffffffffffffffffffffffffffffffffffffffff1614611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d90613fc3565b60405180910390fd5b6112206000612902565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61125a612075565b73ffffffffffffffffffffffffffffffffffffffff16611278611228565b73ffffffffffffffffffffffffffffffffffffffff1614806112ee575061129d612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132490613fc3565b60405180910390fd5b80600b90805190602001906113439291906134ee565b5050565b60606003805461135690614351565b80601f016020809104026020016040519081016040528092919081815260200182805461138290614351565b80156113cf5780601f106113a4576101008083540402835291602001916113cf565b820191906000526020600020905b8154815290600101906020018083116113b257829003601f168201915b5050505050905090565b600e5481565b60006113e9612075565b9050600f60009054906101000a900460ff161561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290613ee3565b60405180910390fd5b81611444610c50565b61144e9190614174565b600d541015611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990613f83565b60405180910390fd5b600082116114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90613f23565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90614023565b60405180910390fd5b81600a1015611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90613f43565b60405180910390fd5b61158f610c50565b600c54106115e05781600410156115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290613f63565b60405180910390fd5b611674565b81600a1015611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90613f43565b60405180910390fd5b34600e548361163391906141fb565b14611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90613fe3565b60405180910390fd5b5b61167e81836129c8565b5050565b61168a612075565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ef576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116fc612075565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117a9612075565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ee9190613ea6565b60405180910390a35050565b611805848484612182565b6118248373ffffffffffffffffffffffffffffffffffffffff166129e6565b8015611839575061183784848484612a09565b155b15611870576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606118ba8261207d565b6118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090613fa3565b60405180910390fd5b6000600a805461190890614351565b9050116119245760405180602001604052806000815250611987565b600a61192f83612b69565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161197793929190613df9565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b6119ae612075565b73ffffffffffffffffffffffffffffffffffffffff166119cc611228565b73ffffffffffffffffffffffffffffffffffffffff161480611a4257506119f1612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613fc3565b60405180910390fd5b80600e8190555050565b611a93612075565b73ffffffffffffffffffffffffffffffffffffffff16611ab1611228565b73ffffffffffffffffffffffffffffffffffffffff161480611b275750611ad6612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d90613fc3565b60405180910390fd5b60008151905060005b81811015611bb3576000838281518110611b8c57611b8b6144bb565b5b60200260200101519050611b9f81612cca565b508080611bab906143b4565b915050611b6f565b505050565b611bc0612075565b73ffffffffffffffffffffffffffffffffffffffff16611bde611228565b73ffffffffffffffffffffffffffffffffffffffff161480611c545750611c03612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613fc3565b60405180910390fd5b611ca5611c9e612075565b60056129c8565b565b600b8054611cb490614351565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce090614351565b8015611d2d5780601f10611d0257610100808354040283529160200191611d2d565b820191906000526020600020905b815481529060010190602001808311611d1057829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611d9f9190613e3f565b60206040518083038186803b158015611db757600080fd5b505afa158015611dcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611def9190613a63565b73ffffffffffffffffffffffffffffffffffffffff161415611e15576001915050611e23565b611e1f848461306e565b9150505b92915050565b611e31612075565b73ffffffffffffffffffffffffffffffffffffffff16611e4f611228565b73ffffffffffffffffffffffffffffffffffffffff161480611ec55750611e74612075565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90613fc3565b60405180910390fd5b80600d8190555050565b611f16612075565b73ffffffffffffffffffffffffffffffffffffffff16611f34611228565b73ffffffffffffffffffffffffffffffffffffffff1614611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190613fc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff190613f03565b60405180910390fd5b61200381612902565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161208861217d565b11158015612097575060005482105b80156120c4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061218d82612673565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121b4612075565b73ffffffffffffffffffffffffffffffffffffffff1614806121e757506121e682600001516121e1612075565b611d35565b5b8061222c57506121f5612075565b73ffffffffffffffffffffffffffffffffffffffff1661221484610ac9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612265576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122ce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612335576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123428585856001613102565b61235260008484600001516120cb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612603576000548110156126025782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461266c8585856001613108565b5050505050565b61267b613574565b60008290508061268961217d565b11158015612698575060005481105b156128cb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128c957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127ad5780925050506128fd565b5b6001156128c857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c35780925050506128fd565b6127ae565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129e282826040518060200160405280600081525061310e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a2f612075565b8786866040518563ffffffff1660e01b8152600401612a519493929190613e5a565b602060405180830381600087803b158015612a6b57600080fd5b505af1925050508015612a9c57506040513d601f19601f82011682018060405250810190612a999190613a36565b60015b612b16573d8060008114612acc576040519150601f19603f3d011682016040523d82523d6000602084013e612ad1565b606091505b50600081511415612b0e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612bb1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cc5565b600082905060005b60008214612be3578080612bcc906143b4565b915050600a82612bdc91906141ca565b9150612bb9565b60008167ffffffffffffffff811115612bff57612bfe6144ea565b5b6040519080825280601f01601f191660200182016040528015612c315781602001600182028036833780820191505090505b5090505b60008514612cbe57600182612c4a9190614255565b9150600a85612c5991906143fd565b6030612c659190614174565b60f81b818381518110612c7b57612c7a6144bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cb791906141ca565b9450612c35565b8093505050505b919050565b6000612cd582612673565b9050612ce981600001516000846001613102565b612cf960008383600001516120cb565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612fe557600054811015612fe45781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461305881600001516000846001613108565b6001600081548092919060010191905055505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61311b8383836001613120565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561318d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156131c8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131d56000868387613102565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561339f575061339e8773ffffffffffffffffffffffffffffffffffffffff166129e6565b5b15613465575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134146000888480600101955088612a09565b61344a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156133a557826000541461346057600080fd5b6134d1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613466575b8160008190555050506134e76000868387613108565b5050505050565b8280546134fa90614351565b90600052602060002090601f01602090048101928261351c5760008555613563565b82601f1061353557805160ff1916838001178555613563565b82800160010185558215613563579182015b82811115613562578251825591602001919060010190613547565b5b50905061357091906135b7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135d05760008160009055506001016135b8565b5090565b60006135e76135e284614083565b61405e565b9050808382526020820190508285602086028201111561360a5761360961451e565b5b60005b8581101561363a578161362088826137bb565b84526020840193506020830192505060018101905061360d565b5050509392505050565b6000613657613652846140af565b61405e565b90508281526020810184848401111561367357613672614523565b5b61367e84828561430f565b509392505050565b6000613699613694846140e0565b61405e565b9050828152602081018484840111156136b5576136b4614523565b5b6136c084828561430f565b509392505050565b6000813590506136d78161472f565b92915050565b600082601f8301126136f2576136f1614519565b5b81356137028482602086016135d4565b91505092915050565b60008135905061371a81614746565b92915050565b60008135905061372f8161475d565b92915050565b6000815190506137448161475d565b92915050565b600082601f83011261375f5761375e614519565b5b813561376f848260208601613644565b91505092915050565b60008151905061378781614774565b92915050565b600082601f8301126137a2576137a1614519565b5b81356137b2848260208601613686565b91505092915050565b6000813590506137ca8161478b565b92915050565b6000602082840312156137e6576137e561452d565b5b60006137f4848285016136c8565b91505092915050565b600080604083850312156138145761381361452d565b5b6000613822858286016136c8565b9250506020613833858286016136c8565b9150509250929050565b6000806000606084860312156138565761385561452d565b5b6000613864868287016136c8565b9350506020613875868287016136c8565b9250506040613886868287016137bb565b9150509250925092565b600080600080608085870312156138aa576138a961452d565b5b60006138b8878288016136c8565b94505060206138c9878288016136c8565b93505060406138da878288016137bb565b925050606085013567ffffffffffffffff8111156138fb576138fa614528565b5b6139078782880161374a565b91505092959194509250565b6000806040838503121561392a5761392961452d565b5b6000613938858286016136c8565b92505060206139498582860161370b565b9150509250929050565b6000806040838503121561396a5761396961452d565b5b6000613978858286016136c8565b9250506020613989858286016137bb565b9150509250929050565b6000602082840312156139a9576139a861452d565b5b600082013567ffffffffffffffff8111156139c7576139c6614528565b5b6139d3848285016136dd565b91505092915050565b6000602082840312156139f2576139f161452d565b5b6000613a008482850161370b565b91505092915050565b600060208284031215613a1f57613a1e61452d565b5b6000613a2d84828501613720565b91505092915050565b600060208284031215613a4c57613a4b61452d565b5b6000613a5a84828501613735565b91505092915050565b600060208284031215613a7957613a7861452d565b5b6000613a8784828501613778565b91505092915050565b600060208284031215613aa657613aa561452d565b5b600082013567ffffffffffffffff811115613ac457613ac3614528565b5b613ad08482850161378d565b91505092915050565b600060208284031215613aef57613aee61452d565b5b6000613afd848285016137bb565b91505092915050565b613b0f81614289565b82525050565b613b1e8161429b565b82525050565b6000613b2f82614126565b613b39818561413c565b9350613b4981856020860161431e565b613b5281614532565b840191505092915050565b6000613b6882614131565b613b728185614158565b9350613b8281856020860161431e565b613b8b81614532565b840191505092915050565b6000613ba182614131565b613bab8185614169565b9350613bbb81856020860161431e565b80840191505092915050565b60008154613bd481614351565b613bde8186614169565b94506001821660008114613bf95760018114613c0a57613c3d565b60ff19831686528186019350613c3d565b613c1385614111565b60005b83811015613c3557815481890152600182019150602081019050613c16565b838801955050505b50505092915050565b6000613c53600683614158565b9150613c5e82614543565b602082019050919050565b6000613c76602683614158565b9150613c818261456c565b604082019050919050565b6000613c99600a83614158565b9150613ca4826145bb565b602082019050919050565b6000613cbc601683614158565b9150613cc7826145e4565b602082019050919050565b6000613cdf601683614158565b9150613cea8261460d565b602082019050919050565b6000613d02601283614158565b9150613d0d82614636565b602082019050919050565b6000613d25601583614158565b9150613d308261465f565b602082019050919050565b6000613d48602083614158565b9150613d5382614688565b602082019050919050565b6000613d6b601683614158565b9150613d76826146b1565b602082019050919050565b6000613d8e60008361414d565b9150613d99826146da565b600082019050919050565b6000613db1600e83614158565b9150613dbc826146dd565b602082019050919050565b6000613dd4600c83614158565b9150613ddf82614706565b602082019050919050565b613df381614305565b82525050565b6000613e058286613bc7565b9150613e118285613b96565b9150613e1d8284613b96565b9150819050949350505050565b6000613e3582613d81565b9150819050919050565b6000602082019050613e546000830184613b06565b92915050565b6000608082019050613e6f6000830187613b06565b613e7c6020830186613b06565b613e896040830185613dea565b8181036060830152613e9b8184613b24565b905095945050505050565b6000602082019050613ebb6000830184613b15565b92915050565b60006020820190508181036000830152613edb8184613b5d565b905092915050565b60006020820190508181036000830152613efc81613c46565b9050919050565b60006020820190508181036000830152613f1c81613c69565b9050919050565b60006020820190508181036000830152613f3c81613c8c565b9050919050565b60006020820190508181036000830152613f5c81613caf565b9050919050565b60006020820190508181036000830152613f7c81613cd2565b9050919050565b60006020820190508181036000830152613f9c81613cf5565b9050919050565b60006020820190508181036000830152613fbc81613d18565b9050919050565b60006020820190508181036000830152613fdc81613d3b565b9050919050565b60006020820190508181036000830152613ffc81613d5e565b9050919050565b6000602082019050818103600083015261401c81613da4565b9050919050565b6000602082019050818103600083015261403c81613dc7565b9050919050565b60006020820190506140586000830184613dea565b92915050565b6000614068614079565b90506140748282614383565b919050565b6000604051905090565b600067ffffffffffffffff82111561409e5761409d6144ea565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140ca576140c96144ea565b5b6140d382614532565b9050602081019050919050565b600067ffffffffffffffff8211156140fb576140fa6144ea565b5b61410482614532565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061417f82614305565b915061418a83614305565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141bf576141be61442e565b5b828201905092915050565b60006141d582614305565b91506141e083614305565b9250826141f0576141ef61445d565b5b828204905092915050565b600061420682614305565b915061421183614305565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561424a5761424961442e565b5b828202905092915050565b600061426082614305565b915061426b83614305565b92508282101561427e5761427d61442e565b5b828203905092915050565b6000614294826142e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006142de82614289565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561433c578082015181840152602081019050614321565b8381111561434b576000848401525b50505050565b6000600282049050600182168061436957607f821691505b6020821081141561437d5761437c61448c565b5b50919050565b61438c82614532565b810181811067ffffffffffffffff821117156143ab576143aa6144ea565b5b80604052505050565b60006143bf82614305565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143f2576143f161442e565b5b600182019050919050565b600061440882614305565b915061441383614305565b9250826144235761442261445d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61473881614289565b811461474357600080fd5b50565b61474f8161429b565b811461475a57600080fd5b50565b614766816142a7565b811461477157600080fd5b50565b61477d816142d3565b811461478857600080fd5b50565b61479481614305565b811461479f57600080fd5b5056fea2646970667358221220bc7721b3d08e806003979443bb660f9c7907a70bcf5e864f5da2ea2b8e394c8b64736f6c63430008070033

Deployed Bytecode Sourcemap

48648:3431:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31181:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50804:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34566:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36069:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35632:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30430:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36926:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49114:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50496:209;;;;;;;;;;;;;:::i;:::-;;51335:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37167:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48974:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50893:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49196:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34375:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48700:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31550:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5378:103;;;;;;;;;;;;;:::i;:::-;;49024:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4727:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51001:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34735:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49153:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49296:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36345:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37423:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48823:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51714:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48876:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51125:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51468:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50713:83;;;;;;;;;;;;;:::i;:::-;;48733;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50043:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51224:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5636:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49068:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31181:305;31283:4;31335:25;31320:40;;;:11;:40;;;;:105;;;;31392:33;31377:48;;;:11;:48;;;;31320:105;:158;;;;31442:36;31466:11;31442:23;:36::i;:::-;31320:158;31300:178;;31181:305;;;:::o;50804:81::-;27660:12;:10;:12::i;:::-;27649:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;27686:12;:10;:12::i;:::-;27676:22;;:6;;;;;;;;;;;:22;;;27649:49;27641:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50871:6:::1;50862;;:15;;;;;;;;;;;;;;;;;;50804:81:::0;:::o;34566:100::-;34620:13;34653:5;34646:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34566:100;:::o;36069:204::-;36137:7;36162:16;36170:7;36162;:16::i;:::-;36157:64;;36187:34;;;;;;;;;;;;;;36157:64;36241:15;:24;36257:7;36241:24;;;;;;;;;;;;;;;;;;;;;36234:31;;36069:204;;;:::o;35632:371::-;35705:13;35721:24;35737:7;35721:15;:24::i;:::-;35705:40;;35766:5;35760:11;;:2;:11;;;35756:48;;;35780:24;;;;;;;;;;;;;;35756:48;35837:5;35821:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35847:37;35864:5;35871:12;:10;:12::i;:::-;35847:16;:37::i;:::-;35846:38;35821:63;35817:138;;;35908:35;;;;;;;;;;;;;;35817:138;35967:28;35976:2;35980:7;35989:5;35967:8;:28::i;:::-;35694:309;35632:371;;:::o;30430:303::-;30474:7;30699:15;:13;:15::i;:::-;30684:12;;30668:13;;:28;:46;30661:53;;30430:303;:::o;36926:170::-;37060:28;37070:4;37076:2;37080:7;37060:9;:28::i;:::-;36926:170;;;:::o;49114:32::-;;;;:::o;50496:209::-;27660:12;:10;:12::i;:::-;27649:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;27686:12;:10;:12::i;:::-;27676:22;;:6;;;;;;;;;;;:22;;;27649:49;27641:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50546:15:::1;50564:21;50546:39;;50597:12;50615;:10;:12::i;:::-;:17;;50640:7;50615:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50596:56;;;50671:7;50663:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;50535:170;;50496:209::o:0;51335:121::-;27660:12;:10;:12::i;:::-;27649:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;27686:12;:10;:12::i;:::-;27676:22;;:6;;;;;;;;;;;:22;;;27649:49;27641:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;51435:13:::1;51417:15;:31;;;;51335:121:::0;:::o;37167:185::-;37305:39;37322:4;37328:2;37332:7;37305:39;;;;;;;;;;;;:16;:39::i;:::-;37167:185;;;:::o;48974:43::-;49016:1;48974:43;:::o;50893:100::-;27660:12;:10;:12::i;:::-;27649:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;27686:12;:10;:12::i;:::-;27676:22;;:6;;;;;;;;;;;:22;;;27649:49;27641:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50977:8:::1;50967:7;:18;;;;;;;;;;;;:::i;:::-;;50893:100:::0;:::o;49196:25::-;;;;;;;;;;;;;:::o;34375:124::-;34439:7;34466:20;34478:7;34466:11;:20::i;:::-;:25;;;34459:32;;34375:124;;;:::o;48700:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31550:206::-;31614:7;31655:1;31638:19;;:5;:19;;;31634:60;;;31666:28;;;;;;;;;;;;;;31634:60;31720:12;:19;31733:5;31720:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31712:36;;31705:43;;31550:206;;;:::o;5378:103::-;4958:12;:10;:12::i;:::-;4947:23;;:7;:5;:7::i;:::-;:23;;;4939:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5443:30:::1;5470:1;5443:18;:30::i;:::-;5378:103::o:0;49024:37::-;;;;:::o;4727:87::-;4773:7;4800:6;;;;;;;;;;;4793:13;;4727:87;:::o;51001:116::-;27660:12;:10;:12::i;:::-;27649:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;27686:12;:10;:12::i;:::-;27676:22;;:6;;;;;;;;;;;:22;;;27649:49;27641:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;51097:12:::1;51083:11;:26;;;;;;;;;;;;:::i;:::-;;51001:116:::0;:::o;34735:104::-;34791:13;34824:7;34817:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34735:104;:::o;49153:34::-;;;;:::o;49296:733::-;49355:15;49373:12;:10;:12::i;:::-;49355:30;;49405:6;;;;;;;;;;;49404:7;49396:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;49471:7;49455:13;:11;:13::i;:::-;:23;;;;:::i;:::-;49441:10;;:37;;49433:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49530:1;49520:7;:11;49512:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;49578:7;49565:20;;:9;:20;;;49557:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49635:7;49105:2;49621:21;;49613:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49711:13;:11;:13::i;:::-;49692:15;;:32;49689:291;;49767:7;49016:1;49748:26;;49740:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49689:291;;;49855:7;49105:2;49841:21;;49833:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49932:9;49923:5;;49913:7;:15;;;;:::i;:::-;:28;49905:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49689:291;49994:27;50004:7;50013;49994:9;:27::i;:::-;49344:685;49296:733;:::o;36345:279::-;36448:12;:10;:12::i;:::-;36436:24;;:8;:24;;;36432:54;;;36469:17;;;;;;;;;;;;;;36432:54;36544:8;36499:18;:32;36518:12;:10;:12::i;:::-;36499:32;;;;;;;;;;;;;;;:42;36532:8;36499:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36597:8;36568:48;;36583:12;:10;:12::i;:::-;36568:48;;;36607:8;36568:48;;;;;;:::i;:::-;;;;;;;;36345:279;;:::o;37423:369::-;37590:28;37600:4;37606:2;37610:7;37590:9;:28::i;:::-;37633:15;:2;:13;;;:15::i;:::-;:76;;;;;37653:56;37684:4;37690:2;37694:7;37703:5;37653:30;:56::i;:::-;37652:57;37633:76;37629:156;;;37733:40;;;;;;;;;;;;;;37629:156;37423:369;;;;:::o;48823:46::-;;;;;;;;;;;;;;;;;;;:::o;51714:362::-;51780:13;51814:17;51822:8;51814:7;:17::i;:::-;51806:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;51899:1;51881:7;51875:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;51957:7;51981:26;51998:8;51981:16;:26::i;:::-;52024:13;;;;;;;;;;;;;;;;;51924:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51875:193;51868:200;;51714:362;;;:::o;48876:89::-;48923:42;48876:89;:::o;51125:91::-;27660:12;:10;:12::i;:::-;27649:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;27686:12;:10;:12::i;:::-;27676:22;;:6;;;;;;;;;;;:22;;;27649:49;27641:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;51200:8:::1;51192:5;:16;;;;51125:91:::0;:::o;51468:238::-;27660:12;:10;:12::i;:::-;27649:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;27686:12;:10;:12::i;:::-;27676:22;;:6;;;;;;;;;;;:22;;;27649:49;27641:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;51544:11:::1;51558:8;:15;51544:29;;51589:9;51584:115;51604:3;51600:1;:7;51584:115;;;51629:15;51647:8;51656:1;51647:11;;;;;;;;:::i;:::-;;;;;;;;51629:29;;51673:14;51679:7;51673:5;:14::i;:::-;51614:85;51609:3;;;;;:::i;:::-;;;;51584:115;;;;51533:173;51468:238:::0;:::o;50713:83::-;27660:12;:10;:12::i;:::-;27649:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;27686:12;:10;:12::i;:::-;27676:22;;:6;;;;;;;;;;;:22;;;27649:49;27641:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50762:26:::1;50772:12;:10;:12::i;:::-;50786:1;50762:9;:26::i;:::-;50713:83::o:0;48733:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50043:445::-;50168:4;50253:27;48923:42;50253:65;;50374:8;50333:49;;50341:13;:21;;;50363:5;50341:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50333:49;;;50329:93;;;50406:4;50399:11;;;;;50329:93;50441:39;50464:5;50471:8;50441:22;:39::i;:::-;50434:46;;;50043:445;;;;;:::o;51224:103::-;27660:12;:10;:12::i;:::-;27649:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;27686:12;:10;:12::i;:::-;27676:22;;:6;;;;;;;;;;;:22;;;27649:49;27641:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;51310:9:::1;51297:10;:22;;;;51224:103:::0;:::o;5636:201::-;4958:12;:10;:12::i;:::-;4947:23;;:7;:5;:7::i;:::-;:23;;;4939:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5745:1:::1;5725:22;;:8;:22;;;;5717:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5801:28;5820:8;5801:18;:28::i;:::-;5636:201:::0;:::o;49068:39::-;49105:2;49068:39;:::o;26281:157::-;26366:4;26405:25;26390:40;;;:11;:40;;;;26383:47;;26281:157;;;:::o;3468:98::-;3521:7;3548:10;3541:17;;3468:98;:::o;38047:187::-;38104:4;38147:7;38128:15;:13;:15::i;:::-;:26;;:53;;;;;38168:13;;38158:7;:23;38128:53;:98;;;;;38199:11;:20;38211:7;38199:20;;;;;;;;;;;:27;;;;;;;;;;;;38198:28;38128:98;38121:105;;38047:187;;;:::o;45658:196::-;45800:2;45773:15;:24;45789:7;45773:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45838:7;45834:2;45818:28;;45827:5;45818:28;;;;;;;;;;;;45658:196;;;:::o;30154:92::-;30210:7;30154:92;:::o;41160:2112::-;41275:35;41313:20;41325:7;41313:11;:20::i;:::-;41275:58;;41346:22;41388:13;:18;;;41372:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;41423:50;41440:13;:18;;;41460:12;:10;:12::i;:::-;41423:16;:50::i;:::-;41372:101;:154;;;;41514:12;:10;:12::i;:::-;41490:36;;:20;41502:7;41490:11;:20::i;:::-;:36;;;41372:154;41346:181;;41545:17;41540:66;;41571:35;;;;;;;;;;;;;;41540:66;41643:4;41621:26;;:13;:18;;;:26;;;41617:67;;41656:28;;;;;;;;;;;;;;41617:67;41713:1;41699:16;;:2;:16;;;41695:52;;;41724:23;;;;;;;;;;;;;;41695:52;41760:43;41782:4;41788:2;41792:7;41801:1;41760:21;:43::i;:::-;41868:49;41885:1;41889:7;41898:13;:18;;;41868:8;:49::i;:::-;42243:1;42213:12;:18;42226:4;42213:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42287:1;42259:12;:16;42272:2;42259:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42333:2;42305:11;:20;42317:7;42305:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;42395:15;42350:11;:20;42362:7;42350:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42663:19;42695:1;42685:7;:11;42663:33;;42756:1;42715:43;;:11;:24;42727:11;42715:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42711:445;;;42940:13;;42926:11;:27;42922:219;;;43010:13;:18;;;42978:11;:24;42990:11;42978:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;43093:13;:28;;;43051:11;:24;43063:11;43051:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42922:219;42711:445;42188:979;43203:7;43199:2;43184:27;;43193:4;43184:27;;;;;;;;;;;;43222:42;43243:4;43249:2;43253:7;43262:1;43222:20;:42::i;:::-;41264:2008;;41160:2112;;;:::o;33205:1108::-;33266:21;;:::i;:::-;33300:12;33315:7;33300:22;;33383:4;33364:15;:13;:15::i;:::-;:23;;:47;;;;;33398:13;;33391:4;:20;33364:47;33360:886;;;33432:31;33466:11;:17;33478:4;33466:17;;;;;;;;;;;33432:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33507:9;:16;;;33502:729;;33578:1;33552:28;;:9;:14;;;:28;;;33548:101;;33616:9;33609:16;;;;;;33548:101;33951:261;33958:4;33951:261;;;33991:6;;;;;;;;34036:11;:17;34048:4;34036:17;;;;;;;;;;;34024:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34110:1;34084:28;;:9;:14;;;:28;;;34080:109;;34152:9;34145:16;;;;;;34080:109;33951:261;;;33502:729;33413:833;33360:886;34274:31;;;;;;;;;;;;;;33205:1108;;;;:::o;5997:191::-;6071:16;6090:6;;;;;;;;;;;6071:25;;6116:8;6107:6;;:17;;;;;;;;;;;;;;;;;;6171:8;6140:40;;6161:8;6140:40;;;;;;;;;;;;6060:128;5997:191;:::o;38242:104::-;38311:27;38321:2;38325:8;38311:27;;;;;;;;;;;;:9;:27::i;:::-;38242:104;;:::o;16058:326::-;16118:4;16375:1;16353:7;:19;;;:23;16346:30;;16058:326;;;:::o;46346:667::-;46509:4;46546:2;46530:36;;;46567:12;:10;:12::i;:::-;46581:4;46587:7;46596:5;46530:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46526:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46781:1;46764:6;:13;:18;46760:235;;;46810:40;;;;;;;;;;;;;;46760:235;46953:6;46947:13;46938:6;46934:2;46930:15;46923:38;46526:480;46659:45;;;46649:55;;;:6;:55;;;;46642:62;;;46346:667;;;;;;:::o;23678:723::-;23734:13;23964:1;23955:5;:10;23951:53;;;23982:10;;;;;;;;;;;;;;;;;;;;;23951:53;24014:12;24029:5;24014:20;;24045:14;24070:78;24085:1;24077:4;:9;24070:78;;24103:8;;;;;:::i;:::-;;;;24134:2;24126:10;;;;;:::i;:::-;;;24070:78;;;24158:19;24190:6;24180:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24158:39;;24208:154;24224:1;24215:5;:10;24208:154;;24252:1;24242:11;;;;;:::i;:::-;;;24319:2;24311:5;:10;;;;:::i;:::-;24298:2;:24;;;;:::i;:::-;24285:39;;24268:6;24275;24268:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;24348:2;24339:11;;;;;:::i;:::-;;;24208:154;;;24386:6;24372:21;;;;;23678:723;;;;:::o;43501:2039::-;43561:35;43599:20;43611:7;43599:11;:20::i;:::-;43561:58;;43632:65;43654:13;:18;;;43682:1;43686:7;43695:1;43632:21;:65::i;:::-;43762:49;43779:1;43783:7;43792:13;:18;;;43762:8;:49::i;:::-;44151:1;44107:12;:32;44120:13;:18;;;44107:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44216:1;44167:12;:32;44180:13;:18;;;44167:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44344:13;:18;;;44316:11;:20;44328:7;44316:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;44422:15;44377:11;:20;44389:7;44377:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;44483:4;44453:11;:20;44465:7;44453:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;44735:19;44767:1;44757:7;:11;44735:33;;44828:1;44787:43;;:11;:24;44799:11;44787:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;44783:445;;;45012:13;;44998:11;:27;44994:219;;;45082:13;:18;;;45050:11;:24;45062:11;45050:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;45165:13;:28;;;45123:11;:24;45135:11;45123:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;44994:219;44783:445;44082:1157;45297:7;45293:1;45256:49;;45265:13;:18;;;45256:49;;;;;;;;;;;;45316:64;45337:13;:18;;;45365:1;45369:7;45378:1;45316:20;:64::i;:::-;45507:12;;:14;;;;;;;;;;;;;43550:1990;43501:2039;:::o;36695:164::-;36792:4;36816:18;:25;36835:5;36816:25;;;;;;;;;;;;;;;:35;36842:8;36816:35;;;;;;;;;;;;;;;;;;;;;;;;;36809:42;;36695:164;;;;:::o;47661:159::-;;;;;:::o;48479:158::-;;;;;:::o;38709:163::-;38832:32;38838:2;38842:8;38852:5;38859:4;38832:5;:32::i;:::-;38709:163;;;:::o;39131:1775::-;39270:20;39293:13;;39270:36;;39335:1;39321:16;;:2;:16;;;39317:48;;;39346:19;;;;;;;;;;;;;;39317:48;39392:1;39380:8;:13;39376:44;;;39402:18;;;;;;;;;;;;;;39376:44;39433:61;39463:1;39467:2;39471:12;39485:8;39433:21;:61::i;:::-;39806:8;39771:12;:16;39784:2;39771:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39870:8;39830:12;:16;39843:2;39830:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39929:2;39896:11;:25;39908:12;39896:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39996:15;39946:11;:25;39958:12;39946:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40029:20;40052:12;40029:35;;40079:11;40108:8;40093:12;:23;40079:37;;40137:4;:23;;;;;40145:15;:2;:13;;;:15::i;:::-;40137:23;40133:641;;;40181:314;40237:12;40233:2;40212:38;;40229:1;40212:38;;;;;;;;;;;;40278:69;40317:1;40321:2;40325:14;;;;;;40341:5;40278:30;:69::i;:::-;40273:174;;40383:40;;;;;;;;;;;;;;40273:174;40490:3;40474:12;:19;;40181:314;;40576:12;40559:13;;:29;40555:43;;40590:8;;;40555:43;40133:641;;;40639:120;40695:14;;;;;;40691:2;40670:40;;40687:1;40670:40;;;;;;;;;;;;40754:3;40738:12;:19;;40639:120;;40133:641;40804:12;40788:13;:28;;;;39746:1082;;40838:60;40867:1;40871:2;40875:12;40889:8;40838:20;:60::i;:::-;39259:1647;39131:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2910:201::-;2996:5;3027:6;3021:13;3012:22;;3043:62;3099:5;3043:62;:::i;:::-;2910:201;;;;:::o;3131:340::-;3187:5;3236:3;3229:4;3221:6;3217:17;3213:27;3203:122;;3244:79;;:::i;:::-;3203:122;3361:6;3348:20;3386:79;3461:3;3453:6;3446:4;3438:6;3434:17;3386:79;:::i;:::-;3377:88;;3193:278;3131:340;;;;:::o;3477:139::-;3523:5;3561:6;3548:20;3539:29;;3577:33;3604:5;3577:33;:::i;:::-;3477:139;;;;:::o;3622:329::-;3681:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:119;;;3736:79;;:::i;:::-;3698:119;3856:1;3881:53;3926:7;3917:6;3906:9;3902:22;3881:53;:::i;:::-;3871:63;;3827:117;3622:329;;;;:::o;3957:474::-;4025:6;4033;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;4335:2;4361:53;4406:7;4397:6;4386:9;4382:22;4361:53;:::i;:::-;4351:63;;4306:118;3957:474;;;;;:::o;4437:619::-;4514:6;4522;4530;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4832:2;4858:53;4903:7;4894:6;4883:9;4879:22;4858:53;:::i;:::-;4848:63;;4803:118;4960:2;4986:53;5031:7;5022:6;5011:9;5007:22;4986:53;:::i;:::-;4976:63;;4931:118;4437:619;;;;;:::o;5062:943::-;5157:6;5165;5173;5181;5230:3;5218:9;5209:7;5205:23;5201:33;5198:120;;;5237:79;;:::i;:::-;5198:120;5357:1;5382:53;5427:7;5418:6;5407:9;5403:22;5382:53;:::i;:::-;5372:63;;5328:117;5484:2;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5455:118;5612:2;5638:53;5683:7;5674:6;5663:9;5659:22;5638:53;:::i;:::-;5628:63;;5583:118;5768:2;5757:9;5753:18;5740:32;5799:18;5791:6;5788:30;5785:117;;;5821:79;;:::i;:::-;5785:117;5926:62;5980:7;5971:6;5960:9;5956:22;5926:62;:::i;:::-;5916:72;;5711:287;5062:943;;;;;;;:::o;6011:468::-;6076:6;6084;6133:2;6121:9;6112:7;6108:23;6104:32;6101:119;;;6139:79;;:::i;:::-;6101:119;6259:1;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6230:117;6386:2;6412:50;6454:7;6445:6;6434:9;6430:22;6412:50;:::i;:::-;6402:60;;6357:115;6011:468;;;;;:::o;6485:474::-;6553:6;6561;6610:2;6598:9;6589:7;6585:23;6581:32;6578:119;;;6616:79;;:::i;:::-;6578:119;6736:1;6761:53;6806:7;6797:6;6786:9;6782:22;6761:53;:::i;:::-;6751:63;;6707:117;6863:2;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6834:118;6485:474;;;;;:::o;6965:539::-;7049:6;7098:2;7086:9;7077:7;7073:23;7069:32;7066:119;;;7104:79;;:::i;:::-;7066:119;7252:1;7241:9;7237:17;7224:31;7282:18;7274:6;7271:30;7268:117;;;7304:79;;:::i;:::-;7268:117;7409:78;7479:7;7470:6;7459:9;7455:22;7409:78;:::i;:::-;7399:88;;7195:302;6965:539;;;;:::o;7510:323::-;7566:6;7615:2;7603:9;7594:7;7590:23;7586:32;7583:119;;;7621:79;;:::i;:::-;7583:119;7741:1;7766:50;7808:7;7799:6;7788:9;7784:22;7766:50;:::i;:::-;7756:60;;7712:114;7510:323;;;;:::o;7839:327::-;7897:6;7946:2;7934:9;7925:7;7921:23;7917:32;7914:119;;;7952:79;;:::i;:::-;7914:119;8072:1;8097:52;8141:7;8132:6;8121:9;8117:22;8097:52;:::i;:::-;8087:62;;8043:116;7839:327;;;;:::o;8172:349::-;8241:6;8290:2;8278:9;8269:7;8265:23;8261:32;8258:119;;;8296:79;;:::i;:::-;8258:119;8416:1;8441:63;8496:7;8487:6;8476:9;8472:22;8441:63;:::i;:::-;8431:73;;8387:127;8172:349;;;;:::o;8527:409::-;8626:6;8675:2;8663:9;8654:7;8650:23;8646:32;8643:119;;;8681:79;;:::i;:::-;8643:119;8801:1;8826:93;8911:7;8902:6;8891:9;8887:22;8826:93;:::i;:::-;8816:103;;8772:157;8527:409;;;;:::o;8942:509::-;9011:6;9060:2;9048:9;9039:7;9035:23;9031:32;9028:119;;;9066:79;;:::i;:::-;9028:119;9214:1;9203:9;9199:17;9186:31;9244:18;9236:6;9233:30;9230:117;;;9266:79;;:::i;:::-;9230:117;9371:63;9426:7;9417:6;9406:9;9402:22;9371:63;:::i;:::-;9361:73;;9157:287;8942:509;;;;:::o;9457:329::-;9516:6;9565:2;9553:9;9544:7;9540:23;9536:32;9533:119;;;9571:79;;:::i;:::-;9533:119;9691:1;9716:53;9761:7;9752:6;9741:9;9737:22;9716:53;:::i;:::-;9706:63;;9662:117;9457:329;;;;:::o;9792:118::-;9879:24;9897:5;9879:24;:::i;:::-;9874:3;9867:37;9792:118;;:::o;9916:109::-;9997:21;10012:5;9997:21;:::i;:::-;9992:3;9985:34;9916:109;;:::o;10031:360::-;10117:3;10145:38;10177:5;10145:38;:::i;:::-;10199:70;10262:6;10257:3;10199:70;:::i;:::-;10192:77;;10278:52;10323:6;10318:3;10311:4;10304:5;10300:16;10278:52;:::i;:::-;10355:29;10377:6;10355:29;:::i;:::-;10350:3;10346:39;10339:46;;10121:270;10031:360;;;;:::o;10397:364::-;10485:3;10513:39;10546:5;10513:39;:::i;:::-;10568:71;10632:6;10627:3;10568:71;:::i;:::-;10561:78;;10648:52;10693:6;10688:3;10681:4;10674:5;10670:16;10648:52;:::i;:::-;10725:29;10747:6;10725:29;:::i;:::-;10720:3;10716:39;10709:46;;10489:272;10397:364;;;;:::o;10767:377::-;10873:3;10901:39;10934:5;10901:39;:::i;:::-;10956:89;11038:6;11033:3;10956:89;:::i;:::-;10949:96;;11054:52;11099:6;11094:3;11087:4;11080:5;11076:16;11054:52;:::i;:::-;11131:6;11126:3;11122:16;11115:23;;10877:267;10767:377;;;;:::o;11174:845::-;11277:3;11314:5;11308:12;11343:36;11369:9;11343:36;:::i;:::-;11395:89;11477:6;11472:3;11395:89;:::i;:::-;11388:96;;11515:1;11504:9;11500:17;11531:1;11526:137;;;;11677:1;11672:341;;;;11493:520;;11526:137;11610:4;11606:9;11595;11591:25;11586:3;11579:38;11646:6;11641:3;11637:16;11630:23;;11526:137;;11672:341;11739:38;11771:5;11739:38;:::i;:::-;11799:1;11813:154;11827:6;11824:1;11821:13;11813:154;;;11901:7;11895:14;11891:1;11886:3;11882:11;11875:35;11951:1;11942:7;11938:15;11927:26;;11849:4;11846:1;11842:12;11837:17;;11813:154;;;11996:6;11991:3;11987:16;11980:23;;11679:334;;11493:520;;11281:738;;11174:845;;;;:::o;12025:365::-;12167:3;12188:66;12252:1;12247:3;12188:66;:::i;:::-;12181:73;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12025:365;;;:::o;12396:366::-;12538:3;12559:67;12623:2;12618:3;12559:67;:::i;:::-;12552:74;;12635:93;12724:3;12635:93;:::i;:::-;12753:2;12748:3;12744:12;12737:19;;12396:366;;;:::o;12768:::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:::-;13282:3;13303:67;13367:2;13362:3;13303:67;:::i;:::-;13296:74;;13379:93;13468:3;13379:93;:::i;:::-;13497:2;13492:3;13488:12;13481:19;;13140:366;;;:::o;13512:::-;13654:3;13675:67;13739:2;13734:3;13675:67;:::i;:::-;13668:74;;13751:93;13840:3;13751:93;:::i;:::-;13869:2;13864:3;13860:12;13853:19;;13512:366;;;:::o;13884:::-;14026:3;14047:67;14111:2;14106:3;14047:67;:::i;:::-;14040:74;;14123:93;14212:3;14123:93;:::i;:::-;14241:2;14236:3;14232:12;14225:19;;13884:366;;;:::o;14256:::-;14398:3;14419:67;14483:2;14478:3;14419:67;:::i;:::-;14412:74;;14495:93;14584:3;14495:93;:::i;:::-;14613:2;14608:3;14604:12;14597:19;;14256:366;;;:::o;14628:::-;14770:3;14791:67;14855:2;14850:3;14791:67;:::i;:::-;14784:74;;14867:93;14956:3;14867:93;:::i;:::-;14985:2;14980:3;14976:12;14969:19;;14628:366;;;:::o;15000:::-;15142:3;15163:67;15227:2;15222:3;15163:67;:::i;:::-;15156:74;;15239:93;15328:3;15239:93;:::i;:::-;15357:2;15352:3;15348:12;15341:19;;15000:366;;;:::o;15372:398::-;15531:3;15552:83;15633:1;15628:3;15552:83;:::i;:::-;15545:90;;15644:93;15733:3;15644:93;:::i;:::-;15762:1;15757:3;15753:11;15746:18;;15372:398;;;:::o;15776:366::-;15918:3;15939:67;16003:2;15998:3;15939:67;:::i;:::-;15932:74;;16015:93;16104:3;16015:93;:::i;:::-;16133:2;16128:3;16124:12;16117:19;;15776:366;;;:::o;16148:::-;16290:3;16311:67;16375:2;16370:3;16311:67;:::i;:::-;16304:74;;16387:93;16476:3;16387:93;:::i;:::-;16505:2;16500:3;16496:12;16489:19;;16148:366;;;:::o;16520:118::-;16607:24;16625:5;16607:24;:::i;:::-;16602:3;16595:37;16520:118;;:::o;16644:589::-;16869:3;16891:92;16979:3;16970:6;16891:92;:::i;:::-;16884:99;;17000:95;17091:3;17082:6;17000:95;:::i;:::-;16993:102;;17112:95;17203:3;17194:6;17112:95;:::i;:::-;17105:102;;17224:3;17217:10;;16644:589;;;;;;:::o;17239:379::-;17423:3;17445:147;17588:3;17445:147;:::i;:::-;17438:154;;17609:3;17602:10;;17239:379;;;:::o;17624:222::-;17717:4;17755:2;17744:9;17740:18;17732:26;;17768:71;17836:1;17825:9;17821:17;17812:6;17768:71;:::i;:::-;17624:222;;;;:::o;17852:640::-;18047:4;18085:3;18074:9;18070:19;18062:27;;18099:71;18167:1;18156:9;18152:17;18143:6;18099:71;:::i;:::-;18180:72;18248:2;18237:9;18233:18;18224:6;18180:72;:::i;:::-;18262;18330:2;18319:9;18315:18;18306:6;18262:72;:::i;:::-;18381:9;18375:4;18371:20;18366:2;18355:9;18351:18;18344:48;18409:76;18480:4;18471:6;18409:76;:::i;:::-;18401:84;;17852:640;;;;;;;:::o;18498:210::-;18585:4;18623:2;18612:9;18608:18;18600:26;;18636:65;18698:1;18687:9;18683:17;18674:6;18636:65;:::i;:::-;18498:210;;;;:::o;18714:313::-;18827:4;18865:2;18854:9;18850:18;18842:26;;18914:9;18908:4;18904:20;18900:1;18889:9;18885:17;18878:47;18942:78;19015:4;19006:6;18942:78;:::i;:::-;18934:86;;18714:313;;;;:::o;19033:419::-;19199:4;19237:2;19226:9;19222:18;19214:26;;19286:9;19280:4;19276:20;19272:1;19261:9;19257:17;19250:47;19314:131;19440:4;19314:131;:::i;:::-;19306:139;;19033:419;;;:::o;19458:::-;19624:4;19662:2;19651:9;19647:18;19639:26;;19711:9;19705:4;19701:20;19697:1;19686:9;19682:17;19675:47;19739:131;19865:4;19739:131;:::i;:::-;19731:139;;19458:419;;;:::o;19883:::-;20049:4;20087:2;20076:9;20072:18;20064:26;;20136:9;20130:4;20126:20;20122:1;20111:9;20107:17;20100:47;20164:131;20290:4;20164:131;:::i;:::-;20156:139;;19883:419;;;:::o;20308:::-;20474:4;20512:2;20501:9;20497:18;20489:26;;20561:9;20555:4;20551:20;20547:1;20536:9;20532:17;20525:47;20589:131;20715:4;20589:131;:::i;:::-;20581:139;;20308:419;;;:::o;20733:::-;20899:4;20937:2;20926:9;20922:18;20914:26;;20986:9;20980:4;20976:20;20972:1;20961:9;20957:17;20950:47;21014:131;21140:4;21014:131;:::i;:::-;21006:139;;20733:419;;;:::o;21158:::-;21324:4;21362:2;21351:9;21347:18;21339:26;;21411:9;21405:4;21401:20;21397:1;21386:9;21382:17;21375:47;21439:131;21565:4;21439:131;:::i;:::-;21431:139;;21158:419;;;:::o;21583:::-;21749:4;21787:2;21776:9;21772:18;21764:26;;21836:9;21830:4;21826:20;21822:1;21811:9;21807:17;21800:47;21864:131;21990:4;21864:131;:::i;:::-;21856:139;;21583:419;;;:::o;22008:::-;22174:4;22212:2;22201:9;22197:18;22189:26;;22261:9;22255:4;22251:20;22247:1;22236:9;22232:17;22225:47;22289:131;22415:4;22289:131;:::i;:::-;22281:139;;22008:419;;;:::o;22433:::-;22599:4;22637:2;22626:9;22622:18;22614:26;;22686:9;22680:4;22676:20;22672:1;22661:9;22657:17;22650:47;22714:131;22840:4;22714:131;:::i;:::-;22706:139;;22433:419;;;:::o;22858:::-;23024:4;23062:2;23051:9;23047:18;23039:26;;23111:9;23105:4;23101:20;23097:1;23086:9;23082:17;23075:47;23139:131;23265:4;23139:131;:::i;:::-;23131:139;;22858:419;;;:::o;23283:::-;23449:4;23487:2;23476:9;23472:18;23464:26;;23536:9;23530:4;23526:20;23522:1;23511:9;23507:17;23500:47;23564:131;23690:4;23564:131;:::i;:::-;23556:139;;23283:419;;;:::o;23708:222::-;23801:4;23839:2;23828:9;23824:18;23816:26;;23852:71;23920:1;23909:9;23905:17;23896:6;23852:71;:::i;:::-;23708:222;;;;:::o;23936:129::-;23970:6;23997:20;;:::i;:::-;23987:30;;24026:33;24054:4;24046:6;24026:33;:::i;:::-;23936:129;;;:::o;24071:75::-;24104:6;24137:2;24131:9;24121:19;;24071:75;:::o;24152:311::-;24229:4;24319:18;24311:6;24308:30;24305:56;;;24341:18;;:::i;:::-;24305:56;24391:4;24383:6;24379:17;24371:25;;24451:4;24445;24441:15;24433:23;;24152:311;;;:::o;24469:307::-;24530:4;24620:18;24612:6;24609:30;24606:56;;;24642:18;;:::i;:::-;24606:56;24680:29;24702:6;24680:29;:::i;:::-;24672:37;;24764:4;24758;24754:15;24746:23;;24469:307;;;:::o;24782:308::-;24844:4;24934:18;24926:6;24923:30;24920:56;;;24956:18;;:::i;:::-;24920:56;24994:29;25016:6;24994:29;:::i;:::-;24986:37;;25078:4;25072;25068:15;25060:23;;24782:308;;;:::o;25096:141::-;25145:4;25168:3;25160:11;;25191:3;25188:1;25181:14;25225:4;25222:1;25212:18;25204:26;;25096:141;;;:::o;25243:98::-;25294:6;25328:5;25322:12;25312:22;;25243:98;;;:::o;25347:99::-;25399:6;25433:5;25427:12;25417:22;;25347:99;;;:::o;25452:168::-;25535:11;25569:6;25564:3;25557:19;25609:4;25604:3;25600:14;25585:29;;25452:168;;;;:::o;25626:147::-;25727:11;25764:3;25749:18;;25626:147;;;;:::o;25779:169::-;25863:11;25897:6;25892:3;25885:19;25937:4;25932:3;25928:14;25913:29;;25779:169;;;;:::o;25954:148::-;26056:11;26093:3;26078:18;;25954:148;;;;:::o;26108:305::-;26148:3;26167:20;26185:1;26167:20;:::i;:::-;26162:25;;26201:20;26219:1;26201:20;:::i;:::-;26196:25;;26355:1;26287:66;26283:74;26280:1;26277:81;26274:107;;;26361:18;;:::i;:::-;26274:107;26405:1;26402;26398:9;26391:16;;26108:305;;;;:::o;26419:185::-;26459:1;26476:20;26494:1;26476:20;:::i;:::-;26471:25;;26510:20;26528:1;26510:20;:::i;:::-;26505:25;;26549:1;26539:35;;26554:18;;:::i;:::-;26539:35;26596:1;26593;26589:9;26584:14;;26419:185;;;;:::o;26610:348::-;26650:7;26673:20;26691:1;26673:20;:::i;:::-;26668:25;;26707:20;26725:1;26707:20;:::i;:::-;26702:25;;26895:1;26827:66;26823:74;26820:1;26817:81;26812:1;26805:9;26798:17;26794:105;26791:131;;;26902:18;;:::i;:::-;26791:131;26950:1;26947;26943:9;26932:20;;26610:348;;;;:::o;26964:191::-;27004:4;27024:20;27042:1;27024:20;:::i;:::-;27019:25;;27058:20;27076:1;27058:20;:::i;:::-;27053:25;;27097:1;27094;27091:8;27088:34;;;27102:18;;:::i;:::-;27088:34;27147:1;27144;27140:9;27132:17;;26964:191;;;;:::o;27161:96::-;27198:7;27227:24;27245:5;27227:24;:::i;:::-;27216:35;;27161:96;;;:::o;27263:90::-;27297:7;27340:5;27333:13;27326:21;27315:32;;27263:90;;;:::o;27359:149::-;27395:7;27435:66;27428:5;27424:78;27413:89;;27359:149;;;:::o;27514:125::-;27580:7;27609:24;27627:5;27609:24;:::i;:::-;27598:35;;27514:125;;;:::o;27645:126::-;27682:7;27722:42;27715:5;27711:54;27700:65;;27645:126;;;:::o;27777:77::-;27814:7;27843:5;27832:16;;27777:77;;;:::o;27860:154::-;27944:6;27939:3;27934;27921:30;28006:1;27997:6;27992:3;27988:16;27981:27;27860:154;;;:::o;28020:307::-;28088:1;28098:113;28112:6;28109:1;28106:13;28098:113;;;28197:1;28192:3;28188:11;28182:18;28178:1;28173:3;28169:11;28162:39;28134:2;28131:1;28127:10;28122:15;;28098:113;;;28229:6;28226:1;28223:13;28220:101;;;28309:1;28300:6;28295:3;28291:16;28284:27;28220:101;28069:258;28020:307;;;:::o;28333:320::-;28377:6;28414:1;28408:4;28404:12;28394:22;;28461:1;28455:4;28451:12;28482:18;28472:81;;28538:4;28530:6;28526:17;28516:27;;28472:81;28600:2;28592:6;28589:14;28569:18;28566:38;28563:84;;;28619:18;;:::i;:::-;28563:84;28384:269;28333:320;;;:::o;28659:281::-;28742:27;28764:4;28742:27;:::i;:::-;28734:6;28730:40;28872:6;28860:10;28857:22;28836:18;28824:10;28821:34;28818:62;28815:88;;;28883:18;;:::i;:::-;28815:88;28923:10;28919:2;28912:22;28702:238;28659:281;;:::o;28946:233::-;28985:3;29008:24;29026:5;29008:24;:::i;:::-;28999:33;;29054:66;29047:5;29044:77;29041:103;;;29124:18;;:::i;:::-;29041:103;29171:1;29164:5;29160:13;29153:20;;28946:233;;;:::o;29185:176::-;29217:1;29234:20;29252:1;29234:20;:::i;:::-;29229:25;;29268:20;29286:1;29268:20;:::i;:::-;29263:25;;29307:1;29297:35;;29312:18;;:::i;:::-;29297:35;29353:1;29350;29346:9;29341:14;;29185:176;;;;:::o;29367:180::-;29415:77;29412:1;29405:88;29512:4;29509:1;29502:15;29536:4;29533:1;29526:15;29553:180;29601:77;29598:1;29591:88;29698:4;29695:1;29688:15;29722:4;29719:1;29712:15;29739:180;29787:77;29784:1;29777:88;29884:4;29881:1;29874:15;29908:4;29905:1;29898:15;29925:180;29973:77;29970:1;29963:88;30070:4;30067:1;30060:15;30094:4;30091:1;30084:15;30111:180;30159:77;30156:1;30149:88;30256:4;30253:1;30246:15;30280:4;30277:1;30270:15;30297:117;30406:1;30403;30396:12;30420:117;30529:1;30526;30519:12;30543:117;30652:1;30649;30642:12;30666:117;30775:1;30772;30765:12;30789:117;30898:1;30895;30888:12;30912:102;30953:6;31004:2;31000:7;30995:2;30988:5;30984:14;30980:28;30970:38;;30912:102;;;:::o;31020:156::-;31160:8;31156:1;31148:6;31144:14;31137:32;31020:156;:::o;31182:225::-;31322:34;31318:1;31310:6;31306:14;31299:58;31391:8;31386:2;31378:6;31374:15;31367:33;31182:225;:::o;31413:160::-;31553:12;31549:1;31541:6;31537:14;31530:36;31413:160;:::o;31579:172::-;31719:24;31715:1;31707:6;31703:14;31696:48;31579:172;:::o;31757:::-;31897:24;31893:1;31885:6;31881:14;31874:48;31757:172;:::o;31935:168::-;32075:20;32071:1;32063:6;32059:14;32052:44;31935:168;:::o;32109:171::-;32249:23;32245:1;32237:6;32233:14;32226:47;32109:171;:::o;32286:182::-;32426:34;32422:1;32414:6;32410:14;32403:58;32286:182;:::o;32474:172::-;32614:24;32610:1;32602:6;32598:14;32591:48;32474:172;:::o;32652:114::-;;:::o;32772:164::-;32912:16;32908:1;32900:6;32896:14;32889:40;32772:164;:::o;32942:162::-;33082:14;33078:1;33070:6;33066:14;33059:38;32942:162;:::o;33110:122::-;33183:24;33201:5;33183:24;:::i;:::-;33176:5;33173:35;33163:63;;33222:1;33219;33212:12;33163:63;33110:122;:::o;33238:116::-;33308:21;33323:5;33308:21;:::i;:::-;33301:5;33298:32;33288:60;;33344:1;33341;33334:12;33288:60;33238:116;:::o;33360:120::-;33432:23;33449:5;33432:23;:::i;:::-;33425:5;33422:34;33412:62;;33470:1;33467;33460:12;33412:62;33360:120;:::o;33486:180::-;33588:53;33635:5;33588:53;:::i;:::-;33581:5;33578:64;33568:92;;33656:1;33653;33646:12;33568:92;33486:180;:::o;33672:122::-;33745:24;33763:5;33745:24;:::i;:::-;33738:5;33735:35;33725:63;;33784:1;33781;33774:12;33725:63;33672:122;:::o

Swarm Source

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