ERC-721
NFT
Overview
Max Total Supply
4,444 WBSC
Holders
1,038
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 WBSCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WBSC
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-20 */ // SPDX-License-Identifier: MIT // /////////// █ █░ ▄▄▄▄ ██████ ▄████▄ ///////////▓█░ █ ░█░▓█████▄ ▒██ ▒ ▒██▀ ▀█ ///////////▒█░ █ ░█ ▒██▒ ▄██░ ▓██▄ ▒▓█ ▄ ///////////░█░ █ ░█ ▒██░█▀ ▒ ██▒▒▓▓▄ ▄██▒ ///////////░░██▒██▓ ░▓█ ▀█▓▒██████▒▒▒ ▓███▀ ░ ///////////░ ▓░▒ ▒ ░▒▓███▀▒▒ ▒▓▒ ▒ ░░ ░▒ ▒ ░ /////////// ▒ ░ ░ ▒░▒ ░ ░ ░▒ ░ ░ ░ ▒ /////////// ░ ░ ░ ░ ░ ░ ░ ░ /////////// ░ ░ ░ ░ ░ /////////// ░ ░ //................................................................................ //............................. .............................. //....................... ........................ //.................. ..,(%@@@@@@@@@@@@@@&(,.. ................... //............... ./%@@@@@@@@@@@@@@@@@@@@@@@@@@@@&(. ............... //............ ./@@@% ,.%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(. ............. //.......... .#@@@@@# ,,,,./&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%, .......... //........ ./@@@@@@@% ,. ,,,,*#@@@@****/%@@@@@@@@@@@@@@@@@@@@@(. ........ //...... ./@@@@@@@@@% ,.*,. .,,,,,,,,.,,,,./@@@&..&@@@@@@@@@@@@@@(. ....... //..... ,@@@@@@@@@@@% ..,,. .,............ /@%*@@@@@@@@@@@@@@@@@@@@* ..... //.... .#@@@@@@@@@@@@% ,.......,**////////*..//(((((/&@@@@@@@@@@@@@@@%. .... //... .&@@@@@@@@@@@@@% ,,,,. .**//* */,/#%#,..#&%*.(%&@@@@@@@@@@@@. ... //.. .%@@@@@@@@@@@@@/.,,,,. .,**//* */(*/#.,. %@,//.,*&@@@@@@@@@@&. .. //. (@@@@@@@@@@@%,.,,,,... .,*///* ,*//(*/#,,. %@,(@@@@@@@@@@@@@@@@#. .. //. ,@@@@@@@@@**..,,,,,..,. .**///* */(**#,,. %@,(@@@@@@@@@@@@@@@@@, . //. (@@@@@@@@@.......,,,... .**//// *//*/%.. .%@,#@@@@@@@@@@@@@@@@@# . // %@@@@@@@(. .,,,,,,.... .,**///*....*//(,*&%((/(/(.(@@@@@@@@@@@@@@@@@& // #@@@@@@@(. ......... .,***/////******,.., . ,.,*.(@@@@@@@@@@@@@@@@& // (@@@@@@@@@&, ,***************/**///, /&//@@@@@@@@@@@@@@# // ,@@@@@@@@@@/..... ,,**,..,***********/////// (&&@//@@@@@@@@@@@@@@, // (@@@@@@@@@@@%,... ,**, ,(*.,,,******//////**#&&#/#@@@@@@@@@@@@@#. // .%@@@@@@@@@@@@&%( ... .**,,(#,... ./ / (.*,/@@@@@@@@@@@@@&. // .&@@@@@@@@@@@@@@@@@@. .,,,**,******,,..%%%&*&@@@@@@@@@@@@@@@@@@. // .#@@@@@@@@@@&((/ *,, ,*. ., /@@@@@@@@@@@@@@@@@@@@@@@@%. // *@@@@@@/. ,(***...... //**#@%*/@@*,*%@@@@@@@@@@@@* // .(@@&, **. ............ #..,*/#&%*,(&&@*#@@@@@@@@@#. // ./ /* ...... ...............*//#&@&(/.(&,#@@@@@@@@(. // .,. ....... .. .(,/##((##&#.,%@*(@@@@%, // ...... . /(..,&.& /,*/*,.,*%(. (%&/(#. // ... . .,/#,%*& /,*(####(*.#@,*. // (,*%&&%(,.. //created by @ZombieBitsNFT 2022 // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.0; /**ERC721A import * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : ""; } /** * @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); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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 { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } /////////// █ █░ ▄▄▄▄ ██████ ▄████▄ ///////////▓█░ █ ░█░▓█████▄ ▒██ ▒ ▒██▀ ▀█ ///////////▒█░ █ ░█ ▒██▒ ▄██░ ▓██▄ ▒▓█ ▄ ///////////░█░ █ ░█ ▒██░█▀ ▒ ██▒▒▓▓▄ ▄██▒ ///////////░░██▒██▓ ░▓█ ▀█▓▒██████▒▒▒ ▓███▀ ░ ///////////░ ▓░▒ ▒ ░▒▓███▀▒▒ ▒▓▒ ▒ ░░ ░▒ ▒ ░ /////////// ▒ ░ ░ ▒░▒ ░ ░ ░▒ ░ ░ ░ ▒ /////////// ░ ░ ░ ░ ░ ░ ░ ░ /////////// ░ ░ ░ ░ ░ /////////// ░ ░ library OpenSeaGasFreeListing { /** @notice Returns whether the operator is an OpenSea proxy for the owner, thus allowing it to list without the token owner paying gas. @dev ERC{721,1155}.isApprovedForAll should be overriden to also check if this function returns true. */ function isApprovedForAll(address owner, address operator) internal view returns (bool) { ProxyRegistry registry; assembly { switch chainid() case 1 { // mainnet registry := 0xa5409ec958c83c3f309868babaca7c86dcb077c1 } case 4 { // rinkeby registry := 0xf57b2c51ded3a29e6891aba85459d600256cf317 } } return address(registry) != address(0) && (address(registry.proxies(owner)) == operator); } } contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } contract WBSC is Ownable, ERC721A, ReentrancyGuard { using Address for address; using Strings for uint256; //allows for 152 tokens to be minted for team reserves to use as needed/planned uint256 public MAX_TEAM_RESERVES_PRESALE = 152; //sets immutable value for total collection of 4444 uint256 public immutable MAX_TOKENS; //sets value for total of 800 OG tokens uint256 public MAX_OG = 800; //sets value for total of 2400 WL tokens uint256 public MAX_WL = 2400; //sets value for total of 1092 PUBLIC1 tokens uint256 public MAX_PUBLIC1 = 1092; //limits the number of tokens during OG presale per address uint256 public MAX_OG_TOKENS_PER_ADDRESS = 4; //limits the number of tokens during presale per address uint256 public MAX_WL_TOKENS_PER_ADDRESS = 2; //limits the number of tokens during pubic 1 sale per address uint256 public MAX_PUBLIC1_TOKENS_PER_ADDRESS = 4; //limits the number of tokens during pubic 2 sale per address uint256 public MAX_PUBLIC2_TOKENS_PER_ADDRESS = 10; //OG presale token price uint256 public OG_TOKEN_PRICE = 0.04 ether; //OG presale token price uint256 public WL_TOKEN_PRICE = 0.05 ether; //public token price uint256 public TOKEN_PRICE = 0.06 ether; //max mints per tx during the public mint uint256 public MAX_MINTS_PER_TX = 50; bool public OGsale = false; bool public WLsale = false; bool public Public1Sale = false; bool public Public2Sale = false; string public WBSCprovenance; // OG merkle root bytes32 public OGmerkleroot; // whitelist merkle root bytes32 public WLmerkleroot; // public merkle root bytes32 public Public1merkleroot; //tracks number a user has minted during OG sale mapping (address => uint) public OGNumMinted; //tracks number a user has minted during WL sale mapping (address => uint) public WLNumMinted; //tracks number a user has minted during Public1 sale mapping (address => uint) public Public1NumMinted; //tracks number a user has minted during Public2 sale mapping (address => uint) public Public2NumMinted; constructor( uint256 maxBatchSize_, uint256 collectionSize_, uint256 maxTOKENS_ ) ERC721A("wulf boy social club","WBSC", maxBatchSize_,collectionSize_) { MAX_MINTS_PER_TX = maxBatchSize_; MAX_TOKENS = maxTOKENS_; require( maxTOKENS_ <= collectionSize_, "larger collection size needed" ); } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } //minting function for the OG sale function OGsaleMint(uint256 quantity, bytes32[] calldata OGsaleMerkleProof) external payable callerIsUser nonReentrant { require(OGsale, "OG sale is not live"); require(quantity <= MAX_OG, "minting this many would exceed supply for OG"); MAX_OG -= quantity; bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(OGsaleMerkleProof, OGmerkleroot, leaf), "Invalid proof."); _checkOGPreMintRequirements(quantity); _safeMint(msg.sender, quantity); } function _checkOGPreMintRequirements(uint256 quantity) internal { require(quantity > 0 && quantity <= MAX_OG_TOKENS_PER_ADDRESS, "invalid quantity: zero or greater than mint allowance"); require(totalSupply() + quantity <= MAX_TOKENS); require(msg.value == OG_TOKEN_PRICE * quantity, "wrong amount of ether sent"); OGNumMinted[msg.sender] = OGNumMinted[msg.sender] + quantity; require(OGNumMinted[msg.sender] <= MAX_OG_TOKENS_PER_ADDRESS, "Cannot mint more than your allotment in this phase"); } //minting function for the WL sale function WLsaleMint(uint256 quantity, bytes32[] calldata WLsaleMerkleProof) external payable callerIsUser nonReentrant { require(WLsale, "WL sale is not live"); require(quantity <= MAX_WL, "minting this many would exceed supply for WL"); MAX_WL -= quantity; bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(WLsaleMerkleProof, WLmerkleroot, leaf), "Invalid proof."); _checkWLPreMintRequirements(quantity); _safeMint(msg.sender, quantity); } function _checkWLPreMintRequirements(uint256 quantity) internal { require(quantity > 0 && quantity <= MAX_WL_TOKENS_PER_ADDRESS, "invalid quantity: zero or greater than mint allowance"); require(totalSupply() + quantity <= MAX_TOKENS); require(msg.value == WL_TOKEN_PRICE * quantity, "wrong amount of ether sent"); WLNumMinted[msg.sender] = WLNumMinted[msg.sender] + quantity; require(WLNumMinted[msg.sender] <= MAX_WL_TOKENS_PER_ADDRESS, "Cannot mint more than your allotment in this phase"); } //minting function for the Public1 raffle sale function Public1saleMint(uint256 quantity, bytes32[] calldata Public1saleMerkleProof) external payable callerIsUser nonReentrant { require(Public1Sale, "Public1 sale is not live"); require(quantity <= MAX_PUBLIC1, "minting this many would exceed supply for Public1"); MAX_PUBLIC1 -= quantity; bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(Public1saleMerkleProof, Public1merkleroot, leaf), "Invalid proof."); _checkPublic1MintRequirements(quantity); _safeMint(msg.sender, quantity); } function _checkPublic1MintRequirements(uint256 quantity) internal { require(quantity > 0 && quantity <= MAX_PUBLIC1_TOKENS_PER_ADDRESS, "invalid quantity: zero or greater than mint allowance"); require(totalSupply() + quantity <= MAX_TOKENS); require(msg.value == TOKEN_PRICE * quantity, "wrong amount of ether sent"); Public1NumMinted[msg.sender] = Public1NumMinted[msg.sender] + quantity; require(Public1NumMinted[msg.sender] <= MAX_PUBLIC1_TOKENS_PER_ADDRESS, "Cannot mint more than your allotment in this phase"); } //public2 mint function function mint(uint256 quantity) external payable callerIsUser nonReentrant { require(Public2Sale, "public sale 2 is not live"); require(totalSupply() + quantity <= MAX_TOKENS, "invalid quantity: would exceed max supply"); _checkMintRequirements(quantity); _safeMint(msg.sender, quantity); } function _checkMintRequirements(uint256 quantity) internal { require(quantity > 0 && quantity <= MAX_PUBLIC2_TOKENS_PER_ADDRESS, "invalid quantity: zero or greater than mint allowance"); require(quantity > 0 && quantity <= MAX_MINTS_PER_TX, "invalid quantity: zero or greater than mint allowance"); require(msg.value == TOKEN_PRICE * quantity, "wrong amount of ether sent"); Public2NumMinted[msg.sender] = Public2NumMinted[msg.sender] + quantity; require(Public2NumMinted[msg.sender] <= MAX_PUBLIC2_TOKENS_PER_ADDRESS, "Cannot mint more than your allotment in this phase"); } //admin minting function for team tokens function teamReservesPreSaleMint(uint256 quantity) public onlyOwner { require(quantity <= MAX_TEAM_RESERVES_PRESALE, "Can't reserve more than set amount" ); MAX_TEAM_RESERVES_PRESALE -= quantity; require(totalSupply() + quantity <= MAX_TOKENS, "invalid quantity: would exceed max supply"); _safeMint(msg.sender, quantity); } function toggleOGsale() public onlyOwner { OGsale = !OGsale; } function toggleWLsale() public onlyOwner { WLsale = !WLsale; } function togglePublic1Sale() public onlyOwner { Public1Sale = !Public1Sale; } function togglePublic2Sale() public onlyOwner { Public2Sale = !Public2Sale; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } // // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function setOGmerkleroot(bytes32 newOGmerkle) public onlyOwner { OGmerkleroot = newOGmerkle; } function setWLmerkleroot(bytes32 newWLmerkle) public onlyOwner { WLmerkleroot = newWLmerkle; } function setPublic1merkleroot(bytes32 newPublic1merkle) public onlyOwner { Public1merkleroot = newPublic1merkle; } function setMAX_OG_TOKENS_PER_ADDRESS(uint256 _MAX_OG_TOKENS_PER_ADDRESS) public onlyOwner() { MAX_OG_TOKENS_PER_ADDRESS = _MAX_OG_TOKENS_PER_ADDRESS; } function setMAX_WL_TOKENS_PER_ADDRESS(uint256 _MAX_WL_TOKENS_PER_ADDRESS) public onlyOwner() { MAX_WL_TOKENS_PER_ADDRESS = _MAX_WL_TOKENS_PER_ADDRESS; } function setMAX_PUBLIC1_TOKENS_PER_ADDRESS(uint256 _MAX_PUBLIC1_TOKENS_PER_ADDRESS) public onlyOwner() { MAX_PUBLIC1_TOKENS_PER_ADDRESS = _MAX_PUBLIC1_TOKENS_PER_ADDRESS; } function setMAX_PUBLIC2_TOKENS_PER_ADDRESS(uint256 _MAX_PUBLIC2_TOKENS_PER_ADDRESS) public onlyOwner() { MAX_PUBLIC2_TOKENS_PER_ADDRESS = _MAX_PUBLIC2_TOKENS_PER_ADDRESS; } function setMAX_MINTS_PER_TX(uint256 _MAX_MINTS_PER_TX) public onlyOwner() { MAX_MINTS_PER_TX = _MAX_MINTS_PER_TX; } function setOG_TOKEN_PRICE(uint256 _OG_TOKEN_PRICE) public onlyOwner() { OG_TOKEN_PRICE = _OG_TOKEN_PRICE; } function setWL_TOKEN_PRICE(uint256 _WL_TOKEN_PRICE) public onlyOwner() { WL_TOKEN_PRICE = _WL_TOKEN_PRICE; } function setTOKEN_PRICE(uint256 _TOKEN_PRICE) public onlyOwner() { TOKEN_PRICE = _TOKEN_PRICE; } function setProvenanceHash(string memory provenanceHash) external onlyOwner { WBSCprovenance = provenanceHash; } function isApprovedForAll(address owner, address operator) public view override returns (bool) { return OpenSeaGasFreeListing.isApprovedForAll(owner, operator) || super.isApprovedForAll(owner, operator); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"maxTOKENS_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_OG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_OG_TOKENS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC1_TOKENS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC2_TOKENS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM_RESERVES_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_TOKENS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"OGNumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OGmerkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OGsale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"OGsaleMerkleProof","type":"bytes32[]"}],"name":"OGsaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Public1NumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Public1Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Public1merkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"Public1saleMerkleProof","type":"bytes32[]"}],"name":"Public1saleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Public2NumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Public2Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WBSCprovenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WLNumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLmerkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLsale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"WLsaleMerkleProof","type":"bytes32[]"}],"name":"WLsaleMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_MINTS_PER_TX","type":"uint256"}],"name":"setMAX_MINTS_PER_TX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_OG_TOKENS_PER_ADDRESS","type":"uint256"}],"name":"setMAX_OG_TOKENS_PER_ADDRESS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PUBLIC1_TOKENS_PER_ADDRESS","type":"uint256"}],"name":"setMAX_PUBLIC1_TOKENS_PER_ADDRESS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PUBLIC2_TOKENS_PER_ADDRESS","type":"uint256"}],"name":"setMAX_PUBLIC2_TOKENS_PER_ADDRESS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_WL_TOKENS_PER_ADDRESS","type":"uint256"}],"name":"setMAX_WL_TOKENS_PER_ADDRESS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_OG_TOKEN_PRICE","type":"uint256"}],"name":"setOG_TOKEN_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newOGmerkle","type":"bytes32"}],"name":"setOGmerkleroot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newPublic1merkle","type":"bytes32"}],"name":"setPublic1merkleroot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TOKEN_PRICE","type":"uint256"}],"name":"setTOKEN_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_WL_TOKEN_PRICE","type":"uint256"}],"name":"setWL_TOKEN_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWLmerkle","type":"bytes32"}],"name":"setWLmerkleroot","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":"quantity","type":"uint256"}],"name":"teamReservesPreSaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleOGsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublic1Sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublic2Sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWLsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052600060018190556008556098600a908155610320600b55610960600c55610444600d556004600e8190556002600f55601055601155668e1bc9bf04000060125566b1a2bc2ec5000060135566d529ae9e86000060145560326015556016805463ffffffff191690553480156200007957600080fd5b50604051620041ce380380620041ce8339810160408190526200009c9162000375565b6040518060400160405280601481526020017f77756c6620626f7920736f6369616c20636c7562000000000000000000000000815250604051806040016040528060048152602001635742534360e01b81525084846200010b620001056200027b60201b60201c565b6200027f565b60008111620001785760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001da5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200016f565b8351620001ef906002906020870190620002cf565b50825162000205906003906020860190620002cf565b5060a09190915260805250506001600955601583905560c081905281811115620002725760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e656564656400000060448201526064016200016f565b505050620003e1565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002dd90620003a4565b90600052602060002090601f0160209004810192826200030157600085556200034c565b82601f106200031c57805160ff19168380011785556200034c565b828001600101855582156200034c579182015b828111156200034c5782518255916020019190600101906200032f565b506200035a9291506200035e565b5090565b5b808211156200035a57600081556001016200035f565b6000806000606084860312156200038b57600080fd5b8351925060208401519150604084015190509250925092565b600181811c90821680620003b957607f821691505b60208210811415620003db57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051613d856200044960003960008181610b6d01528181611693015281816118f60152818161296101528181612ee20152612fca0152600081816127a4015281816127ce01526131b30152600081816125aa01526125dc0152613d856000f3fe6080604052600436106104105760003560e01c80638832fedc1161021e578063d3ae3ff611610123578063f3fa9251116100ab578063fab905fa1161007a578063fab905fa14610bc6578063fcd4b6c414610bf3578063fd92e66214610c06578063fde32d9f14610c33578063fdee19ed14610c4657600080fd5b8063f3fa925114610b45578063f47c84c514610b5b578063f4ee6f9c14610b8f578063f69cf06f14610ba557600080fd5b8063dc33e681116100f2578063dc33e68114610aab578063e150795d14610acb578063e985e9c514610ae5578063f14f2a4514610b05578063f2fde38b14610b2557600080fd5b8063d3ae3ff614610a4b578063d6793b4114610a6b578063d7224ba014610a80578063d79802a914610a9657600080fd5b8063a22cb465116101a6578063c26ced5f11610175578063c26ced5f146109d3578063c6a91b42146109e9578063c87b56dd146109ff578063c91d5f9714610a1f578063d2d8cb6714610a3557600080fd5b8063a22cb46514610951578063a5c351fd14610971578063ac4460021461099e578063b88d4fde146109b357600080fd5b80639231ab2a116101ed5780639231ab2a146108a757806392c7e9ab146108f4578063948f62a81461090957806395d89b4114610929578063a0712d681461093e57600080fd5b80638832fedc1461083e5780638b7f3e5e146108545780638da5cb5b146108745780638ffad4221461089257600080fd5b80634f4342e21161032457806370a08231116102ac57806379eb6d271161027b57806379eb6d27146107bf5780637a37744a146107d25780637db1d684146107f25780637e736d8d14610812578063814a4c1e1461082857600080fd5b806370a082311461075457806370ee861b14610774578063715018a61461078a57806372a6b4201461079f57600080fd5b806359da6871116102f357806359da6871146106c95780636352211e146106e857806364be528714610708578063683e02c21461072857806368df66a61461073e57600080fd5b80634f4342e2146106495780634f6ccce714610669578063513744de1461068957806355f804b3146106a957600080fd5b80631bbaa8ec116103a75780632f745c59116103765780632f745c59146105b357806333703747146105d357806342842e0e146105f357806342f84718146106135780634b0b5bc11461063357600080fd5b80631bbaa8ec1461054757806323b872dd1461055d578063274be7971461057d5780632d20fb601461059357600080fd5b8063095ea7b3116103e3578063095ea7b3146104bb57806310969523146104db57806318160ddd146104fb5780631a38dd741461051a57600080fd5b806301ffc9a71461041557806304736a561461044a57806306fdde0314610461578063081812fc14610483575b600080fd5b34801561042157600080fd5b506104356104303660046136dc565b610c66565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610cd3565b005b34801561046d57600080fd5b50610476610d1a565b6040516104419190613912565b34801561048f57600080fd5b506104a361049e3660046136c3565b610dac565b6040516001600160a01b039091168152602001610441565b3480156104c757600080fd5b5061045f6104d6366004613697565b610e37565b3480156104e757600080fd5b5061045f6104f63660046137a4565b610f4f565b34801561050757600080fd5b506001545b604051908152602001610441565b34801561052657600080fd5b5061050c61053536600461354e565b601d6020526000908152604090205481565b34801561055357600080fd5b5061050c600a5481565b34801561056957600080fd5b5061045f6105783660046135a4565b610f90565b34801561058957600080fd5b5061050c60115481565b34801561059f57600080fd5b5061045f6105ae3660046136c3565b610f9b565b3480156105bf57600080fd5b5061050c6105ce366004613697565b610ffe565b3480156105df57600080fd5b5061045f6105ee3660046136c3565b611176565b3480156105ff57600080fd5b5061045f61060e3660046135a4565b6111a5565b34801561061f57600080fd5b5061045f61062e3660046136c3565b6111c0565b34801561063f57600080fd5b5061050c600f5481565b34801561065557600080fd5b5061045f6106643660046136c3565b6111ef565b34801561067557600080fd5b5061050c6106843660046136c3565b61121e565b34801561069557600080fd5b5061045f6106a43660046136c3565b611287565b3480156106b557600080fd5b5061045f6106c4366004613733565b6112b6565b3480156106d557600080fd5b5060165461043590610100900460ff1681565b3480156106f457600080fd5b506104a36107033660046136c3565b6112ec565b34801561071457600080fd5b5061045f6107233660046136c3565b6112fe565b34801561073457600080fd5b5061050c600d5481565b34801561074a57600080fd5b5061050c60125481565b34801561076057600080fd5b5061050c61076f36600461354e565b61132d565b34801561078057600080fd5b5061050c60105481565b34801561079657600080fd5b5061045f6113be565b3480156107ab57600080fd5b5061045f6107ba3660046136c3565b6113f4565b61045f6107cd3660046137ec565b611423565b3480156107de57600080fd5b5061045f6107ed3660046136c3565b6115f4565b3480156107fe57600080fd5b5061045f61080d3660046136c3565b6116f3565b34801561081e57600080fd5b5061050c601a5481565b34801561083457600080fd5b5061050c600b5481565b34801561084a57600080fd5b5061050c60185481565b34801561086057600080fd5b506016546104359062010000900460ff1681565b34801561088057600080fd5b506000546001600160a01b03166104a3565b34801561089e57600080fd5b50610476611722565b3480156108b357600080fd5b506108c76108c23660046136c3565b6117b0565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610441565b34801561090057600080fd5b5061045f6117cd565b34801561091557600080fd5b5061045f6109243660046136c3565b611816565b34801561093557600080fd5b50610476611845565b61045f61094c3660046136c3565b611854565b34801561095d57600080fd5b5061045f61096c366004613664565b61195a565b34801561097d57600080fd5b5061050c61098c36600461354e565b601b6020526000908152604090205481565b3480156109aa57600080fd5b5061045f611a1f565b3480156109bf57600080fd5b5061045f6109ce3660046135e5565b611afc565b3480156109df57600080fd5b5061050c600e5481565b3480156109f557600080fd5b5061050c60155481565b348015610a0b57600080fd5b50610476610a1a3660046136c3565b611b35565b348015610a2b57600080fd5b5061050c600c5481565b348015610a4157600080fd5b5061050c60145481565b348015610a5757600080fd5b5061045f610a663660046136c3565b611c02565b348015610a7757600080fd5b5061045f611c31565b348015610a8c57600080fd5b5061050c60085481565b348015610aa257600080fd5b5061045f611c78565b348015610ab757600080fd5b5061050c610ac636600461354e565b611cc3565b348015610ad757600080fd5b506016546104359060ff1681565b348015610af157600080fd5b50610435610b0036600461356b565b611cce565b348015610b1157600080fd5b5061045f610b203660046136c3565b611d0e565b348015610b3157600080fd5b5061045f610b4036600461354e565b611d3d565b348015610b5157600080fd5b5061050c60195481565b348015610b6757600080fd5b5061050c7f000000000000000000000000000000000000000000000000000000000000000081565b348015610b9b57600080fd5b5061050c60135481565b348015610bb157600080fd5b50601654610435906301000000900460ff1681565b348015610bd257600080fd5b5061050c610be136600461354e565b601c6020526000908152604090205481565b61045f610c013660046137ec565b611dd5565b348015610c1257600080fd5b5061050c610c2136600461354e565b601e6020526000908152604090205481565b61045f610c413660046137ec565b611f7c565b348015610c5257600080fd5b5061045f610c613660046136c3565b612128565b60006001600160e01b031982166380ac58cd60e01b1480610c9757506001600160e01b03198216635b5e139f60e01b145b80610cb257506001600160e01b0319821663780e9d6360e01b145b80610ccd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b03163314610d065760405162461bcd60e51b8152600401610cfd906139f7565b60405180910390fd5b6016805460ff19811660ff90911615179055565b606060028054610d2990613c62565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5590613c62565b8015610da25780601f10610d7757610100808354040283529160200191610da2565b820191906000526020600020905b815481529060010190602001808311610d8557829003601f168201915b5050505050905090565b6000610db9826001541190565b610e1b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610cfd565b506000908152600660205260409020546001600160a01b031690565b6000610e42826112ec565b9050806001600160a01b0316836001600160a01b03161415610eb15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610cfd565b336001600160a01b0382161480610ecd5750610ecd8133611cce565b610f3f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610cfd565b610f4a838383612157565b505050565b6000546001600160a01b03163314610f795760405162461bcd60e51b8152600401610cfd906139f7565b8051610f8c9060179060208401906133d0565b5050565b610f4a8383836121b3565b6000546001600160a01b03163314610fc55760405162461bcd60e51b8152600401610cfd906139f7565b60026009541415610fe85760405162461bcd60e51b8152600401610cfd90613aa7565b6002600955610ff681612539565b506001600955565b60006110098361132d565b82106110625760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610cfd565b600061106d60015490565b905060008060005b83811015611116576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156110c757805192505b876001600160a01b0316836001600160a01b0316141561110357868414156110f557509350610ccd92505050565b836110ff81613c9d565b9450505b508061110e81613c9d565b915050611075565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610cfd565b6000546001600160a01b031633146111a05760405162461bcd60e51b8152600401610cfd906139f7565b600e55565b610f4a83838360405180602001604052806000815250611afc565b6000546001600160a01b031633146111ea5760405162461bcd60e51b8152600401610cfd906139f7565b601155565b6000546001600160a01b031633146112195760405162461bcd60e51b8152600401610cfd906139f7565b601555565b600061122960015490565b82106112835760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610cfd565b5090565b6000546001600160a01b031633146112b15760405162461bcd60e51b8152600401610cfd906139f7565b601255565b6000546001600160a01b031633146112e05760405162461bcd60e51b8152600401610cfd906139f7565b610f4a601f8383613450565b60006112f782612722565b5192915050565b6000546001600160a01b031633146113285760405162461bcd60e51b8152600401610cfd906139f7565b601455565b60006001600160a01b0382166113995760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610cfd565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113e85760405162461bcd60e51b8152600401610cfd906139f7565b6113f260006128cb565b565b6000546001600160a01b0316331461141e5760405162461bcd60e51b8152600401610cfd906139f7565b601855565b3233146114425760405162461bcd60e51b8152600401610cfd90613977565b600260095414156114655760405162461bcd60e51b8152600401610cfd90613aa7565b600260095560165462010000900460ff166114c25760405162461bcd60e51b815260206004820152601860248201527f5075626c6963312073616c65206973206e6f74206c69766500000000000000006044820152606401610cfd565b600d5483111561152e5760405162461bcd60e51b815260206004820152603160248201527f6d696e74696e672074686973206d616e7920776f756c642065786365656420736044820152707570706c7920666f72205075626c69633160781b6064820152608401610cfd565b82600d60008282546115409190613c08565b90915550506040516001600160601b03193360601b1660208201526000906034016040516020818303038152906040528051906020012090506115ba83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a54915084905061291b565b6115d65760405162461bcd60e51b8152600401610cfd90613a7f565b6115df84612931565b6115e93385612a19565b505060016009555050565b6000546001600160a01b0316331461161e5760405162461bcd60e51b8152600401610cfd906139f7565b600a5481111561167b5760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b6064820152608401610cfd565b80600a600082825461168d9190613c08565b909155507f00000000000000000000000000000000000000000000000000000000000000009050816116be60015490565b6116c89190613b95565b11156116e65760405162461bcd60e51b8152600401610cfd906139ae565b6116f03382612a19565b50565b6000546001600160a01b0316331461171d5760405162461bcd60e51b8152600401610cfd906139f7565b601955565b6017805461172f90613c62565b80601f016020809104026020016040519081016040528092919081815260200182805461175b90613c62565b80156117a85780601f1061177d576101008083540402835291602001916117a8565b820191906000526020600020905b81548152906001019060200180831161178b57829003601f168201915b505050505081565b6040805180820190915260008082526020820152610ccd82612722565b6000546001600160a01b031633146117f75760405162461bcd60e51b8152600401610cfd906139f7565b6016805462ff0000198116620100009182900460ff1615909102179055565b6000546001600160a01b031633146118405760405162461bcd60e51b8152600401610cfd906139f7565b600f55565b606060038054610d2990613c62565b3233146118735760405162461bcd60e51b8152600401610cfd90613977565b600260095414156118965760405162461bcd60e51b8152600401610cfd90613aa7565b60026009556016546301000000900460ff166118f45760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c652032206973206e6f74206c697665000000000000006044820152606401610cfd565b7f00000000000000000000000000000000000000000000000000000000000000008161191f60015490565b6119299190613b95565b11156119475760405162461bcd60e51b8152600401610cfd906139ae565b61195081612a33565b610ff63382612a19565b6001600160a01b0382163314156119b35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610cfd565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611a495760405162461bcd60e51b8152600401610cfd906139f7565b60026009541415611a6c5760405162461bcd60e51b8152600401610cfd90613aa7565b6002600955604051600090339047908381818185875af1925050503d8060008114611ab3576040519150601f19603f3d011682016040523d82523d6000602084013e611ab8565b606091505b5050905080610ff65760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610cfd565b611b078484846121b3565b611b1384848484612b09565b611b2f5760405162461bcd60e51b8152600401610cfd90613a2c565b50505050565b6060611b42826001541190565b611ba65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cfd565b6000611bb0612c17565b90506000815111611bd05760405180602001604052806000815250611bfb565b80611bda84612c26565b604051602001611beb929190613896565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611c2c5760405162461bcd60e51b8152600401610cfd906139f7565b601a55565b6000546001600160a01b03163314611c5b5760405162461bcd60e51b8152600401610cfd906139f7565b6016805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314611ca25760405162461bcd60e51b8152600401610cfd906139f7565b6016805463ff00000019811663010000009182900460ff1615909102179055565b6000610ccd82612d23565b6000611cda8383612dc1565b80611bfb57506001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff16611bfb565b6000546001600160a01b03163314611d385760405162461bcd60e51b8152600401610cfd906139f7565b601355565b6000546001600160a01b03163314611d675760405162461bcd60e51b8152600401610cfd906139f7565b6001600160a01b038116611dcc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cfd565b6116f0816128cb565b323314611df45760405162461bcd60e51b8152600401610cfd90613977565b60026009541415611e175760405162461bcd60e51b8152600401610cfd90613aa7565b600260095560165460ff16611e645760405162461bcd60e51b81526020600482015260136024820152724f472073616c65206973206e6f74206c69766560681b6044820152606401610cfd565b600b54831115611ecb5760405162461bcd60e51b815260206004820152602c60248201527f6d696e74696e672074686973206d616e7920776f756c6420657863656564207360448201526b7570706c7920666f72204f4760a01b6064820152608401610cfd565b82600b6000828254611edd9190613c08565b90915550506040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611f5783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601854915084905061291b565b611f735760405162461bcd60e51b8152600401610cfd90613a7f565b6115df84612eb2565b323314611f9b5760405162461bcd60e51b8152600401610cfd90613977565b60026009541415611fbe5760405162461bcd60e51b8152600401610cfd90613aa7565b6002600955601654610100900460ff166120105760405162461bcd60e51b8152602060048201526013602482015272574c2073616c65206973206e6f74206c69766560681b6044820152606401610cfd565b600c548311156120775760405162461bcd60e51b815260206004820152602c60248201527f6d696e74696e672074686973206d616e7920776f756c6420657863656564207360448201526b1d5c1c1b1e48199bdc8815d360a21b6064820152608401610cfd565b82600c60008282546120899190613c08565b90915550506040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061210383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601954915084905061291b565b61211f5760405162461bcd60e51b8152600401610cfd90613a7f565b6115df84612f9a565b6000546001600160a01b031633146121525760405162461bcd60e51b8152600401610cfd906139f7565b601055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006121be82612722565b80519091506000906001600160a01b0316336001600160a01b031614806121f55750336121ea84610dac565b6001600160a01b0316145b80612207575081516122079033611cce565b9050806122715760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610cfd565b846001600160a01b031682600001516001600160a01b0316146122e55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610cfd565b6001600160a01b0384166123495760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610cfd565b6123596000848460000151612157565b6001600160a01b038516600090815260056020526040812080546001929061238b9084906001600160801b0316613be0565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926123d791859116613b6a565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561245e846001613b95565b6000818152600460205260409020549091506001600160a01b03166124ef57612488816001541190565b156124ef5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816125895760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610cfd565b600060016125978484613b95565b6125a19190613c08565b90506125ce60017f0000000000000000000000000000000000000000000000000000000000000000613c08565b8111156126035761260060017f0000000000000000000000000000000000000000000000000000000000000000613c08565b90505b61260e816001541190565b6126695760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610cfd565b815b81811161270e576000818152600460205260409020546001600160a01b03166126fc57600061269982612722565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061270681613c9d565b91505061266b565b5061271a816001613b95565b600855505050565b6040805180820190915260008082526020820152612741826001541190565b6127a05760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610cfd565b60007f00000000000000000000000000000000000000000000000000000000000000008310612801576127f37f000000000000000000000000000000000000000000000000000000000000000084613c08565b6127fe906001613b95565b90505b825b81811061286a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561285757949350505050565b508061286281613c4b565b915050612803565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610cfd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826129288584613082565b14949350505050565b60008111801561294357506010548111155b61295f5760405162461bcd60e51b8152600401610cfd90613b15565b7f00000000000000000000000000000000000000000000000000000000000000008161298a60015490565b6129949190613b95565b111561299f57600080fd5b806014546129ad9190613bc1565b34146129cb5760405162461bcd60e51b8152600401610cfd90613ade565b336000908152601d60205260409020546129e6908290613b95565b336000908152601d6020526040902081905560105410156116f05760405162461bcd60e51b8152600401610cfd90613925565b610f8c8282604051806020016040528060008152506130f6565b600081118015612a4557506011548111155b612a615760405162461bcd60e51b8152600401610cfd90613b15565b600081118015612a7357506015548111155b612a8f5760405162461bcd60e51b8152600401610cfd90613b15565b80601454612a9d9190613bc1565b3414612abb5760405162461bcd60e51b8152600401610cfd90613ade565b336000908152601e6020526040902054612ad6908290613b95565b336000908152601e6020526040902081905560115410156116f05760405162461bcd60e51b8152600401610cfd90613925565b60006001600160a01b0384163b15612c0b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612b4d9033908990889088906004016138d5565b602060405180830381600087803b158015612b6757600080fd5b505af1925050508015612b97575060408051601f3d908101601f19168201909252612b94918101906136f9565b60015b612bf1573d808015612bc5576040519150601f19603f3d011682016040523d82523d6000602084013e612bca565b606091505b508051612be95760405162461bcd60e51b8152600401610cfd90613a2c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612c0f565b5060015b949350505050565b6060601f8054610d2990613c62565b606081612c4a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c745780612c5e81613c9d565b9150612c6d9050600a83613bad565b9150612c4e565b6000816001600160401b03811115612c8e57612c8e613d0e565b6040519080825280601f01601f191660200182016040528015612cb8576020820181803683370190505b5090505b8415612c0f57612ccd600183613c08565b9150612cda600a86613cb8565b612ce5906030613b95565b60f81b818381518110612cfa57612cfa613cf8565b60200101906001600160f81b031916908160001a905350612d1c600a86613bad565b9450612cbc565b60006001600160a01b038216612d955760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610cfd565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6000804660018114612dda5760048114612df657612e0e565b73a5409ec958c83c3f309868babaca7c86dcb077c19150612e0e565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b03811615801590612c0f575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b158015612e6857600080fd5b505afa158015612e7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ea09190613716565b6001600160a01b031614949350505050565b600081118015612ec45750600e548111155b612ee05760405162461bcd60e51b8152600401610cfd90613b15565b7f000000000000000000000000000000000000000000000000000000000000000081612f0b60015490565b612f159190613b95565b1115612f2057600080fd5b80601254612f2e9190613bc1565b3414612f4c5760405162461bcd60e51b8152600401610cfd90613ade565b336000908152601b6020526040902054612f67908290613b95565b336000908152601b60205260409020819055600e5410156116f05760405162461bcd60e51b8152600401610cfd90613925565b600081118015612fac5750600f548111155b612fc85760405162461bcd60e51b8152600401610cfd90613b15565b7f000000000000000000000000000000000000000000000000000000000000000081612ff360015490565b612ffd9190613b95565b111561300857600080fd5b806013546130169190613bc1565b34146130345760405162461bcd60e51b8152600401610cfd90613ade565b336000908152601c602052604090205461304f908290613b95565b336000908152601c60205260409020819055600f5410156116f05760405162461bcd60e51b8152600401610cfd90613925565b600081815b84518110156130ee5760008582815181106130a4576130a4613cf8565b602002602001015190508083116130ca57600083815260208290526040902092506130db565b600081815260208490526040902092505b50806130e681613c9d565b915050613087565b509392505050565b6001546001600160a01b0384166131595760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610cfd565b613164816001541190565b156131b15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610cfd565b7f000000000000000000000000000000000000000000000000000000000000000083111561322c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610cfd565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613288908790613b6a565b6001600160801b031681526020018583602001516132a69190613b6a565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156133c55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46133896000888488612b09565b6133a55760405162461bcd60e51b8152600401610cfd90613a2c565b816133af81613c9d565b92505080806133bd90613c9d565b91505061333c565b506001819055612531565b8280546133dc90613c62565b90600052602060002090601f0160209004810192826133fe5760008555613444565b82601f1061341757805160ff1916838001178555613444565b82800160010185558215613444579182015b82811115613444578251825591602001919060010190613429565b506112839291506134c4565b82805461345c90613c62565b90600052602060002090601f01602090048101928261347e5760008555613444565b82601f106134975782800160ff19823516178555613444565b82800160010185558215613444579182015b828111156134445782358255916020019190600101906134a9565b5b8082111561128357600081556001016134c5565b60006001600160401b03808411156134f3576134f3613d0e565b604051601f8501601f19908116603f0116810190828211818310171561351b5761351b613d0e565b8160405280935085815286868601111561353457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561356057600080fd5b8135611bfb81613d24565b6000806040838503121561357e57600080fd5b823561358981613d24565b9150602083013561359981613d24565b809150509250929050565b6000806000606084860312156135b957600080fd5b83356135c481613d24565b925060208401356135d481613d24565b929592945050506040919091013590565b600080600080608085870312156135fb57600080fd5b843561360681613d24565b9350602085013561361681613d24565b92506040850135915060608501356001600160401b0381111561363857600080fd5b8501601f8101871361364957600080fd5b613658878235602084016134d9565b91505092959194509250565b6000806040838503121561367757600080fd5b823561368281613d24565b91506020830135801515811461359957600080fd5b600080604083850312156136aa57600080fd5b82356136b581613d24565b946020939093013593505050565b6000602082840312156136d557600080fd5b5035919050565b6000602082840312156136ee57600080fd5b8135611bfb81613d39565b60006020828403121561370b57600080fd5b8151611bfb81613d39565b60006020828403121561372857600080fd5b8151611bfb81613d24565b6000806020838503121561374657600080fd5b82356001600160401b038082111561375d57600080fd5b818501915085601f83011261377157600080fd5b81358181111561378057600080fd5b86602082850101111561379257600080fd5b60209290920196919550909350505050565b6000602082840312156137b657600080fd5b81356001600160401b038111156137cc57600080fd5b8201601f810184136137dd57600080fd5b612c0f848235602084016134d9565b60008060006040848603121561380157600080fd5b8335925060208401356001600160401b038082111561381f57600080fd5b818601915086601f83011261383357600080fd5b81358181111561384257600080fd5b8760208260051b850101111561385757600080fd5b6020830194508093505050509250925092565b60008151808452613882816020860160208601613c1f565b601f01601f19169290920160200192915050565b600083516138a8818460208801613c1f565b8351908301906138bc818360208801613c1f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906139089083018461386a565b9695505050505050565b602081526000611bfb602083018461386a565b60208082526032908201527f43616e6e6f74206d696e74206d6f7265207468616e20796f757220616c6c6f746040820152716d656e7420696e207468697320706861736560701b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526029908201527f696e76616c6964207175616e746974793a20776f756c6420657863656564206d604082015268617820737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252600e908201526d24b73b30b634b210383937b7b31760911b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601a908201527f77726f6e6720616d6f756e74206f662065746865722073656e74000000000000604082015260600190565b60208082526035908201527f696e76616c6964207175616e746974793a207a65726f206f722067726561746560408201527472207468616e206d696e7420616c6c6f77616e636560581b606082015260800190565b60006001600160801b03808316818516808303821115613b8c57613b8c613ccc565b01949350505050565b60008219821115613ba857613ba8613ccc565b500190565b600082613bbc57613bbc613ce2565b500490565b6000816000190483118215151615613bdb57613bdb613ccc565b500290565b60006001600160801b0383811690831681811015613c0057613c00613ccc565b039392505050565b600082821015613c1a57613c1a613ccc565b500390565b60005b83811015613c3a578181015183820152602001613c22565b83811115611b2f5750506000910152565b600081613c5a57613c5a613ccc565b506000190190565b600181811c90821680613c7657607f821691505b60208210811415613c9757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613cb157613cb1613ccc565b5060010190565b600082613cc757613cc7613ce2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146116f057600080fd5b6001600160e01b0319811681146116f057600080fdfea26469706673582212200d607bfa7a924905cf435fa6aaf0602130407229837181fcbe2d4f1cac57adb464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000000000000000115c
Deployed Bytecode
0x6080604052600436106104105760003560e01c80638832fedc1161021e578063d3ae3ff611610123578063f3fa9251116100ab578063fab905fa1161007a578063fab905fa14610bc6578063fcd4b6c414610bf3578063fd92e66214610c06578063fde32d9f14610c33578063fdee19ed14610c4657600080fd5b8063f3fa925114610b45578063f47c84c514610b5b578063f4ee6f9c14610b8f578063f69cf06f14610ba557600080fd5b8063dc33e681116100f2578063dc33e68114610aab578063e150795d14610acb578063e985e9c514610ae5578063f14f2a4514610b05578063f2fde38b14610b2557600080fd5b8063d3ae3ff614610a4b578063d6793b4114610a6b578063d7224ba014610a80578063d79802a914610a9657600080fd5b8063a22cb465116101a6578063c26ced5f11610175578063c26ced5f146109d3578063c6a91b42146109e9578063c87b56dd146109ff578063c91d5f9714610a1f578063d2d8cb6714610a3557600080fd5b8063a22cb46514610951578063a5c351fd14610971578063ac4460021461099e578063b88d4fde146109b357600080fd5b80639231ab2a116101ed5780639231ab2a146108a757806392c7e9ab146108f4578063948f62a81461090957806395d89b4114610929578063a0712d681461093e57600080fd5b80638832fedc1461083e5780638b7f3e5e146108545780638da5cb5b146108745780638ffad4221461089257600080fd5b80634f4342e21161032457806370a08231116102ac57806379eb6d271161027b57806379eb6d27146107bf5780637a37744a146107d25780637db1d684146107f25780637e736d8d14610812578063814a4c1e1461082857600080fd5b806370a082311461075457806370ee861b14610774578063715018a61461078a57806372a6b4201461079f57600080fd5b806359da6871116102f357806359da6871146106c95780636352211e146106e857806364be528714610708578063683e02c21461072857806368df66a61461073e57600080fd5b80634f4342e2146106495780634f6ccce714610669578063513744de1461068957806355f804b3146106a957600080fd5b80631bbaa8ec116103a75780632f745c59116103765780632f745c59146105b357806333703747146105d357806342842e0e146105f357806342f84718146106135780634b0b5bc11461063357600080fd5b80631bbaa8ec1461054757806323b872dd1461055d578063274be7971461057d5780632d20fb601461059357600080fd5b8063095ea7b3116103e3578063095ea7b3146104bb57806310969523146104db57806318160ddd146104fb5780631a38dd741461051a57600080fd5b806301ffc9a71461041557806304736a561461044a57806306fdde0314610461578063081812fc14610483575b600080fd5b34801561042157600080fd5b506104356104303660046136dc565b610c66565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610cd3565b005b34801561046d57600080fd5b50610476610d1a565b6040516104419190613912565b34801561048f57600080fd5b506104a361049e3660046136c3565b610dac565b6040516001600160a01b039091168152602001610441565b3480156104c757600080fd5b5061045f6104d6366004613697565b610e37565b3480156104e757600080fd5b5061045f6104f63660046137a4565b610f4f565b34801561050757600080fd5b506001545b604051908152602001610441565b34801561052657600080fd5b5061050c61053536600461354e565b601d6020526000908152604090205481565b34801561055357600080fd5b5061050c600a5481565b34801561056957600080fd5b5061045f6105783660046135a4565b610f90565b34801561058957600080fd5b5061050c60115481565b34801561059f57600080fd5b5061045f6105ae3660046136c3565b610f9b565b3480156105bf57600080fd5b5061050c6105ce366004613697565b610ffe565b3480156105df57600080fd5b5061045f6105ee3660046136c3565b611176565b3480156105ff57600080fd5b5061045f61060e3660046135a4565b6111a5565b34801561061f57600080fd5b5061045f61062e3660046136c3565b6111c0565b34801561063f57600080fd5b5061050c600f5481565b34801561065557600080fd5b5061045f6106643660046136c3565b6111ef565b34801561067557600080fd5b5061050c6106843660046136c3565b61121e565b34801561069557600080fd5b5061045f6106a43660046136c3565b611287565b3480156106b557600080fd5b5061045f6106c4366004613733565b6112b6565b3480156106d557600080fd5b5060165461043590610100900460ff1681565b3480156106f457600080fd5b506104a36107033660046136c3565b6112ec565b34801561071457600080fd5b5061045f6107233660046136c3565b6112fe565b34801561073457600080fd5b5061050c600d5481565b34801561074a57600080fd5b5061050c60125481565b34801561076057600080fd5b5061050c61076f36600461354e565b61132d565b34801561078057600080fd5b5061050c60105481565b34801561079657600080fd5b5061045f6113be565b3480156107ab57600080fd5b5061045f6107ba3660046136c3565b6113f4565b61045f6107cd3660046137ec565b611423565b3480156107de57600080fd5b5061045f6107ed3660046136c3565b6115f4565b3480156107fe57600080fd5b5061045f61080d3660046136c3565b6116f3565b34801561081e57600080fd5b5061050c601a5481565b34801561083457600080fd5b5061050c600b5481565b34801561084a57600080fd5b5061050c60185481565b34801561086057600080fd5b506016546104359062010000900460ff1681565b34801561088057600080fd5b506000546001600160a01b03166104a3565b34801561089e57600080fd5b50610476611722565b3480156108b357600080fd5b506108c76108c23660046136c3565b6117b0565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610441565b34801561090057600080fd5b5061045f6117cd565b34801561091557600080fd5b5061045f6109243660046136c3565b611816565b34801561093557600080fd5b50610476611845565b61045f61094c3660046136c3565b611854565b34801561095d57600080fd5b5061045f61096c366004613664565b61195a565b34801561097d57600080fd5b5061050c61098c36600461354e565b601b6020526000908152604090205481565b3480156109aa57600080fd5b5061045f611a1f565b3480156109bf57600080fd5b5061045f6109ce3660046135e5565b611afc565b3480156109df57600080fd5b5061050c600e5481565b3480156109f557600080fd5b5061050c60155481565b348015610a0b57600080fd5b50610476610a1a3660046136c3565b611b35565b348015610a2b57600080fd5b5061050c600c5481565b348015610a4157600080fd5b5061050c60145481565b348015610a5757600080fd5b5061045f610a663660046136c3565b611c02565b348015610a7757600080fd5b5061045f611c31565b348015610a8c57600080fd5b5061050c60085481565b348015610aa257600080fd5b5061045f611c78565b348015610ab757600080fd5b5061050c610ac636600461354e565b611cc3565b348015610ad757600080fd5b506016546104359060ff1681565b348015610af157600080fd5b50610435610b0036600461356b565b611cce565b348015610b1157600080fd5b5061045f610b203660046136c3565b611d0e565b348015610b3157600080fd5b5061045f610b4036600461354e565b611d3d565b348015610b5157600080fd5b5061050c60195481565b348015610b6757600080fd5b5061050c7f000000000000000000000000000000000000000000000000000000000000115c81565b348015610b9b57600080fd5b5061050c60135481565b348015610bb157600080fd5b50601654610435906301000000900460ff1681565b348015610bd257600080fd5b5061050c610be136600461354e565b601c6020526000908152604090205481565b61045f610c013660046137ec565b611dd5565b348015610c1257600080fd5b5061050c610c2136600461354e565b601e6020526000908152604090205481565b61045f610c413660046137ec565b611f7c565b348015610c5257600080fd5b5061045f610c613660046136c3565b612128565b60006001600160e01b031982166380ac58cd60e01b1480610c9757506001600160e01b03198216635b5e139f60e01b145b80610cb257506001600160e01b0319821663780e9d6360e01b145b80610ccd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b03163314610d065760405162461bcd60e51b8152600401610cfd906139f7565b60405180910390fd5b6016805460ff19811660ff90911615179055565b606060028054610d2990613c62565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5590613c62565b8015610da25780601f10610d7757610100808354040283529160200191610da2565b820191906000526020600020905b815481529060010190602001808311610d8557829003601f168201915b5050505050905090565b6000610db9826001541190565b610e1b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610cfd565b506000908152600660205260409020546001600160a01b031690565b6000610e42826112ec565b9050806001600160a01b0316836001600160a01b03161415610eb15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610cfd565b336001600160a01b0382161480610ecd5750610ecd8133611cce565b610f3f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610cfd565b610f4a838383612157565b505050565b6000546001600160a01b03163314610f795760405162461bcd60e51b8152600401610cfd906139f7565b8051610f8c9060179060208401906133d0565b5050565b610f4a8383836121b3565b6000546001600160a01b03163314610fc55760405162461bcd60e51b8152600401610cfd906139f7565b60026009541415610fe85760405162461bcd60e51b8152600401610cfd90613aa7565b6002600955610ff681612539565b506001600955565b60006110098361132d565b82106110625760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610cfd565b600061106d60015490565b905060008060005b83811015611116576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156110c757805192505b876001600160a01b0316836001600160a01b0316141561110357868414156110f557509350610ccd92505050565b836110ff81613c9d565b9450505b508061110e81613c9d565b915050611075565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610cfd565b6000546001600160a01b031633146111a05760405162461bcd60e51b8152600401610cfd906139f7565b600e55565b610f4a83838360405180602001604052806000815250611afc565b6000546001600160a01b031633146111ea5760405162461bcd60e51b8152600401610cfd906139f7565b601155565b6000546001600160a01b031633146112195760405162461bcd60e51b8152600401610cfd906139f7565b601555565b600061122960015490565b82106112835760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610cfd565b5090565b6000546001600160a01b031633146112b15760405162461bcd60e51b8152600401610cfd906139f7565b601255565b6000546001600160a01b031633146112e05760405162461bcd60e51b8152600401610cfd906139f7565b610f4a601f8383613450565b60006112f782612722565b5192915050565b6000546001600160a01b031633146113285760405162461bcd60e51b8152600401610cfd906139f7565b601455565b60006001600160a01b0382166113995760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610cfd565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113e85760405162461bcd60e51b8152600401610cfd906139f7565b6113f260006128cb565b565b6000546001600160a01b0316331461141e5760405162461bcd60e51b8152600401610cfd906139f7565b601855565b3233146114425760405162461bcd60e51b8152600401610cfd90613977565b600260095414156114655760405162461bcd60e51b8152600401610cfd90613aa7565b600260095560165462010000900460ff166114c25760405162461bcd60e51b815260206004820152601860248201527f5075626c6963312073616c65206973206e6f74206c69766500000000000000006044820152606401610cfd565b600d5483111561152e5760405162461bcd60e51b815260206004820152603160248201527f6d696e74696e672074686973206d616e7920776f756c642065786365656420736044820152707570706c7920666f72205075626c69633160781b6064820152608401610cfd565b82600d60008282546115409190613c08565b90915550506040516001600160601b03193360601b1660208201526000906034016040516020818303038152906040528051906020012090506115ba83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a54915084905061291b565b6115d65760405162461bcd60e51b8152600401610cfd90613a7f565b6115df84612931565b6115e93385612a19565b505060016009555050565b6000546001600160a01b0316331461161e5760405162461bcd60e51b8152600401610cfd906139f7565b600a5481111561167b5760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b6064820152608401610cfd565b80600a600082825461168d9190613c08565b909155507f000000000000000000000000000000000000000000000000000000000000115c9050816116be60015490565b6116c89190613b95565b11156116e65760405162461bcd60e51b8152600401610cfd906139ae565b6116f03382612a19565b50565b6000546001600160a01b0316331461171d5760405162461bcd60e51b8152600401610cfd906139f7565b601955565b6017805461172f90613c62565b80601f016020809104026020016040519081016040528092919081815260200182805461175b90613c62565b80156117a85780601f1061177d576101008083540402835291602001916117a8565b820191906000526020600020905b81548152906001019060200180831161178b57829003601f168201915b505050505081565b6040805180820190915260008082526020820152610ccd82612722565b6000546001600160a01b031633146117f75760405162461bcd60e51b8152600401610cfd906139f7565b6016805462ff0000198116620100009182900460ff1615909102179055565b6000546001600160a01b031633146118405760405162461bcd60e51b8152600401610cfd906139f7565b600f55565b606060038054610d2990613c62565b3233146118735760405162461bcd60e51b8152600401610cfd90613977565b600260095414156118965760405162461bcd60e51b8152600401610cfd90613aa7565b60026009556016546301000000900460ff166118f45760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c652032206973206e6f74206c697665000000000000006044820152606401610cfd565b7f000000000000000000000000000000000000000000000000000000000000115c8161191f60015490565b6119299190613b95565b11156119475760405162461bcd60e51b8152600401610cfd906139ae565b61195081612a33565b610ff63382612a19565b6001600160a01b0382163314156119b35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610cfd565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611a495760405162461bcd60e51b8152600401610cfd906139f7565b60026009541415611a6c5760405162461bcd60e51b8152600401610cfd90613aa7565b6002600955604051600090339047908381818185875af1925050503d8060008114611ab3576040519150601f19603f3d011682016040523d82523d6000602084013e611ab8565b606091505b5050905080610ff65760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610cfd565b611b078484846121b3565b611b1384848484612b09565b611b2f5760405162461bcd60e51b8152600401610cfd90613a2c565b50505050565b6060611b42826001541190565b611ba65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cfd565b6000611bb0612c17565b90506000815111611bd05760405180602001604052806000815250611bfb565b80611bda84612c26565b604051602001611beb929190613896565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611c2c5760405162461bcd60e51b8152600401610cfd906139f7565b601a55565b6000546001600160a01b03163314611c5b5760405162461bcd60e51b8152600401610cfd906139f7565b6016805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314611ca25760405162461bcd60e51b8152600401610cfd906139f7565b6016805463ff00000019811663010000009182900460ff1615909102179055565b6000610ccd82612d23565b6000611cda8383612dc1565b80611bfb57506001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff16611bfb565b6000546001600160a01b03163314611d385760405162461bcd60e51b8152600401610cfd906139f7565b601355565b6000546001600160a01b03163314611d675760405162461bcd60e51b8152600401610cfd906139f7565b6001600160a01b038116611dcc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cfd565b6116f0816128cb565b323314611df45760405162461bcd60e51b8152600401610cfd90613977565b60026009541415611e175760405162461bcd60e51b8152600401610cfd90613aa7565b600260095560165460ff16611e645760405162461bcd60e51b81526020600482015260136024820152724f472073616c65206973206e6f74206c69766560681b6044820152606401610cfd565b600b54831115611ecb5760405162461bcd60e51b815260206004820152602c60248201527f6d696e74696e672074686973206d616e7920776f756c6420657863656564207360448201526b7570706c7920666f72204f4760a01b6064820152608401610cfd565b82600b6000828254611edd9190613c08565b90915550506040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611f5783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601854915084905061291b565b611f735760405162461bcd60e51b8152600401610cfd90613a7f565b6115df84612eb2565b323314611f9b5760405162461bcd60e51b8152600401610cfd90613977565b60026009541415611fbe5760405162461bcd60e51b8152600401610cfd90613aa7565b6002600955601654610100900460ff166120105760405162461bcd60e51b8152602060048201526013602482015272574c2073616c65206973206e6f74206c69766560681b6044820152606401610cfd565b600c548311156120775760405162461bcd60e51b815260206004820152602c60248201527f6d696e74696e672074686973206d616e7920776f756c6420657863656564207360448201526b1d5c1c1b1e48199bdc8815d360a21b6064820152608401610cfd565b82600c60008282546120899190613c08565b90915550506040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061210383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601954915084905061291b565b61211f5760405162461bcd60e51b8152600401610cfd90613a7f565b6115df84612f9a565b6000546001600160a01b031633146121525760405162461bcd60e51b8152600401610cfd906139f7565b601055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006121be82612722565b80519091506000906001600160a01b0316336001600160a01b031614806121f55750336121ea84610dac565b6001600160a01b0316145b80612207575081516122079033611cce565b9050806122715760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610cfd565b846001600160a01b031682600001516001600160a01b0316146122e55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610cfd565b6001600160a01b0384166123495760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610cfd565b6123596000848460000151612157565b6001600160a01b038516600090815260056020526040812080546001929061238b9084906001600160801b0316613be0565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926123d791859116613b6a565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561245e846001613b95565b6000818152600460205260409020549091506001600160a01b03166124ef57612488816001541190565b156124ef5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816125895760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610cfd565b600060016125978484613b95565b6125a19190613c08565b90506125ce60017f000000000000000000000000000000000000000000000000000000000000115c613c08565b8111156126035761260060017f000000000000000000000000000000000000000000000000000000000000115c613c08565b90505b61260e816001541190565b6126695760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610cfd565b815b81811161270e576000818152600460205260409020546001600160a01b03166126fc57600061269982612722565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061270681613c9d565b91505061266b565b5061271a816001613b95565b600855505050565b6040805180820190915260008082526020820152612741826001541190565b6127a05760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610cfd565b60007f00000000000000000000000000000000000000000000000000000000000000328310612801576127f37f000000000000000000000000000000000000000000000000000000000000003284613c08565b6127fe906001613b95565b90505b825b81811061286a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561285757949350505050565b508061286281613c4b565b915050612803565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610cfd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826129288584613082565b14949350505050565b60008111801561294357506010548111155b61295f5760405162461bcd60e51b8152600401610cfd90613b15565b7f000000000000000000000000000000000000000000000000000000000000115c8161298a60015490565b6129949190613b95565b111561299f57600080fd5b806014546129ad9190613bc1565b34146129cb5760405162461bcd60e51b8152600401610cfd90613ade565b336000908152601d60205260409020546129e6908290613b95565b336000908152601d6020526040902081905560105410156116f05760405162461bcd60e51b8152600401610cfd90613925565b610f8c8282604051806020016040528060008152506130f6565b600081118015612a4557506011548111155b612a615760405162461bcd60e51b8152600401610cfd90613b15565b600081118015612a7357506015548111155b612a8f5760405162461bcd60e51b8152600401610cfd90613b15565b80601454612a9d9190613bc1565b3414612abb5760405162461bcd60e51b8152600401610cfd90613ade565b336000908152601e6020526040902054612ad6908290613b95565b336000908152601e6020526040902081905560115410156116f05760405162461bcd60e51b8152600401610cfd90613925565b60006001600160a01b0384163b15612c0b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612b4d9033908990889088906004016138d5565b602060405180830381600087803b158015612b6757600080fd5b505af1925050508015612b97575060408051601f3d908101601f19168201909252612b94918101906136f9565b60015b612bf1573d808015612bc5576040519150601f19603f3d011682016040523d82523d6000602084013e612bca565b606091505b508051612be95760405162461bcd60e51b8152600401610cfd90613a2c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612c0f565b5060015b949350505050565b6060601f8054610d2990613c62565b606081612c4a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c745780612c5e81613c9d565b9150612c6d9050600a83613bad565b9150612c4e565b6000816001600160401b03811115612c8e57612c8e613d0e565b6040519080825280601f01601f191660200182016040528015612cb8576020820181803683370190505b5090505b8415612c0f57612ccd600183613c08565b9150612cda600a86613cb8565b612ce5906030613b95565b60f81b818381518110612cfa57612cfa613cf8565b60200101906001600160f81b031916908160001a905350612d1c600a86613bad565b9450612cbc565b60006001600160a01b038216612d955760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610cfd565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6000804660018114612dda5760048114612df657612e0e565b73a5409ec958c83c3f309868babaca7c86dcb077c19150612e0e565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b03811615801590612c0f575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b158015612e6857600080fd5b505afa158015612e7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ea09190613716565b6001600160a01b031614949350505050565b600081118015612ec45750600e548111155b612ee05760405162461bcd60e51b8152600401610cfd90613b15565b7f000000000000000000000000000000000000000000000000000000000000115c81612f0b60015490565b612f159190613b95565b1115612f2057600080fd5b80601254612f2e9190613bc1565b3414612f4c5760405162461bcd60e51b8152600401610cfd90613ade565b336000908152601b6020526040902054612f67908290613b95565b336000908152601b60205260409020819055600e5410156116f05760405162461bcd60e51b8152600401610cfd90613925565b600081118015612fac5750600f548111155b612fc85760405162461bcd60e51b8152600401610cfd90613b15565b7f000000000000000000000000000000000000000000000000000000000000115c81612ff360015490565b612ffd9190613b95565b111561300857600080fd5b806013546130169190613bc1565b34146130345760405162461bcd60e51b8152600401610cfd90613ade565b336000908152601c602052604090205461304f908290613b95565b336000908152601c60205260409020819055600f5410156116f05760405162461bcd60e51b8152600401610cfd90613925565b600081815b84518110156130ee5760008582815181106130a4576130a4613cf8565b602002602001015190508083116130ca57600083815260208290526040902092506130db565b600081815260208490526040902092505b50806130e681613c9d565b915050613087565b509392505050565b6001546001600160a01b0384166131595760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610cfd565b613164816001541190565b156131b15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610cfd565b7f000000000000000000000000000000000000000000000000000000000000003283111561322c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610cfd565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613288908790613b6a565b6001600160801b031681526020018583602001516132a69190613b6a565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156133c55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46133896000888488612b09565b6133a55760405162461bcd60e51b8152600401610cfd90613a2c565b816133af81613c9d565b92505080806133bd90613c9d565b91505061333c565b506001819055612531565b8280546133dc90613c62565b90600052602060002090601f0160209004810192826133fe5760008555613444565b82601f1061341757805160ff1916838001178555613444565b82800160010185558215613444579182015b82811115613444578251825591602001919060010190613429565b506112839291506134c4565b82805461345c90613c62565b90600052602060002090601f01602090048101928261347e5760008555613444565b82601f106134975782800160ff19823516178555613444565b82800160010185558215613444579182015b828111156134445782358255916020019190600101906134a9565b5b8082111561128357600081556001016134c5565b60006001600160401b03808411156134f3576134f3613d0e565b604051601f8501601f19908116603f0116810190828211818310171561351b5761351b613d0e565b8160405280935085815286868601111561353457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561356057600080fd5b8135611bfb81613d24565b6000806040838503121561357e57600080fd5b823561358981613d24565b9150602083013561359981613d24565b809150509250929050565b6000806000606084860312156135b957600080fd5b83356135c481613d24565b925060208401356135d481613d24565b929592945050506040919091013590565b600080600080608085870312156135fb57600080fd5b843561360681613d24565b9350602085013561361681613d24565b92506040850135915060608501356001600160401b0381111561363857600080fd5b8501601f8101871361364957600080fd5b613658878235602084016134d9565b91505092959194509250565b6000806040838503121561367757600080fd5b823561368281613d24565b91506020830135801515811461359957600080fd5b600080604083850312156136aa57600080fd5b82356136b581613d24565b946020939093013593505050565b6000602082840312156136d557600080fd5b5035919050565b6000602082840312156136ee57600080fd5b8135611bfb81613d39565b60006020828403121561370b57600080fd5b8151611bfb81613d39565b60006020828403121561372857600080fd5b8151611bfb81613d24565b6000806020838503121561374657600080fd5b82356001600160401b038082111561375d57600080fd5b818501915085601f83011261377157600080fd5b81358181111561378057600080fd5b86602082850101111561379257600080fd5b60209290920196919550909350505050565b6000602082840312156137b657600080fd5b81356001600160401b038111156137cc57600080fd5b8201601f810184136137dd57600080fd5b612c0f848235602084016134d9565b60008060006040848603121561380157600080fd5b8335925060208401356001600160401b038082111561381f57600080fd5b818601915086601f83011261383357600080fd5b81358181111561384257600080fd5b8760208260051b850101111561385757600080fd5b6020830194508093505050509250925092565b60008151808452613882816020860160208601613c1f565b601f01601f19169290920160200192915050565b600083516138a8818460208801613c1f565b8351908301906138bc818360208801613c1f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906139089083018461386a565b9695505050505050565b602081526000611bfb602083018461386a565b60208082526032908201527f43616e6e6f74206d696e74206d6f7265207468616e20796f757220616c6c6f746040820152716d656e7420696e207468697320706861736560701b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526029908201527f696e76616c6964207175616e746974793a20776f756c6420657863656564206d604082015268617820737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252600e908201526d24b73b30b634b210383937b7b31760911b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601a908201527f77726f6e6720616d6f756e74206f662065746865722073656e74000000000000604082015260600190565b60208082526035908201527f696e76616c6964207175616e746974793a207a65726f206f722067726561746560408201527472207468616e206d696e7420616c6c6f77616e636560581b606082015260800190565b60006001600160801b03808316818516808303821115613b8c57613b8c613ccc565b01949350505050565b60008219821115613ba857613ba8613ccc565b500190565b600082613bbc57613bbc613ce2565b500490565b6000816000190483118215151615613bdb57613bdb613ccc565b500290565b60006001600160801b0383811690831681811015613c0057613c00613ccc565b039392505050565b600082821015613c1a57613c1a613ccc565b500390565b60005b83811015613c3a578181015183820152602001613c22565b83811115611b2f5750506000910152565b600081613c5a57613c5a613ccc565b506000190190565b600181811c90821680613c7657607f821691505b60208210811415613c9757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613cb157613cb1613ccc565b5060010190565b600082613cc757613cc7613ce2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146116f057600080fd5b6001600160e01b0319811681146116f057600080fdfea26469706673582212200d607bfa7a924905cf435fa6aaf0602130407229837181fcbe2d4f1cac57adb464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000000000000000115c
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 50
Arg [1] : collectionSize_ (uint256): 4444
Arg [2] : maxTOKENS_ (uint256): 4444
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [1] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [2] : 000000000000000000000000000000000000000000000000000000000000115c
Deployed Bytecode Sourcemap
50378:10802:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36231:370;;;;;;;;;;-1:-1:-1;36231:370:0;;;;;:::i;:::-;;:::i;:::-;;;8409:14:1;;8402:22;8384:41;;8372:2;8357:18;36231:370:0;;;;;;;;58011:76;;;;;;;;;;;;;:::i;:::-;;37957:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39490:204::-;;;;;;;;;;-1:-1:-1;39490:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7707:32:1;;;7689:51;;7677:2;7662:18;39490:204:0;7543:203:1;39053:379:0;;;;;;;;;;-1:-1:-1;39053:379:0;;;;;:::i;:::-;;:::i;60480:126::-;;;;;;;;;;-1:-1:-1;60480:126:0;;;;;:::i;:::-;;:::i;34792:94::-;;;;;;;;;;-1:-1:-1;34868:12:0;;34792:94;;;8582:25:1;;;8570:2;8555:18;34792:94:0;8436:177:1;52449:49:0;;;;;;;;;;-1:-1:-1;52449:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;50590:46;;;;;;;;;;;;;;;;40340:142;;;;;;;;;;-1:-1:-1;40340:142:0;;;;;:::i;:::-;;:::i;51413:50::-;;;;;;;;;;;;;;;;58492:118;;;;;;;;;;-1:-1:-1;58492:118:0;;;;;:::i;:::-;;:::i;35423:744::-;;;;;;;;;;-1:-1:-1;35423:744:0;;;;;:::i;:::-;;:::i;59260:162::-;;;;;;;;;;-1:-1:-1;59260:162:0;;;;;:::i;:::-;;:::i;40545:157::-;;;;;;;;;;-1:-1:-1;40545:157:0;;;;;:::i;:::-;;:::i;59790:182::-;;;;;;;;;;-1:-1:-1;59790:182:0;;;;;:::i;:::-;;:::i;51172:44::-;;;;;;;;;;;;;;;;59980:126;;;;;;;;;;-1:-1:-1;59980:126:0;;;;;:::i;:::-;;:::i;34955:177::-;;;;;;;;;;-1:-1:-1;34955:177:0;;;;;:::i;:::-;;:::i;60114:118::-;;;;;;;;;;-1:-1:-1;60114:118:0;;;;;:::i;:::-;;:::i;58795:100::-;;;;;;;;;;-1:-1:-1;58795:100:0;;;;;:::i;:::-;;:::i;51825:26::-;;;;;;;;;;-1:-1:-1;51825:26:0;;;;;;;;;;;37780:118;;;;;;;;;;-1:-1:-1;37780:118:0;;;;;:::i;:::-;;:::i;60366:106::-;;;;;;;;;;-1:-1:-1;60366:106:0;;;;;:::i;:::-;;:::i;50954:33::-;;;;;;;;;;;;;;;;51500:42;;;;;;;;;;;;;;;;36657:211;;;;;;;;;;-1:-1:-1;36657:211:0;;;;;:::i;:::-;;:::i;51290:49::-;;;;;;;;;;;;;;;;28936:103;;;;;;;;;;;;;:::i;58904:104::-;;;;;;;;;;-1:-1:-1;58904:104:0;;;;;:::i;:::-;;:::i;55424:588::-;;;;;;:::i;:::-;;:::i;57638:365::-;;;;;;;;;;-1:-1:-1;57638:365:0;;;;;:::i;:::-;;:::i;59016:104::-;;;;;;;;;;-1:-1:-1;59016:104:0;;;;;:::i;:::-;;:::i;52135:32::-;;;;;;;;;;;;;;;;50788:27;;;;;;;;;;;;;;;;51998;;;;;;;;;;;;;;;;51858:31;;;;;;;;;;-1:-1:-1;51858:31:0;;;;;;;;;;;28285:87;;;;;;;;;;-1:-1:-1;28331:7:0;28358:6;-1:-1:-1;;;;;28358:6:0;28285:87;;51934:28;;;;;;;;;;;;;:::i;60841:147::-;;;;;;;;;;-1:-1:-1;60841:147:0;;;;;:::i;:::-;;:::i;:::-;;;;24371:13:1;;-1:-1:-1;;;;;24367:39:1;24349:58;;24467:4;24455:17;;;24449:24;-1:-1:-1;;;;;24445:49:1;24423:20;;;24416:79;;;;24322:18;60841:147:0;24141:360:1;58179:91:0;;;;;;;;;;;;;:::i;59430:162::-;;;;;;;;;;-1:-1:-1;59430:162:0;;;;;:::i;:::-;;:::i;38112:98::-;;;;;;;;;;;;;:::i;56624:331::-;;;;;;:::i;:::-;;:::i;39758:274::-;;;;;;;;;;-1:-1:-1;39758:274:0;;;;;:::i;:::-;;:::i;52230:44::-;;;;;;;;;;-1:-1:-1;52230:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;60994:181;;;;;;;;;;;;;:::i;40765:311::-;;;;;;;;;;-1:-1:-1;40765:311:0;;;;;:::i;:::-;;:::i;51059:44::-;;;;;;;;;;;;;;;;51747:36;;;;;;;;;;;;;;;;38273:402;;;;;;;;;;-1:-1:-1;38273:402:0;;;;;:::i;:::-;;:::i;50868:28::-;;;;;;;;;;;;;;;;51654:39;;;;;;;;;;;;;;;;59128:124;;;;;;;;;;-1:-1:-1;59128:124:0;;;;;:::i;:::-;;:::i;58095:76::-;;;;;;;;;;;;;:::i;45180:43::-;;;;;;;;;;;;;;;;58278:91;;;;;;;;;;;;;:::i;58377:107::-;;;;;;;;;;-1:-1:-1;58377:107:0;;;;;:::i;:::-;;:::i;51792:26::-;;;;;;;;;;-1:-1:-1;51792:26:0;;;;;;;;60614:219;;;;;;;;;;-1:-1:-1;60614:219:0;;;;;:::i;:::-;;:::i;60240:118::-;;;;;;;;;;-1:-1:-1;60240:118:0;;;;;:::i;:::-;;:::i;29194:201::-;;;;;;;;;;-1:-1:-1;29194:201:0;;;;;:::i;:::-;;:::i;52068:27::-;;;;;;;;;;;;;;;;50701:35;;;;;;;;;;;;;;;51579:42;;;;;;;;;;;;;;;;51896:31;;;;;;;;;;-1:-1:-1;51896:31:0;;;;;;;;;;;52337:44;;;;;;;;;;-1:-1:-1;52337:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;53136:541;;;;;;:::i;:::-;;:::i;52566:49::-;;;;;;;;;;-1:-1:-1;52566:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;54274:541;;;;;;:::i;:::-;;:::i;59600:182::-;;;;;;;;;;-1:-1:-1;59600:182:0;;;;;:::i;:::-;;:::i;36231:370::-;36358:4;-1:-1:-1;;;;;;36388:40:0;;-1:-1:-1;;;36388:40:0;;:99;;-1:-1:-1;;;;;;;36439:48:0;;-1:-1:-1;;;36439:48:0;36388:99;:160;;;-1:-1:-1;;;;;;;36498:50:0;;-1:-1:-1;;;36498:50:0;36388:160;:207;;;-1:-1:-1;;;;;;;;;;15007:40:0;;;36559:36;36374:221;36231:370;-1:-1:-1;;36231:370:0:o;58011:76::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;;;;;;;;;58073:6:::1;::::0;;-1:-1:-1;;58063:16:0;::::1;58073:6;::::0;;::::1;58072:7;58063:16;::::0;;58011:76::o;37957:94::-;38011:13;38040:5;38033:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37957:94;:::o;39490:204::-;39558:7;39582:16;39590:7;41402:12;;-1:-1:-1;41392:22:0;41315:105;39582:16;39574:74;;;;-1:-1:-1;;;39574:74:0;;23526:2:1;39574:74:0;;;23508:21:1;23565:2;23545:18;;;23538:30;23604:34;23584:18;;;23577:62;-1:-1:-1;;;23655:18:1;;;23648:43;23708:19;;39574:74:0;23324:409:1;39574:74:0;-1:-1:-1;39664:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39664:24:0;;39490:204::o;39053:379::-;39122:13;39138:24;39154:7;39138:15;:24::i;:::-;39122:40;;39183:5;-1:-1:-1;;;;;39177:11:0;:2;-1:-1:-1;;;;;39177:11:0;;;39169:58;;;;-1:-1:-1;;;39169:58:0;;18532:2:1;39169:58:0;;;18514:21:1;18571:2;18551:18;;;18544:30;18610:34;18590:18;;;18583:62;-1:-1:-1;;;18661:18:1;;;18654:32;18703:19;;39169:58:0;18330:398:1;39169:58:0;27089:10;-1:-1:-1;;;;;39252:21:0;;;;:62;;-1:-1:-1;39277:37:0;39294:5;27089:10;60614:219;:::i;39277:37::-;39236:153;;;;-1:-1:-1;;;39236:153:0;;13456:2:1;39236:153:0;;;13438:21:1;13495:2;13475:18;;;13468:30;13534:34;13514:18;;;13507:62;13605:27;13585:18;;;13578:55;13650:19;;39236:153:0;13254:421:1;39236:153:0;39398:28;39407:2;39411:7;39420:5;39398:8;:28::i;:::-;39115:317;39053:379;;:::o;60480:126::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;60567:31;;::::1;::::0;:14:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60480:126:::0;:::o;40340:142::-;40448:28;40458:4;40464:2;40468:7;40448:9;:28::i;58492:118::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;31565:1:::1;32163:7;;:19;;32155:63;;;;-1:-1:-1::0;;;32155:63:0::1;;;;;;;:::i;:::-;31565:1;32296:7;:18:::0;58576:28:::2;58595:8:::0;58576:18:::2;:28::i;:::-;-1:-1:-1::0;31521:1:0::1;32475:7;:22:::0;58492:118::o;35423:744::-;35532:7;35567:16;35577:5;35567:9;:16::i;:::-;35559:5;:24;35551:71;;;;-1:-1:-1;;;35551:71:0;;9044:2:1;35551:71:0;;;9026:21:1;9083:2;9063:18;;;9056:30;9122:34;9102:18;;;9095:62;-1:-1:-1;;;9173:18:1;;;9166:32;9215:19;;35551:71:0;8842:398:1;35551:71:0;35629:22;35654:13;34868:12;;;34792:94;35654:13;35629:38;;35674:19;35704:25;35754:9;35749:350;35773:14;35769:1;:18;35749:350;;;35803:31;35837:14;;;:11;:14;;;;;;;;;35803:48;;;;;;;;;-1:-1:-1;;;;;35803:48:0;;;;;-1:-1:-1;;;35803:48:0;;;-1:-1:-1;;;;;35803:48:0;;;;;;;;35864:28;35860:89;;35925:14;;;-1:-1:-1;35860:89:0;35982:5;-1:-1:-1;;;;;35961:26:0;:17;-1:-1:-1;;;;;35961:26:0;;35957:135;;;36019:5;36004:11;:20;36000:59;;;-1:-1:-1;36046:1:0;-1:-1:-1;36039:8:0;;-1:-1:-1;;;36039:8:0;36000:59;36069:13;;;;:::i;:::-;;;;35957:135;-1:-1:-1;35789:3:0;;;;:::i;:::-;;;;35749:350;;;-1:-1:-1;36105:56:0;;-1:-1:-1;;;36105:56:0;;21151:2:1;36105:56:0;;;21133:21:1;21190:2;21170:18;;;21163:30;21229:34;21209:18;;;21202:62;-1:-1:-1;;;21280:18:1;;;21273:44;21334:19;;36105:56:0;20949:410:1;59260:162:0;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;59360:25:::1;:54:::0;59260:162::o;40545:157::-;40657:39;40674:4;40680:2;40684:7;40657:39;;;;;;;;;;;;:16;:39::i;59790:182::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;59900:30:::1;:64:::0;59790:182::o;59980:126::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;60062:16:::1;:36:::0;59980:126::o;34955:177::-;35022:7;35054:13;34868:12;;;34792:94;35054:13;35046:5;:21;35038:69;;;;-1:-1:-1;;;35038:69:0;;11869:2:1;35038:69:0;;;11851:21:1;11908:2;11888:18;;;11881:30;11947:34;11927:18;;;11920:62;-1:-1:-1;;;11998:18:1;;;11991:33;12041:19;;35038:69:0;11667:399:1;35038:69:0;-1:-1:-1;35121:5:0;34955:177::o;60114:118::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;60192:14:::1;:32:::0;60114:118::o;58795:100::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;58866:23:::1;:13;58882:7:::0;;58866:23:::1;:::i;37780:118::-:0;37844:7;37867:20;37879:7;37867:11;:20::i;:::-;:25;;37780:118;-1:-1:-1;;37780:118:0:o;60366:106::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;60438:11:::1;:26:::0;60366:106::o;36657:211::-;36721:7;-1:-1:-1;;;;;36745:19:0;;36737:75;;;;-1:-1:-1;;;36737:75:0;;14645:2:1;36737:75:0;;;14627:21:1;14684:2;14664:18;;;14657:30;14723:34;14703:18;;;14696:62;-1:-1:-1;;;14774:18:1;;;14767:41;14825:19;;36737:75:0;14443:407:1;36737:75:0;-1:-1:-1;;;;;;36834:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;36834:27:0;;36657:211::o;28936:103::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;29001:30:::1;29028:1;29001:18;:30::i;:::-;28936:103::o:0;58904:104::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;58974:12:::1;:26:::0;58904:104::o;55424:588::-;53020:9;53033:10;53020:23;53012:66;;;;-1:-1:-1;;;53012:66:0;;;;;;;:::i;:::-;31565:1:::1;32163:7;;:19;;32155:63;;;;-1:-1:-1::0;;;32155:63:0::1;;;;;;;:::i;:::-;31565:1;32296:7;:18:::0;55572:11:::2;::::0;;;::::2;;;55564:48;;;::::0;-1:-1:-1;;;55564:48:0;;16228:2:1;55564:48:0::2;::::0;::::2;16210:21:1::0;16267:2;16247:18;;;16240:30;16306:26;16286:18;;;16279:54;16350:18;;55564:48:0::2;16026:348:1::0;55564:48:0::2;55643:11;;55631:8;:23;;55623:85;;;::::0;-1:-1:-1;;;55623:85:0;;11451:2:1;55623:85:0::2;::::0;::::2;11433:21:1::0;11490:2;11470:18;;;11463:30;11529:34;11509:18;;;11502:62;-1:-1:-1;;;11580:18:1;;;11573:47;11637:19;;55623:85:0::2;11249:413:1::0;55623:85:0::2;55734:8;55719:11;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;55778:28:0::2;::::0;-1:-1:-1;;;;;;55795:10:0::2;6606:2:1::0;6602:15;6598:53;55778:28:0::2;::::0;::::2;6586:66:1::0;55753:12:0::2;::::0;6668::1;;55778:28:0::2;;;;;;;;;;;;55768:39;;;;;;55753:54;;55826:67;55845:22;;55826:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;55869:17:0::2;::::0;;-1:-1:-1;55888:4:0;;-1:-1:-1;55826:18:0::2;:67::i;:::-;55818:94;;;;-1:-1:-1::0;;;55818:94:0::2;;;;;;;:::i;:::-;55923:39;55953:8;55923:29;:39::i;:::-;55973:31;55983:10;55995:8;55973:9;:31::i;:::-;-1:-1:-1::0;;31521:1:0::1;32475:7;:22:::0;-1:-1:-1;;55424:588:0:o;57638:365::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;57737:25:::1;;57725:8;:37;;57717:85;;;::::0;-1:-1:-1;;;57717:85:0;;15464:2:1;57717:85:0::1;::::0;::::1;15446:21:1::0;15503:2;15483:18;;;15476:30;15542:34;15522:18;;;15515:62;-1:-1:-1;;;15593:18:1;;;15586:32;15635:19;;57717:85:0::1;15262:398:1::0;57717:85:0::1;57842:8;57813:25;;:37;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;57897:10:0::1;::::0;-1:-1:-1;57885:8:0;57869:13:::1;34868:12:::0;;;34792:94;57869:13:::1;:24;;;;:::i;:::-;:38;;57861:92;;;;-1:-1:-1::0;;;57861:92:0::1;;;;;;;:::i;:::-;57964:31;57974:10;57986:8;57964:9;:31::i;:::-;57638:365:::0;:::o;59016:104::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;59086:12:::1;:26:::0;59016:104::o;51934:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60841:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;60962:20:0;60974:7;60962:11;:20::i;58179:91::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;58251:11:::1;::::0;;-1:-1:-1;;58236:26:0;::::1;58251:11:::0;;;;::::1;;;58250:12;58236:26:::0;;::::1;;::::0;;58179:91::o;59430:162::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;59530:25:::1;:54:::0;59430:162::o;38112:98::-;38168:13;38197:7;38190:14;;;;;:::i;56624:331::-;53020:9;53033:10;53020:23;53012:66;;;;-1:-1:-1;;;53012:66:0;;;;;;;:::i;:::-;31565:1:::1;32163:7;;:19;;32155:63;;;;-1:-1:-1::0;;;32155:63:0::1;;;;;;;:::i;:::-;31565:1;32296:7;:18:::0;56718:11:::2;::::0;;;::::2;;;56710:49;;;::::0;-1:-1:-1;;;56710:49:0;;9447:2:1;56710:49:0::2;::::0;::::2;9429:21:1::0;9486:2;9466:18;;;9459:30;9525:27;9505:18;;;9498:55;9570:18;;56710:49:0::2;9245:349:1::0;56710:49:0::2;56806:10;56794:8;56778:13;34868:12:::0;;;34792:94;56778:13:::2;:24;;;;:::i;:::-;:38;;56770:92;;;;-1:-1:-1::0;;;56770:92:0::2;;;;;;;:::i;:::-;56873:32;56896:8;56873:22;:32::i;:::-;56916:31;56926:10;56938:8;56916:9;:31::i;39758:274::-:0;-1:-1:-1;;;;;39849:24:0;;27089:10;39849:24;;39841:63;;;;-1:-1:-1;;;39841:63:0;;16997:2:1;39841:63:0;;;16979:21:1;17036:2;17016:18;;;17009:30;17075:28;17055:18;;;17048:56;17121:18;;39841:63:0;16795:350:1;39841:63:0;27089:10;39913:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39913:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39913:53:0;;;;;;;;;;39978:48;;8384:41:1;;;39913:42:0;;27089:10;39978:48;;8357:18:1;39978:48:0;;;;;;;39758:274;;:::o;60994:181::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;31565:1:::1;32163:7;;:19;;32155:63;;;;-1:-1:-1::0;;;32155:63:0::1;;;;;;;:::i;:::-;31565:1;32296:7;:18:::0;61077:49:::2;::::0;61059:12:::2;::::0;61077:10:::2;::::0;61100:21:::2;::::0;61059:12;61077:49;61059:12;61077:49;61100:21;61077:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61058:68;;;61141:7;61133:36;;;::::0;-1:-1:-1;;;61133:36:0;;18935:2:1;61133:36:0::2;::::0;::::2;18917:21:1::0;18974:2;18954:18;;;18947:30;-1:-1:-1;;;18993:18:1;;;18986:46;19049:18;;61133:36:0::2;18733:340:1::0;40765:311:0;40902:28;40912:4;40918:2;40922:7;40902:9;:28::i;:::-;40953:48;40976:4;40982:2;40986:7;40995:5;40953:22;:48::i;:::-;40937:133;;;;-1:-1:-1;;;40937:133:0;;;;;;;:::i;:::-;40765:311;;;;:::o;38273:402::-;38371:13;38412:16;38420:7;41402:12;;-1:-1:-1;41392:22:0;41315:105;38412:16;38396:97;;;;-1:-1:-1;;;38396:97:0;;16581:2:1;38396:97:0;;;16563:21:1;16620:2;16600:18;;;16593:30;16659:34;16639:18;;;16632:62;-1:-1:-1;;;16710:18:1;;;16703:45;16765:19;;38396:97:0;16379:411:1;38396:97:0;38502:21;38526:10;:8;:10::i;:::-;38502:34;;38581:1;38563:7;38557:21;:25;:112;;;;;;;;;;;;;;;;;38618:7;38627:18;:7;:16;:18::i;:::-;38601:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38557:112;38543:126;38273:402;-1:-1:-1;;;38273:402:0:o;59128:124::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;59208:17:::1;:36:::0;59128:124::o;58095:76::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;58157:6:::1;::::0;;-1:-1:-1;;58147:16:0;::::1;58157:6;::::0;;;::::1;;;58156:7;58147:16:::0;;::::1;;::::0;;58095:76::o;58278:91::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;58350:11:::1;::::0;;-1:-1:-1;;58335:26:0;::::1;58350:11:::0;;;;::::1;;;58349:12;58335:26:::0;;::::1;;::::0;;58278:91::o;58377:107::-;58435:7;58458:20;58472:5;58458:13;:20::i;60614:219::-;60703:4;60727:55;60766:5;60773:8;60727:38;:55::i;:::-;:98;;;-1:-1:-1;;;;;;40240:25:0;;;40217:4;40240:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;60786:39;40095:186;60240:118;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;60318:14:::1;:32:::0;60240:118::o;29194:201::-;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29283:22:0;::::1;29275:73;;;::::0;-1:-1:-1;;;29275:73:0;;10214:2:1;29275:73:0::1;::::0;::::1;10196:21:1::0;10253:2;10233:18;;;10226:30;10292:34;10272:18;;;10265:62;-1:-1:-1;;;10343:18:1;;;10336:36;10389:19;;29275:73:0::1;10012:402:1::0;29275:73:0::1;29359:28;29378:8;29359:18;:28::i;53136:541::-:0;53020:9;53033:10;53020:23;53012:66;;;;-1:-1:-1;;;53012:66:0;;;;;;;:::i;:::-;31565:1:::1;32163:7;;:19;;32155:63;;;;-1:-1:-1::0;;;32155:63:0::1;;;;;;;:::i;:::-;31565:1;32296:7;:18:::0;53274:6:::2;::::0;::::2;;53266:38;;;::::0;-1:-1:-1;;;53266:38:0;;20058:2:1;53266:38:0::2;::::0;::::2;20040:21:1::0;20097:2;20077:18;;;20070:30;-1:-1:-1;;;20116:18:1;;;20109:49;20175:18;;53266:38:0::2;19856:343:1::0;53266:38:0::2;53335:6;;53323:8;:18;;53315:75;;;::::0;-1:-1:-1;;;53315:75:0;;17771:2:1;53315:75:0::2;::::0;::::2;17753:21:1::0;17810:2;17790:18;;;17783:30;17849:34;17829:18;;;17822:62;-1:-1:-1;;;17900:18:1;;;17893:42;17952:19;;53315:75:0::2;17569:408:1::0;53315:75:0::2;53411:8;53401:6;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;53455:28:0::2;::::0;-1:-1:-1;;;;;;53472:10:0::2;6606:2:1::0;6602:15;6598:53;53455:28:0::2;::::0;::::2;6586:66:1::0;53430:12:0::2;::::0;6668::1;;53455:28:0::2;;;;;;;;;;;;53445:39;;;;;;53430:54;;53503:57;53522:17;;53503:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;53541:12:0::2;::::0;;-1:-1:-1;53555:4:0;;-1:-1:-1;53503:18:0::2;:57::i;:::-;53495:84;;;;-1:-1:-1::0;;;53495:84:0::2;;;;;;;:::i;:::-;53590:37;53618:8;53590:27;:37::i;54274:541::-:0;53020:9;53033:10;53020:23;53012:66;;;;-1:-1:-1;;;53012:66:0;;;;;;;:::i;:::-;31565:1:::1;32163:7;;:19;;32155:63;;;;-1:-1:-1::0;;;32155:63:0::1;;;;;;;:::i;:::-;31565:1;32296:7;:18:::0;54412:6:::2;::::0;::::2;::::0;::::2;;;54404:38;;;::::0;-1:-1:-1;;;54404:38:0;;18184:2:1;54404:38:0::2;::::0;::::2;18166:21:1::0;18223:2;18203:18;;;18196:30;-1:-1:-1;;;18242:18:1;;;18235:49;18301:18;;54404:38:0::2;17982:343:1::0;54404:38:0::2;54473:6;;54461:8;:18;;54453:75;;;::::0;-1:-1:-1;;;54453:75:0;;9801:2:1;54453:75:0::2;::::0;::::2;9783:21:1::0;9840:2;9820:18;;;9813:30;9879:34;9859:18;;;9852:62;-1:-1:-1;;;9930:18:1;;;9923:42;9982:19;;54453:75:0::2;9599:408:1::0;54453:75:0::2;54549:8;54539:6;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;54593:28:0::2;::::0;-1:-1:-1;;;;;;54610:10:0::2;6606:2:1::0;6602:15;6598:53;54593:28:0::2;::::0;::::2;6586:66:1::0;54568:12:0::2;::::0;6668::1;;54593:28:0::2;;;;;;;;;;;;54583:39;;;;;;54568:54;;54641:57;54660:17;;54641:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;54679:12:0::2;::::0;;-1:-1:-1;54693:4:0;;-1:-1:-1;54641:18:0::2;:57::i;:::-;54633:84;;;;-1:-1:-1::0;;;54633:84:0::2;;;;;;;:::i;:::-;54728:37;54756:8;54728:27;:37::i;59600:182::-:0;28331:7;28358:6;-1:-1:-1;;;;;28358:6:0;27089:10;28505:23;28497:68;;;;-1:-1:-1;;;28497:68:0;;;;;;;:::i;:::-;59710:30:::1;:64:::0;59600:182::o;45002:172::-;45099:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45099:29:0;-1:-1:-1;;;;;45099:29:0;;;;;;;;;45140:28;;45099:24;;45140:28;;;;;;;45002:172;;;:::o;43367:1529::-;43464:35;43502:20;43514:7;43502:11;:20::i;:::-;43573:18;;43464:58;;-1:-1:-1;43531:22:0;;-1:-1:-1;;;;;43557:34:0;27089:10;-1:-1:-1;;;;;43557:34:0;;:81;;;-1:-1:-1;27089:10:0;43602:20;43614:7;43602:11;:20::i;:::-;-1:-1:-1;;;;;43602:36:0;;43557:81;:142;;;-1:-1:-1;43666:18:0;;43649:50;;27089:10;60614:219;:::i;43649:50::-;43531:169;;43725:17;43709:101;;;;-1:-1:-1;;;43709:101:0;;17352:2:1;43709:101:0;;;17334:21:1;17391:2;17371:18;;;17364:30;17430:34;17410:18;;;17403:62;-1:-1:-1;;;17481:18:1;;;17474:48;17539:19;;43709:101:0;17150:414:1;43709:101:0;43857:4;-1:-1:-1;;;;;43835:26:0;:13;:18;;;-1:-1:-1;;;;;43835:26:0;;43819:98;;;;-1:-1:-1;;;43819:98:0;;15057:2:1;43819:98:0;;;15039:21:1;15096:2;15076:18;;;15069:30;15135:34;15115:18;;;15108:62;-1:-1:-1;;;15186:18:1;;;15179:36;15232:19;;43819:98:0;14855:402:1;43819:98:0;-1:-1:-1;;;;;43932:16:0;;43924:66;;;;-1:-1:-1;;;43924:66:0;;12273:2:1;43924:66:0;;;12255:21:1;12312:2;12292:18;;;12285:30;12351:34;12331:18;;;12324:62;-1:-1:-1;;;12402:18:1;;;12395:35;12447:19;;43924:66:0;12071:401:1;43924:66:0;44099:49;44116:1;44120:7;44129:13;:18;;;44099:8;:49::i;:::-;-1:-1:-1;;;;;44157:18:0;;;;;;:12;:18;;;;;:31;;44187:1;;44157:18;:31;;44187:1;;-1:-1:-1;;;;;44157:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;44157:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44195:16:0;;-1:-1:-1;44195:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;44195:16:0;;:29;;-1:-1:-1;;44195:29:0;;:::i;:::-;;;-1:-1:-1;;;;;44195:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44254:43:0;;;;;;;;-1:-1:-1;;;;;44254:43:0;;;;;-1:-1:-1;;;;;44280:15:0;44254:43;;;;;;;;;-1:-1:-1;44231:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;44231:66:0;-1:-1:-1;;;;;;44231:66:0;;;;;;;;;;;44547:11;44243:7;-1:-1:-1;44547:11:0;:::i;:::-;44610:1;44569:24;;;:11;:24;;;;;:29;44525:33;;-1:-1:-1;;;;;;44569:29:0;44565:236;;44627:20;44635:11;41402:12;;-1:-1:-1;41392:22:0;41315:105;44627:20;44623:171;;;44687:97;;;;;;;;44714:18;;-1:-1:-1;;;;;44687:97:0;;;;;;44745:28;;;;-1:-1:-1;;;;;44687:97:0;;;;;;;;;-1:-1:-1;44660:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;44660:124:0;-1:-1:-1;;;;;;44660:124:0;;;;;;;;;;;;44623:171;44833:7;44829:2;-1:-1:-1;;;;;44814:27:0;44823:4;-1:-1:-1;;;;;44814:27:0;;;;;;;;;;;44848:42;43457:1439;;;43367:1529;;;:::o;45328:846::-;45418:24;;45457:12;45449:49;;;;-1:-1:-1;;;45449:49:0;;13882:2:1;45449:49:0;;;13864:21:1;13921:2;13901:18;;;13894:30;13960:26;13940:18;;;13933:54;14004:18;;45449:49:0;13680:348:1;45449:49:0;45505:16;45555:1;45524:28;45544:8;45524:17;:28;:::i;:::-;:32;;;;:::i;:::-;45505:51;-1:-1:-1;45578:18:0;45595:1;45578:14;:18;:::i;:::-;45567:8;:29;45563:81;;;45618:18;45635:1;45618:14;:18;:::i;:::-;45607:29;;45563:81;45759:17;45767:8;41402:12;;-1:-1:-1;41392:22:0;41315:105;45759:17;45751:68;;;;-1:-1:-1;;;45751:68:0;;21566:2:1;45751:68:0;;;21548:21:1;21605:2;21585:18;;;21578:30;21644:34;21624:18;;;21617:62;-1:-1:-1;;;21695:18:1;;;21688:36;21741:19;;45751:68:0;21364:402:1;45751:68:0;45843:17;45826:297;45867:8;45862:1;:13;45826:297;;45926:1;45895:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;45895:19:0;45891:225;;45941:31;45975:14;45987:1;45975:11;:14::i;:::-;46017:89;;;;;;;;46044:14;;-1:-1:-1;;;;;46017:89:0;;;;;;46071:24;;;;-1:-1:-1;;;;;46017:89:0;;;;;;;;;-1:-1:-1;46000:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;46000:106:0;-1:-1:-1;;;;;;46000:106:0;;;;;;;;;;;;-1:-1:-1;45891:225:0;45877:3;;;;:::i;:::-;;;;45826:297;;;-1:-1:-1;46156:12:0;:8;46167:1;46156:12;:::i;:::-;46129:24;:39;-1:-1:-1;;;45328:846:0:o;37120:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;37237:16:0;37245:7;41402:12;;-1:-1:-1;41392:22:0;41315:105;37237:16;37229:71;;;;-1:-1:-1;;;37229:71:0;;10621:2:1;37229:71:0;;;10603:21:1;10660:2;10640:18;;;10633:30;10699:34;10679:18;;;10672:62;-1:-1:-1;;;10750:18:1;;;10743:40;10800:19;;37229:71:0;10419:406:1;37229:71:0;37309:26;37357:12;37346:7;:23;37342:93;;37401:22;37411:12;37401:7;:22;:::i;:::-;:26;;37426:1;37401:26;:::i;:::-;37380:47;;37342:93;37463:7;37443:212;37480:18;37472:4;:26;37443:212;;37517:31;37551:17;;;:11;:17;;;;;;;;;37517:51;;;;;;;;;-1:-1:-1;;;;;37517:51:0;;;;;-1:-1:-1;;;37517:51:0;;;-1:-1:-1;;;;;37517:51:0;;;;;;;;37581:28;37577:71;;37629:9;37120:606;-1:-1:-1;;;;37120:606:0:o;37577:71::-;-1:-1:-1;37500:6:0;;;;:::i;:::-;;;;37443:212;;;-1:-1:-1;37663:57:0;;-1:-1:-1;;;37663:57:0;;22688:2:1;37663:57:0;;;22670:21:1;22727:2;22707:18;;;22700:30;22766:34;22746:18;;;22739:62;-1:-1:-1;;;22817:18:1;;;22810:45;22872:19;;37663:57:0;22486:411:1;29555:191:0;29629:16;29648:6;;-1:-1:-1;;;;;29665:17:0;;;-1:-1:-1;;;;;;29665:17:0;;;;;;29698:40;;29648:6;;;;;;;29698:40;;29629:16;29698:40;29618:128;29555:191;:::o;24864:190::-;24989:4;25042;25013:25;25026:5;25033:4;25013:12;:25::i;:::-;:33;;24864:190;-1:-1:-1;;;;24864:190:0:o;56020:569::-;56116:1;56105:8;:12;:58;;;;;56133:30;;56121:8;:42;;56105:58;56097:124;;;;-1:-1:-1;;;56097:124:0;;;;;;;:::i;:::-;56268:10;56256:8;56240:13;34868:12;;;34792:94;56240:13;:24;;;;:::i;:::-;:38;;56232:47;;;;;;56325:8;56311:11;;:22;;;;:::i;:::-;56298:9;:35;56290:74;;;;-1:-1:-1;;;56290:74:0;;;;;;;:::i;:::-;56423:10;56406:28;;;;:16;:28;;;;;;:39;;56437:8;;56406:39;:::i;:::-;56392:10;56375:28;;;;:16;:28;;;;;:70;;;56496:30;;-1:-1:-1;56464:62:0;56456:125;;;;-1:-1:-1;;;56456:125:0;;;;;;;:::i;41426:98::-;41491:27;41501:2;41505:8;41491:27;;;;;;;;;;;;:9;:27::i;56963:627::-;57052:1;57041:8;:12;:58;;;;;57069:30;;57057:8;:42;;57041:58;57033:124;;;;-1:-1:-1;;;57033:124:0;;;;;;;:::i;:::-;57187:1;57176:8;:12;:44;;;;;57204:16;;57192:8;:28;;57176:44;57168:110;;;;-1:-1:-1;;;57168:110:0;;;;;;;:::i;:::-;57324:8;57310:11;;:22;;;;:::i;:::-;57297:9;:35;57289:74;;;;-1:-1:-1;;;57289:74:0;;;;;;;:::i;:::-;57422:10;57405:28;;;;:16;:28;;;;;;:39;;57436:8;;57405:39;:::i;:::-;57391:10;57374:28;;;;:16;:28;;;;;:70;;;57495:30;;-1:-1:-1;57463:62:0;57455:125;;;;-1:-1:-1;;;57455:125:0;;;;;;;:::i;46717:690::-;46854:4;-1:-1:-1;;;;;46871:13:0;;5110:19;:23;46867:535;;46910:72;;-1:-1:-1;;;46910:72:0;;-1:-1:-1;;;;;46910:36:0;;;;;:72;;27089:10;;46961:4;;46967:7;;46976:5;;46910:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46910:72:0;;;;;;;;-1:-1:-1;;46910:72:0;;;;;;;;;;;;:::i;:::-;;;46897:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47141:13:0;;47137:215;;47174:61;;-1:-1:-1;;;47174:61:0;;;;;;;:::i;47137:215::-;47320:6;47314:13;47305:6;47301:2;47297:15;47290:38;46897:464;-1:-1:-1;;;;;;47032:55:0;-1:-1:-1;;;47032:55:0;;-1:-1:-1;47025:62:0;;46867:535;-1:-1:-1;47390:4:0;46867:535;46717:690;;;;;;:::o;58679:108::-;58739:13;58768;58761:20;;;;;:::i;22182:723::-;22238:13;22459:10;22455:53;;-1:-1:-1;;22486:10:0;;;;;;;;;;;;-1:-1:-1;;;22486:10:0;;;;;22182:723::o;22455:53::-;22533:5;22518:12;22574:78;22581:9;;22574:78;;22607:8;;;;:::i;:::-;;-1:-1:-1;22630:10:0;;-1:-1:-1;22638:2:0;22630:10;;:::i;:::-;;;22574:78;;;22662:19;22694:6;-1:-1:-1;;;;;22684:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22684:17:0;;22662:39;;22712:154;22719:10;;22712:154;;22746:11;22756:1;22746:11;;:::i;:::-;;-1:-1:-1;22815:10:0;22823:2;22815:5;:10;:::i;:::-;22802:24;;:2;:24;:::i;:::-;22789:39;;22772:6;22779;22772:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22772:56:0;;;;;;;;-1:-1:-1;22843:11:0;22852:2;22843:11;;:::i;:::-;;;22712:154;;36874:240;36935:7;-1:-1:-1;;;;;36967:19:0;;36951:102;;;;-1:-1:-1;;;36951:102:0;;12679:2:1;36951:102:0;;;12661:21:1;12718:2;12698:18;;;12691:30;12757:34;12737:18;;;12730:62;-1:-1:-1;;;12808:18:1;;;12801:47;12865:19;;36951:102:0;12477:413:1;36951:102:0;-1:-1:-1;;;;;;37075:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37075:32:0;;-1:-1:-1;;;;;37075:32:0;;36874:240::o;49675:565::-;49757:4;49774:22;49838:9;49866:1;49861:123;;;;50003:1;49998:123;;;;49831:290;;49861:123;49927:42;49915:54;;49861:123;;49998;50064:42;50052:54;;49831:290;-1:-1:-1;;;;;;50151:31:0;;;;;;:81;;-1:-1:-1;50195:23:0;;-1:-1:-1;;;50195:23:0;;-1:-1:-1;;;;;7707:32:1;;;50195:23:0;;;7689:51:1;50187:44:0;;;;50195:16;;;;;;7662:18:1;;50195:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50187:44:0;;50144:88;49675:565;-1:-1:-1;;;;49675:565:0:o;53685:545::-;53779:1;53768:8;:12;:53;;;;;53796:25;;53784:8;:37;;53768:53;53760:119;;;;-1:-1:-1;;;53760:119:0;;;;;;;:::i;:::-;53926:10;53914:8;53898:13;34868:12;;;34792:94;53898:13;:24;;;;:::i;:::-;:38;;53890:47;;;;;;53986:8;53969:14;;:25;;;;:::i;:::-;53956:9;:38;53948:77;;;;-1:-1:-1;;;53948:77:0;;;;;;;:::i;:::-;54074:10;54062:23;;;;:11;:23;;;;;;:34;;54088:8;;54062:34;:::i;:::-;54048:10;54036:23;;;;:11;:23;;;;;:60;;;54142:25;;-1:-1:-1;54115:52:0;54107:115;;;;-1:-1:-1;;;54107:115:0;;;;;;;:::i;54823:545::-;54917:1;54906:8;:12;:53;;;;;54934:25;;54922:8;:37;;54906:53;54898:119;;;;-1:-1:-1;;;54898:119:0;;;;;;;:::i;:::-;55064:10;55052:8;55036:13;34868:12;;;34792:94;55036:13;:24;;;;:::i;:::-;:38;;55028:47;;;;;;55124:8;55107:14;;:25;;;;:::i;:::-;55094:9;:38;55086:77;;;;-1:-1:-1;;;55086:77:0;;;;;;;:::i;:::-;55212:10;55200:23;;;;:11;:23;;;;;;:34;;55226:8;;55200:34;:::i;:::-;55186:10;55174:23;;;;:11;:23;;;;;:60;;;55280:25;;-1:-1:-1;55253:52:0;55245:115;;;;-1:-1:-1;;;55245:115:0;;;;;;;:::i;25416:675::-;25499:7;25542:4;25499:7;25557:497;25581:5;:12;25577:1;:16;25557:497;;;25615:20;25638:5;25644:1;25638:8;;;;;;;;:::i;:::-;;;;;;;25615:31;;25681:12;25665;:28;25661:382;;26167:13;26217:15;;;26253:4;26246:15;;;26300:4;26284:21;;25793:57;;25661:382;;;26167:13;26217:15;;;26253:4;26246:15;;;26300:4;26284:21;;25970:57;;25661:382;-1:-1:-1;25595:3:0;;;;:::i;:::-;;;;25557:497;;;-1:-1:-1;26071:12:0;25416:675;-1:-1:-1;;;25416:675:0:o;41863:1272::-;41991:12;;-1:-1:-1;;;;;42018:16:0;;42010:62;;;;-1:-1:-1;;;42010:62:0;;20406:2:1;42010:62:0;;;20388:21:1;20445:2;20425:18;;;20418:30;20484:34;20464:18;;;20457:62;-1:-1:-1;;;20535:18:1;;;20528:31;20576:19;;42010:62:0;20204:397:1;42010:62:0;42209:21;42217:12;41402;;-1:-1:-1;41392:22:0;41315:105;42209:21;42208:22;42200:64;;;;-1:-1:-1;;;42200:64:0;;19700:2:1;42200:64:0;;;19682:21:1;19739:2;19719:18;;;19712:30;19778:31;19758:18;;;19751:59;19827:18;;42200:64:0;19498:353:1;42200:64:0;42291:12;42279:8;:24;;42271:71;;;;-1:-1:-1;;;42271:71:0;;23940:2:1;42271:71:0;;;23922:21:1;23979:2;23959:18;;;23952:30;24018:34;23998:18;;;23991:62;-1:-1:-1;;;24069:18:1;;;24062:32;24111:19;;42271:71:0;23738:398:1;42271:71:0;-1:-1:-1;;;;;42454:16:0;;42421:30;42454:16;;;:12;:16;;;;;;;;;42421:49;;;;;;;;;-1:-1:-1;;;;;42421:49:0;;;;;-1:-1:-1;;;42421:49:0;;;;;;;;;;;42496:119;;;;;;;;42516:19;;42421:49;;42496:119;;;42516:39;;42546:8;;42516:39;:::i;:::-;-1:-1:-1;;;;;42496:119:0;;;;;42599:8;42564:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;42496:119:0;;;;;;-1:-1:-1;;;;;42477:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;42477:138:0;;;;;;;;;;;;42650:43;;;;;;;;;;-1:-1:-1;;;;;42676:15:0;42650:43;;;;;;;;42622:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;42622:71:0;-1:-1:-1;;;;;;42622:71:0;;;;;;;;;;;;;;;;;;42634:12;;42746:281;42770:8;42766:1;:12;42746:281;;;42799:38;;42824:12;;-1:-1:-1;;;;;42799:38:0;;;42816:1;;42799:38;;42816:1;;42799:38;42864:59;42895:1;42899:2;42903:12;42917:5;42864:22;:59::i;:::-;42846:150;;;;-1:-1:-1;;;42846:150:0;;;;;;;:::i;:::-;43005:14;;;;:::i;:::-;;;;42780:3;;;;;:::i;:::-;;;;42746:281;;;-1:-1:-1;43035:12:0;:27;;;43069:60;40765:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;-1:-1:-1;;;;;2300:30:1;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:416::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2904:15;;2897:23;2885:36;;2875:64;;2935:1;2932;2925:12;2976:315;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;3281:2;3266:18;;;;3253:32;;-1:-1:-1;;;2976:315:1:o;3296:180::-;3355:6;3408:2;3396:9;3387:7;3383:23;3379:32;3376:52;;;3424:1;3421;3414:12;3376:52;-1:-1:-1;3447:23:1;;3296:180;-1:-1:-1;3296:180:1:o;3481:245::-;3539:6;3592:2;3580:9;3571:7;3567:23;3563:32;3560:52;;;3608:1;3605;3598:12;3560:52;3647:9;3634:23;3666:30;3690:5;3666:30;:::i;3731:249::-;3800:6;3853:2;3841:9;3832:7;3828:23;3824:32;3821:52;;;3869:1;3866;3859:12;3821:52;3901:9;3895:16;3920:30;3944:5;3920:30;:::i;3985:280::-;4084:6;4137:2;4125:9;4116:7;4112:23;4108:32;4105:52;;;4153:1;4150;4143:12;4105:52;4185:9;4179:16;4204:31;4229:5;4204:31;:::i;4270:592::-;4341:6;4349;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;-1:-1:-1;;;;;4528:2:1;4520:6;4517:14;4514:34;;;4544:1;4541;4534:12;4514:34;4582:6;4571:9;4567:22;4557:32;;4627:7;4620:4;4616:2;4612:13;4608:27;4598:55;;4649:1;4646;4639:12;4598:55;4689:2;4676:16;4715:2;4707:6;4704:14;4701:34;;;4731:1;4728;4721:12;4701:34;4776:7;4771:2;4762:6;4758:2;4754:15;4750:24;4747:37;4744:57;;;4797:1;4794;4787:12;4744:57;4828:2;4820:11;;;;;4850:6;;-1:-1:-1;4270:592:1;;-1:-1:-1;;;;4270:592:1:o;4867:450::-;4936:6;4989:2;4977:9;4968:7;4964:23;4960:32;4957:52;;;5005:1;5002;4995:12;4957:52;5045:9;5032:23;-1:-1:-1;;;;;5070:6:1;5067:30;5064:50;;;5110:1;5107;5100:12;5064:50;5133:22;;5186:4;5178:13;;5174:27;-1:-1:-1;5164:55:1;;5215:1;5212;5205:12;5164:55;5238:73;5303:7;5298:2;5285:16;5280:2;5276;5272:11;5238:73;:::i;5507:683::-;5602:6;5610;5618;5671:2;5659:9;5650:7;5646:23;5642:32;5639:52;;;5687:1;5684;5677:12;5639:52;5723:9;5710:23;5700:33;;5784:2;5773:9;5769:18;5756:32;-1:-1:-1;;;;;5848:2:1;5840:6;5837:14;5834:34;;;5864:1;5861;5854:12;5834:34;5902:6;5891:9;5887:22;5877:32;;5947:7;5940:4;5936:2;5932:13;5928:27;5918:55;;5969:1;5966;5959:12;5918:55;6009:2;5996:16;6035:2;6027:6;6024:14;6021:34;;;6051:1;6048;6041:12;6021:34;6104:7;6099:2;6089:6;6086:1;6082:14;6078:2;6074:23;6070:32;6067:45;6064:65;;;6125:1;6122;6115:12;6064:65;6156:2;6152;6148:11;6138:21;;6178:6;6168:16;;;;;5507:683;;;;;:::o;6195:257::-;6236:3;6274:5;6268:12;6301:6;6296:3;6289:19;6317:63;6373:6;6366:4;6361:3;6357:14;6350:4;6343:5;6339:16;6317:63;:::i;:::-;6434:2;6413:15;-1:-1:-1;;6409:29:1;6400:39;;;;6441:4;6396:50;;6195:257;-1:-1:-1;;6195:257:1:o;6691:637::-;6971:3;7009:6;7003:13;7025:53;7071:6;7066:3;7059:4;7051:6;7047:17;7025:53;:::i;:::-;7141:13;;7100:16;;;;7163:57;7141:13;7100:16;7197:4;7185:17;;7163:57;:::i;:::-;-1:-1:-1;;;7242:20:1;;7271:22;;;7320:1;7309:13;;6691:637;-1:-1:-1;;;;6691:637:1:o;7751:488::-;-1:-1:-1;;;;;8020:15:1;;;8002:34;;8072:15;;8067:2;8052:18;;8045:43;8119:2;8104:18;;8097:34;;;8167:3;8162:2;8147:18;;8140:31;;;7945:4;;8188:45;;8213:19;;8205:6;8188:45;:::i;:::-;8180:53;7751:488;-1:-1:-1;;;;;;7751:488:1:o;8618:219::-;8767:2;8756:9;8749:21;8730:4;8787:44;8827:2;8816:9;8812:18;8804:6;8787:44;:::i;10830:414::-;11032:2;11014:21;;;11071:2;11051:18;;;11044:30;11110:34;11105:2;11090:18;;11083:62;-1:-1:-1;;;11176:2:1;11161:18;;11154:48;11234:3;11219:19;;10830:414::o;12895:354::-;13097:2;13079:21;;;13136:2;13116:18;;;13109:30;13175:32;13170:2;13155:18;;13148:60;13240:2;13225:18;;12895:354::o;14033:405::-;14235:2;14217:21;;;14274:2;14254:18;;;14247:30;14313:34;14308:2;14293:18;;14286:62;-1:-1:-1;;;14379:2:1;14364:18;;14357:39;14428:3;14413:19;;14033:405::o;15665:356::-;15867:2;15849:21;;;15886:18;;;15879:30;15945:34;15940:2;15925:18;;15918:62;16012:2;15997:18;;15665:356::o;19078:415::-;19280:2;19262:21;;;19319:2;19299:18;;;19292:30;19358:34;19353:2;19338:18;;19331:62;-1:-1:-1;;;19424:2:1;19409:18;;19402:49;19483:3;19468:19;;19078:415::o;20606:338::-;20808:2;20790:21;;;20847:2;20827:18;;;20820:30;-1:-1:-1;;;20881:2:1;20866:18;;20859:44;20935:2;20920:18;;20606:338::o;21771:355::-;21973:2;21955:21;;;22012:2;21992:18;;;21985:30;22051:33;22046:2;22031:18;;22024:61;22117:2;22102:18;;21771:355::o;22131:350::-;22333:2;22315:21;;;22372:2;22352:18;;;22345:30;22411:28;22406:2;22391:18;;22384:56;22472:2;22457:18;;22131:350::o;22902:417::-;23104:2;23086:21;;;23143:2;23123:18;;;23116:30;23182:34;23177:2;23162:18;;23155:62;-1:-1:-1;;;23248:2:1;23233:18;;23226:51;23309:3;23294:19;;22902:417::o;24688:253::-;24728:3;-1:-1:-1;;;;;24817:2:1;24814:1;24810:10;24847:2;24844:1;24840:10;24878:3;24874:2;24870:12;24865:3;24862:21;24859:47;;;24886:18;;:::i;:::-;24922:13;;24688:253;-1:-1:-1;;;;24688:253:1:o;24946:128::-;24986:3;25017:1;25013:6;25010:1;25007:13;25004:39;;;25023:18;;:::i;:::-;-1:-1:-1;25059:9:1;;24946:128::o;25079:120::-;25119:1;25145;25135:35;;25150:18;;:::i;:::-;-1:-1:-1;25184:9:1;;25079:120::o;25204:168::-;25244:7;25310:1;25306;25302:6;25298:14;25295:1;25292:21;25287:1;25280:9;25273:17;25269:45;25266:71;;;25317:18;;:::i;:::-;-1:-1:-1;25357:9:1;;25204:168::o;25377:246::-;25417:4;-1:-1:-1;;;;;25530:10:1;;;;25500;;25552:12;;;25549:38;;;25567:18;;:::i;:::-;25604:13;;25377:246;-1:-1:-1;;;25377:246:1:o;25628:125::-;25668:4;25696:1;25693;25690:8;25687:34;;;25701:18;;:::i;:::-;-1:-1:-1;25738:9:1;;25628:125::o;25758:258::-;25830:1;25840:113;25854:6;25851:1;25848:13;25840:113;;;25930:11;;;25924:18;25911:11;;;25904:39;25876:2;25869:10;25840:113;;;25971:6;25968:1;25965:13;25962:48;;;-1:-1:-1;;26006:1:1;25988:16;;25981:27;25758:258::o;26021:136::-;26060:3;26088:5;26078:39;;26097:18;;:::i;:::-;-1:-1:-1;;;26133:18:1;;26021:136::o;26162:380::-;26241:1;26237:12;;;;26284;;;26305:61;;26359:4;26351:6;26347:17;26337:27;;26305:61;26412:2;26404:6;26401:14;26381:18;26378:38;26375:161;;;26458:10;26453:3;26449:20;26446:1;26439:31;26493:4;26490:1;26483:15;26521:4;26518:1;26511:15;26375:161;;26162:380;;;:::o;26547:135::-;26586:3;-1:-1:-1;;26607:17:1;;26604:43;;;26627:18;;:::i;:::-;-1:-1:-1;26674:1:1;26663:13;;26547:135::o;26687:112::-;26719:1;26745;26735:35;;26750:18;;:::i;:::-;-1:-1:-1;26784:9:1;;26687:112::o;26804:127::-;26865:10;26860:3;26856:20;26853:1;26846:31;26896:4;26893:1;26886:15;26920:4;26917:1;26910:15;26936:127;26997:10;26992:3;26988:20;26985:1;26978:31;27028:4;27025:1;27018:15;27052:4;27049:1;27042:15;27068:127;27129:10;27124:3;27120:20;27117:1;27110:31;27160:4;27157:1;27150:15;27184:4;27181:1;27174:15;27200:127;27261:10;27256:3;27252:20;27249:1;27242:31;27292:4;27289:1;27282:15;27316:4;27313:1;27306:15;27332:131;-1:-1:-1;;;;;27407:31:1;;27397:42;;27387:70;;27453:1;27450;27443:12;27468:131;-1:-1:-1;;;;;;27542:32:1;;27532:43;;27522:71;;27589:1;27586;27579:12
Swarm Source
ipfs://0d607bfa7a924905cf435fa6aaf0602130407229837181fcbe2d4f1cac57adb4
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.