ERC-721
Overview
Max Total Supply
3,615 AOI
Holders
1,629
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 AOILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Aoki
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-22 */ // SPDX-License-Identifier: MIT // 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; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) // 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/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/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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // 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: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: Contract.sol pragma solidity ^0.8.7; contract Aoki is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; mapping(address => uint256) public publicClaimed; string public baseURI; string public hiddenMetadataURI; uint256 public publicCost = 0.0035 ether; bool public paused = true; bool public revealed; uint256 public maxPublic = 10; uint256 public maxSupply = 7500; constructor() ERC721A("Aoki", "AOI") {} // ============ PUBLIC FUNCTIONS FOR MINTING ============ function mint(uint256 quantity) external payable nonReentrant { require(!paused, "The contract is paused!"); require(quantity > 0 && totalSupply() + quantity <= maxSupply, "Invalid amount!"); if (msg.sender != owner()) { require( publicClaimed[msg.sender] + quantity <= maxPublic, "You're not allowed to mint this much!" ); require( quantity <= maxPublic, "You're not allowed to mint more than max Mint Amount!" ); if(publicClaimed[msg.sender] != 0) require(msg.value >= publicCost * quantity, "Insufficient Funds!"); else require(msg.value >= publicCost * (quantity - 1), "Innsufficient Funds!"); } publicClaimed[msg.sender] += quantity; _safeMint(msg.sender, quantity); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // ============ PUBLIC READ-ONLY FUNCTIONS ============ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), ".json" ) ) : ""; } function setCost(uint256 _newPublicCost) external onlyOwner { publicCost = _newPublicCost; } function setMaxPublic(uint256 _newMaxPublic) external onlyOwner { maxPublic = _newMaxPublic; } function setMaxSuppy(uint256 _amount) external onlyOwner { maxSupply = _amount; } function setPaused(bool _state) external onlyOwner { paused = _state; } function setRevealed(bool _state) external onlyOwner { revealed = _state; } function setHiddenMetadataURI(string memory _URI) external onlyOwner { hiddenMetadataURI = _URI; } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function airDrop(uint256 quantity, address _address) external onlyOwner { _safeMint(_address, quantity); } function burn(uint256 tokenId) public onlyOwner{ _burn(tokenId); } function burnBatch(uint256[] memory tokenIds) public onlyOwner{ for (uint256 index = 0; index < tokenIds.length; index++) { _burn(tokenIds[index]); } } function withdraw() public onlyOwner { // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool ts, ) = payable(owner()).call{value: address(this).balance}(""); require(ts); // ============================================================================= } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setHiddenMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPublic","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052660c6f3b40b6c000600d55600e805460ff19166001179055600a600f55611d4c6010553480156200003457600080fd5b506040805180820182526004815263416f6b6960e01b602080830191825283518085019094526003845262414f4960e81b9084015281519192916200007c9160029162000102565b5080516200009290600390602084019062000102565b5050600160005550620000a533620000b0565b6001600955620001e5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011090620001a8565b90600052602060002090601f0160209004810192826200013457600085556200017f565b82601f106200014f57805160ff19168380011785556200017f565b828001600101855582156200017f579182015b828111156200017f57825182559160200191906001019062000162565b506200018d92915062000191565b5090565b5b808211156200018d576000815560010162000192565b600181811c90821680620001bd57607f821691505b60208210811415620001df57634e487b7160e01b600052602260045260246000fd5b50919050565b61232d80620001f56000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063b5b1cd7c116100ab578063e0a808531161006f578063e0a80853146105f9578063e4623c1b14610619578063e985e9c514610639578063f2fde38b14610682578063fbdb8494146106a257600080fd5b8063b5b1cd7c14610561578063b88d4fde1461058e578063ba9e12f7146105ae578063c87b56dd146105c3578063d5abeb01146105e357600080fd5b806395d89b41116100f257806395d89b41146104d95780639ec571d5146104ee578063a0712d681461050e578063a22cb46514610521578063aed380151461054157600080fd5b8063715018a61461047a5780637dc429751461048f5780638693da20146104a55780638da5cb5b146104bb57600080fd5b806342966c68116101a657806355f804b31161017557806355f804b3146103eb5780635c975abb1461040b5780636352211e146104255780636c0360eb1461044557806370a082311461045a57600080fd5b806342966c681461036c57806344a0d68a1461038c578063512507c6146103ac57806351830227146103cc57600080fd5b806316c38b3c116101ed57806316c38b3c146102d057806318160ddd146102f057806323b872dd146103175780633ccfd60b1461033757806342842e0e1461034c57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611f93565b6106c2565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610714565b60405161024b91906120f9565b34801561028257600080fd5b50610296610291366004612015565b6107a6565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611ea2565b6107ea565b005b3480156102dc57600080fd5b506102ce6102eb366004611f78565b610878565b3480156102fc57600080fd5b5060015460005403600019015b60405190815260200161024b565b34801561032357600080fd5b506102ce610332366004611dc1565b6108be565b34801561034357600080fd5b506102ce6108c9565b34801561035857600080fd5b506102ce610367366004611dc1565b610967565b34801561037857600080fd5b506102ce610387366004612015565b610982565b34801561039857600080fd5b506102ce6103a7366004612015565b6109b5565b3480156103b857600080fd5b506102ce6103c7366004611fcd565b6109e4565b3480156103d857600080fd5b50600e5461023f90610100900460ff1681565b3480156103f757600080fd5b506102ce610406366004611fcd565b610a25565b34801561041757600080fd5b50600e5461023f9060ff1681565b34801561043157600080fd5b50610296610440366004612015565b610a62565b34801561045157600080fd5b50610269610a74565b34801561046657600080fd5b50610309610475366004611d73565b610b02565b34801561048657600080fd5b506102ce610b50565b34801561049b57600080fd5b50610309600f5481565b3480156104b157600080fd5b50610309600d5481565b3480156104c757600080fd5b506008546001600160a01b0316610296565b3480156104e557600080fd5b50610269610b86565b3480156104fa57600080fd5b506102ce610509366004612015565b610b95565b6102ce61051c366004612015565b610bc4565b34801561052d57600080fd5b506102ce61053c366004611e78565b610ed4565b34801561054d57600080fd5b506102ce61055c36600461202e565b610f6a565b34801561056d57600080fd5b5061030961057c366004611d73565b600a6020526000908152604090205481565b34801561059a57600080fd5b506102ce6105a9366004611dfd565b610f9e565b3480156105ba57600080fd5b50610269610fef565b3480156105cf57600080fd5b506102696105de366004612015565b610ffc565b3480156105ef57600080fd5b5061030960105481565b34801561060557600080fd5b506102ce610614366004611f78565b611168565b34801561062557600080fd5b506102ce610634366004611ecc565b6111ac565b34801561064557600080fd5b5061023f610654366004611d8e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068e57600080fd5b506102ce61069d366004611d73565b611216565b3480156106ae57600080fd5b506102ce6106bd366004612015565b6112ae565b60006001600160e01b031982166380ac58cd60e01b14806106f357506001600160e01b03198216635b5e139f60e01b145b8061070e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610723906121ff565b80601f016020809104026020016040519081016040528092919081815260200182805461074f906121ff565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60006107b1826112dd565b6107ce576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107f582610a62565b9050806001600160a01b0316836001600160a01b0316141561082a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061084a57506108488133610654565b155b15610868576040516367d9dca160e11b815260040160405180910390fd5b610873838383611316565b505050565b6008546001600160a01b031633146108ab5760405162461bcd60e51b81526004016108a29061210c565b60405180910390fd5b600e805460ff1916911515919091179055565b610873838383611372565b6008546001600160a01b031633146108f35760405162461bcd60e51b81526004016108a29061210c565b60006109076008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610951576040519150601f19603f3d011682016040523d82523d6000602084013e610956565b606091505b505090508061096457600080fd5b50565b61087383838360405180602001604052806000815250610f9e565b6008546001600160a01b031633146109ac5760405162461bcd60e51b81526004016108a29061210c565b6109648161154e565b6008546001600160a01b031633146109df5760405162461bcd60e51b81526004016108a29061210c565b600d55565b6008546001600160a01b03163314610a0e5760405162461bcd60e51b81526004016108a29061210c565b8051610a2190600c906020840190611c57565b5050565b6008546001600160a01b03163314610a4f5760405162461bcd60e51b81526004016108a29061210c565b8051610a2190600b906020840190611c57565b6000610a6d82611559565b5192915050565b600b8054610a81906121ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610aad906121ff565b8015610afa5780601f10610acf57610100808354040283529160200191610afa565b820191906000526020600020905b815481529060010190602001808311610add57829003601f168201915b505050505081565b60006001600160a01b038216610b2b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610b7a5760405162461bcd60e51b81526004016108a29061210c565b610b846000611680565b565b606060038054610723906121ff565b6008546001600160a01b03163314610bbf5760405162461bcd60e51b81526004016108a29061210c565b601055565b60026009541415610c175760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108a2565b6002600955600e5460ff1615610c6f5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108a2565b600081118015610c9857506010546001546000548391900360001901610c959190612171565b11155b610cd65760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b60448201526064016108a2565b6008546001600160a01b03163314610e9d57600f54336000908152600a6020526040902054610d06908390612171565b1115610d625760405162461bcd60e51b815260206004820152602560248201527f596f75277265206e6f7420616c6c6f77656420746f206d696e742074686973206044820152646d7563682160d81b60648201526084016108a2565b600f54811115610dd25760405162461bcd60e51b815260206004820152603560248201527f596f75277265206e6f7420616c6c6f77656420746f206d696e74206d6f7265206044820152747468616e206d6178204d696e7420416d6f756e742160581b60648201526084016108a2565b336000908152600a602052604090205415610e3f5780600d54610df5919061219d565b341015610e3a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742046756e64732160681b60448201526064016108a2565b610e9d565b610e4a6001826121bc565b600d54610e57919061219d565b341015610e9d5760405162461bcd60e51b8152602060048201526014602482015273496e6e73756666696369656e742046756e64732160601b60448201526064016108a2565b336000908152600a602052604081208054839290610ebc908490612171565b90915550610ecc905033826116d2565b506001600955565b6001600160a01b038216331415610efe5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f945760405162461bcd60e51b81526004016108a29061210c565b610a2181836116d2565b610fa9848484611372565b6001600160a01b0383163b15158015610fcb5750610fc9848484846116ec565b155b15610fe9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c8054610a81906121ff565b6060611007826112dd565b61106b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a2565b600e54610100900460ff1661110c57600c8054611087906121ff565b80601f01602080910402602001604051908101604052809291908181526020018280546110b3906121ff565b80156111005780601f106110d557610100808354040283529160200191611100565b820191906000526020600020905b8154815290600101906020018083116110e357829003601f168201915b50505050509050919050565b60006111166117e4565b905060008151116111365760405180602001604052806000815250611161565b80611140846117f3565b60405160200161115192919061207d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111925760405162461bcd60e51b81526004016108a29061210c565b600e80549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146111d65760405162461bcd60e51b81526004016108a29061210c565b60005b8151811015610a21576112048282815181106111f7576111f7612295565b602002602001015161154e565b8061120e8161223a565b9150506111d9565b6008546001600160a01b031633146112405760405162461bcd60e51b81526004016108a29061210c565b6001600160a01b0381166112a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a2565b61096481611680565b6008546001600160a01b031633146112d85760405162461bcd60e51b81526004016108a29061210c565b600f55565b6000816001111580156112f1575060005482105b801561070e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061137d82611559565b9050836001600160a01b031681600001516001600160a01b0316146113b45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113d257506113d28533610654565b806113ed5750336113e2846107a6565b6001600160a01b0316145b90508061140d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661143457604051633a954ecd60e21b815260040160405180910390fd5b61144060008487611316565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661151457600054821461151457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206122d883398151915260405160405180910390a45b5050505050565b6109648160006118f0565b60408051606081018252600080825260208201819052918101919091528180600111158015611589575060005481105b1561166757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116655780516001600160a01b0316156115fc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611660579392505050565b6115fc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a21828260405180602001604052806000815250611aa3565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117219033908990889088906004016120bc565b602060405180830381600087803b15801561173b57600080fd5b505af192505050801561176b575060408051601f3d908101601f1916820190925261176891810190611fb0565b60015b6117c6573d808015611799576040519150601f19603f3d011682016040523d82523d6000602084013e61179e565b606091505b5080516117be576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b8054610723906121ff565b6060816118175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611841578061182b8161223a565b915061183a9050600a83612189565b915061181b565b6000816001600160401b0381111561185b5761185b6122ab565b6040519080825280601f01601f191660200182016040528015611885576020820181803683370190505b5090505b84156117dc5761189a6001836121bc565b91506118a7600a86612255565b6118b2906030612171565b60f81b8183815181106118c7576118c7612295565b60200101906001600160f81b031916908160001a9053506118e9600a86612189565b9450611889565b60006118fb83611559565b80519091508215611961576000336001600160a01b038316148061192457506119248233610654565b8061193f575033611934866107a6565b6001600160a01b0316145b90508061195f57604051632ce44b5f60e11b815260040160405180910390fd5b505b61196d60008583611316565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611a6b576000548214611a6b57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206122d8833981519152908390a4505060018054810190555050565b61087383838360016000546001600160a01b038516611ad457604051622e076360e81b815260040160405180910390fd5b83611af25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ba357506001600160a01b0387163b15155b15611c1a575b60405182906001600160a01b038916906000906000805160206122d8833981519152908290a4611be260008884806001019550886116ec565b611bff576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ba9578260005414611c1557600080fd5b611c4e565b5b6040516001830192906001600160a01b038916906000906000805160206122d8833981519152908290a480821415611c1b575b50600055611547565b828054611c63906121ff565b90600052602060002090601f016020900481019282611c855760008555611ccb565b82601f10611c9e57805160ff1916838001178555611ccb565b82800160010185558215611ccb579182015b82811115611ccb578251825591602001919060010190611cb0565b50611cd7929150611cdb565b5090565b5b80821115611cd75760008155600101611cdc565b60006001600160401b03831115611d0957611d096122ab565b611d1c601f8401601f1916602001612141565b9050828152838383011115611d3057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611d5e57600080fd5b919050565b80358015158114611d5e57600080fd5b600060208284031215611d8557600080fd5b61116182611d47565b60008060408385031215611da157600080fd5b611daa83611d47565b9150611db860208401611d47565b90509250929050565b600080600060608486031215611dd657600080fd5b611ddf84611d47565b9250611ded60208501611d47565b9150604084013590509250925092565b60008060008060808587031215611e1357600080fd5b611e1c85611d47565b9350611e2a60208601611d47565b92506040850135915060608501356001600160401b03811115611e4c57600080fd5b8501601f81018713611e5d57600080fd5b611e6c87823560208401611cf0565b91505092959194509250565b60008060408385031215611e8b57600080fd5b611e9483611d47565b9150611db860208401611d63565b60008060408385031215611eb557600080fd5b611ebe83611d47565b946020939093013593505050565b60006020808385031215611edf57600080fd5b82356001600160401b0380821115611ef657600080fd5b818501915085601f830112611f0a57600080fd5b813581811115611f1c57611f1c6122ab565b8060051b9150611f2d848301612141565b8181528481019084860184860187018a1015611f4857600080fd5b600095505b83861015611f6b578035835260019590950194918601918601611f4d565b5098975050505050505050565b600060208284031215611f8a57600080fd5b61116182611d63565b600060208284031215611fa557600080fd5b8135611161816122c1565b600060208284031215611fc257600080fd5b8151611161816122c1565b600060208284031215611fdf57600080fd5b81356001600160401b03811115611ff557600080fd5b8201601f8101841361200657600080fd5b6117dc84823560208401611cf0565b60006020828403121561202757600080fd5b5035919050565b6000806040838503121561204157600080fd5b82359150611db860208401611d47565b600081518084526120698160208601602086016121d3565b601f01601f19169290920160200192915050565b6000835161208f8184602088016121d3565b8351908301906120a38183602088016121d3565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ef90830184612051565b9695505050505050565b6020815260006111616020830184612051565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612169576121696122ab565b604052919050565b6000821982111561218457612184612269565b500190565b6000826121985761219861227f565b500490565b60008160001904831182151516156121b7576121b7612269565b500290565b6000828210156121ce576121ce612269565b500390565b60005b838110156121ee5781810151838201526020016121d6565b83811115610fe95750506000910152565b600181811c9082168061221357607f821691505b6020821081141561223457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561224e5761224e612269565b5060010190565b6000826122645761226461227f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096457600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122031a16a838367c9c1f202e88c8f4f85e7c84a9f81e97797e131b8e7d3299bb1d164736f6c63430008070033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063715018a611610123578063b5b1cd7c116100ab578063e0a808531161006f578063e0a80853146105f9578063e4623c1b14610619578063e985e9c514610639578063f2fde38b14610682578063fbdb8494146106a257600080fd5b8063b5b1cd7c14610561578063b88d4fde1461058e578063ba9e12f7146105ae578063c87b56dd146105c3578063d5abeb01146105e357600080fd5b806395d89b41116100f257806395d89b41146104d95780639ec571d5146104ee578063a0712d681461050e578063a22cb46514610521578063aed380151461054157600080fd5b8063715018a61461047a5780637dc429751461048f5780638693da20146104a55780638da5cb5b146104bb57600080fd5b806342966c68116101a657806355f804b31161017557806355f804b3146103eb5780635c975abb1461040b5780636352211e146104255780636c0360eb1461044557806370a082311461045a57600080fd5b806342966c681461036c57806344a0d68a1461038c578063512507c6146103ac57806351830227146103cc57600080fd5b806316c38b3c116101ed57806316c38b3c146102d057806318160ddd146102f057806323b872dd146103175780633ccfd60b1461033757806342842e0e1461034c57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611f93565b6106c2565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610714565b60405161024b91906120f9565b34801561028257600080fd5b50610296610291366004612015565b6107a6565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611ea2565b6107ea565b005b3480156102dc57600080fd5b506102ce6102eb366004611f78565b610878565b3480156102fc57600080fd5b5060015460005403600019015b60405190815260200161024b565b34801561032357600080fd5b506102ce610332366004611dc1565b6108be565b34801561034357600080fd5b506102ce6108c9565b34801561035857600080fd5b506102ce610367366004611dc1565b610967565b34801561037857600080fd5b506102ce610387366004612015565b610982565b34801561039857600080fd5b506102ce6103a7366004612015565b6109b5565b3480156103b857600080fd5b506102ce6103c7366004611fcd565b6109e4565b3480156103d857600080fd5b50600e5461023f90610100900460ff1681565b3480156103f757600080fd5b506102ce610406366004611fcd565b610a25565b34801561041757600080fd5b50600e5461023f9060ff1681565b34801561043157600080fd5b50610296610440366004612015565b610a62565b34801561045157600080fd5b50610269610a74565b34801561046657600080fd5b50610309610475366004611d73565b610b02565b34801561048657600080fd5b506102ce610b50565b34801561049b57600080fd5b50610309600f5481565b3480156104b157600080fd5b50610309600d5481565b3480156104c757600080fd5b506008546001600160a01b0316610296565b3480156104e557600080fd5b50610269610b86565b3480156104fa57600080fd5b506102ce610509366004612015565b610b95565b6102ce61051c366004612015565b610bc4565b34801561052d57600080fd5b506102ce61053c366004611e78565b610ed4565b34801561054d57600080fd5b506102ce61055c36600461202e565b610f6a565b34801561056d57600080fd5b5061030961057c366004611d73565b600a6020526000908152604090205481565b34801561059a57600080fd5b506102ce6105a9366004611dfd565b610f9e565b3480156105ba57600080fd5b50610269610fef565b3480156105cf57600080fd5b506102696105de366004612015565b610ffc565b3480156105ef57600080fd5b5061030960105481565b34801561060557600080fd5b506102ce610614366004611f78565b611168565b34801561062557600080fd5b506102ce610634366004611ecc565b6111ac565b34801561064557600080fd5b5061023f610654366004611d8e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068e57600080fd5b506102ce61069d366004611d73565b611216565b3480156106ae57600080fd5b506102ce6106bd366004612015565b6112ae565b60006001600160e01b031982166380ac58cd60e01b14806106f357506001600160e01b03198216635b5e139f60e01b145b8061070e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610723906121ff565b80601f016020809104026020016040519081016040528092919081815260200182805461074f906121ff565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60006107b1826112dd565b6107ce576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107f582610a62565b9050806001600160a01b0316836001600160a01b0316141561082a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061084a57506108488133610654565b155b15610868576040516367d9dca160e11b815260040160405180910390fd5b610873838383611316565b505050565b6008546001600160a01b031633146108ab5760405162461bcd60e51b81526004016108a29061210c565b60405180910390fd5b600e805460ff1916911515919091179055565b610873838383611372565b6008546001600160a01b031633146108f35760405162461bcd60e51b81526004016108a29061210c565b60006109076008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610951576040519150601f19603f3d011682016040523d82523d6000602084013e610956565b606091505b505090508061096457600080fd5b50565b61087383838360405180602001604052806000815250610f9e565b6008546001600160a01b031633146109ac5760405162461bcd60e51b81526004016108a29061210c565b6109648161154e565b6008546001600160a01b031633146109df5760405162461bcd60e51b81526004016108a29061210c565b600d55565b6008546001600160a01b03163314610a0e5760405162461bcd60e51b81526004016108a29061210c565b8051610a2190600c906020840190611c57565b5050565b6008546001600160a01b03163314610a4f5760405162461bcd60e51b81526004016108a29061210c565b8051610a2190600b906020840190611c57565b6000610a6d82611559565b5192915050565b600b8054610a81906121ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610aad906121ff565b8015610afa5780601f10610acf57610100808354040283529160200191610afa565b820191906000526020600020905b815481529060010190602001808311610add57829003601f168201915b505050505081565b60006001600160a01b038216610b2b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610b7a5760405162461bcd60e51b81526004016108a29061210c565b610b846000611680565b565b606060038054610723906121ff565b6008546001600160a01b03163314610bbf5760405162461bcd60e51b81526004016108a29061210c565b601055565b60026009541415610c175760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108a2565b6002600955600e5460ff1615610c6f5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108a2565b600081118015610c9857506010546001546000548391900360001901610c959190612171565b11155b610cd65760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b60448201526064016108a2565b6008546001600160a01b03163314610e9d57600f54336000908152600a6020526040902054610d06908390612171565b1115610d625760405162461bcd60e51b815260206004820152602560248201527f596f75277265206e6f7420616c6c6f77656420746f206d696e742074686973206044820152646d7563682160d81b60648201526084016108a2565b600f54811115610dd25760405162461bcd60e51b815260206004820152603560248201527f596f75277265206e6f7420616c6c6f77656420746f206d696e74206d6f7265206044820152747468616e206d6178204d696e7420416d6f756e742160581b60648201526084016108a2565b336000908152600a602052604090205415610e3f5780600d54610df5919061219d565b341015610e3a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742046756e64732160681b60448201526064016108a2565b610e9d565b610e4a6001826121bc565b600d54610e57919061219d565b341015610e9d5760405162461bcd60e51b8152602060048201526014602482015273496e6e73756666696369656e742046756e64732160601b60448201526064016108a2565b336000908152600a602052604081208054839290610ebc908490612171565b90915550610ecc905033826116d2565b506001600955565b6001600160a01b038216331415610efe5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f945760405162461bcd60e51b81526004016108a29061210c565b610a2181836116d2565b610fa9848484611372565b6001600160a01b0383163b15158015610fcb5750610fc9848484846116ec565b155b15610fe9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c8054610a81906121ff565b6060611007826112dd565b61106b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a2565b600e54610100900460ff1661110c57600c8054611087906121ff565b80601f01602080910402602001604051908101604052809291908181526020018280546110b3906121ff565b80156111005780601f106110d557610100808354040283529160200191611100565b820191906000526020600020905b8154815290600101906020018083116110e357829003601f168201915b50505050509050919050565b60006111166117e4565b905060008151116111365760405180602001604052806000815250611161565b80611140846117f3565b60405160200161115192919061207d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111925760405162461bcd60e51b81526004016108a29061210c565b600e80549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146111d65760405162461bcd60e51b81526004016108a29061210c565b60005b8151811015610a21576112048282815181106111f7576111f7612295565b602002602001015161154e565b8061120e8161223a565b9150506111d9565b6008546001600160a01b031633146112405760405162461bcd60e51b81526004016108a29061210c565b6001600160a01b0381166112a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a2565b61096481611680565b6008546001600160a01b031633146112d85760405162461bcd60e51b81526004016108a29061210c565b600f55565b6000816001111580156112f1575060005482105b801561070e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061137d82611559565b9050836001600160a01b031681600001516001600160a01b0316146113b45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113d257506113d28533610654565b806113ed5750336113e2846107a6565b6001600160a01b0316145b90508061140d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661143457604051633a954ecd60e21b815260040160405180910390fd5b61144060008487611316565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661151457600054821461151457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206122d883398151915260405160405180910390a45b5050505050565b6109648160006118f0565b60408051606081018252600080825260208201819052918101919091528180600111158015611589575060005481105b1561166757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116655780516001600160a01b0316156115fc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611660579392505050565b6115fc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a21828260405180602001604052806000815250611aa3565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117219033908990889088906004016120bc565b602060405180830381600087803b15801561173b57600080fd5b505af192505050801561176b575060408051601f3d908101601f1916820190925261176891810190611fb0565b60015b6117c6573d808015611799576040519150601f19603f3d011682016040523d82523d6000602084013e61179e565b606091505b5080516117be576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b8054610723906121ff565b6060816118175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611841578061182b8161223a565b915061183a9050600a83612189565b915061181b565b6000816001600160401b0381111561185b5761185b6122ab565b6040519080825280601f01601f191660200182016040528015611885576020820181803683370190505b5090505b84156117dc5761189a6001836121bc565b91506118a7600a86612255565b6118b2906030612171565b60f81b8183815181106118c7576118c7612295565b60200101906001600160f81b031916908160001a9053506118e9600a86612189565b9450611889565b60006118fb83611559565b80519091508215611961576000336001600160a01b038316148061192457506119248233610654565b8061193f575033611934866107a6565b6001600160a01b0316145b90508061195f57604051632ce44b5f60e11b815260040160405180910390fd5b505b61196d60008583611316565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611a6b576000548214611a6b57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206122d8833981519152908390a4505060018054810190555050565b61087383838360016000546001600160a01b038516611ad457604051622e076360e81b815260040160405180910390fd5b83611af25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ba357506001600160a01b0387163b15155b15611c1a575b60405182906001600160a01b038916906000906000805160206122d8833981519152908290a4611be260008884806001019550886116ec565b611bff576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ba9578260005414611c1557600080fd5b611c4e565b5b6040516001830192906001600160a01b038916906000906000805160206122d8833981519152908290a480821415611c1b575b50600055611547565b828054611c63906121ff565b90600052602060002090601f016020900481019282611c855760008555611ccb565b82601f10611c9e57805160ff1916838001178555611ccb565b82800160010185558215611ccb579182015b82811115611ccb578251825591602001919060010190611cb0565b50611cd7929150611cdb565b5090565b5b80821115611cd75760008155600101611cdc565b60006001600160401b03831115611d0957611d096122ab565b611d1c601f8401601f1916602001612141565b9050828152838383011115611d3057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611d5e57600080fd5b919050565b80358015158114611d5e57600080fd5b600060208284031215611d8557600080fd5b61116182611d47565b60008060408385031215611da157600080fd5b611daa83611d47565b9150611db860208401611d47565b90509250929050565b600080600060608486031215611dd657600080fd5b611ddf84611d47565b9250611ded60208501611d47565b9150604084013590509250925092565b60008060008060808587031215611e1357600080fd5b611e1c85611d47565b9350611e2a60208601611d47565b92506040850135915060608501356001600160401b03811115611e4c57600080fd5b8501601f81018713611e5d57600080fd5b611e6c87823560208401611cf0565b91505092959194509250565b60008060408385031215611e8b57600080fd5b611e9483611d47565b9150611db860208401611d63565b60008060408385031215611eb557600080fd5b611ebe83611d47565b946020939093013593505050565b60006020808385031215611edf57600080fd5b82356001600160401b0380821115611ef657600080fd5b818501915085601f830112611f0a57600080fd5b813581811115611f1c57611f1c6122ab565b8060051b9150611f2d848301612141565b8181528481019084860184860187018a1015611f4857600080fd5b600095505b83861015611f6b578035835260019590950194918601918601611f4d565b5098975050505050505050565b600060208284031215611f8a57600080fd5b61116182611d63565b600060208284031215611fa557600080fd5b8135611161816122c1565b600060208284031215611fc257600080fd5b8151611161816122c1565b600060208284031215611fdf57600080fd5b81356001600160401b03811115611ff557600080fd5b8201601f8101841361200657600080fd5b6117dc84823560208401611cf0565b60006020828403121561202757600080fd5b5035919050565b6000806040838503121561204157600080fd5b82359150611db860208401611d47565b600081518084526120698160208601602086016121d3565b601f01601f19169290920160200192915050565b6000835161208f8184602088016121d3565b8351908301906120a38183602088016121d3565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ef90830184612051565b9695505050505050565b6020815260006111616020830184612051565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612169576121696122ab565b604052919050565b6000821982111561218457612184612269565b500190565b6000826121985761219861227f565b500490565b60008160001904831182151516156121b7576121b7612269565b500290565b6000828210156121ce576121ce612269565b500390565b60005b838110156121ee5781810151838201526020016121d6565b83811115610fe95750506000910152565b600181811c9082168061221357607f821691505b6020821081141561223457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561224e5761224e612269565b5060010190565b6000826122645761226461227f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096457600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122031a16a838367c9c1f202e88c8f4f85e7c84a9f81e97797e131b8e7d3299bb1d164736f6c63430008070033
Deployed Bytecode Sourcemap
47688:3927:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29885:305;;;;;;;;;;-1:-1:-1;29885:305:0;;;;;:::i;:::-;;:::i;:::-;;;7276:14:1;;7269:22;7251:41;;7239:2;7224:18;29885:305:0;;;;;;;;32998:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34501:204::-;;;;;;;;;;-1:-1:-1;34501:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6574:32:1;;;6556:51;;6544:2;6529:18;34501:204:0;6410:203:1;34064:371:0;;;;;;;;;;-1:-1:-1;34064:371:0;;;;;:::i;:::-;;:::i;:::-;;50364:85;;;;;;;;;;-1:-1:-1;50364:85:0;;;;;:::i;:::-;;:::i;29134:303::-;;;;;;;;;;-1:-1:-1;28991:1:0;29388:12;29178:7;29372:13;:28;-1:-1:-1;;29372:46:0;29134:303;;;11438:25:1;;;11426:2;11411:18;29134:303:0;11292:177:1;35366:170:0;;;;;;;;;;-1:-1:-1;35366:170:0;;;;;:::i;:::-;;:::i;51199:413::-;;;;;;;;;;;;;:::i;35607:185::-;;;;;;;;;;-1:-1:-1;35607:185:0;;;;;:::i;:::-;;:::i;50914:80::-;;;;;;;;;;-1:-1:-1;50914:80:0;;;;;:::i;:::-;;:::i;50030:106::-;;;;;;;;;;-1:-1:-1;50030:106:0;;;;;:::i;:::-;;:::i;50554:112::-;;;;;;;;;;-1:-1:-1;50554:112:0;;;;;:::i;:::-;;:::i;47984:20::-;;;;;;;;;;-1:-1:-1;47984:20:0;;;;;;;;;;;50674:106;;;;;;;;;;-1:-1:-1;50674:106:0;;;;;:::i;:::-;;:::i;47952:25::-;;;;;;;;;;-1:-1:-1;47952:25:0;;;;;;;;32806:125;;;;;;;;;;-1:-1:-1;32806:125:0;;;;;:::i;:::-;;:::i;47835:21::-;;;;;;;;;;;;;:::i;30254:206::-;;;;;;;;;;-1:-1:-1;30254:206:0;;;;;:::i;:::-;;:::i;7623:103::-;;;;;;;;;;;;;:::i;48013:29::-;;;;;;;;;;;;;;;;47903:40;;;;;;;;;;;;;;;;6972:87;;;;;;;;;;-1:-1:-1;7045:6:0;;-1:-1:-1;;;;;7045:6:0;6972:87;;33167:104;;;;;;;;;;;;;:::i;50261:95::-;;;;;;;;;;-1:-1:-1;50261:95:0;;;;;:::i;:::-;;:::i;48201:912::-;;;;;;:::i;:::-;;:::i;34777:287::-;;;;;;;;;;-1:-1:-1;34777:287:0;;;;;:::i;:::-;;:::i;50788:120::-;;;;;;;;;;-1:-1:-1;50788:120:0;;;;;:::i;:::-;;:::i;47778:48::-;;;;;;;;;;-1:-1:-1;47778:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;35863:369;;;;;;;;;;-1:-1:-1;35863:369:0;;;;;:::i;:::-;;:::i;47863:31::-;;;;;;;;;;;;;:::i;49300:722::-;;;;;;;;;;-1:-1:-1;49300:722:0;;;;;:::i;:::-;;:::i;48049:31::-;;;;;;;;;;;;;;;;50457:89;;;;;;;;;;-1:-1:-1;50457:89:0;;;;;:::i;:::-;;:::i;51000:191::-;;;;;;;;;;-1:-1:-1;51000:191:0;;;;;:::i;:::-;;:::i;35135:164::-;;;;;;;;;;-1:-1:-1;35135:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35256:25:0;;;35232:4;35256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35135:164;7881:201;;;;;;;;;;-1:-1:-1;7881:201:0;;;;;:::i;:::-;;:::i;50145:108::-;;;;;;;;;;-1:-1:-1;50145:108:0;;;;;:::i;:::-;;:::i;29885:305::-;29987:4;-1:-1:-1;;;;;;30024:40:0;;-1:-1:-1;;;30024:40:0;;:105;;-1:-1:-1;;;;;;;30081:48:0;;-1:-1:-1;;;30081:48:0;30024:105;:158;;;-1:-1:-1;;;;;;;;;;19888:40:0;;;30146:36;30004:178;29885:305;-1:-1:-1;;29885:305:0:o;32998:100::-;33052:13;33085:5;33078:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32998:100;:::o;34501:204::-;34569:7;34594:16;34602:7;34594;:16::i;:::-;34589:64;;34619:34;;-1:-1:-1;;;34619:34:0;;;;;;;;;;;34589:64;-1:-1:-1;34673:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34673:24:0;;34501:204::o;34064:371::-;34137:13;34153:24;34169:7;34153:15;:24::i;:::-;34137:40;;34198:5;-1:-1:-1;;;;;34192:11:0;:2;-1:-1:-1;;;;;34192:11:0;;34188:48;;;34212:24;;-1:-1:-1;;;34212:24:0;;;;;;;;;;;34188:48;5776:10;-1:-1:-1;;;;;34253:21:0;;;;;;:63;;-1:-1:-1;34279:37:0;34296:5;5776:10;35135:164;:::i;34279:37::-;34278:38;34253:63;34249:138;;;34340:35;;-1:-1:-1;;;34340:35:0;;;;;;;;;;;34249:138;34399:28;34408:2;34412:7;34421:5;34399:8;:28::i;:::-;34126:309;34064:371;;:::o;50364:85::-;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;;;;;;;;;50426:6:::1;:15:::0;;-1:-1:-1;;50426:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50364:85::o;35366:170::-;35500:28;35510:4;35516:2;35520:7;35500:9;:28::i;51199:413::-;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;51424:7:::1;51445;7045:6:::0;;-1:-1:-1;;;;;7045:6:0;;6972:87;51445:7:::1;-1:-1:-1::0;;;;;51437:21:0::1;51466;51437:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51423:69;;;51511:2;51503:11;;;::::0;::::1;;51236:376;51199:413::o:0;35607:185::-;35745:39;35762:4;35768:2;35772:7;35745:39;;;;;;;;;;;;:16;:39::i;50914:80::-;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;50972:14:::1;50978:7;50972:5;:14::i;50030:106::-:0;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;50101:10:::1;:27:::0;50030:106::o;50554:112::-;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;50634:24;;::::1;::::0;:17:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50554:112:::0;:::o;50674:106::-;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;50751:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;32806:125::-:0;32870:7;32897:21;32910:7;32897:12;:21::i;:::-;:26;;32806:125;-1:-1:-1;;32806:125:0:o;47835:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30254:206::-;30318:7;-1:-1:-1;;;;;30342:19:0;;30338:60;;30370:28;;-1:-1:-1;;;30370:28:0;;;;;;;;;;;30338:60;-1:-1:-1;;;;;;30424:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30424:27:0;;30254:206::o;7623:103::-;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;7688:30:::1;7715:1;7688:18;:30::i;:::-;7623:103::o:0;33167:104::-;33223:13;33256:7;33249:14;;;;;:::i;50261:95::-;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;50329:9:::1;:19:::0;50261:95::o;48201:912::-;1785:1;2383:7;;:19;;2375:63;;;;-1:-1:-1;;;2375:63:0;;11134:2:1;2375:63:0;;;11116:21:1;11173:2;11153:18;;;11146:30;11212:33;11192:18;;;11185:61;11263:18;;2375:63:0;10932:355:1;2375:63:0;1785:1;2516:7;:18;48283:6:::1;::::0;::::1;;48282:7;48274:43;;;::::0;-1:-1:-1;;;48274:43:0;;9944:2:1;48274:43:0::1;::::0;::::1;9926:21:1::0;9983:2;9963:18;;;9956:30;10022:25;10002:18;;;9995:53;10065:18;;48274:43:0::1;9742:347:1::0;48274:43:0::1;48349:1;48338:8;:12;:53;;;;-1:-1:-1::0;48382:9:0::1;::::0;28991:1;29388:12;29178:7;29372:13;48370:8;;29372:28;;-1:-1:-1;;29372:46:0;48354:24:::1;;;;:::i;:::-;:37;;48338:53;48330:81;;;::::0;-1:-1:-1;;;48330:81:0;;8890:2:1;48330:81:0::1;::::0;::::1;8872:21:1::0;8929:2;8909:18;;;8902:30;-1:-1:-1;;;8948:18:1;;;8941:45;9003:18;;48330:81:0::1;8688:339:1::0;48330:81:0::1;7045:6:::0;;-1:-1:-1;;;;;7045:6:0;48428:10:::1;:21;48424:592;;48528:9;::::0;48502:10:::1;48488:25;::::0;;;:13:::1;:25;::::0;;;;;:36:::1;::::0;48516:8;;48488:36:::1;:::i;:::-;:49;;48466:144;;;::::0;-1:-1:-1;;;48466:144:0;;8136:2:1;48466:144:0::1;::::0;::::1;8118:21:1::0;8175:2;8155:18;;;8148:30;8214:34;8194:18;;;8187:62;-1:-1:-1;;;8265:18:1;;;8258:35;8310:19;;48466:144:0::1;7934:401:1::0;48466:144:0::1;48663:9;;48651:8;:21;;48625:136;;;::::0;-1:-1:-1;;;48625:136:0;;10712:2:1;48625:136:0::1;::::0;::::1;10694:21:1::0;10751:2;10731:18;;;10724:30;10790:34;10770:18;;;10763:62;-1:-1:-1;;;10841:18:1;;;10834:51;10902:19;;48625:136:0::1;10510:417:1::0;48625:136:0::1;48793:10;48779:25;::::0;;;:13:::1;:25;::::0;;;;;:30;48776:228:::1;;48862:8;48849:10;;:21;;;;:::i;:::-;48836:9;:34;;48828:66;;;::::0;-1:-1:-1;;;48828:66:0;;8542:2:1;48828:66:0::1;::::0;::::1;8524:21:1::0;8581:2;8561:18;;;8554:30;-1:-1:-1;;;8600:18:1;;;8593:49;8659:18;;48828:66:0::1;8340:343:1::0;48828:66:0::1;48776:228;;;48966:12;48977:1;48966:8:::0;:12:::1;:::i;:::-;48952:10;;:27;;;;:::i;:::-;48939:9;:40;;48931:73;;;::::0;-1:-1:-1;;;48931:73:0;;9234:2:1;48931:73:0::1;::::0;::::1;9216:21:1::0;9273:2;9253:18;;;9246:30;-1:-1:-1;;;9292:18:1;;;9285:50;9352:18;;48931:73:0::1;9032:344:1::0;48931:73:0::1;49040:10;49026:25;::::0;;;:13:::1;:25;::::0;;;;:37;;49055:8;;49026:25;:37:::1;::::0;49055:8;;49026:37:::1;:::i;:::-;::::0;;;-1:-1:-1;49074:31:0::1;::::0;-1:-1:-1;49084:10:0::1;49096:8:::0;49074:9:::1;:31::i;:::-;-1:-1:-1::0;1741:1:0;2695:7;:22;48201:912::o;34777:287::-;-1:-1:-1;;;;;34876:24:0;;5776:10;34876:24;34872:54;;;34909:17;;-1:-1:-1;;;34909:17:0;;;;;;;;;;;34872:54;5776:10;34939:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34939:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34939:53:0;;;;;;;;;;35008:48;;7251:41:1;;;34939:42:0;;5776:10;35008:48;;7224:18:1;35008:48:0;;;;;;;34777:287;;:::o;50788:120::-;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;50871:29:::1;50881:8;50891;50871:9;:29::i;35863:369::-:0;36030:28;36040:4;36046:2;36050:7;36030:9;:28::i;:::-;-1:-1:-1;;;;;36073:13:0;;9968:19;:23;;36073:76;;;;;36093:56;36124:4;36130:2;36134:7;36143:5;36093:30;:56::i;:::-;36092:57;36073:76;36069:156;;;36173:40;;-1:-1:-1;;;36173:40:0;;;;;;;;;;;36069:156;35863:369;;;;:::o;47863:31::-;;;;;;;:::i;49300:722::-;49418:13;49471:16;49479:7;49471;:16::i;:::-;49449:113;;;;-1:-1:-1;;;49449:113:0;;10296:2:1;49449:113:0;;;10278:21:1;10335:2;10315:18;;;10308:30;10374:34;10354:18;;;10347:62;-1:-1:-1;;;10425:18:1;;;10418:45;10480:19;;49449:113:0;10094:411:1;49449:113:0;49579:8;;;;;;;49575:74;;49620:17;49613:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49300:722;;;:::o;49575:74::-;49661:28;49692:10;:8;:10::i;:::-;49661:41;;49764:1;49739:14;49733:28;:32;:281;;;;;;;;;;;;;;;;;49857:14;49898:18;:7;:16;:18::i;:::-;49814:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49733:281;49713:301;49300:722;-1:-1:-1;;;49300:722:0:o;50457:89::-;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;50521:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;50521:17:0;;::::1;::::0;;;::::1;::::0;;50457:89::o;51000:191::-;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;51078:13:::1;51073:111;51105:8;:15;51097:5;:23;51073:111;;;51150:22;51156:8;51165:5;51156:15;;;;;;;;:::i;:::-;;;;;;;51150:5;:22::i;:::-;51122:7:::0;::::1;::::0;::::1;:::i;:::-;;;;51073:111;;7881:201:::0;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7970:22:0;::::1;7962:73;;;::::0;-1:-1:-1;;;7962:73:0;;7729:2:1;7962:73:0::1;::::0;::::1;7711:21:1::0;7768:2;7748:18;;;7741:30;7807:34;7787:18;;;7780:62;-1:-1:-1;;;7858:18:1;;;7851:36;7904:19;;7962:73:0::1;7527:402:1::0;7962:73:0::1;8046:28;8065:8;8046:18;:28::i;50145:108::-:0;7045:6;;-1:-1:-1;;;;;7045:6:0;5776:10;7192:23;7184:68;;;;-1:-1:-1;;;7184:68:0;;;;;;;:::i;:::-;50220:9:::1;:25:::0;50145:108::o;36487:174::-;36544:4;36587:7;28991:1;36568:26;;:53;;;;;36608:13;;36598:7;:23;36568:53;:85;;;;-1:-1:-1;;36626:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36626:27:0;;;;36625:28;;36487:174::o;44644:196::-;44759:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44759:29:0;-1:-1:-1;;;;;44759:29:0;;;;;;;;;44804:28;;44759:24;;44804:28;;;;;;;44644:196;;;:::o;39587:2130::-;39702:35;39740:21;39753:7;39740:12;:21::i;:::-;39702:59;;39800:4;-1:-1:-1;;;;;39778:26:0;:13;:18;;;-1:-1:-1;;;;;39778:26:0;;39774:67;;39813:28;;-1:-1:-1;;;39813:28:0;;;;;;;;;;;39774:67;39854:22;5776:10;-1:-1:-1;;;;;39880:20:0;;;;:73;;-1:-1:-1;39917:36:0;39934:4;5776:10;35135:164;:::i;39917:36::-;39880:126;;;-1:-1:-1;5776:10:0;39970:20;39982:7;39970:11;:20::i;:::-;-1:-1:-1;;;;;39970:36:0;;39880:126;39854:153;;40025:17;40020:66;;40051:35;;-1:-1:-1;;;40051:35:0;;;;;;;;;;;40020:66;-1:-1:-1;;;;;40101:16:0;;40097:52;;40126:23;;-1:-1:-1;;;40126:23:0;;;;;;;;;;;40097:52;40270:35;40287:1;40291:7;40300:4;40270:8;:35::i;:::-;-1:-1:-1;;;;;40601:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40601:31:0;;;-1:-1:-1;;;;;40601:31:0;;;-1:-1:-1;;40601:31:0;;;;;;;40647:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40647:29:0;;;;;;;;;;;40727:20;;;:11;:20;;;;;;40762:18;;-1:-1:-1;;;;;;40795:49:0;;;;-1:-1:-1;;;40828:15:0;40795:49;;;;;;;;;;41118:11;;41178:24;;;;;41221:13;;40727:20;;41178:24;;41221:13;41217:384;;41431:13;;41416:11;:28;41412:174;;41469:20;;41538:28;;;;-1:-1:-1;;;;;41512:54:0;-1:-1:-1;;;41512:54:0;-1:-1:-1;;;;;;41512:54:0;;;-1:-1:-1;;;;;41469:20:0;;41512:54;;;;41412:174;40576:1036;;;41648:7;41644:2;-1:-1:-1;;;;;41629:27:0;41638:4;-1:-1:-1;;;;;41629:27:0;-1:-1:-1;;;;;;;;;;;41629:27:0;;;;;;;;;41667:42;39691:2026;;39587:2130;;;:::o;41800:89::-;41860:21;41866:7;41875:5;41860;:21::i;31635:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31746:7:0;;28991:1;31795:23;;:47;;;;;31829:13;;31822:4;:20;31795:47;31791:886;;;31863:31;31897:17;;;:11;:17;;;;;;;;;31863:51;;;;;;;;;-1:-1:-1;;;;;31863:51:0;;;;-1:-1:-1;;;31863:51:0;;-1:-1:-1;;;;;31863:51:0;;;;;;;;-1:-1:-1;;;31863:51:0;;;;;;;;;;;;;;31933:729;;31983:14;;-1:-1:-1;;;;;31983:28:0;;31979:101;;32047:9;31635:1109;-1:-1:-1;;;31635:1109:0:o;31979:101::-;-1:-1:-1;;;32422:6:0;32467:17;;;;:11;:17;;;;;;;;;32455:29;;;;;;;;;-1:-1:-1;;;;;32455:29:0;;;;;-1:-1:-1;;;32455:29:0;;-1:-1:-1;;;;;32455:29:0;;;;;;;;-1:-1:-1;;;32455:29:0;;;;;;;;;;;;;32515:28;32511:109;;32583:9;31635:1109;-1:-1:-1;;;31635:1109:0:o;32511:109::-;32382:261;;;31844:833;31791:886;32705:31;;-1:-1:-1;;;32705:31:0;;;;;;;;;;;8242:191;8335:6;;;-1:-1:-1;;;;;8352:17:0;;;-1:-1:-1;;;;;;8352:17:0;;;;;;;8385:40;;8335:6;;;8352:17;8335:6;;8385:40;;8316:16;;8385:40;8305:128;8242:191;:::o;36669:104::-;36738:27;36748:2;36752:8;36738:27;;;;;;;;;;;;:9;:27::i;45332:667::-;45516:72;;-1:-1:-1;;;45516:72:0;;45495:4;;-1:-1:-1;;;;;45516:36:0;;;;;:72;;5776:10;;45567:4;;45573:7;;45582:5;;45516:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45516:72:0;;;;;;;;-1:-1:-1;;45516:72:0;;;;;;;;;;;;:::i;:::-;;;45512:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45750:13:0;;45746:235;;45796:40;;-1:-1:-1;;;45796:40:0;;;;;;;;;;;45746:235;45939:6;45933:13;45924:6;45920:2;45916:15;45909:38;45512:480;-1:-1:-1;;;;;;45635:55:0;-1:-1:-1;;;45635:55:0;;-1:-1:-1;45512:480:0;45332:667;;;;;;:::o;49121:108::-;49181:13;49214:7;49207:14;;;;;:::i;3258:723::-;3314:13;3535:10;3531:53;;-1:-1:-1;;3562:10:0;;;;;;;;;;;;-1:-1:-1;;;3562:10:0;;;;;3258:723::o;3531:53::-;3609:5;3594:12;3650:78;3657:9;;3650:78;;3683:8;;;;:::i;:::-;;-1:-1:-1;3706:10:0;;-1:-1:-1;3714:2:0;3706:10;;:::i;:::-;;;3650:78;;;3738:19;3770:6;-1:-1:-1;;;;;3760:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3760:17:0;;3738:39;;3788:154;3795:10;;3788:154;;3822:11;3832:1;3822:11;;:::i;:::-;;-1:-1:-1;3891:10:0;3899:2;3891:5;:10;:::i;:::-;3878:24;;:2;:24;:::i;:::-;3865:39;;3848:6;3855;3848:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3848:56:0;;;;;;;;-1:-1:-1;3919:11:0;3928:2;3919:11;;:::i;:::-;;;3788:154;;42118:2408;42198:35;42236:21;42249:7;42236:12;:21::i;:::-;42285:18;;42198:59;;-1:-1:-1;42316:290:0;;;;42350:22;5776:10;-1:-1:-1;;;;;42376:20:0;;;;:77;;-1:-1:-1;42417:36:0;42434:4;5776:10;35135:164;:::i;42417:36::-;42376:134;;;-1:-1:-1;5776:10:0;42474:20;42486:7;42474:11;:20::i;:::-;-1:-1:-1;;;;;42474:36:0;;42376:134;42350:161;;42533:17;42528:66;;42559:35;;-1:-1:-1;;;42559:35:0;;;;;;;;;;;42528:66;42335:271;42316:290;42734:35;42751:1;42755:7;42764:4;42734:8;:35::i;:::-;-1:-1:-1;;;;;43099:18:0;;;43065:31;43099:18;;;:12;:18;;;;;;;;43132:24;;-1:-1:-1;;;;;;;;;;43132:24:0;;;;;;;;;-1:-1:-1;;43132:24:0;;;;43171:29;;;;;43155:1;43171:29;;;;;;;;-1:-1:-1;;43171:29:0;;;;;;;;;;43333:20;;;:11;:20;;;;;;43368;;-1:-1:-1;;;;43436:15:0;43403:49;;;-1:-1:-1;;;43403:49:0;-1:-1:-1;;;;;;43403:49:0;;;;;;;;;;43467:22;-1:-1:-1;;;43467:22:0;;;43759:11;;;43819:24;;;;;43862:13;;43099:18;;43819:24;;43862:13;43858:384;;44072:13;;44057:11;:28;44053:174;;44110:20;;44179:28;;;;-1:-1:-1;;;;;44153:54:0;-1:-1:-1;;;44153:54:0;-1:-1:-1;;;;;;44153:54:0;;;-1:-1:-1;;;;;44110:20:0;;44153:54;;;;44053:174;-1:-1:-1;;44270:35:0;;44297:7;;-1:-1:-1;44293:1:0;;-1:-1:-1;;;;;;44270:35:0;;;-1:-1:-1;;;;;;;;;;;44270:35:0;44293:1;;44270:35;-1:-1:-1;;44493:12:0;:14;;;;;;-1:-1:-1;;42118:2408:0:o;37136:163::-;37259:32;37265:2;37269:8;37279:5;37286:4;37697:20;37720:13;-1:-1:-1;;;;;37748:16:0;;37744:48;;37773:19;;-1:-1:-1;;;37773:19:0;;;;;;;;;;;37744:48;37807:13;37803:44;;37829:18;;-1:-1:-1;;;37829:18:0;;;;;;;;;;;37803:44;-1:-1:-1;;;;;38198:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38257:49:0;;-1:-1:-1;;;;;38198:44:0;;;;;;;38257:49;;;;-1:-1:-1;;38198:44:0;;;;;;38257:49;;;;;;;;;;;;;;;;38323:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38373:66:0;;;;-1:-1:-1;;;38423:15:0;38373:66;;;;;;;;;;38323:25;38520:23;;;38564:4;:23;;;;-1:-1:-1;;;;;;38572:13:0;;9968:19;:23;;38572:15;38560:641;;;38608:314;38639:38;;38664:12;;-1:-1:-1;;;;;38639:38:0;;;38656:1;;-1:-1:-1;;;;;;;;;;;38639:38:0;38656:1;;38639:38;38705:69;38744:1;38748:2;38752:14;;;;;;38768:5;38705:30;:69::i;:::-;38700:174;;38810:40;;-1:-1:-1;;;38810:40:0;;;;;;;;;;;38700:174;38917:3;38901:12;:19;;38608:314;;39003:12;38986:13;;:29;38982:43;;39017:8;;;38982:43;38560:641;;;39066:120;39097:40;;39122:14;;;;;-1:-1:-1;;;;;39097:40:0;;;39114:1;;-1:-1:-1;;;;;;;;;;;39097:40:0;39114:1;;39097:40;39181:3;39165:12;:19;;39066:120;;38560:641;-1:-1:-1;39215:13:0;:28;39265:60;35863:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;-1:-1:-1;;;;;1976:6:1;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:957::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;-1:-1:-1;;;;;3030:2:1;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:163;3524:2;3521:1;3518:9;3510:163;;;3581:17;;3569:30;;3542:1;3535:9;;;;;3619:12;;;;3651;;3510:163;;;-1:-1:-1;3692:5:1;2746:957;-1:-1:-1;;;;;;;;2746:957:1:o;3708:180::-;3764:6;3817:2;3805:9;3796:7;3792:23;3788:32;3785:52;;;3833:1;3830;3823:12;3785:52;3856:26;3872:9;3856:26;:::i;3893:245::-;3951:6;4004:2;3992:9;3983:7;3979:23;3975:32;3972:52;;;4020:1;4017;4010:12;3972:52;4059:9;4046:23;4078:30;4102:5;4078:30;:::i;4143:249::-;4212:6;4265:2;4253:9;4244:7;4240:23;4236:32;4233:52;;;4281:1;4278;4271:12;4233:52;4313:9;4307:16;4332:30;4356:5;4332:30;:::i;4397:450::-;4466:6;4519:2;4507:9;4498:7;4494:23;4490:32;4487:52;;;4535:1;4532;4525:12;4487:52;4575:9;4562:23;-1:-1:-1;;;;;4600:6:1;4597:30;4594:50;;;4640:1;4637;4630:12;4594:50;4663:22;;4716:4;4708:13;;4704:27;-1:-1:-1;4694:55:1;;4745:1;4742;4735:12;4694:55;4768:73;4833:7;4828:2;4815:16;4810:2;4806;4802:11;4768:73;:::i;4852:180::-;4911:6;4964:2;4952:9;4943:7;4939:23;4935:32;4932:52;;;4980:1;4977;4970:12;4932:52;-1:-1:-1;5003:23:1;;4852:180;-1:-1:-1;4852:180:1:o;5037:254::-;5105:6;5113;5166:2;5154:9;5145:7;5141:23;5137:32;5134:52;;;5182:1;5179;5172:12;5134:52;5218:9;5205:23;5195:33;;5247:38;5281:2;5270:9;5266:18;5247:38;:::i;5296:257::-;5337:3;5375:5;5369:12;5402:6;5397:3;5390:19;5418:63;5474:6;5467:4;5462:3;5458:14;5451:4;5444:5;5440:16;5418:63;:::i;:::-;5535:2;5514:15;-1:-1:-1;;5510:29:1;5501:39;;;;5542:4;5497:50;;5296:257;-1:-1:-1;;5296:257:1:o;5558:637::-;5838:3;5876:6;5870:13;5892:53;5938:6;5933:3;5926:4;5918:6;5914:17;5892:53;:::i;:::-;6008:13;;5967:16;;;;6030:57;6008:13;5967:16;6064:4;6052:17;;6030:57;:::i;:::-;-1:-1:-1;;;6109:20:1;;6138:22;;;6187:1;6176:13;;5558:637;-1:-1:-1;;;;5558:637:1:o;6618:488::-;-1:-1:-1;;;;;6887:15:1;;;6869:34;;6939:15;;6934:2;6919:18;;6912:43;6986:2;6971:18;;6964:34;;;7034:3;7029:2;7014:18;;7007:31;;;6812:4;;7055:45;;7080:19;;7072:6;7055:45;:::i;:::-;7047:53;6618:488;-1:-1:-1;;;;;;6618:488:1:o;7303:219::-;7452:2;7441:9;7434:21;7415:4;7472:44;7512:2;7501:9;7497:18;7489:6;7472:44;:::i;9381:356::-;9583:2;9565:21;;;9602:18;;;9595:30;9661:34;9656:2;9641:18;;9634:62;9728:2;9713:18;;9381:356::o;11474:275::-;11545:2;11539:9;11610:2;11591:13;;-1:-1:-1;;11587:27:1;11575:40;;-1:-1:-1;;;;;11630:34:1;;11666:22;;;11627:62;11624:88;;;11692:18;;:::i;:::-;11728:2;11721:22;11474:275;;-1:-1:-1;11474:275:1:o;11754:128::-;11794:3;11825:1;11821:6;11818:1;11815:13;11812:39;;;11831:18;;:::i;:::-;-1:-1:-1;11867:9:1;;11754:128::o;11887:120::-;11927:1;11953;11943:35;;11958:18;;:::i;:::-;-1:-1:-1;11992:9:1;;11887:120::o;12012:168::-;12052:7;12118:1;12114;12110:6;12106:14;12103:1;12100:21;12095:1;12088:9;12081:17;12077:45;12074:71;;;12125:18;;:::i;:::-;-1:-1:-1;12165:9:1;;12012:168::o;12185:125::-;12225:4;12253:1;12250;12247:8;12244:34;;;12258:18;;:::i;:::-;-1:-1:-1;12295:9:1;;12185:125::o;12315:258::-;12387:1;12397:113;12411:6;12408:1;12405:13;12397:113;;;12487:11;;;12481:18;12468:11;;;12461:39;12433:2;12426:10;12397:113;;;12528:6;12525:1;12522:13;12519:48;;;-1:-1:-1;;12563:1:1;12545:16;;12538:27;12315:258::o;12578:380::-;12657:1;12653:12;;;;12700;;;12721:61;;12775:4;12767:6;12763:17;12753:27;;12721:61;12828:2;12820:6;12817:14;12797:18;12794:38;12791:161;;;12874:10;12869:3;12865:20;12862:1;12855:31;12909:4;12906:1;12899:15;12937:4;12934:1;12927:15;12791:161;;12578:380;;;:::o;12963:135::-;13002:3;-1:-1:-1;;13023:17:1;;13020:43;;;13043:18;;:::i;:::-;-1:-1:-1;13090:1:1;13079:13;;12963:135::o;13103:112::-;13135:1;13161;13151:35;;13166:18;;:::i;:::-;-1:-1:-1;13200:9:1;;13103:112::o;13220:127::-;13281:10;13276:3;13272:20;13269:1;13262:31;13312:4;13309:1;13302:15;13336:4;13333:1;13326:15;13352:127;13413:10;13408:3;13404:20;13401:1;13394:31;13444:4;13441:1;13434:15;13468:4;13465:1;13458:15;13484:127;13545:10;13540:3;13536:20;13533:1;13526:31;13576:4;13573:1;13566:15;13600:4;13597:1;13590:15;13616:127;13677:10;13672:3;13668:20;13665:1;13658:31;13708:4;13705:1;13698:15;13732:4;13729:1;13722:15;13748:131;-1:-1:-1;;;;;;13822:32:1;;13812:43;;13802:71;;13869:1;13866;13859:12
Swarm Source
ipfs://31a16a838367c9c1f202e88c8f4f85e7c84a9f81e97797e131b8e7d3299bb1d1
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.