ETH Price: $2,627.16 (+0.52%)

Token

The Friendly Reaper (reap)
 

Overview

Max Total Supply

2,222 reap

Holders

408

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 reap
0x1585c729257322ceefc0b6c1d728e72d12fd06c4
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TheFriendlyReaper

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-14
*/

//__________ ___                                                                                                            
//MMMMMMMMMM `MM                                                                                                            
///   MM   \  MM                                                                                                            
//    MM      MM  __     ____                                                                                               
//    MM      MM 6MMb   6MMMMb                                                                                              
//    MM      MMM9 `Mb 6M'  `Mb                                                                                             
//    MM      MM'   MM MM    MM                                                                                             
//    MM      MM    MM MMMMMMMM                                                                                             
//    MM      MM    MM MM                                                                                                   
//    MM      MM    MM YM    d9                                                                                             
//   _MM_    _MM_  _MM_ YMMMM9                                                                                              
                                                                                                                          
                                                                                                                   
//________                                  ___ ___                   ________                                              
//`MMMMMMM       68b                        `MM `MM                   `MMMMMMMb.                                            
// MM    \       Y89                         MM  MM                    MM    `Mb                                            
// MM    ___  __ ___   ____  ___  __     ____MM  MM ____    ___        MM     MM   ____      ___  __ ____     ____  ___  __ 
// MM   ,`MM 6MM `MM  6MMMMb `MM 6MMb   6MMMMMM  MM `MM(    )M'        MM     MM  6MMMMb   6MMMMb `M6MMMMb   6MMMMb `MM 6MM 
// MMMMMM MM69 "  MM 6M'  `Mb MMM9 `Mb 6M'  `MM  MM  `Mb    d'         MM    .M9 6M'  `Mb 8M'  `Mb MM'  `Mb 6M'  `Mb MM69 " 
// MM   ` MM'     MM MM    MM MM'   MM MM    MM  MM   YM.  ,P          MMMMMMM9' MM    MM     ,oMM MM    MM MM    MM MM'    
// MM     MM      MM MMMMMMMM MM    MM MM    MM  MM    MM  M           MM  \M\   MMMMMMMM ,6MM9'MM MM    MM MMMMMMMM MM     
// MM     MM      MM MM       MM    MM MM    MM  MM    `Mbd'           MM   \M\  MM       MM'   MM MM    MM MM       MM     
// MM     MM      MM YM    d9 MM    MM YM.  ,MM  MM     YMP            MM    \M\ YM    d9 MM.  ,MM MM.  ,M9 YM    d9 MM     
//_MM_   _MM_    _MM_ YMMMM9 _MM_  _MM_ YMMMMMM__MM_     M            _MM_    \M\_YMMMM9  `YMMM9'YbMMYMMM9   YMMMM9 _MM_    
//                                                      d'                                         MM                       
//                                                  (8),P                                          MM                       
//                                                   YMM                                          _MM_      



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

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



abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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



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

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
    pragma solidity ^0.8.13;
        interface IMain {
   
function balanceOf( address ) external  view returns (uint);

}


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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override onlyAllowedOperator(from) {
        _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 TheFriendlyReaper is ERC721A, Owneable {

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

    uint256 public MAX_PER_TX_FREE = 3;
    uint256 public free_max_supply = 222;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public max_supply = 2222;
    uint256 public price = 0.009 ether;
//Death Awaits us All


    bool public paused = true;

    constructor() ERC721A("The Friendly Reaper", "reap") {}

    function PublicMint(uint256 _amount) external payable {

        address _caller = _msgSender();
        require(!paused, "Paused");
        require(max_supply >= totalSupply() + _amount, "All Gone");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No Contract minting.");
        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 Reserve(uint256 quantity) external onlyOwner {
        _safeMint(_msgSender(), quantity);
    }


    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_PER_TX_FREE(uint256 newFREE) public onlyOwner {
        MAX_PER_TX_FREE = newFREE;
    }

    function configmax_supply(uint256 newSupply) public onlyOwner {
        max_supply = newSupply;
    }

    function configfree_max_supply(uint256 newFreesupply) public onlyOwner {
        free_max_supply = newFreesupply;
    }
    function newbaseExtension(string memory newex) public onlyOwner {
        baseExtension = newex;
    }



        function burn(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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFREE","type":"uint256"}],"name":"configMAX_PER_TX_FREE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newex","type":"string"}],"name":"newbaseExtension","outputs":[],"stateMutability":"nonpayable","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"}]

6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603681526020016200575160369139600a90805190602001906200008a92919062000528565b506040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600b9080519060200190620000d892919062000528565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200012692919062000528565b506003600d5560de600e556108ae600f55661ff973cafa80006010556001601160006101000a81548160ff0219169083151502179055503480156200016a57600080fd5b506040518060400160405280601381526020017f54686520467269656e646c7920526561706572000000000000000000000000008152506040518060400160405280600481526020017f7265617000000000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003e3578015620002a9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200026f9291906200061d565b600060405180830381600087803b1580156200028a57600080fd5b505af11580156200029f573d6000803e3d6000fd5b50505050620003e2565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000363576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620003299291906200061d565b600060405180830381600087803b1580156200034457600080fd5b505af115801562000359573d6000803e3d6000fd5b50505050620003e1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003ac91906200064a565b600060405180830381600087803b158015620003c757600080fd5b505af1158015620003dc573d6000803e3d6000fd5b505050505b5b5b50508160029080519060200190620003fd92919062000528565b5080600390805190602001906200041692919062000528565b50620004276200045560201b60201c565b60008190555050506200044f620004436200045a60201b60201c565b6200046260201b60201c565b620006cb565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620005369062000696565b90600052602060002090601f0160209004810192826200055a5760008555620005a6565b82601f106200057557805160ff1916838001178555620005a6565b82800160010185558215620005a6579182015b82811115620005a557825182559160200191906001019062000588565b5b509050620005b59190620005b9565b5090565b5b80821115620005d4576000816000905550600101620005ba565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200060582620005d8565b9050919050565b6200061781620005f8565b82525050565b60006040820190506200063460008301856200060c565b6200064360208301846200060c565b9392505050565b60006020820190506200066160008301846200060c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006af57607f821691505b602082108103620006c557620006c462000667565b5b50919050565b61507680620006db6000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063c6682862116100ab578063db7b64a81161006f578063db7b64a8146107f2578063e8a3d4851461081b578063e985e9c514610846578063f2fde38b14610883578063f43a22dc146108ac57610230565b8063c66828621461070d578063c87b56dd14610738578063cd7c032614610775578063d476de1b146107a0578063db4a0f61146107c957610230565b80639fb17e34116100f25780639fb17e341461064b578063a035b1fe14610667578063a22cb46514610692578063b80f55c9146106bb578063b88d4fde146106e457610230565b8063715018a61461058a5780638a333b50146105a15780638da5cb5b146105cc578063938e3d7b146105f757806395d89b411461062057610230565b80632aa80807116101bc57806357ea89b61161018057806357ea89b6146104a35780635c975abb146104ba5780636352211e146104e55780636c0360eb1461052257806370a082311461054d57610230565b80632aa80807146103d457806342842e0e146103fd578063463fff79146104265780635312e5cf1461045157806355f804b31461047a57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c57806318e223dd1461035757806323b872dd1461038057806326e987d7146103a957610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613e7c565b6108d7565b6040516102699190613ec4565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613f0b565b6109b9565b005b3480156102a757600080fd5b506102b0610ab1565b6040516102bd9190613fd1565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190614029565b610b43565b6040516102fa9190614097565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906140de565b610bbf565b005b34801561033857600080fd5b50610341610cc9565b60405161034e919061412d565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190614029565b610ce0565b005b34801561038c57600080fd5b506103a760048036038101906103a29190614148565b610dc5565b005b3480156103b557600080fd5b506103be610fa7565b6040516103cb919061412d565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906142d0565b610fad565b005b34801561040957600080fd5b50610424600480360381019061041f9190614148565b6110a2565b005b34801561043257600080fd5b5061043b6112a4565b604051610448919061412d565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614029565b6112aa565b005b34801561048657600080fd5b506104a1600480360381019061049c91906142d0565b61138f565b005b3480156104af57600080fd5b506104b8611484565b005b3480156104c657600080fd5b506104cf61161b565b6040516104dc9190613ec4565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190614029565b61162e565b6040516105199190614097565b60405180910390f35b34801561052e57600080fd5b50610537611644565b6040516105449190613fd1565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190614319565b6116d2565b604051610581919061412d565b60405180910390f35b34801561059657600080fd5b5061059f6117a1565b005b3480156105ad57600080fd5b506105b6611829565b6040516105c3919061412d565b60405180910390f35b3480156105d857600080fd5b506105e161182f565b6040516105ee9190614097565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906142d0565b611859565b005b34801561062c57600080fd5b5061063561194e565b6040516106429190613fd1565b60405180910390f35b61066560048036038101906106609190614029565b6119e0565b005b34801561067357600080fd5b5061067c611c84565b604051610689919061412d565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190614346565b611c8a565b005b3480156106c757600080fd5b506106e260048036038101906106dd919061444e565b611e01565b005b3480156106f057600080fd5b5061070b60048036038101906107069190614538565b611f2e565b005b34801561071957600080fd5b506107226121e7565b60405161072f9190613fd1565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190614029565b612275565b60405161076c9190613fd1565b60405180910390f35b34801561078157600080fd5b5061078a612320565b6040516107979190614097565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190614029565b612338565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190614029565b61241d565b005b3480156107fe57600080fd5b5061081960048036038101906108149190614029565b612502565b005b34801561082757600080fd5b506108306125f1565b60405161083d9190613fd1565b60405180910390f35b34801561085257600080fd5b5061086d600480360381019061086891906145bb565b61267f565b60405161087a9190613ec4565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190614319565b612763565b005b3480156108b857600080fd5b506108c161285a565b6040516108ce919061412d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b18261285f565b5b9050919050565b6109c16128c9565b73ffffffffffffffffffffffffffffffffffffffff166109df61182f565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a046128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90614647565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ac090614696565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec90614696565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e826128d1565b610b84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bca8261162e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c31576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c506128c9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c825750610c8081610c7b6128c9565b61267f565b155b15610cb9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc483838361291f565b505050565b6000610cd36129d1565b6001546000540303905090565b610ce86128c9565b73ffffffffffffffffffffffffffffffffffffffff16610d0661182f565b73ffffffffffffffffffffffffffffffffffffffff161480610d7c5750610d2b6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290614647565b60405180910390fd5b80600f8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f95573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e3757610e328484846129d6565b610fa1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e809291906146c7565b602060405180830381865afa158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190614705565b8015610f5357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f119291906146c7565b602060405180830381865afa158015610f2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f529190614705565b5b610f9457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f8b9190614097565b60405180910390fd5b5b610fa08484846129d6565b5b50505050565b600e5481565b610fb56128c9565b73ffffffffffffffffffffffffffffffffffffffff16610fd361182f565b73ffffffffffffffffffffffffffffffffffffffff1614806110495750610ff86128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614647565b60405180910390fd5b80600c908051906020019061109e929190613d2a565b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611282573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111245761111f84848460405180602001604052806000815250611f2e565b61129e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161116d9291906146c7565b602060405180830381865afa15801561118a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ae9190614705565b801561124057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111fe9291906146c7565b602060405180830381865afa15801561121b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123f9190614705565b5b61128157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112789190614097565b60405180910390fd5b5b61129d84848460405180602001604052806000815250611f2e565b5b50505050565b600d5481565b6112b26128c9565b73ffffffffffffffffffffffffffffffffffffffff166112d061182f565b73ffffffffffffffffffffffffffffffffffffffff16148061134657506112f56128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90614647565b60405180910390fd5b80600d8190555050565b6113976128c9565b73ffffffffffffffffffffffffffffffffffffffff166113b561182f565b73ffffffffffffffffffffffffffffffffffffffff16148061142b57506113da6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614647565b60405180910390fd5b80600a9080519060200190611480929190613d2a565b5050565b61148c6128c9565b73ffffffffffffffffffffffffffffffffffffffff166114aa61182f565b73ffffffffffffffffffffffffffffffffffffffff16148061152057506114cf6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61155f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155690614647565b60405180910390fd5b6000479050600061156e6128c9565b73ffffffffffffffffffffffffffffffffffffffff168260405161159190614763565b60006040518083038185875af1925050503d80600081146115ce576040519150601f19603f3d011682016040523d82523d6000602084013e6115d3565b606091505b5050905080611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e906147c4565b60405180910390fd5b5050565b601160009054906101000a900460ff1681565b600061163982612ec5565b600001519050919050565b600a805461165190614696565b80601f016020809104026020016040519081016040528092919081815260200182805461167d90614696565b80156116ca5780601f1061169f576101008083540402835291602001916116ca565b820191906000526020600020905b8154815290600101906020018083116116ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611739576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117a96128c9565b73ffffffffffffffffffffffffffffffffffffffff166117c761182f565b73ffffffffffffffffffffffffffffffffffffffff161461181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614647565b60405180910390fd5b6118276000613154565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118616128c9565b73ffffffffffffffffffffffffffffffffffffffff1661187f61182f565b73ffffffffffffffffffffffffffffffffffffffff1614806118f557506118a46128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90614647565b60405180910390fd5b80600b908051906020019061194a929190613d2a565b5050565b60606003805461195d90614696565b80601f016020809104026020016040519081016040528092919081815260200182805461198990614696565b80156119d65780601f106119ab576101008083540402835291602001916119d6565b820191906000526020600020905b8154815290600101906020018083116119b957829003601f168201915b5050505050905090565b60006119ea6128c9565b9050601160009054906101000a900460ff1615611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3390614830565b60405180910390fd5b81611a45610cc9565b611a4f919061487f565b600f541015611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90614921565b60405180910390fd5b60008211611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd9061498d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b906149f9565b60405180910390fd5b81600a1015611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90614a65565b60405180910390fd5b611b90610cc9565b600e5410611be25781600d541015611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490614ad1565b60405180910390fd5b611c76565b81600a1015611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90614a65565b60405180910390fd5b3460105483611c359190614af1565b14611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c90614b97565b60405180910390fd5b5b611c80818361321a565b5050565b60105481565b611c926128c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cf6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d036128c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611db06128c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611df59190613ec4565b60405180910390a35050565b611e096128c9565b73ffffffffffffffffffffffffffffffffffffffff16611e2761182f565b73ffffffffffffffffffffffffffffffffffffffff161480611e9d5750611e4c6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed390614647565b60405180910390fd5b60008151905060005b81811015611f29576000838281518110611f0257611f01614bb7565b5b60200260200101519050611f1581613238565b508080611f2190614be6565b915050611ee5565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612169573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361200b57611f9b8585856129d6565b611fba8473ffffffffffffffffffffffffffffffffffffffff166135db565b8015611fcf5750611fcd858585856135fe565b155b15612006576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121e0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016120549291906146c7565b602060405180830381865afa158015612071573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120959190614705565b801561212757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016120e59291906146c7565b602060405180830381865afa158015612102573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121269190614705565b5b61216857336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161215f9190614097565b60405180910390fd5b5b6121748585856129d6565b6121938473ffffffffffffffffffffffffffffffffffffffff166135db565b80156121a857506121a6858585856135fe565b155b156121df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5050505050565b600c80546121f490614696565b80601f016020809104026020016040519081016040528092919081815260200182805461222090614696565b801561226d5780601f106122425761010080835404028352916020019161226d565b820191906000526020600020905b81548152906001019060200180831161225057829003601f168201915b505050505081565b6060612280826128d1565b6122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b690614c7a565b60405180910390fd5b6000600a80546122ce90614696565b9050116122ea5760405180602001604052806000815250612319565b600a6122f58361374e565b600c60405160200161230993929190614d6a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b6123406128c9565b73ffffffffffffffffffffffffffffffffffffffff1661235e61182f565b73ffffffffffffffffffffffffffffffffffffffff1614806123d457506123836128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a90614647565b60405180910390fd5b80600e8190555050565b6124256128c9565b73ffffffffffffffffffffffffffffffffffffffff1661244361182f565b73ffffffffffffffffffffffffffffffffffffffff1614806124b957506124686128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef90614647565b60405180910390fd5b8060108190555050565b61250a6128c9565b73ffffffffffffffffffffffffffffffffffffffff1661252861182f565b73ffffffffffffffffffffffffffffffffffffffff16148061259e575061254d6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490614647565b60405180910390fd5b6125ee6125e86128c9565b8261321a565b50565b600b80546125fe90614696565b80601f016020809104026020016040519081016040528092919081815260200182805461262a90614696565b80156126775780601f1061264c57610100808354040283529160200191612677565b820191906000526020600020905b81548152906001019060200180831161265a57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016126e99190614097565b602060405180830381865afa158015612706573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061272a9190614dd9565b73ffffffffffffffffffffffffffffffffffffffff160361274f57600191505061275d565b61275984846138ae565b9150505b92915050565b61276b6128c9565b73ffffffffffffffffffffffffffffffffffffffff1661278961182f565b73ffffffffffffffffffffffffffffffffffffffff16146127df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d690614647565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590614e78565b60405180910390fd5b61285781613154565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816128dc6129d1565b111580156128eb575060005482105b8015612918575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006129e182612ec5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a086128c9565b73ffffffffffffffffffffffffffffffffffffffff161480612a3b5750612a3a8260000151612a356128c9565b61267f565b5b80612a805750612a496128c9565b73ffffffffffffffffffffffffffffffffffffffff16612a6884610b43565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ab9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b22576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612b88576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b958585856001613942565b612ba5600084846000015161291f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612e5557600054811015612e545782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ebe8585856001613948565b5050505050565b612ecd613db0565b600082905080612edb6129d1565b11158015612eea575060005481105b1561311d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161311b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fff57809250505061314f565b5b60011561311a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461311557809250505061314f565b613000565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61323482826040518060200160405280600081525061394e565b5050565b600061324382612ec5565b905061325781600001516000846001613942565b613267600083836000015161291f565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613552576000548110156135515781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135c581600001516000846001613948565b6001600081548092919060010191905055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136246128c9565b8786866040518563ffffffff1660e01b81526004016136469493929190614eed565b6020604051808303816000875af192505050801561368257506040513d601f19601f8201168201806040525081019061367f9190614f4e565b60015b6136fb573d80600081146136b2576040519150601f19603f3d011682016040523d82523d6000602084013e6136b7565b606091505b5060008151036136f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203613795576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138a9565b600082905060005b600082146137c75780806137b090614be6565b915050600a826137c09190614faa565b915061379d565b60008167ffffffffffffffff8111156137e3576137e26141a5565b5b6040519080825280601f01601f1916602001820160405280156138155781602001600182028036833780820191505090505b5090505b600085146138a25760018261382e9190614fdb565b9150600a8561383d919061500f565b6030613849919061487f565b60f81b81838151811061385f5761385e614bb7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561389b9190614faa565b9450613819565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61395b8383836001613960565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036139cc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613a06576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a136000868387613942565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613bdd5750613bdc8773ffffffffffffffffffffffffffffffffffffffff166135db565b5b15613ca2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c5260008884806001019550886135fe565b613c88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613be3578260005414613c9d57600080fd5b613d0d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613ca3575b816000819055505050613d236000868387613948565b5050505050565b828054613d3690614696565b90600052602060002090601f016020900481019282613d585760008555613d9f565b82601f10613d7157805160ff1916838001178555613d9f565b82800160010185558215613d9f579182015b82811115613d9e578251825591602001919060010190613d83565b5b509050613dac9190613df3565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613e0c576000816000905550600101613df4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e5981613e24565b8114613e6457600080fd5b50565b600081359050613e7681613e50565b92915050565b600060208284031215613e9257613e91613e1a565b5b6000613ea084828501613e67565b91505092915050565b60008115159050919050565b613ebe81613ea9565b82525050565b6000602082019050613ed96000830184613eb5565b92915050565b613ee881613ea9565b8114613ef357600080fd5b50565b600081359050613f0581613edf565b92915050565b600060208284031215613f2157613f20613e1a565b5b6000613f2f84828501613ef6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f72578082015181840152602081019050613f57565b83811115613f81576000848401525b50505050565b6000601f19601f8301169050919050565b6000613fa382613f38565b613fad8185613f43565b9350613fbd818560208601613f54565b613fc681613f87565b840191505092915050565b60006020820190508181036000830152613feb8184613f98565b905092915050565b6000819050919050565b61400681613ff3565b811461401157600080fd5b50565b60008135905061402381613ffd565b92915050565b60006020828403121561403f5761403e613e1a565b5b600061404d84828501614014565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061408182614056565b9050919050565b61409181614076565b82525050565b60006020820190506140ac6000830184614088565b92915050565b6140bb81614076565b81146140c657600080fd5b50565b6000813590506140d8816140b2565b92915050565b600080604083850312156140f5576140f4613e1a565b5b6000614103858286016140c9565b925050602061411485828601614014565b9150509250929050565b61412781613ff3565b82525050565b6000602082019050614142600083018461411e565b92915050565b60008060006060848603121561416157614160613e1a565b5b600061416f868287016140c9565b9350506020614180868287016140c9565b925050604061419186828701614014565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6141dd82613f87565b810181811067ffffffffffffffff821117156141fc576141fb6141a5565b5b80604052505050565b600061420f613e10565b905061421b82826141d4565b919050565b600067ffffffffffffffff82111561423b5761423a6141a5565b5b61424482613f87565b9050602081019050919050565b82818337600083830152505050565b600061427361426e84614220565b614205565b90508281526020810184848401111561428f5761428e6141a0565b5b61429a848285614251565b509392505050565b600082601f8301126142b7576142b661419b565b5b81356142c7848260208601614260565b91505092915050565b6000602082840312156142e6576142e5613e1a565b5b600082013567ffffffffffffffff81111561430457614303613e1f565b5b614310848285016142a2565b91505092915050565b60006020828403121561432f5761432e613e1a565b5b600061433d848285016140c9565b91505092915050565b6000806040838503121561435d5761435c613e1a565b5b600061436b858286016140c9565b925050602061437c85828601613ef6565b9150509250929050565b600067ffffffffffffffff8211156143a1576143a06141a5565b5b602082029050602081019050919050565b600080fd5b60006143ca6143c584614386565b614205565b905080838252602082019050602084028301858111156143ed576143ec6143b2565b5b835b8181101561441657806144028882614014565b8452602084019350506020810190506143ef565b5050509392505050565b600082601f8301126144355761443461419b565b5b81356144458482602086016143b7565b91505092915050565b60006020828403121561446457614463613e1a565b5b600082013567ffffffffffffffff81111561448257614481613e1f565b5b61448e84828501614420565b91505092915050565b600067ffffffffffffffff8211156144b2576144b16141a5565b5b6144bb82613f87565b9050602081019050919050565b60006144db6144d684614497565b614205565b9050828152602081018484840111156144f7576144f66141a0565b5b614502848285614251565b509392505050565b600082601f83011261451f5761451e61419b565b5b813561452f8482602086016144c8565b91505092915050565b6000806000806080858703121561455257614551613e1a565b5b6000614560878288016140c9565b9450506020614571878288016140c9565b935050604061458287828801614014565b925050606085013567ffffffffffffffff8111156145a3576145a2613e1f565b5b6145af8782880161450a565b91505092959194509250565b600080604083850312156145d2576145d1613e1a565b5b60006145e0858286016140c9565b92505060206145f1858286016140c9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614631602083613f43565b915061463c826145fb565b602082019050919050565b6000602082019050818103600083015261466081614624565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146ae57607f821691505b6020821081036146c1576146c0614667565b5b50919050565b60006040820190506146dc6000830185614088565b6146e96020830184614088565b9392505050565b6000815190506146ff81613edf565b92915050565b60006020828403121561471b5761471a613e1a565b5b6000614729848285016146f0565b91505092915050565b600081905092915050565b50565b600061474d600083614732565b91506147588261473d565b600082019050919050565b600061476e82614740565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006147ae600e83613f43565b91506147b982614778565b602082019050919050565b600060208201905081810360008301526147dd816147a1565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b600061481a600683613f43565b9150614825826147e4565b602082019050919050565b600060208201905081810360008301526148498161480d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061488a82613ff3565b915061489583613ff3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148ca576148c9614850565b5b828201905092915050565b7f416c6c20476f6e65000000000000000000000000000000000000000000000000600082015250565b600061490b600883613f43565b9150614916826148d5565b602082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000614977600a83613f43565b915061498282614941565b602082019050919050565b600060208201905081810360008301526149a68161496a565b9050919050565b7f4e6f20436f6e7472616374206d696e74696e672e000000000000000000000000600082015250565b60006149e3601483613f43565b91506149ee826149ad565b602082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000614a4f601683613f43565b9150614a5a82614a19565b602082019050919050565b60006020820190508181036000830152614a7e81614a42565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000614abb601683613f43565b9150614ac682614a85565b602082019050919050565b60006020820190508181036000830152614aea81614aae565b9050919050565b6000614afc82613ff3565b9150614b0783613ff3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b4057614b3f614850565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000614b81601683613f43565b9150614b8c82614b4b565b602082019050919050565b60006020820190508181036000830152614bb081614b74565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614bf182613ff3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c2357614c22614850565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000614c64601583613f43565b9150614c6f82614c2e565b602082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614cc781614696565b614cd18186614c9a565b94506001821660008114614cec5760018114614cfd57614d30565b60ff19831686528186019350614d30565b614d0685614ca5565b60005b83811015614d2857815481890152600182019150602081019050614d09565b838801955050505b50505092915050565b6000614d4482613f38565b614d4e8185614c9a565b9350614d5e818560208601613f54565b80840191505092915050565b6000614d768286614cba565b9150614d828285614d39565b9150614d8e8284614cba565b9150819050949350505050565b6000614da682614076565b9050919050565b614db681614d9b565b8114614dc157600080fd5b50565b600081519050614dd381614dad565b92915050565b600060208284031215614def57614dee613e1a565b5b6000614dfd84828501614dc4565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e62602683613f43565b9150614e6d82614e06565b604082019050919050565b60006020820190508181036000830152614e9181614e55565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614ebf82614e98565b614ec98185614ea3565b9350614ed9818560208601613f54565b614ee281613f87565b840191505092915050565b6000608082019050614f026000830187614088565b614f0f6020830186614088565b614f1c604083018561411e565b8181036060830152614f2e8184614eb4565b905095945050505050565b600081519050614f4881613e50565b92915050565b600060208284031215614f6457614f63613e1a565b5b6000614f7284828501614f39565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614fb582613ff3565b9150614fc083613ff3565b925082614fd057614fcf614f7b565b5b828204905092915050565b6000614fe682613ff3565b9150614ff183613ff3565b92508282101561500457615003614850565b5b828203905092915050565b600061501a82613ff3565b915061502583613ff3565b92508261503557615034614f7b565b5b82820690509291505056fea2646970667358221220857f021f681d714a915521e14256be63a5afd9fc251125ba856ab509adba5f6564736f6c634300080d0033697066733a2f2f516d5659707044706b31535264394d455764417a6f6b636166453538744e3551326754754875754c38364e31414b2f

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063c6682862116100ab578063db7b64a81161006f578063db7b64a8146107f2578063e8a3d4851461081b578063e985e9c514610846578063f2fde38b14610883578063f43a22dc146108ac57610230565b8063c66828621461070d578063c87b56dd14610738578063cd7c032614610775578063d476de1b146107a0578063db4a0f61146107c957610230565b80639fb17e34116100f25780639fb17e341461064b578063a035b1fe14610667578063a22cb46514610692578063b80f55c9146106bb578063b88d4fde146106e457610230565b8063715018a61461058a5780638a333b50146105a15780638da5cb5b146105cc578063938e3d7b146105f757806395d89b411461062057610230565b80632aa80807116101bc57806357ea89b61161018057806357ea89b6146104a35780635c975abb146104ba5780636352211e146104e55780636c0360eb1461052257806370a082311461054d57610230565b80632aa80807146103d457806342842e0e146103fd578063463fff79146104265780635312e5cf1461045157806355f804b31461047a57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c57806318e223dd1461035757806323b872dd1461038057806326e987d7146103a957610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613e7c565b6108d7565b6040516102699190613ec4565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613f0b565b6109b9565b005b3480156102a757600080fd5b506102b0610ab1565b6040516102bd9190613fd1565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190614029565b610b43565b6040516102fa9190614097565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906140de565b610bbf565b005b34801561033857600080fd5b50610341610cc9565b60405161034e919061412d565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190614029565b610ce0565b005b34801561038c57600080fd5b506103a760048036038101906103a29190614148565b610dc5565b005b3480156103b557600080fd5b506103be610fa7565b6040516103cb919061412d565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906142d0565b610fad565b005b34801561040957600080fd5b50610424600480360381019061041f9190614148565b6110a2565b005b34801561043257600080fd5b5061043b6112a4565b604051610448919061412d565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614029565b6112aa565b005b34801561048657600080fd5b506104a1600480360381019061049c91906142d0565b61138f565b005b3480156104af57600080fd5b506104b8611484565b005b3480156104c657600080fd5b506104cf61161b565b6040516104dc9190613ec4565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190614029565b61162e565b6040516105199190614097565b60405180910390f35b34801561052e57600080fd5b50610537611644565b6040516105449190613fd1565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190614319565b6116d2565b604051610581919061412d565b60405180910390f35b34801561059657600080fd5b5061059f6117a1565b005b3480156105ad57600080fd5b506105b6611829565b6040516105c3919061412d565b60405180910390f35b3480156105d857600080fd5b506105e161182f565b6040516105ee9190614097565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906142d0565b611859565b005b34801561062c57600080fd5b5061063561194e565b6040516106429190613fd1565b60405180910390f35b61066560048036038101906106609190614029565b6119e0565b005b34801561067357600080fd5b5061067c611c84565b604051610689919061412d565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190614346565b611c8a565b005b3480156106c757600080fd5b506106e260048036038101906106dd919061444e565b611e01565b005b3480156106f057600080fd5b5061070b60048036038101906107069190614538565b611f2e565b005b34801561071957600080fd5b506107226121e7565b60405161072f9190613fd1565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190614029565b612275565b60405161076c9190613fd1565b60405180910390f35b34801561078157600080fd5b5061078a612320565b6040516107979190614097565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190614029565b612338565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190614029565b61241d565b005b3480156107fe57600080fd5b5061081960048036038101906108149190614029565b612502565b005b34801561082757600080fd5b506108306125f1565b60405161083d9190613fd1565b60405180910390f35b34801561085257600080fd5b5061086d600480360381019061086891906145bb565b61267f565b60405161087a9190613ec4565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190614319565b612763565b005b3480156108b857600080fd5b506108c161285a565b6040516108ce919061412d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b18261285f565b5b9050919050565b6109c16128c9565b73ffffffffffffffffffffffffffffffffffffffff166109df61182f565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a046128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90614647565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ac090614696565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec90614696565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e826128d1565b610b84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bca8261162e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c31576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c506128c9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c825750610c8081610c7b6128c9565b61267f565b155b15610cb9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc483838361291f565b505050565b6000610cd36129d1565b6001546000540303905090565b610ce86128c9565b73ffffffffffffffffffffffffffffffffffffffff16610d0661182f565b73ffffffffffffffffffffffffffffffffffffffff161480610d7c5750610d2b6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290614647565b60405180910390fd5b80600f8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f95573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e3757610e328484846129d6565b610fa1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e809291906146c7565b602060405180830381865afa158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190614705565b8015610f5357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f119291906146c7565b602060405180830381865afa158015610f2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f529190614705565b5b610f9457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f8b9190614097565b60405180910390fd5b5b610fa08484846129d6565b5b50505050565b600e5481565b610fb56128c9565b73ffffffffffffffffffffffffffffffffffffffff16610fd361182f565b73ffffffffffffffffffffffffffffffffffffffff1614806110495750610ff86128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90614647565b60405180910390fd5b80600c908051906020019061109e929190613d2a565b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611282573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111245761111f84848460405180602001604052806000815250611f2e565b61129e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161116d9291906146c7565b602060405180830381865afa15801561118a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ae9190614705565b801561124057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111fe9291906146c7565b602060405180830381865afa15801561121b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123f9190614705565b5b61128157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112789190614097565b60405180910390fd5b5b61129d84848460405180602001604052806000815250611f2e565b5b50505050565b600d5481565b6112b26128c9565b73ffffffffffffffffffffffffffffffffffffffff166112d061182f565b73ffffffffffffffffffffffffffffffffffffffff16148061134657506112f56128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90614647565b60405180910390fd5b80600d8190555050565b6113976128c9565b73ffffffffffffffffffffffffffffffffffffffff166113b561182f565b73ffffffffffffffffffffffffffffffffffffffff16148061142b57506113da6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614647565b60405180910390fd5b80600a9080519060200190611480929190613d2a565b5050565b61148c6128c9565b73ffffffffffffffffffffffffffffffffffffffff166114aa61182f565b73ffffffffffffffffffffffffffffffffffffffff16148061152057506114cf6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61155f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155690614647565b60405180910390fd5b6000479050600061156e6128c9565b73ffffffffffffffffffffffffffffffffffffffff168260405161159190614763565b60006040518083038185875af1925050503d80600081146115ce576040519150601f19603f3d011682016040523d82523d6000602084013e6115d3565b606091505b5050905080611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e906147c4565b60405180910390fd5b5050565b601160009054906101000a900460ff1681565b600061163982612ec5565b600001519050919050565b600a805461165190614696565b80601f016020809104026020016040519081016040528092919081815260200182805461167d90614696565b80156116ca5780601f1061169f576101008083540402835291602001916116ca565b820191906000526020600020905b8154815290600101906020018083116116ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611739576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117a96128c9565b73ffffffffffffffffffffffffffffffffffffffff166117c761182f565b73ffffffffffffffffffffffffffffffffffffffff161461181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614647565b60405180910390fd5b6118276000613154565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118616128c9565b73ffffffffffffffffffffffffffffffffffffffff1661187f61182f565b73ffffffffffffffffffffffffffffffffffffffff1614806118f557506118a46128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90614647565b60405180910390fd5b80600b908051906020019061194a929190613d2a565b5050565b60606003805461195d90614696565b80601f016020809104026020016040519081016040528092919081815260200182805461198990614696565b80156119d65780601f106119ab576101008083540402835291602001916119d6565b820191906000526020600020905b8154815290600101906020018083116119b957829003601f168201915b5050505050905090565b60006119ea6128c9565b9050601160009054906101000a900460ff1615611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3390614830565b60405180910390fd5b81611a45610cc9565b611a4f919061487f565b600f541015611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90614921565b60405180910390fd5b60008211611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd9061498d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b906149f9565b60405180910390fd5b81600a1015611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90614a65565b60405180910390fd5b611b90610cc9565b600e5410611be25781600d541015611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490614ad1565b60405180910390fd5b611c76565b81600a1015611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90614a65565b60405180910390fd5b3460105483611c359190614af1565b14611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c90614b97565b60405180910390fd5b5b611c80818361321a565b5050565b60105481565b611c926128c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cf6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d036128c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611db06128c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611df59190613ec4565b60405180910390a35050565b611e096128c9565b73ffffffffffffffffffffffffffffffffffffffff16611e2761182f565b73ffffffffffffffffffffffffffffffffffffffff161480611e9d5750611e4c6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed390614647565b60405180910390fd5b60008151905060005b81811015611f29576000838281518110611f0257611f01614bb7565b5b60200260200101519050611f1581613238565b508080611f2190614be6565b915050611ee5565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612169573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361200b57611f9b8585856129d6565b611fba8473ffffffffffffffffffffffffffffffffffffffff166135db565b8015611fcf5750611fcd858585856135fe565b155b15612006576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121e0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016120549291906146c7565b602060405180830381865afa158015612071573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120959190614705565b801561212757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016120e59291906146c7565b602060405180830381865afa158015612102573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121269190614705565b5b61216857336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161215f9190614097565b60405180910390fd5b5b6121748585856129d6565b6121938473ffffffffffffffffffffffffffffffffffffffff166135db565b80156121a857506121a6858585856135fe565b155b156121df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5050505050565b600c80546121f490614696565b80601f016020809104026020016040519081016040528092919081815260200182805461222090614696565b801561226d5780601f106122425761010080835404028352916020019161226d565b820191906000526020600020905b81548152906001019060200180831161225057829003601f168201915b505050505081565b6060612280826128d1565b6122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b690614c7a565b60405180910390fd5b6000600a80546122ce90614696565b9050116122ea5760405180602001604052806000815250612319565b600a6122f58361374e565b600c60405160200161230993929190614d6a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b6123406128c9565b73ffffffffffffffffffffffffffffffffffffffff1661235e61182f565b73ffffffffffffffffffffffffffffffffffffffff1614806123d457506123836128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a90614647565b60405180910390fd5b80600e8190555050565b6124256128c9565b73ffffffffffffffffffffffffffffffffffffffff1661244361182f565b73ffffffffffffffffffffffffffffffffffffffff1614806124b957506124686128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef90614647565b60405180910390fd5b8060108190555050565b61250a6128c9565b73ffffffffffffffffffffffffffffffffffffffff1661252861182f565b73ffffffffffffffffffffffffffffffffffffffff16148061259e575061254d6128c9565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490614647565b60405180910390fd5b6125ee6125e86128c9565b8261321a565b50565b600b80546125fe90614696565b80601f016020809104026020016040519081016040528092919081815260200182805461262a90614696565b80156126775780601f1061264c57610100808354040283529160200191612677565b820191906000526020600020905b81548152906001019060200180831161265a57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016126e99190614097565b602060405180830381865afa158015612706573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061272a9190614dd9565b73ffffffffffffffffffffffffffffffffffffffff160361274f57600191505061275d565b61275984846138ae565b9150505b92915050565b61276b6128c9565b73ffffffffffffffffffffffffffffffffffffffff1661278961182f565b73ffffffffffffffffffffffffffffffffffffffff16146127df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d690614647565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590614e78565b60405180910390fd5b61285781613154565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816128dc6129d1565b111580156128eb575060005482105b8015612918575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006129e182612ec5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a086128c9565b73ffffffffffffffffffffffffffffffffffffffff161480612a3b5750612a3a8260000151612a356128c9565b61267f565b5b80612a805750612a496128c9565b73ffffffffffffffffffffffffffffffffffffffff16612a6884610b43565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ab9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b22576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612b88576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b958585856001613942565b612ba5600084846000015161291f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612e5557600054811015612e545782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ebe8585856001613948565b5050505050565b612ecd613db0565b600082905080612edb6129d1565b11158015612eea575060005481105b1561311d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161311b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fff57809250505061314f565b5b60011561311a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461311557809250505061314f565b613000565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61323482826040518060200160405280600081525061394e565b5050565b600061324382612ec5565b905061325781600001516000846001613942565b613267600083836000015161291f565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613552576000548110156135515781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135c581600001516000846001613948565b6001600081548092919060010191905055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136246128c9565b8786866040518563ffffffff1660e01b81526004016136469493929190614eed565b6020604051808303816000875af192505050801561368257506040513d601f19601f8201168201806040525081019061367f9190614f4e565b60015b6136fb573d80600081146136b2576040519150601f19603f3d011682016040523d82523d6000602084013e6136b7565b606091505b5060008151036136f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203613795576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138a9565b600082905060005b600082146137c75780806137b090614be6565b915050600a826137c09190614faa565b915061379d565b60008167ffffffffffffffff8111156137e3576137e26141a5565b5b6040519080825280601f01601f1916602001820160405280156138155781602001600182028036833780820191505090505b5090505b600085146138a25760018261382e9190614fdb565b9150600a8561383d919061500f565b6030613849919061487f565b60f81b81838151811061385f5761385e614bb7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561389b9190614faa565b9450613819565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61395b8383836001613960565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036139cc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613a06576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a136000868387613942565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613bdd5750613bdc8773ffffffffffffffffffffffffffffffffffffffff166135db565b5b15613ca2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c5260008884806001019550886135fe565b613c88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613be3578260005414613c9d57600080fd5b613d0d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613ca3575b816000819055505050613d236000868387613948565b5050505050565b828054613d3690614696565b90600052602060002090601f016020900481019282613d585760008555613d9f565b82601f10613d7157805160ff1916838001178555613d9f565b82800160010185558215613d9f579182015b82811115613d9e578251825591602001919060010190613d83565b5b509050613dac9190613df3565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613e0c576000816000905550600101613df4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e5981613e24565b8114613e6457600080fd5b50565b600081359050613e7681613e50565b92915050565b600060208284031215613e9257613e91613e1a565b5b6000613ea084828501613e67565b91505092915050565b60008115159050919050565b613ebe81613ea9565b82525050565b6000602082019050613ed96000830184613eb5565b92915050565b613ee881613ea9565b8114613ef357600080fd5b50565b600081359050613f0581613edf565b92915050565b600060208284031215613f2157613f20613e1a565b5b6000613f2f84828501613ef6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f72578082015181840152602081019050613f57565b83811115613f81576000848401525b50505050565b6000601f19601f8301169050919050565b6000613fa382613f38565b613fad8185613f43565b9350613fbd818560208601613f54565b613fc681613f87565b840191505092915050565b60006020820190508181036000830152613feb8184613f98565b905092915050565b6000819050919050565b61400681613ff3565b811461401157600080fd5b50565b60008135905061402381613ffd565b92915050565b60006020828403121561403f5761403e613e1a565b5b600061404d84828501614014565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061408182614056565b9050919050565b61409181614076565b82525050565b60006020820190506140ac6000830184614088565b92915050565b6140bb81614076565b81146140c657600080fd5b50565b6000813590506140d8816140b2565b92915050565b600080604083850312156140f5576140f4613e1a565b5b6000614103858286016140c9565b925050602061411485828601614014565b9150509250929050565b61412781613ff3565b82525050565b6000602082019050614142600083018461411e565b92915050565b60008060006060848603121561416157614160613e1a565b5b600061416f868287016140c9565b9350506020614180868287016140c9565b925050604061419186828701614014565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6141dd82613f87565b810181811067ffffffffffffffff821117156141fc576141fb6141a5565b5b80604052505050565b600061420f613e10565b905061421b82826141d4565b919050565b600067ffffffffffffffff82111561423b5761423a6141a5565b5b61424482613f87565b9050602081019050919050565b82818337600083830152505050565b600061427361426e84614220565b614205565b90508281526020810184848401111561428f5761428e6141a0565b5b61429a848285614251565b509392505050565b600082601f8301126142b7576142b661419b565b5b81356142c7848260208601614260565b91505092915050565b6000602082840312156142e6576142e5613e1a565b5b600082013567ffffffffffffffff81111561430457614303613e1f565b5b614310848285016142a2565b91505092915050565b60006020828403121561432f5761432e613e1a565b5b600061433d848285016140c9565b91505092915050565b6000806040838503121561435d5761435c613e1a565b5b600061436b858286016140c9565b925050602061437c85828601613ef6565b9150509250929050565b600067ffffffffffffffff8211156143a1576143a06141a5565b5b602082029050602081019050919050565b600080fd5b60006143ca6143c584614386565b614205565b905080838252602082019050602084028301858111156143ed576143ec6143b2565b5b835b8181101561441657806144028882614014565b8452602084019350506020810190506143ef565b5050509392505050565b600082601f8301126144355761443461419b565b5b81356144458482602086016143b7565b91505092915050565b60006020828403121561446457614463613e1a565b5b600082013567ffffffffffffffff81111561448257614481613e1f565b5b61448e84828501614420565b91505092915050565b600067ffffffffffffffff8211156144b2576144b16141a5565b5b6144bb82613f87565b9050602081019050919050565b60006144db6144d684614497565b614205565b9050828152602081018484840111156144f7576144f66141a0565b5b614502848285614251565b509392505050565b600082601f83011261451f5761451e61419b565b5b813561452f8482602086016144c8565b91505092915050565b6000806000806080858703121561455257614551613e1a565b5b6000614560878288016140c9565b9450506020614571878288016140c9565b935050604061458287828801614014565b925050606085013567ffffffffffffffff8111156145a3576145a2613e1f565b5b6145af8782880161450a565b91505092959194509250565b600080604083850312156145d2576145d1613e1a565b5b60006145e0858286016140c9565b92505060206145f1858286016140c9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614631602083613f43565b915061463c826145fb565b602082019050919050565b6000602082019050818103600083015261466081614624565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146ae57607f821691505b6020821081036146c1576146c0614667565b5b50919050565b60006040820190506146dc6000830185614088565b6146e96020830184614088565b9392505050565b6000815190506146ff81613edf565b92915050565b60006020828403121561471b5761471a613e1a565b5b6000614729848285016146f0565b91505092915050565b600081905092915050565b50565b600061474d600083614732565b91506147588261473d565b600082019050919050565b600061476e82614740565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006147ae600e83613f43565b91506147b982614778565b602082019050919050565b600060208201905081810360008301526147dd816147a1565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b600061481a600683613f43565b9150614825826147e4565b602082019050919050565b600060208201905081810360008301526148498161480d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061488a82613ff3565b915061489583613ff3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148ca576148c9614850565b5b828201905092915050565b7f416c6c20476f6e65000000000000000000000000000000000000000000000000600082015250565b600061490b600883613f43565b9150614916826148d5565b602082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000614977600a83613f43565b915061498282614941565b602082019050919050565b600060208201905081810360008301526149a68161496a565b9050919050565b7f4e6f20436f6e7472616374206d696e74696e672e000000000000000000000000600082015250565b60006149e3601483613f43565b91506149ee826149ad565b602082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000614a4f601683613f43565b9150614a5a82614a19565b602082019050919050565b60006020820190508181036000830152614a7e81614a42565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000614abb601683613f43565b9150614ac682614a85565b602082019050919050565b60006020820190508181036000830152614aea81614aae565b9050919050565b6000614afc82613ff3565b9150614b0783613ff3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b4057614b3f614850565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000614b81601683613f43565b9150614b8c82614b4b565b602082019050919050565b60006020820190508181036000830152614bb081614b74565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614bf182613ff3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c2357614c22614850565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000614c64601583613f43565b9150614c6f82614c2e565b602082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614cc781614696565b614cd18186614c9a565b94506001821660008114614cec5760018114614cfd57614d30565b60ff19831686528186019350614d30565b614d0685614ca5565b60005b83811015614d2857815481890152600182019150602081019050614d09565b838801955050505b50505092915050565b6000614d4482613f38565b614d4e8185614c9a565b9350614d5e818560208601613f54565b80840191505092915050565b6000614d768286614cba565b9150614d828285614d39565b9150614d8e8284614cba565b9150819050949350505050565b6000614da682614076565b9050919050565b614db681614d9b565b8114614dc157600080fd5b50565b600081519050614dd381614dad565b92915050565b600060208284031215614def57614dee613e1a565b5b6000614dfd84828501614dc4565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e62602683613f43565b9150614e6d82614e06565b604082019050919050565b60006020820190508181036000830152614e9181614e55565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614ebf82614e98565b614ec98185614ea3565b9350614ed9818560208601613f54565b614ee281613f87565b840191505092915050565b6000608082019050614f026000830187614088565b614f0f6020830186614088565b614f1c604083018561411e565b8181036060830152614f2e8184614eb4565b905095945050505050565b600081519050614f4881613e50565b92915050565b600060208284031215614f6457614f63613e1a565b5b6000614f7284828501614f39565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614fb582613ff3565b9150614fc083613ff3565b925082614fd057614fcf614f7b565b5b828204905092915050565b6000614fe682613ff3565b9150614ff183613ff3565b92508282101561500457615003614850565b5b828203905092915050565b600061501a82613ff3565b915061502583613ff3565b92508261503557615034614f7b565b5b82820690509291505056fea2646970667358221220857f021f681d714a915521e14256be63a5afd9fc251125ba856ab509adba5f6564736f6c634300080d0033

Deployed Bytecode Sourcemap

53926:3717:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36405:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56137:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39790:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41293:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40856:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35654:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56677:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42150:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54297:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56915:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42409:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54256:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56560:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56226:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55804:209;;;;;;;;;;;;;:::i;:::-;;54493:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39599:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53983:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36774:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6011:103;;;;;;;;;;;;;:::i;:::-;;54386:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5360:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56334:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39959:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54590:739;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54425:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41569:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57035:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42683:387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54114:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57278:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54158:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56788:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56458:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56021:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54070:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55341:455;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6269:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54340:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36405:305;36507:4;36559:25;36544:40;;;:11;:40;;;;:105;;;;36616:33;36601:48;;;:11;:48;;;;36544:105;:158;;;;36666:36;36690:11;36666:23;:36::i;:::-;36544:158;36524:178;;36405:305;;;:::o;56137:81::-;32859:12;:10;:12::i;:::-;32848:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32885:12;:10;:12::i;:::-;32875:22;;:6;;;;;;;;;;;:22;;;32848:49;32840:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56204:6:::1;56195;;:15;;;;;;;;;;;;;;;;;;56137:81:::0;:::o;39790:100::-;39844:13;39877:5;39870:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39790:100;:::o;41293:204::-;41361:7;41386:16;41394:7;41386;:16::i;:::-;41381:64;;41411:34;;;;;;;;;;;;;;41381:64;41465:15;:24;41481:7;41465:24;;;;;;;;;;;;;;;;;;;;;41458:31;;41293:204;;;:::o;40856:371::-;40929:13;40945:24;40961:7;40945:15;:24::i;:::-;40929:40;;40990:5;40984:11;;:2;:11;;;40980:48;;41004:24;;;;;;;;;;;;;;40980:48;41061:5;41045:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;41071:37;41088:5;41095:12;:10;:12::i;:::-;41071:16;:37::i;:::-;41070:38;41045:63;41041:138;;;41132:35;;;;;;;;;;;;;;41041:138;41191:28;41200:2;41204:7;41213:5;41191:8;:28::i;:::-;40918:309;40856:371;;:::o;35654:303::-;35698:7;35923:15;:13;:15::i;:::-;35908:12;;35892:13;;:28;:46;35885:53;;35654:303;:::o;56677:103::-;32859:12;:10;:12::i;:::-;32848:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32885:12;:10;:12::i;:::-;32875:22;;:6;;;;;;;;;;;:22;;;32848:49;32840:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56763:9:::1;56750:10;:22;;;;56677:103:::0;:::o;42150:188::-;42285:4;19078:1;17892:42;19032:43;;;:47;19028:699;;;19319:10;19311:18;;:4;:18;;;19307:85;;42302:28:::1;42312:4;42318:2;42322:7;42302:9;:28::i;:::-;19370:7:::0;;19307:85;17892:42;19452:40;;;19501:4;19508:10;19452:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;17892:42;19548:40;;;19597:4;19604;19548:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19452:157;19406:310;;19689:10;19670:30;;;;;;;;;;;:::i;:::-;;;;;;;;19406:310;19028:699;42302:28:::1;42312:4;42318:2;42322:7;42302:9;:28::i;:::-;42150:188:::0;;;;;:::o;54297:36::-;;;;:::o;56915:104::-;32859:12;:10;:12::i;:::-;32848:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32885:12;:10;:12::i;:::-;32875:22;;:6;;;;;;;;;;;:22;;;32848:49;32840:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;57006:5:::1;56990:13;:21;;;;;;;;;;;;:::i;:::-;;56915:104:::0;:::o;42409:203::-;42548:4;19078:1;17892:42;19032:43;;;:47;19028:699;;;19319:10;19311:18;;:4;:18;;;19307:85;;42565:39:::1;42582:4;42588:2;42592:7;42565:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;19370:7:::0;;19307:85;17892:42;19452:40;;;19501:4;19508:10;19452:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;17892:42;19548:40;;;19597:4;19604;19548:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19452:157;19406:310;;19689:10;19670:30;;;;;;;;;;;:::i;:::-;;;;;;;;19406:310;19028:699;42565:39:::1;42582:4;42588:2;42592:7;42565:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;42409:203:::0;;;;;:::o;54256:34::-;;;;:::o;56560:109::-;32859:12;:10;:12::i;:::-;32848:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32885:12;:10;:12::i;:::-;32875:22;;:6;;;;;;;;;;;:22;;;32848:49;32840:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56654:7:::1;56636:15;:25;;;;56560:109:::0;:::o;56226:100::-;32859:12;:10;:12::i;:::-;32848:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32885:12;:10;:12::i;:::-;32875:22;;:6;;;;;;;;;;;:22;;;32848:49;32840:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56310:8:::1;56300:7;:18;;;;;;;;;;;;:::i;:::-;;56226:100:::0;:::o;55804:209::-;32859:12;:10;:12::i;:::-;32848:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32885:12;:10;:12::i;:::-;32875:22;;:6;;;;;;;;;;;:22;;;32848:49;32840:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55854:15:::1;55872:21;55854:39;;55905:12;55923;:10;:12::i;:::-;:17;;55948:7;55923:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55904:56;;;55979:7;55971:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;55843:170;;55804:209::o:0;54493:25::-;;;;;;;;;;;;;:::o;39599:124::-;39663:7;39690:20;39702:7;39690:11;:20::i;:::-;:25;;;39683:32;;39599:124;;;:::o;53983:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36774:206::-;36838:7;36879:1;36862:19;;:5;:19;;;36858:60;;36890:28;;;;;;;;;;;;;;36858:60;36944:12;:19;36957:5;36944:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;36936:36;;36929:43;;36774:206;;;:::o;6011:103::-;5591:12;:10;:12::i;:::-;5580:23;;:7;:5;:7::i;:::-;:23;;;5572:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6076:30:::1;6103:1;6076:18;:30::i;:::-;6011:103::o:0;54386:32::-;;;;:::o;5360:87::-;5406:7;5433:6;;;;;;;;;;;5426:13;;5360:87;:::o;56334:116::-;32859:12;:10;:12::i;:::-;32848:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32885:12;:10;:12::i;:::-;32875:22;;:6;;;;;;;;;;;:22;;;32848:49;32840:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56430:12:::1;56416:11;:26;;;;;;;;;;;;:::i;:::-;;56334:116:::0;:::o;39959:104::-;40015:13;40048:7;40041:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39959:104;:::o;54590:739::-;54657:15;54675:12;:10;:12::i;:::-;54657:30;;54707:6;;;;;;;;;;;54706:7;54698:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;54773:7;54757:13;:11;:13::i;:::-;:23;;;;:::i;:::-;54743:10;;:37;;54735:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;54822:1;54812:7;:11;54804:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;54870:7;54857:20;;:9;:20;;;54849:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54935:7;54377:2;54921:21;;54913:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;55011:13;:11;:13::i;:::-;54992:15;;:32;54989:291;;55067:7;55048:15;;:26;;55040:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54989:291;;;55155:7;54377:2;55141:21;;55133:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;55232:9;55223:5;;55213:7;:15;;;;:::i;:::-;:28;55205:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54989:291;55294:27;55304:7;55313;55294:9;:27::i;:::-;54644:685;54590:739;:::o;54425:34::-;;;;:::o;41569:279::-;41672:12;:10;:12::i;:::-;41660:24;;:8;:24;;;41656:54;;41693:17;;;;;;;;;;;;;;41656:54;41768:8;41723:18;:32;41742:12;:10;:12::i;:::-;41723:32;;;;;;;;;;;;;;;:42;41756:8;41723:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41821:8;41792:48;;41807:12;:10;:12::i;:::-;41792:48;;;41831:8;41792:48;;;;;;:::i;:::-;;;;;;;;41569:279;;:::o;57035:233::-;32859:12;:10;:12::i;:::-;32848:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32885:12;:10;:12::i;:::-;32875:22;;:6;;;;;;;;;;;:22;;;32848:49;32840:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;57106:11:::1;57120:8;:15;57106:29;;57151:9;57146:115;57166:3;57162:1;:7;57146:115;;;57191:15;57209:8;57218:1;57209:11;;;;;;;;:::i;:::-;;;;;;;;57191:29;;57235:14;57241:7;57235:5;:14::i;:::-;57176:85;57171:3;;;;;:::i;:::-;;;;57146:115;;;;57095:173;57035:233:::0;:::o;42683:387::-;42851:4;19078:1;17892:42;19032:43;;;:47;19028:699;;;19319:10;19311:18;;:4;:18;;;19307:85;;42868:28:::1;42878:4;42884:2;42888:7;42868:9;:28::i;:::-;42911:15;:2;:13;;;:15::i;:::-;:76;;;;;42931:56;42962:4;42968:2;42972:7;42981:5;42931:30;:56::i;:::-;42930:57;42911:76;42907:156;;;43011:40;;;;;;;;;;;;;;42907:156;19370:7:::0;;19307:85;17892:42;19452:40;;;19501:4;19508:10;19452:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;17892:42;19548:40;;;19597:4;19604;19548:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19452:157;19406:310;;19689:10;19670:30;;;;;;;;;;;:::i;:::-;;;;;;;;19406:310;19028:699;42868:28:::1;42878:4;42884:2;42888:7;42868:9;:28::i;:::-;42911:15;:2;:13;;;:15::i;:::-;:76;;;;;42931:56;42962:4;42968:2;42972:7;42981:5;42931:30;:56::i;:::-;42930:57;42911:76;42907:156;;;43011:40;;;;;;;;;;;;;;42907:156;42683:387:::0;;;;;;:::o;54114:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57278:362::-;57344:13;57378:17;57386:8;57378:7;:17::i;:::-;57370:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;57463:1;57445:7;57439:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;57521:7;57545:26;57562:8;57545:16;:26::i;:::-;57588:13;57488:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57439:193;57432:200;;57278:362;;;:::o;54158:89::-;54205:42;54158:89;:::o;56788:121::-;32859:12;:10;:12::i;:::-;32848:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32885:12;:10;:12::i;:::-;32875:22;;:6;;;;;;;;;;;:22;;;32848:49;32840:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56888:13:::1;56870:15;:31;;;;56788:121:::0;:::o;56458:91::-;32859:12;:10;:12::i;:::-;32848:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32885:12;:10;:12::i;:::-;32875:22;;:6;;;;;;;;;;;:22;;;32848:49;32840:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56533:8:::1;56525:5;:16;;;;56458:91:::0;:::o;56021:106::-;32859:12;:10;:12::i;:::-;32848:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;32885:12;:10;:12::i;:::-;32875:22;;:6;;;;;;;;;;;:22;;;32848:49;32840:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56086:33:::1;56096:12;:10;:12::i;:::-;56110:8;56086:9;:33::i;:::-;56021:106:::0;:::o;54070:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55341:455::-;55466:4;55561:27;54205:42;55561:65;;55682:8;55641:49;;55649:13;:21;;;55671:5;55649:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55641:49;;;55637:93;;55714:4;55707:11;;;;;55637:93;55749:39;55772:5;55779:8;55749:22;:39::i;:::-;55742:46;;;55341:455;;;;;:::o;6269:201::-;5591:12;:10;:12::i;:::-;5580:23;;:7;:5;:7::i;:::-;:23;;;5572:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6378:1:::1;6358:22;;:8;:22;;::::0;6350:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6434:28;6453:8;6434:18;:28::i;:::-;6269:201:::0;:::o;54340:39::-;54377:2;54340:39;:::o;31480:157::-;31565:4;31604:25;31589:40;;;:11;:40;;;;31582:47;;31480:157;;;:::o;4101:98::-;4154:7;4181:10;4174:17;;4101:98;:::o;43325:187::-;43382:4;43425:7;43406:15;:13;:15::i;:::-;:26;;:53;;;;;43446:13;;43436:7;:23;43406:53;:98;;;;;43477:11;:20;43489:7;43477:20;;;;;;;;;;;:27;;;;;;;;;;;;43476:28;43406:98;43399:105;;43325:187;;;:::o;50936:196::-;51078:2;51051:15;:24;51067:7;51051:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51116:7;51112:2;51096:28;;51105:5;51096:28;;;;;;;;;;;;50936:196;;;:::o;35378:92::-;35434:7;35378:92;:::o;46438:2112::-;46553:35;46591:20;46603:7;46591:11;:20::i;:::-;46553:58;;46624:22;46666:13;:18;;;46650:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;46701:50;46718:13;:18;;;46738:12;:10;:12::i;:::-;46701:16;:50::i;:::-;46650:101;:154;;;;46792:12;:10;:12::i;:::-;46768:36;;:20;46780:7;46768:11;:20::i;:::-;:36;;;46650:154;46624:181;;46823:17;46818:66;;46849:35;;;;;;;;;;;;;;46818:66;46921:4;46899:26;;:13;:18;;;:26;;;46895:67;;46934:28;;;;;;;;;;;;;;46895:67;46991:1;46977:16;;:2;:16;;;46973:52;;47002:23;;;;;;;;;;;;;;46973:52;47038:43;47060:4;47066:2;47070:7;47079:1;47038:21;:43::i;:::-;47146:49;47163:1;47167:7;47176:13;:18;;;47146:8;:49::i;:::-;47521:1;47491:12;:18;47504:4;47491:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47565:1;47537:12;:16;47550:2;47537:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47611:2;47583:11;:20;47595:7;47583:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;47673:15;47628:11;:20;47640:7;47628:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;47941:19;47973:1;47963:7;:11;47941:33;;48034:1;47993:43;;:11;:24;48005:11;47993:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;47989:445;;48218:13;;48204:11;:27;48200:219;;;48288:13;:18;;;48256:11;:24;48268:11;48256:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;48371:13;:28;;;48329:11;:24;48341:11;48329:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;48200:219;47989:445;47466:979;48481:7;48477:2;48462:27;;48471:4;48462:27;;;;;;;;;;;;48500:42;48521:4;48527:2;48531:7;48540:1;48500:20;:42::i;:::-;46542:2008;;46438:2112;;;:::o;38429:1108::-;38490:21;;:::i;:::-;38524:12;38539:7;38524:22;;38607:4;38588:15;:13;:15::i;:::-;:23;;:47;;;;;38622:13;;38615:4;:20;38588:47;38584:886;;;38656:31;38690:11;:17;38702:4;38690:17;;;;;;;;;;;38656:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38731:9;:16;;;38726:729;;38802:1;38776:28;;:9;:14;;;:28;;;38772:101;;38840:9;38833:16;;;;;;38772:101;39175:261;39182:4;39175:261;;;39215:6;;;;;;;;39260:11;:17;39272:4;39260:17;;;;;;;;;;;39248:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39334:1;39308:28;;:9;:14;;;:28;;;39304:109;;39376:9;39369:16;;;;;;39304:109;39175:261;;;38726:729;38637:833;38584:886;39498:31;;;;;;;;;;;;;;38429:1108;;;;:::o;6630:191::-;6704:16;6723:6;;;;;;;;;;;6704:25;;6749:8;6740:6;;:17;;;;;;;;;;;;;;;;;;6804:8;6773:40;;6794:8;6773:40;;;;;;;;;;;;6693:128;6630:191;:::o;43520:104::-;43589:27;43599:2;43603:8;43589:27;;;;;;;;;;;;:9;:27::i;:::-;43520:104;;:::o;48779:2039::-;48839:35;48877:20;48889:7;48877:11;:20::i;:::-;48839:58;;48910:65;48932:13;:18;;;48960:1;48964:7;48973:1;48910:21;:65::i;:::-;49040:49;49057:1;49061:7;49070:13;:18;;;49040:8;:49::i;:::-;49429:1;49385:12;:32;49398:13;:18;;;49385:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49494:1;49445:12;:32;49458:13;:18;;;49445:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49622:13;:18;;;49594:11;:20;49606:7;49594:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;49700:15;49655:11;:20;49667:7;49655:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;49761:4;49731:11;:20;49743:7;49731:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;50013:19;50045:1;50035:7;:11;50013:33;;50106:1;50065:43;;:11;:24;50077:11;50065:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50061:445;;50290:13;;50276:11;:27;50272:219;;;50360:13;:18;;;50328:11;:24;50340:11;50328:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;50443:13;:28;;;50401:11;:24;50413:11;50401:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;50272:219;50061:445;49360:1157;50575:7;50571:1;50534:49;;50543:13;:18;;;50534:49;;;;;;;;;;;;50594:64;50615:13;:18;;;50643:1;50647:7;50656:1;50594:20;:64::i;:::-;50785:12;;:14;;;;;;;;;;;;;48828:1990;48779:2039;:::o;21257:326::-;21317:4;21574:1;21552:7;:19;;;:23;21545:30;;21257:326;;;:::o;51624:667::-;51787:4;51824:2;51808:36;;;51845:12;:10;:12::i;:::-;51859:4;51865:7;51874:5;51808:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51804:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52059:1;52042:6;:13;:18;52038:235;;52088:40;;;;;;;;;;;;;;52038:235;52231:6;52225:13;52216:6;52212:2;52208:15;52201:38;51804:480;51937:45;;;51927:55;;;:6;:55;;;;51920:62;;;51624:667;;;;;;:::o;28877:723::-;28933:13;29163:1;29154:5;:10;29150:53;;29181:10;;;;;;;;;;;;;;;;;;;;;29150:53;29213:12;29228:5;29213:20;;29244:14;29269:78;29284:1;29276:4;:9;29269:78;;29302:8;;;;;:::i;:::-;;;;29333:2;29325:10;;;;;:::i;:::-;;;29269:78;;;29357:19;29389:6;29379:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29357:39;;29407:154;29423:1;29414:5;:10;29407:154;;29451:1;29441:11;;;;;:::i;:::-;;;29518:2;29510:5;:10;;;;:::i;:::-;29497:2;:24;;;;:::i;:::-;29484:39;;29467:6;29474;29467:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;29547:2;29538:11;;;;;:::i;:::-;;;29407:154;;;29585:6;29571:21;;;;;28877:723;;;;:::o;41919:164::-;42016:4;42040:18;:25;42059:5;42040:25;;;;;;;;;;;;;;;:35;42066:8;42040:35;;;;;;;;;;;;;;;;;;;;;;;;;42033:42;;41919:164;;;;:::o;52939:159::-;;;;;:::o;53757:158::-;;;;;:::o;43987:163::-;44110:32;44116:2;44120:8;44130:5;44137:4;44110:5;:32::i;:::-;43987:163;;;:::o;44409:1775::-;44548:20;44571:13;;44548:36;;44613:1;44599:16;;:2;:16;;;44595:48;;44624:19;;;;;;;;;;;;;;44595:48;44670:1;44658:8;:13;44654:44;;44680:18;;;;;;;;;;;;;;44654:44;44711:61;44741:1;44745:2;44749:12;44763:8;44711:21;:61::i;:::-;45084:8;45049:12;:16;45062:2;45049:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45148:8;45108:12;:16;45121:2;45108:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45207:2;45174:11;:25;45186:12;45174:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;45274:15;45224:11;:25;45236:12;45224:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;45307:20;45330:12;45307:35;;45357:11;45386:8;45371:12;:23;45357:37;;45415:4;:23;;;;;45423:15;:2;:13;;;:15::i;:::-;45415:23;45411:641;;;45459:314;45515:12;45511:2;45490:38;;45507:1;45490:38;;;;;;;;;;;;45556:69;45595:1;45599:2;45603:14;;;;;;45619:5;45556:30;:69::i;:::-;45551:174;;45661:40;;;;;;;;;;;;;;45551:174;45768:3;45752:12;:19;45459:314;;45854:12;45837:13;;:29;45833:43;;45868:8;;;45833:43;45411:641;;;45917:120;45973:14;;;;;;45969:2;45948:40;;45965:1;45948:40;;;;;;;;;;;;46032:3;46016:12;:19;45917:120;;45411:641;46082:12;46066:13;:28;;;;45024:1082;;46116:60;46145:1;46149:2;46153:12;46167:8;46116:20;:60::i;:::-;44537:1647;44409:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:311::-;10012:4;10102:18;10094:6;10091:30;10088:56;;;10124:18;;:::i;:::-;10088:56;10174:4;10166:6;10162:17;10154:25;;10234:4;10228;10224:15;10216:23;;9935:311;;;:::o;10252:117::-;10361:1;10358;10351:12;10392:710;10488:5;10513:81;10529:64;10586:6;10529:64;:::i;:::-;10513:81;:::i;:::-;10504:90;;10614:5;10643:6;10636:5;10629:21;10677:4;10670:5;10666:16;10659:23;;10730:4;10722:6;10718:17;10710:6;10706:30;10759:3;10751:6;10748:15;10745:122;;;10778:79;;:::i;:::-;10745:122;10893:6;10876:220;10910:6;10905:3;10902:15;10876:220;;;10985:3;11014:37;11047:3;11035:10;11014:37;:::i;:::-;11009:3;11002:50;11081:4;11076:3;11072:14;11065:21;;10952:144;10936:4;10931:3;10927:14;10920:21;;10876:220;;;10880:21;10494:608;;10392:710;;;;;:::o;11125:370::-;11196:5;11245:3;11238:4;11230:6;11226:17;11222:27;11212:122;;11253:79;;:::i;:::-;11212:122;11370:6;11357:20;11395:94;11485:3;11477:6;11470:4;11462:6;11458:17;11395:94;:::i;:::-;11386:103;;11202:293;11125:370;;;;:::o;11501:539::-;11585:6;11634:2;11622:9;11613:7;11609:23;11605:32;11602:119;;;11640:79;;:::i;:::-;11602:119;11788:1;11777:9;11773:17;11760:31;11818:18;11810:6;11807:30;11804:117;;;11840:79;;:::i;:::-;11804:117;11945:78;12015:7;12006:6;11995:9;11991:22;11945:78;:::i;:::-;11935:88;;11731:302;11501:539;;;;:::o;12046:307::-;12107:4;12197:18;12189:6;12186:30;12183:56;;;12219:18;;:::i;:::-;12183:56;12257:29;12279:6;12257:29;:::i;:::-;12249:37;;12341:4;12335;12331:15;12323:23;;12046:307;;;:::o;12359:410::-;12436:5;12461:65;12477:48;12518:6;12477:48;:::i;:::-;12461:65;:::i;:::-;12452:74;;12549:6;12542:5;12535:21;12587:4;12580:5;12576:16;12625:3;12616:6;12611:3;12607:16;12604:25;12601:112;;;12632:79;;:::i;:::-;12601:112;12722:41;12756:6;12751:3;12746;12722:41;:::i;:::-;12442:327;12359:410;;;;;:::o;12788:338::-;12843:5;12892:3;12885:4;12877:6;12873:17;12869:27;12859:122;;12900:79;;:::i;:::-;12859:122;13017:6;13004:20;13042:78;13116:3;13108:6;13101:4;13093:6;13089:17;13042:78;:::i;:::-;13033:87;;12849:277;12788:338;;;;:::o;13132:943::-;13227:6;13235;13243;13251;13300:3;13288:9;13279:7;13275:23;13271:33;13268:120;;;13307:79;;:::i;:::-;13268:120;13427:1;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13398:117;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13682:2;13708:53;13753:7;13744:6;13733:9;13729:22;13708:53;:::i;:::-;13698:63;;13653:118;13838:2;13827:9;13823:18;13810:32;13869:18;13861:6;13858:30;13855:117;;;13891:79;;:::i;:::-;13855:117;13996:62;14050:7;14041:6;14030:9;14026:22;13996:62;:::i;:::-;13986:72;;13781:287;13132:943;;;;;;;:::o;14081:474::-;14149:6;14157;14206:2;14194:9;14185:7;14181:23;14177:32;14174:119;;;14212:79;;:::i;:::-;14174:119;14332:1;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14303:117;14459:2;14485:53;14530:7;14521:6;14510:9;14506:22;14485:53;:::i;:::-;14475:63;;14430:118;14081:474;;;;;:::o;14561:182::-;14701:34;14697:1;14689:6;14685:14;14678:58;14561:182;:::o;14749:366::-;14891:3;14912:67;14976:2;14971:3;14912:67;:::i;:::-;14905:74;;14988:93;15077:3;14988:93;:::i;:::-;15106:2;15101:3;15097:12;15090:19;;14749:366;;;:::o;15121:419::-;15287:4;15325:2;15314:9;15310:18;15302:26;;15374:9;15368:4;15364:20;15360:1;15349:9;15345:17;15338:47;15402:131;15528:4;15402:131;:::i;:::-;15394:139;;15121:419;;;:::o;15546:180::-;15594:77;15591:1;15584:88;15691:4;15688:1;15681:15;15715:4;15712:1;15705:15;15732:320;15776:6;15813:1;15807:4;15803:12;15793:22;;15860:1;15854:4;15850:12;15881:18;15871:81;;15937:4;15929:6;15925:17;15915:27;;15871:81;15999:2;15991:6;15988:14;15968:18;15965:38;15962:84;;16018:18;;:::i;:::-;15962:84;15783:269;15732:320;;;:::o;16058:332::-;16179:4;16217:2;16206:9;16202:18;16194:26;;16230:71;16298:1;16287:9;16283:17;16274:6;16230:71;:::i;:::-;16311:72;16379:2;16368:9;16364:18;16355:6;16311:72;:::i;:::-;16058:332;;;;;:::o;16396:137::-;16450:5;16481:6;16475:13;16466:22;;16497:30;16521:5;16497:30;:::i;:::-;16396:137;;;;:::o;16539:345::-;16606:6;16655:2;16643:9;16634:7;16630:23;16626:32;16623:119;;;16661:79;;:::i;:::-;16623:119;16781:1;16806:61;16859:7;16850:6;16839:9;16835:22;16806:61;:::i;:::-;16796:71;;16752:125;16539:345;;;;:::o;16890:147::-;16991:11;17028:3;17013:18;;16890:147;;;;:::o;17043:114::-;;:::o;17163:398::-;17322:3;17343:83;17424:1;17419:3;17343:83;:::i;:::-;17336:90;;17435:93;17524:3;17435:93;:::i;:::-;17553:1;17548:3;17544:11;17537:18;;17163:398;;;:::o;17567:379::-;17751:3;17773:147;17916:3;17773:147;:::i;:::-;17766:154;;17937:3;17930:10;;17567:379;;;:::o;17952:164::-;18092:16;18088:1;18080:6;18076:14;18069:40;17952:164;:::o;18122:366::-;18264:3;18285:67;18349:2;18344:3;18285:67;:::i;:::-;18278:74;;18361:93;18450:3;18361:93;:::i;:::-;18479:2;18474:3;18470:12;18463:19;;18122:366;;;:::o;18494:419::-;18660:4;18698:2;18687:9;18683:18;18675:26;;18747:9;18741:4;18737:20;18733:1;18722:9;18718:17;18711:47;18775:131;18901:4;18775:131;:::i;:::-;18767:139;;18494:419;;;:::o;18919:156::-;19059:8;19055:1;19047:6;19043:14;19036:32;18919:156;:::o;19081:365::-;19223:3;19244:66;19308:1;19303:3;19244:66;:::i;:::-;19237:73;;19319:93;19408:3;19319:93;:::i;:::-;19437:2;19432:3;19428:12;19421:19;;19081:365;;;:::o;19452:419::-;19618:4;19656:2;19645:9;19641:18;19633:26;;19705:9;19699:4;19695:20;19691:1;19680:9;19676:17;19669:47;19733:131;19859:4;19733:131;:::i;:::-;19725:139;;19452:419;;;:::o;19877:180::-;19925:77;19922:1;19915:88;20022:4;20019:1;20012:15;20046:4;20043:1;20036:15;20063:305;20103:3;20122:20;20140:1;20122:20;:::i;:::-;20117:25;;20156:20;20174:1;20156:20;:::i;:::-;20151:25;;20310:1;20242:66;20238:74;20235:1;20232:81;20229:107;;;20316:18;;:::i;:::-;20229:107;20360:1;20357;20353:9;20346:16;;20063:305;;;;:::o;20374:158::-;20514:10;20510:1;20502:6;20498:14;20491:34;20374:158;:::o;20538:365::-;20680:3;20701:66;20765:1;20760:3;20701:66;:::i;:::-;20694:73;;20776:93;20865:3;20776:93;:::i;:::-;20894:2;20889:3;20885:12;20878:19;;20538:365;;;:::o;20909:419::-;21075:4;21113:2;21102:9;21098:18;21090:26;;21162:9;21156:4;21152:20;21148:1;21137:9;21133:17;21126:47;21190:131;21316:4;21190:131;:::i;:::-;21182:139;;20909:419;;;:::o;21334:160::-;21474:12;21470:1;21462:6;21458:14;21451:36;21334:160;:::o;21500:366::-;21642:3;21663:67;21727:2;21722:3;21663:67;:::i;:::-;21656:74;;21739:93;21828:3;21739:93;:::i;:::-;21857:2;21852:3;21848:12;21841:19;;21500:366;;;:::o;21872:419::-;22038:4;22076:2;22065:9;22061:18;22053:26;;22125:9;22119:4;22115:20;22111:1;22100:9;22096:17;22089:47;22153:131;22279:4;22153:131;:::i;:::-;22145:139;;21872:419;;;:::o;22297:170::-;22437:22;22433:1;22425:6;22421:14;22414:46;22297:170;:::o;22473:366::-;22615:3;22636:67;22700:2;22695:3;22636:67;:::i;:::-;22629:74;;22712:93;22801:3;22712:93;:::i;:::-;22830:2;22825:3;22821:12;22814:19;;22473:366;;;:::o;22845:419::-;23011:4;23049:2;23038:9;23034:18;23026:26;;23098:9;23092:4;23088:20;23084:1;23073:9;23069:17;23062:47;23126:131;23252:4;23126:131;:::i;:::-;23118:139;;22845:419;;;:::o;23270:172::-;23410:24;23406:1;23398:6;23394:14;23387:48;23270:172;:::o;23448:366::-;23590:3;23611:67;23675:2;23670:3;23611:67;:::i;:::-;23604:74;;23687:93;23776:3;23687:93;:::i;:::-;23805:2;23800:3;23796:12;23789:19;;23448:366;;;:::o;23820:419::-;23986:4;24024:2;24013:9;24009:18;24001:26;;24073:9;24067:4;24063:20;24059:1;24048:9;24044:17;24037:47;24101:131;24227:4;24101:131;:::i;:::-;24093:139;;23820:419;;;:::o;24245:172::-;24385:24;24381:1;24373:6;24369:14;24362:48;24245:172;:::o;24423:366::-;24565:3;24586:67;24650:2;24645:3;24586:67;:::i;:::-;24579:74;;24662:93;24751:3;24662:93;:::i;:::-;24780:2;24775:3;24771:12;24764:19;;24423:366;;;:::o;24795:419::-;24961:4;24999:2;24988:9;24984:18;24976:26;;25048:9;25042:4;25038:20;25034:1;25023:9;25019:17;25012:47;25076:131;25202:4;25076:131;:::i;:::-;25068:139;;24795:419;;;:::o;25220:348::-;25260:7;25283:20;25301:1;25283:20;:::i;:::-;25278:25;;25317:20;25335:1;25317:20;:::i;:::-;25312:25;;25505:1;25437:66;25433:74;25430:1;25427:81;25422:1;25415:9;25408:17;25404:105;25401:131;;;25512:18;;:::i;:::-;25401:131;25560:1;25557;25553:9;25542:20;;25220:348;;;;:::o;25574:172::-;25714:24;25710:1;25702:6;25698:14;25691:48;25574:172;:::o;25752:366::-;25894:3;25915:67;25979:2;25974:3;25915:67;:::i;:::-;25908:74;;25991:93;26080:3;25991:93;:::i;:::-;26109:2;26104:3;26100:12;26093:19;;25752:366;;;:::o;26124:419::-;26290:4;26328:2;26317:9;26313:18;26305:26;;26377:9;26371:4;26367:20;26363:1;26352:9;26348:17;26341:47;26405:131;26531:4;26405:131;:::i;:::-;26397:139;;26124:419;;;:::o;26549:180::-;26597:77;26594:1;26587:88;26694:4;26691:1;26684:15;26718:4;26715:1;26708:15;26735:233;26774:3;26797:24;26815:5;26797:24;:::i;:::-;26788:33;;26843:66;26836:5;26833:77;26830:103;;26913:18;;:::i;:::-;26830:103;26960:1;26953:5;26949:13;26942:20;;26735:233;;;:::o;26974:171::-;27114:23;27110:1;27102:6;27098:14;27091:47;26974:171;:::o;27151:366::-;27293:3;27314:67;27378:2;27373:3;27314:67;:::i;:::-;27307:74;;27390:93;27479:3;27390:93;:::i;:::-;27508:2;27503:3;27499:12;27492:19;;27151:366;;;:::o;27523:419::-;27689:4;27727:2;27716:9;27712:18;27704:26;;27776:9;27770:4;27766:20;27762:1;27751:9;27747:17;27740:47;27804:131;27930:4;27804:131;:::i;:::-;27796:139;;27523:419;;;:::o;27948:148::-;28050:11;28087:3;28072:18;;27948:148;;;;:::o;28102:141::-;28151:4;28174:3;28166:11;;28197:3;28194:1;28187:14;28231:4;28228:1;28218:18;28210:26;;28102:141;;;:::o;28273:845::-;28376:3;28413:5;28407:12;28442:36;28468:9;28442:36;:::i;:::-;28494:89;28576:6;28571:3;28494:89;:::i;:::-;28487:96;;28614:1;28603:9;28599:17;28630:1;28625:137;;;;28776:1;28771:341;;;;28592:520;;28625:137;28709:4;28705:9;28694;28690:25;28685:3;28678:38;28745:6;28740:3;28736:16;28729:23;;28625:137;;28771:341;28838:38;28870:5;28838:38;:::i;:::-;28898:1;28912:154;28926:6;28923:1;28920:13;28912:154;;;29000:7;28994:14;28990:1;28985:3;28981:11;28974:35;29050:1;29041:7;29037:15;29026:26;;28948:4;28945:1;28941:12;28936:17;;28912:154;;;29095:6;29090:3;29086:16;29079:23;;28778:334;;28592:520;;28380:738;;28273:845;;;;:::o;29124:377::-;29230:3;29258:39;29291:5;29258:39;:::i;:::-;29313:89;29395:6;29390:3;29313:89;:::i;:::-;29306:96;;29411:52;29456:6;29451:3;29444:4;29437:5;29433:16;29411:52;:::i;:::-;29488:6;29483:3;29479:16;29472:23;;29234:267;29124:377;;;;:::o;29507:583::-;29729:3;29751:92;29839:3;29830:6;29751:92;:::i;:::-;29744:99;;29860:95;29951:3;29942:6;29860:95;:::i;:::-;29853:102;;29972:92;30060:3;30051:6;29972:92;:::i;:::-;29965:99;;30081:3;30074:10;;29507:583;;;;;;:::o;30096:125::-;30162:7;30191:24;30209:5;30191:24;:::i;:::-;30180:35;;30096:125;;;:::o;30227:180::-;30329:53;30376:5;30329:53;:::i;:::-;30322:5;30319:64;30309:92;;30397:1;30394;30387:12;30309:92;30227:180;:::o;30413:201::-;30499:5;30530:6;30524:13;30515:22;;30546:62;30602:5;30546:62;:::i;:::-;30413:201;;;;:::o;30620:409::-;30719:6;30768:2;30756:9;30747:7;30743:23;30739:32;30736:119;;;30774:79;;:::i;:::-;30736:119;30894:1;30919:93;31004:7;30995:6;30984:9;30980:22;30919:93;:::i;:::-;30909:103;;30865:157;30620:409;;;;:::o;31035:225::-;31175:34;31171:1;31163:6;31159:14;31152:58;31244:8;31239:2;31231:6;31227:15;31220:33;31035:225;:::o;31266:366::-;31408:3;31429:67;31493:2;31488:3;31429:67;:::i;:::-;31422:74;;31505:93;31594:3;31505:93;:::i;:::-;31623:2;31618:3;31614:12;31607:19;;31266:366;;;:::o;31638:419::-;31804:4;31842:2;31831:9;31827:18;31819:26;;31891:9;31885:4;31881:20;31877:1;31866:9;31862:17;31855:47;31919:131;32045:4;31919:131;:::i;:::-;31911:139;;31638:419;;;:::o;32063:98::-;32114:6;32148:5;32142:12;32132:22;;32063:98;;;:::o;32167:168::-;32250:11;32284:6;32279:3;32272:19;32324:4;32319:3;32315:14;32300:29;;32167:168;;;;:::o;32341:360::-;32427:3;32455:38;32487:5;32455:38;:::i;:::-;32509:70;32572:6;32567:3;32509:70;:::i;:::-;32502:77;;32588:52;32633:6;32628:3;32621:4;32614:5;32610:16;32588:52;:::i;:::-;32665:29;32687:6;32665:29;:::i;:::-;32660:3;32656:39;32649:46;;32431:270;32341:360;;;;:::o;32707:640::-;32902:4;32940:3;32929:9;32925:19;32917:27;;32954:71;33022:1;33011:9;33007:17;32998:6;32954:71;:::i;:::-;33035:72;33103:2;33092:9;33088:18;33079:6;33035:72;:::i;:::-;33117;33185:2;33174:9;33170:18;33161:6;33117:72;:::i;:::-;33236:9;33230:4;33226:20;33221:2;33210:9;33206:18;33199:48;33264:76;33335:4;33326:6;33264:76;:::i;:::-;33256:84;;32707:640;;;;;;;:::o;33353:141::-;33409:5;33440:6;33434:13;33425:22;;33456:32;33482:5;33456:32;:::i;:::-;33353:141;;;;:::o;33500:349::-;33569:6;33618:2;33606:9;33597:7;33593:23;33589:32;33586:119;;;33624:79;;:::i;:::-;33586:119;33744:1;33769:63;33824:7;33815:6;33804:9;33800:22;33769:63;:::i;:::-;33759:73;;33715:127;33500:349;;;;:::o;33855:180::-;33903:77;33900:1;33893:88;34000:4;33997:1;33990:15;34024:4;34021:1;34014:15;34041:185;34081:1;34098:20;34116:1;34098:20;:::i;:::-;34093:25;;34132:20;34150:1;34132:20;:::i;:::-;34127:25;;34171:1;34161:35;;34176:18;;:::i;:::-;34161:35;34218:1;34215;34211:9;34206:14;;34041:185;;;;:::o;34232:191::-;34272:4;34292:20;34310:1;34292:20;:::i;:::-;34287:25;;34326:20;34344:1;34326:20;:::i;:::-;34321:25;;34365:1;34362;34359:8;34356:34;;;34370:18;;:::i;:::-;34356:34;34415:1;34412;34408:9;34400:17;;34232:191;;;;:::o;34429:176::-;34461:1;34478:20;34496:1;34478:20;:::i;:::-;34473:25;;34512:20;34530:1;34512:20;:::i;:::-;34507:25;;34551:1;34541:35;;34556:18;;:::i;:::-;34541:35;34597:1;34594;34590:9;34585:14;;34429:176;;;;:::o

Swarm Source

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