Overview
Max Total Supply
9,337 AKUTARMP
Holders
3,899
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 AKUTARMPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AkutarMintPass
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-09 */ // 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 v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/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: workspaces/default_workspace/samuraisanta.sol /** * SPDX-License-Identifier: MIT * * Copyright (c) 2022 WYE Company * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ pragma solidity 0.8.13; 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 Chiru Labs 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; /** * @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 ''; } // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev 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 virtual 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 {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 {} } contract AkutarMintPass is ERC721A, Ownable { string baseURI = "ipfs://QmcKU4czhrgRPMgE7P6C6JhV51wciJtL41AQS9QCLsjary/"; bytes32 constant baseExtension = ".json"; uint256 constant akuMegaOGEnd = 529; uint256 constant akuOGEnd = 3032; uint256 constant akuEnd = 9341; uint256 constant niftyAkuMegaOGEnd = 290; uint256 constant niftyAkuOGEnd = 2074; uint256 constant niftyAkuEnd = 5962; address immutable niftyOmnibus; constructor(address _nifty) ERC721A("Akutar Mint Pass", "AKUTARMP") { niftyOmnibus = _nifty; } function mint(address[] calldata to, uint256[] calldata quantity) external onlyOwner { require(to.length == quantity.length, "Array size mismatch"); uint256 _airdrops = to.length; for (uint256 i = 0; i < _airdrops; i++){ uint256 currentSupply = totalSupply(); if(currentSupply < akuMegaOGEnd) require(currentSupply + quantity[i] <= akuMegaOGEnd, "Can't mint across mint pass sections"); else if(currentSupply < akuOGEnd) require(currentSupply + quantity[i] <= akuOGEnd, "Can't mint across mint pass sections"); _safeMint(to[i], quantity[i]); } require(totalSupply() <= akuEnd); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setBaseURI(string calldata _base) external onlyOwner { baseURI = _base; } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { if (!_exists(_tokenId)) revert URIQueryForNonexistentToken(); string memory base = _baseURI(); if (bytes(base).length > 0) { if(_tokenId <= akuMegaOGEnd) return string(abi.encodePacked(base, "MegaOGAkutarMintPass", baseExtension)); else if(_tokenId <= akuOGEnd) return string(abi.encodePacked(base, "OGAkutarMintPass", baseExtension)); else if(_tokenId <= akuEnd) return string(abi.encodePacked(base, "RandomAkutarMintPass", baseExtension)); } return super.tokenURI(_tokenId); } function _ownershipOf(uint256 tokenId) internal view override 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)) { if(curr <= niftyAkuMegaOGEnd || (curr > akuMegaOGEnd && curr <= niftyAkuOGEnd) || (curr > akuOGEnd && curr <= niftyAkuEnd)) return TokenOwnership(niftyOmnibus, 0, false); } } } } return super._ownershipOf(tokenId); } function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal override { super._beforeTokenTransfers(from, to, startTokenId, quantity); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_nifty","type":"address"}],"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseURI","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"}]
Contract Creation Code
610100604052603660a08181529062001d1260c03980516200002a9160099160209091019062000140565b503480156200003857600080fd5b5060405162001d4838038062001d488339810160408190526200005b91620001e6565b604080518082018252601081526f416b75746172204d696e74205061737360801b6020808301918252835180850190945260088452670414b555441524d560c41b908401528151919291620000b39160029162000140565b508051620000c990600390602084019062000140565b5050600160005550620000dc33620000ee565b6001600160a01b031660805262000254565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014e9062000218565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b600060208284031215620001f957600080fd5b81516001600160a01b03811681146200021157600080fd5b9392505050565b600181811c908216806200022d57607f821691505b6020821081036200024e57634e487b7160e01b600052602260045260246000fd5b50919050565b608051611aa2620002706000396000610d190152611aa26000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610250578063c87b56dd14610263578063e467f7e014610276578063e985e9c514610289578063f2fde38b146102c557600080fd5b806370a0823114610209578063715018a61461021c5780638da5cb5b1461022457806395d89b4114610235578063a22cb4651461023d57600080fd5b806318160ddd116100f457806318160ddd146101a357806323b872dd146101bd57806342842e0e146101d057806355f804b3146101e35780636352211e146101f657600080fd5b806301ffc9a71461012657806306fdde031461014e578063081812fc14610163578063095ea7b31461018e575b600080fd5b6101396101343660046113f9565b6102d8565b60405190151581526020015b60405180910390f35b61015661032a565b604051610145919061146e565b610176610171366004611481565b6103bc565b6040516001600160a01b039091168152602001610145565b6101a161019c3660046114b6565b610400565b005b60015460005403600019015b604051908152602001610145565b6101a16101cb3660046114e0565b61048d565b6101a16101de3660046114e0565b610498565b6101a16101f136600461151c565b6104b3565b610176610204366004611481565b6104f2565b6101af61021736600461158e565b610504565b6101a1610553565b6008546001600160a01b0316610176565b610156610589565b6101a161024b3660046115a9565b610598565b6101a161025e3660046115fb565b61062d565b610156610271366004611481565b61067e565b6101a1610284366004611723565b61074d565b61013961029736600461178f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101a16102d336600461158e565b610900565b60006001600160e01b031982166380ac58cd60e01b148061030957506001600160e01b03198216635b5e139f60e01b145b8061032457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610339906117c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610365906117c2565b80156103b25780601f10610387576101008083540402835291602001916103b2565b820191906000526020600020905b81548152906001019060200180831161039557829003601f168201915b5050505050905090565b60006103c78261099b565b6103e4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061040b826104f2565b9050806001600160a01b0316836001600160a01b03160361043f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061045f575061045d8133610297565b155b1561047d576040516367d9dca160e11b815260040160405180910390fd5b6104888383836109d4565b505050565b610488838383610a30565b6104888383836040518060200160405280600081525061062d565b6008546001600160a01b031633146104e65760405162461bcd60e51b81526004016104dd906117fc565b60405180910390fd5b6104886009838361134a565b60006104fd82610c2a565b5192915050565b60006001600160a01b03821661052d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461057d5760405162461bcd60e51b81526004016104dd906117fc565b6105876000610d5c565b565b606060038054610339906117c2565b336001600160a01b038316036105c15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610638848484610a30565b6001600160a01b0383163b1515801561065a575061065884848484610dae565b155b15610678576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606106898261099b565b6106a657604051630a14c4b560e41b815260040160405180910390fd5b60006106b0610e9a565b80519091501561073d5761021183116106f5578064173539b7b760d91b6040516020016106de929190611831565b604051602081830303815290604052915050919050565b610bd88311610719578064173539b7b760d91b6040516020016106de929190611871565b61247d831161073d578064173539b7b760d91b6040516020016106de9291906118ad565b61074683610ea9565b9392505050565b6008546001600160a01b031633146107775760405162461bcd60e51b81526004016104dd906117fc565b8281146107bc5760405162461bcd60e51b8152602060048201526013602482015272082e4e4c2f240e6d2f4ca40dad2e6dac2e8c6d606b1b60448201526064016104dd565b8260005b818110156108dd5760006107dd6001546000546000199190030190565b9050610211811015610833576102118585848181106107fe576107fe6118ed565b90506020020135826108109190611919565b111561082e5760405162461bcd60e51b81526004016104dd90611931565b610882565b610bd881101561088257610bd8858584818110610852576108526118ed565b90506020020135826108649190611919565b11156108825760405162461bcd60e51b81526004016104dd90611931565b6108ca878784818110610897576108976118ed565b90506020020160208101906108ac919061158e565b8686858181106108be576108be6118ed565b90506020020135610f16565b50806108d581611975565b9150506107c0565b5060015460005461247d9190036000190111156108f957600080fd5b5050505050565b6008546001600160a01b0316331461092a5760405162461bcd60e51b81526004016104dd906117fc565b6001600160a01b03811661098f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104dd565b61099881610d5c565b50565b6000816001111580156109af575060005482105b8015610324575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a3b82610c2a565b9050836001600160a01b031681600001516001600160a01b031614610a725760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610a905750610a908533610297565b80610aab575033610aa0846103bc565b6001600160a01b0316145b905080610acb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610af257604051633a954ecd60e21b815260040160405180910390fd5b610aff8585856001610f34565b610b0b600084876109d4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610be1576000548214610be1578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46108f9565b60408051606081018252600080825260208201819052918101919091528180600111158015610c5a575060005481105b15610d5357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610d515780516001600160a01b0316610d515761012282111580610ce5575061021182118015610ce5575061081a8211155b80610cfe5750610bd882118015610cfe575061174a8211155b15610d51575050604080516060810182526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681526000602082018190529181019190915292915050565b505b61074683610f39565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610de390339089908890889060040161198e565b6020604051808303816000875af1925050508015610e1e575060408051601f3d908101601f19168201909252610e1b918101906119cb565b60015b610e7c573d808015610e4c576040519150601f19603f3d011682016040523d82523d6000602084013e610e51565b606091505b508051600003610e74576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610339906117c2565b6060610eb48261099b565b610ed157604051630a14c4b560e41b815260040160405180910390fd5b6000610edb610e9a565b90508051600003610efb5760405180602001604052806000815250610746565b80610f0584611062565b6040516020016106de9291906119e8565b610f30828260405180602001604052806000815250611163565b5050565b610678565b60408051606081018252600080825260208201819052918101919091528180600111158015610f69575060005481105b1561104957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110475780516001600160a01b031615610fdd579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611042579392505050565b610fdd565b505b604051636f96cda160e11b815260040160405180910390fd5b6060816000036110895750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110b3578061109d81611975565b91506110ac9050600a83611a2d565b915061108d565b60008167ffffffffffffffff8111156110ce576110ce6115e5565b6040519080825280601f01601f1916602001820160405280156110f8576020820181803683370190505b5090505b8415610e925761110d600183611a41565b915061111a600a86611a58565b611125906030611919565b60f81b81838151811061113a5761113a6118ed565b60200101906001600160f81b031916908160001a90535061115c600a86611a2d565b94506110fc565b61048883838360016000546001600160a01b03851661119457604051622e076360e81b815260040160405180910390fd5b836000036111b55760405163b562e8dd60e01b815260040160405180910390fd5b6111c26000868387610f34565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561127457506001600160a01b0387163b15155b156112fc575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112c56000888480600101955088610dae565b6112e2576040516368d2bf6b60e11b815260040160405180910390fd5b80820361127a5782600054146112f757600080fd5b611341565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036112fd575b506000556108f9565b828054611356906117c2565b90600052602060002090601f01602090048101928261137857600085556113be565b82601f106113915782800160ff198235161785556113be565b828001600101855582156113be579182015b828111156113be5782358255916020019190600101906113a3565b506113ca9291506113ce565b5090565b5b808211156113ca57600081556001016113cf565b6001600160e01b03198116811461099857600080fd5b60006020828403121561140b57600080fd5b8135610746816113e3565b60005b83811015611431578181015183820152602001611419565b838111156106785750506000910152565b6000815180845261145a816020860160208601611416565b601f01601f19169290920160200192915050565b6020815260006107466020830184611442565b60006020828403121561149357600080fd5b5035919050565b80356001600160a01b03811681146114b157600080fd5b919050565b600080604083850312156114c957600080fd5b6114d28361149a565b946020939093013593505050565b6000806000606084860312156114f557600080fd5b6114fe8461149a565b925061150c6020850161149a565b9150604084013590509250925092565b6000806020838503121561152f57600080fd5b823567ffffffffffffffff8082111561154757600080fd5b818501915085601f83011261155b57600080fd5b81358181111561156a57600080fd5b86602082850101111561157c57600080fd5b60209290920196919550909350505050565b6000602082840312156115a057600080fd5b6107468261149a565b600080604083850312156115bc57600080fd5b6115c58361149a565b9150602083013580151581146115da57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561161157600080fd5b61161a8561149a565b93506116286020860161149a565b925060408501359150606085013567ffffffffffffffff8082111561164c57600080fd5b818701915087601f83011261166057600080fd5b813581811115611672576116726115e5565b604051601f8201601f19908116603f0116810190838211818310171561169a5761169a6115e5565b816040528281528a60208487010111156116b357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008083601f8401126116e957600080fd5b50813567ffffffffffffffff81111561170157600080fd5b6020830191508360208260051b850101111561171c57600080fd5b9250929050565b6000806000806040858703121561173957600080fd5b843567ffffffffffffffff8082111561175157600080fd5b61175d888389016116d7565b9096509450602087013591508082111561177657600080fd5b50611783878288016116d7565b95989497509550505050565b600080604083850312156117a257600080fd5b6117ab8361149a565b91506117b96020840161149a565b90509250929050565b600181811c908216806117d657607f821691505b6020821081036117f657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611843818460208801611416565b734d6567614f47416b757461724d696e745061737360601b9201918252506014810191909152603401919050565b60008351611883818460208801611416565b6f4f47416b757461724d696e745061737360801b9201918252506010810191909152603001919050565b600083516118bf818460208801611416565b7352616e646f6d416b757461724d696e745061737360601b9201918252506014810191909152603401919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561192c5761192c611903565b500190565b60208082526024908201527f43616e2774206d696e74206163726f7373206d696e7420706173732073656374604082015263696f6e7360e01b606082015260800190565b60006001820161198757611987611903565b5060010190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119c190830184611442565b9695505050505050565b6000602082840312156119dd57600080fd5b8151610746816113e3565b600083516119fa818460208801611416565b835190830190611a0e818360208801611416565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b600082611a3c57611a3c611a17565b500490565b600082821015611a5357611a53611903565b500390565b600082611a6757611a67611a17565b50069056fea26469706673582212207a847664ee7caf5e686fe987518325b093e85cceb6dc495c3efaae14706039ac64736f6c634300080d0033697066733a2f2f516d634b5534637a68726752504d674537503643364a685635317763694a744c34314151533951434c736a6172792f000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d5
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610250578063c87b56dd14610263578063e467f7e014610276578063e985e9c514610289578063f2fde38b146102c557600080fd5b806370a0823114610209578063715018a61461021c5780638da5cb5b1461022457806395d89b4114610235578063a22cb4651461023d57600080fd5b806318160ddd116100f457806318160ddd146101a357806323b872dd146101bd57806342842e0e146101d057806355f804b3146101e35780636352211e146101f657600080fd5b806301ffc9a71461012657806306fdde031461014e578063081812fc14610163578063095ea7b31461018e575b600080fd5b6101396101343660046113f9565b6102d8565b60405190151581526020015b60405180910390f35b61015661032a565b604051610145919061146e565b610176610171366004611481565b6103bc565b6040516001600160a01b039091168152602001610145565b6101a161019c3660046114b6565b610400565b005b60015460005403600019015b604051908152602001610145565b6101a16101cb3660046114e0565b61048d565b6101a16101de3660046114e0565b610498565b6101a16101f136600461151c565b6104b3565b610176610204366004611481565b6104f2565b6101af61021736600461158e565b610504565b6101a1610553565b6008546001600160a01b0316610176565b610156610589565b6101a161024b3660046115a9565b610598565b6101a161025e3660046115fb565b61062d565b610156610271366004611481565b61067e565b6101a1610284366004611723565b61074d565b61013961029736600461178f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101a16102d336600461158e565b610900565b60006001600160e01b031982166380ac58cd60e01b148061030957506001600160e01b03198216635b5e139f60e01b145b8061032457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610339906117c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610365906117c2565b80156103b25780601f10610387576101008083540402835291602001916103b2565b820191906000526020600020905b81548152906001019060200180831161039557829003601f168201915b5050505050905090565b60006103c78261099b565b6103e4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061040b826104f2565b9050806001600160a01b0316836001600160a01b03160361043f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061045f575061045d8133610297565b155b1561047d576040516367d9dca160e11b815260040160405180910390fd5b6104888383836109d4565b505050565b610488838383610a30565b6104888383836040518060200160405280600081525061062d565b6008546001600160a01b031633146104e65760405162461bcd60e51b81526004016104dd906117fc565b60405180910390fd5b6104886009838361134a565b60006104fd82610c2a565b5192915050565b60006001600160a01b03821661052d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461057d5760405162461bcd60e51b81526004016104dd906117fc565b6105876000610d5c565b565b606060038054610339906117c2565b336001600160a01b038316036105c15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610638848484610a30565b6001600160a01b0383163b1515801561065a575061065884848484610dae565b155b15610678576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606106898261099b565b6106a657604051630a14c4b560e41b815260040160405180910390fd5b60006106b0610e9a565b80519091501561073d5761021183116106f5578064173539b7b760d91b6040516020016106de929190611831565b604051602081830303815290604052915050919050565b610bd88311610719578064173539b7b760d91b6040516020016106de929190611871565b61247d831161073d578064173539b7b760d91b6040516020016106de9291906118ad565b61074683610ea9565b9392505050565b6008546001600160a01b031633146107775760405162461bcd60e51b81526004016104dd906117fc565b8281146107bc5760405162461bcd60e51b8152602060048201526013602482015272082e4e4c2f240e6d2f4ca40dad2e6dac2e8c6d606b1b60448201526064016104dd565b8260005b818110156108dd5760006107dd6001546000546000199190030190565b9050610211811015610833576102118585848181106107fe576107fe6118ed565b90506020020135826108109190611919565b111561082e5760405162461bcd60e51b81526004016104dd90611931565b610882565b610bd881101561088257610bd8858584818110610852576108526118ed565b90506020020135826108649190611919565b11156108825760405162461bcd60e51b81526004016104dd90611931565b6108ca878784818110610897576108976118ed565b90506020020160208101906108ac919061158e565b8686858181106108be576108be6118ed565b90506020020135610f16565b50806108d581611975565b9150506107c0565b5060015460005461247d9190036000190111156108f957600080fd5b5050505050565b6008546001600160a01b0316331461092a5760405162461bcd60e51b81526004016104dd906117fc565b6001600160a01b03811661098f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104dd565b61099881610d5c565b50565b6000816001111580156109af575060005482105b8015610324575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a3b82610c2a565b9050836001600160a01b031681600001516001600160a01b031614610a725760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610a905750610a908533610297565b80610aab575033610aa0846103bc565b6001600160a01b0316145b905080610acb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610af257604051633a954ecd60e21b815260040160405180910390fd5b610aff8585856001610f34565b610b0b600084876109d4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610be1576000548214610be1578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46108f9565b60408051606081018252600080825260208201819052918101919091528180600111158015610c5a575060005481105b15610d5357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610d515780516001600160a01b0316610d515761012282111580610ce5575061021182118015610ce5575061081a8211155b80610cfe5750610bd882118015610cfe575061174a8211155b15610d51575050604080516060810182526001600160a01b037f000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d51681526000602082018190529181019190915292915050565b505b61074683610f39565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610de390339089908890889060040161198e565b6020604051808303816000875af1925050508015610e1e575060408051601f3d908101601f19168201909252610e1b918101906119cb565b60015b610e7c573d808015610e4c576040519150601f19603f3d011682016040523d82523d6000602084013e610e51565b606091505b508051600003610e74576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610339906117c2565b6060610eb48261099b565b610ed157604051630a14c4b560e41b815260040160405180910390fd5b6000610edb610e9a565b90508051600003610efb5760405180602001604052806000815250610746565b80610f0584611062565b6040516020016106de9291906119e8565b610f30828260405180602001604052806000815250611163565b5050565b610678565b60408051606081018252600080825260208201819052918101919091528180600111158015610f69575060005481105b1561104957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110475780516001600160a01b031615610fdd579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611042579392505050565b610fdd565b505b604051636f96cda160e11b815260040160405180910390fd5b6060816000036110895750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110b3578061109d81611975565b91506110ac9050600a83611a2d565b915061108d565b60008167ffffffffffffffff8111156110ce576110ce6115e5565b6040519080825280601f01601f1916602001820160405280156110f8576020820181803683370190505b5090505b8415610e925761110d600183611a41565b915061111a600a86611a58565b611125906030611919565b60f81b81838151811061113a5761113a6118ed565b60200101906001600160f81b031916908160001a90535061115c600a86611a2d565b94506110fc565b61048883838360016000546001600160a01b03851661119457604051622e076360e81b815260040160405180910390fd5b836000036111b55760405163b562e8dd60e01b815260040160405180910390fd5b6111c26000868387610f34565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561127457506001600160a01b0387163b15155b156112fc575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112c56000888480600101955088610dae565b6112e2576040516368d2bf6b60e11b815260040160405180910390fd5b80820361127a5782600054146112f757600080fd5b611341565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036112fd575b506000556108f9565b828054611356906117c2565b90600052602060002090601f01602090048101928261137857600085556113be565b82601f106113915782800160ff198235161785556113be565b828001600101855582156113be579182015b828111156113be5782358255916020019190600101906113a3565b506113ca9291506113ce565b5090565b5b808211156113ca57600081556001016113cf565b6001600160e01b03198116811461099857600080fd5b60006020828403121561140b57600080fd5b8135610746816113e3565b60005b83811015611431578181015183820152602001611419565b838111156106785750506000910152565b6000815180845261145a816020860160208601611416565b601f01601f19169290920160200192915050565b6020815260006107466020830184611442565b60006020828403121561149357600080fd5b5035919050565b80356001600160a01b03811681146114b157600080fd5b919050565b600080604083850312156114c957600080fd5b6114d28361149a565b946020939093013593505050565b6000806000606084860312156114f557600080fd5b6114fe8461149a565b925061150c6020850161149a565b9150604084013590509250925092565b6000806020838503121561152f57600080fd5b823567ffffffffffffffff8082111561154757600080fd5b818501915085601f83011261155b57600080fd5b81358181111561156a57600080fd5b86602082850101111561157c57600080fd5b60209290920196919550909350505050565b6000602082840312156115a057600080fd5b6107468261149a565b600080604083850312156115bc57600080fd5b6115c58361149a565b9150602083013580151581146115da57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561161157600080fd5b61161a8561149a565b93506116286020860161149a565b925060408501359150606085013567ffffffffffffffff8082111561164c57600080fd5b818701915087601f83011261166057600080fd5b813581811115611672576116726115e5565b604051601f8201601f19908116603f0116810190838211818310171561169a5761169a6115e5565b816040528281528a60208487010111156116b357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008083601f8401126116e957600080fd5b50813567ffffffffffffffff81111561170157600080fd5b6020830191508360208260051b850101111561171c57600080fd5b9250929050565b6000806000806040858703121561173957600080fd5b843567ffffffffffffffff8082111561175157600080fd5b61175d888389016116d7565b9096509450602087013591508082111561177657600080fd5b50611783878288016116d7565b95989497509550505050565b600080604083850312156117a257600080fd5b6117ab8361149a565b91506117b96020840161149a565b90509250929050565b600181811c908216806117d657607f821691505b6020821081036117f657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611843818460208801611416565b734d6567614f47416b757461724d696e745061737360601b9201918252506014810191909152603401919050565b60008351611883818460208801611416565b6f4f47416b757461724d696e745061737360801b9201918252506010810191909152603001919050565b600083516118bf818460208801611416565b7352616e646f6d416b757461724d696e745061737360601b9201918252506014810191909152603401919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561192c5761192c611903565b500190565b60208082526024908201527f43616e2774206d696e74206163726f7373206d696e7420706173732073656374604082015263696f6e7360e01b606082015260800190565b60006001820161198757611987611903565b5060010190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119c190830184611442565b9695505050505050565b6000602082840312156119dd57600080fd5b8151610746816113e3565b600083516119fa818460208801611416565b835190830190611a0e818360208801611416565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b600082611a3c57611a3c611a17565b500490565b600082821015611a5357611a53611903565b500390565b600082611a6757611a67611a17565b50069056fea26469706673582212207a847664ee7caf5e686fe987518325b093e85cceb6dc495c3efaae14706039ac64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d5
-----Decoded View---------------
Arg [0] : _nifty (address): 0xE052113bd7D7700d623414a0a4585BCaE754E9d5
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e052113bd7d7700d623414a0a4585bcae754e9d5
Deployed Bytecode Sourcemap
45903:3357:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28881:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28881:305:0;;;;;;;;32002:100;;;:::i;:::-;;;;;;;:::i;32774:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;32774:204:0;1528:203:1;32337:371:0;;;;;;:::i;:::-;;:::i;:::-;;28130:303;47324:1;28384:12;28174:7;28368:13;:28;-1:-1:-1;;28368:46:0;28130:303;;;2319:25:1;;;2307:2;2292:18;28130:303:0;2173:177:1;33639:170:0;;;;;;:::i;:::-;;:::i;33880:185::-;;;;;;:::i;:::-;;:::i;47341:96::-;;;;;;:::i;:::-;;:::i;31810:125::-;;;;;;:::i;:::-;;:::i;29250:206::-;;;;;;:::i;:::-;;:::i;4730:103::-;;;:::i;4079:87::-;4152:6;;-1:-1:-1;;;;;4152:6:0;4079:87;;32171:104;;;:::i;33050:287::-;;;;;;:::i;:::-;;:::i;34136:369::-;;;;;;:::i;:::-;;:::i;47553:705::-;;;;;;:::i;:::-;;:::i;46495:729::-;;;;;;:::i;:::-;;:::i;33408:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;33529:25:0;;;33505:4;33529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33408:164;4988:201;;;;;;:::i;:::-;;:::i;28881:305::-;28983:4;-1:-1:-1;;;;;;29020:40:0;;-1:-1:-1;;;29020:40:0;;:105;;-1:-1:-1;;;;;;;29077:48:0;;-1:-1:-1;;;29077:48:0;29020:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;29142:36;29000:178;28881:305;-1:-1:-1;;28881:305:0:o;32002:100::-;32056:13;32089:5;32082:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32002:100;:::o;32774:204::-;32842:7;32867:16;32875:7;32867;:16::i;:::-;32862:64;;32892:34;;-1:-1:-1;;;32892:34:0;;;;;;;;;;;32862:64;-1:-1:-1;32946:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32946:24:0;;32774:204::o;32337:371::-;32410:13;32426:24;32442:7;32426:15;:24::i;:::-;32410:40;;32471:5;-1:-1:-1;;;;;32465:11:0;:2;-1:-1:-1;;;;;32465:11:0;;32461:48;;32485:24;;-1:-1:-1;;;32485:24:0;;;;;;;;;;;32461:48;2883:10;-1:-1:-1;;;;;32526:21:0;;;;;;:63;;-1:-1:-1;32552:37:0;32569:5;2883:10;33408:164;:::i;32552:37::-;32551:38;32526:63;32522:138;;;32613:35;;-1:-1:-1;;;32613:35:0;;;;;;;;;;;32522:138;32672:28;32681:2;32685:7;32694:5;32672:8;:28::i;:::-;32399:309;32337:371;;:::o;33639:170::-;33773:28;33783:4;33789:2;33793:7;33773:9;:28::i;33880:185::-;34018:39;34035:4;34041:2;34045:7;34018:39;;;;;;;;;;;;:16;:39::i;47341:96::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;47414:15:::1;:7;47424:5:::0;;47414:15:::1;:::i;31810:125::-:0;31874:7;31901:21;31914:7;31901:12;:21::i;:::-;:26;;31810:125;-1:-1:-1;;31810:125:0:o;29250:206::-;29314:7;-1:-1:-1;;;;;29338:19:0;;29334:60;;29366:28;;-1:-1:-1;;;29366:28:0;;;;;;;;;;;29334:60;-1:-1:-1;;;;;;29420:19:0;;;;;:12;:19;;;;;:27;;;;29250:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;32171:104::-;32227:13;32260:7;32253:14;;;;;:::i;33050:287::-;2883:10;-1:-1:-1;;;;;33149:24:0;;;33145:54;;33182:17;;-1:-1:-1;;;33182:17:0;;;;;;;;;;;33145:54;2883:10;33212:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33212:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33212:53:0;;;;;;;;;;33281:48;;540:41:1;;;33212:42:0;;2883:10;33281:48;;513:18:1;33281:48:0;;;;;;;33050:287;;:::o;34136:369::-;34303:28;34313:4;34319:2;34323:7;34303:9;:28::i;:::-;-1:-1:-1;;;;;34346:13:0;;7075:19;:23;;34346:76;;;;;34366:56;34397:4;34403:2;34407:7;34416:5;34366:30;:56::i;:::-;34365:57;34346:76;34342:156;;;34446:40;;-1:-1:-1;;;34446:40:0;;;;;;;;;;;34342:156;34136:369;;;;:::o;47553:705::-;47619:13;47650:17;47658:8;47650:7;:17::i;:::-;47645:60;;47676:29;;-1:-1:-1;;;47676:29:0;;;;;;;;;;;47645:60;47716:18;47737:10;:8;:10::i;:::-;47764:18;;47716:31;;-1:-1:-1;47764:22:0;47760:447;;46117:3;47806:8;:24;47803:392;;47880:4;-1:-1:-1;;;47863:61:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47849:76;;;47553:705;;;:::o;47803:392::-;46155:4;47948:8;:20;47945:250;;48018:4;-1:-1:-1;;;48001:57:0;;;;;;;;;:::i;47945:250::-;46192:4;48082:8;:18;48079:116;;48150:4;-1:-1:-1;;;48133:61:0;;;;;;;;;:::i;48079:116::-;48226:24;48241:8;48226:14;:24::i;:::-;48219:31;47553:705;-1:-1:-1;;;47553:705:0:o;46495:729::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46599:28;;::::1;46591:60;;;::::0;-1:-1:-1;;;46591:60:0;;9055:2:1;46591:60:0::1;::::0;::::1;9037:21:1::0;9094:2;9074:18;;;9067:30;-1:-1:-1;;;9113:18:1;;;9106:49;9172:18;;46591:60:0::1;8853:343:1::0;46591:60:0::1;46682:2:::0;46662:17:::1;46702:472;46726:9;46722:1;:13;46702:472;;;46756:21;46780:13;47324:1:::0;28384:12;28174:7;28368:13;-1:-1:-1;;28368:28:0;;;:46;;28130:303;46780:13:::1;46756:37;;46117:3;46811:13;:28;46808:296;;;46117:3;46882:8;;46891:1;46882:11;;;;;;;:::i;:::-;;;;;;;46866:13;:27;;;;:::i;:::-;:43;;46858:92;;;;-1:-1:-1::0;;;46858:92:0::1;;;;;;;:::i;:::-;46808:296;;;46155:4;46973:13;:24;46970:134;;;46155:4;47040:8;;47049:1;47040:11;;;;;;;:::i;:::-;;;;;;;47024:13;:27;;;;:::i;:::-;:39;;47016:88;;;;-1:-1:-1::0;;;47016:88:0::1;;;;;;;:::i;:::-;47133:29;47143:2;;47146:1;47143:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47150:8;;47159:1;47150:11;;;;;;;:::i;:::-;;;;;;;47133:9;:29::i;:::-;-1:-1:-1::0;46737:3:0;::::1;::::0;::::1;:::i;:::-;;;;46702:472;;;-1:-1:-1::0;47324:1:0;28384:12;28174:7;28368:13;46192:4:::1;::::0;28368:28;;-1:-1:-1;;28368:46:0;47192:23:::1;;47184:32;;;::::0;::::1;;46580:644;46495:729:::0;;;;:::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;10345:2:1;5069:73:0::1;::::0;::::1;10327:21:1::0;10384:2;10364:18;;;10357:30;10423:34;10403:18;;;10396:62;-1:-1:-1;;;10474:18:1;;;10467:36;10520:19;;5069:73:0::1;10143:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;34760:174::-;34817:4;34860:7;47324:1;34841:26;;:53;;;;;34881:13;;34871:7;:23;34841:53;:85;;;;-1:-1:-1;;34899:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34899:27:0;;;;34898:28;;34760:174::o;42917:196::-;43032:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43032:29:0;-1:-1:-1;;;;;43032:29:0;;;;;;;;;43077:28;;43032:24;;43077:28;;;;;;;42917:196;;;:::o;37860:2130::-;37975:35;38013:21;38026:7;38013:12;:21::i;:::-;37975:59;;38073:4;-1:-1:-1;;;;;38051:26:0;:13;:18;;;-1:-1:-1;;;;;38051:26:0;;38047:67;;38086:28;;-1:-1:-1;;;38086:28:0;;;;;;;;;;;38047:67;38127:22;2883:10;-1:-1:-1;;;;;38153:20:0;;;;:73;;-1:-1:-1;38190:36:0;38207:4;2883:10;33408:164;:::i;38190:36::-;38153:126;;;-1:-1:-1;2883:10:0;38243:20;38255:7;38243:11;:20::i;:::-;-1:-1:-1;;;;;38243:36:0;;38153:126;38127:153;;38298:17;38293:66;;38324:35;;-1:-1:-1;;;38324:35:0;;;;;;;;;;;38293:66;-1:-1:-1;;;;;38374:16:0;;38370:52;;38399:23;;-1:-1:-1;;;38399:23:0;;;;;;;;;;;38370:52;38435:43;38457:4;38463:2;38467:7;38476:1;38435:21;:43::i;:::-;38543:35;38560:1;38564:7;38573:4;38543:8;:35::i;:::-;-1:-1:-1;;;;;38874:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38874:31:0;;;;;;;-1:-1:-1;;38874:31:0;;;;;;;38920:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38920:29:0;;;;;;;;;;;39000:20;;;:11;:20;;;;;;39035:18;;-1:-1:-1;;;;;;39068:49:0;;;;-1:-1:-1;;;39101:15:0;39068:49;;;;;;;;;;39391:11;;39451:24;;;;;39494:13;;39000:20;;39451:24;;39494:13;39490:384;;39704:13;;39689:11;:28;39685:174;;39742:20;;39811:28;;;;39785:54;;-1:-1:-1;;;39785:54:0;-1:-1:-1;;;;;;39785:54:0;;;-1:-1:-1;;;;;39742:20:0;;39785:54;;;;39685:174;38849:1036;;;39921:7;39917:2;-1:-1:-1;;;;;39902:27:0;39911:4;-1:-1:-1;;;;;39902:27:0;;;;;;;;;;;39940:42;34136:369;48266:745;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;48386:7:0;;47324:1;48435:23;;:47;;;;;48469:13;;48462:4;:20;48435:47;48431:515;;;48513:31;48547:17;;;:11;:17;;;;;;;;;48513:51;;;;;;;;;-1:-1:-1;;;;;48513:51:0;;;;-1:-1:-1;;;48513:51:0;;;;;;;;;;;-1:-1:-1;;;48513:51:0;;;;;;;;;;;;;;48583:348;;48633:14;;-1:-1:-1;;;;;48633:28:0;48629:283;;46242:3;48693:4;:25;;:75;;;;46117:3;48723:4;:19;:44;;;;;46285:4;48746;:21;;48723:44;48693:119;;;;46155:4;48773;:15;:38;;;;;46327:4;48792;:19;;48773:38;48690:198;;;-1:-1:-1;;48850:38:0;;;;;;;;-1:-1:-1;;;;;48865:12:0;48850:38;;;-1:-1:-1;48850:38:0;;;;;;;;;;;;;;48266:745;-1:-1:-1;;48266:745:0:o;48690:198::-;48484:462;48431:515;48976:27;48995:7;48976:18;:27::i;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;43605:667::-;43789:72;;-1:-1:-1;;;43789:72:0;;43768:4;;-1:-1:-1;;;;;43789:36:0;;;;;:72;;2883:10;;43840:4;;43846:7;;43855:5;;43789:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43789:72:0;;;;;;;;-1:-1:-1;;43789:72:0;;;;;;;;;;;;:::i;:::-;;;43785:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44023:6;:13;44040:1;44023:18;44019:235;;44069:40;;-1:-1:-1;;;44069:40:0;;;;;;;;;;;44019:235;44212:6;44206:13;44197:6;44193:2;44189:15;44182:38;43785:480;-1:-1:-1;;;;;;43908:55:0;-1:-1:-1;;;43908:55:0;;-1:-1:-1;43785:480:0;43605:667;;;;;;:::o;47445:100::-;47497:13;47530:7;47523:14;;;;;:::i;26397:318::-;26470:13;26501:16;26509:7;26501;:16::i;:::-;26496:59;;26526:29;;-1:-1:-1;;;26526:29:0;;;;;;;;;;;26496:59;26568:21;26592:10;:8;:10::i;:::-;26568:34;;26626:7;26620:21;26645:1;26620:26;:87;;;;;;;;;;;;;;;;;26673:7;26682:18;:7;:16;:18::i;:::-;26656:45;;;;;;;;;:::i;34942:104::-;35011:27;35021:2;35025:8;35011:27;;;;;;;;;;;;:9;:27::i;:::-;34942:104;;:::o;49019:238::-;49188:61;34136:369;30631:1117;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30750:7:0;;47324:1;30799:23;;:47;;;;;30833:13;;30826:4;:20;30799:47;30795:886;;;30867:31;30901:17;;;:11;:17;;;;;;;;;30867:51;;;;;;;;;-1:-1:-1;;;;;30867:51:0;;;;-1:-1:-1;;;30867:51:0;;;;;;;;;;;-1:-1:-1;;;30867:51:0;;;;;;;;;;;;;;30937:729;;30987:14;;-1:-1:-1;;;;;30987:28:0;;30983:101;;31051:9;30631:1117;-1:-1:-1;;;30631:1117:0:o;30983:101::-;-1:-1:-1;;;31426:6:0;31471:17;;;;:11;:17;;;;;;;;;31459:29;;;;;;;;;-1:-1:-1;;;;;31459:29:0;;;;;-1:-1:-1;;;31459:29:0;;;;;;;;;;;-1:-1:-1;;;31459:29:0;;;;;;;;;;;;;31519:28;31515:109;;31587:9;30631:1117;-1:-1:-1;;;30631:1117:0:o;31515:109::-;31386:261;;;30848:833;30795:886;31709:31;;-1:-1:-1;;;31709:31:0;;;;;;;;;;;365:723;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;35409:163;35532:32;35538:2;35542:8;35552:5;35559:4;35970:20;35993:13;-1:-1:-1;;;;;36021:16:0;;36017:48;;36046:19;;-1:-1:-1;;;36046:19:0;;;;;;;;;;;36017:48;36080:8;36092:1;36080:13;36076:44;;36102:18;;-1:-1:-1;;;36102:18:0;;;;;;;;;;;36076:44;36133:61;36163:1;36167:2;36171:12;36185:8;36133:21;:61::i;:::-;-1:-1:-1;;;;;36471:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36530:49:0;;36471:44;;;;;;;;36530:49;;;;-1:-1:-1;;36471:44:0;;;;;;36530:49;;;;;;;;;;;;;;;;36596:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36646:66:0;;;;-1:-1:-1;;;36696:15:0;36646:66;;;;;;;;;;36596:25;36793:23;;;36837:4;:23;;;;-1:-1:-1;;;;;;36845:13:0;;7075:19;:23;;36845:15;36833:641;;;36881:314;36912:38;;36937:12;;-1:-1:-1;;;;;36912:38:0;;;36929:1;;36912:38;;36929:1;;36912:38;36978:69;37017:1;37021:2;37025:14;;;;;;37041:5;36978:30;:69::i;:::-;36973:174;;37083:40;;-1:-1:-1;;;37083:40:0;;;;;;;;;;;36973:174;37190:3;37174:12;:19;36881:314;;37276:12;37259:13;;:29;37255:43;;37290:8;;;37255:43;36833:641;;;37339:120;37370:40;;37395:14;;;;;-1:-1:-1;;;;;37370:40:0;;;37387:1;;37370:40;;37387:1;;37370:40;37454:3;37438:12;:19;37339:120;;36833:641;-1:-1:-1;37488:13:0;:28;37538:60;34136:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:1138;4055:6;4063;4071;4079;4132:3;4120:9;4111:7;4107:23;4103:33;4100:53;;;4149:1;4146;4139:12;4100:53;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4305:2;4294:9;4290:18;4277:32;4267:42;;4360:2;4349:9;4345:18;4332:32;4383:18;4424:2;4416:6;4413:14;4410:34;;;4440:1;4437;4430:12;4410:34;4478:6;4467:9;4463:22;4453:32;;4523:7;4516:4;4512:2;4508:13;4504:27;4494:55;;4545:1;4542;4535:12;4494:55;4581:2;4568:16;4603:2;4599;4596:10;4593:36;;;4609:18;;:::i;:::-;4684:2;4678:9;4652:2;4738:13;;-1:-1:-1;;4734:22:1;;;4758:2;4730:31;4726:40;4714:53;;;4782:18;;;4802:22;;;4779:46;4776:72;;;4828:18;;:::i;:::-;4868:10;4864:2;4857:22;4903:2;4895:6;4888:18;4943:7;4938:2;4933;4929;4925:11;4921:20;4918:33;4915:53;;;4964:1;4961;4954:12;4915:53;5020:2;5015;5011;5007:11;5002:2;4994:6;4990:15;4977:46;5065:1;5060:2;5055;5047:6;5043:15;5039:24;5032:35;5086:6;5076:16;;;;;;;3960:1138;;;;;;;:::o;5103:367::-;5166:8;5176:6;5230:3;5223:4;5215:6;5211:17;5207:27;5197:55;;5248:1;5245;5238:12;5197:55;-1:-1:-1;5271:20:1;;5314:18;5303:30;;5300:50;;;5346:1;5343;5336:12;5300:50;5383:4;5375:6;5371:17;5359:29;;5443:3;5436:4;5426:6;5423:1;5419:14;5411:6;5407:27;5403:38;5400:47;5397:67;;;5460:1;5457;5450:12;5397:67;5103:367;;;;;:::o;5475:773::-;5597:6;5605;5613;5621;5674:2;5662:9;5653:7;5649:23;5645:32;5642:52;;;5690:1;5687;5680:12;5642:52;5730:9;5717:23;5759:18;5800:2;5792:6;5789:14;5786:34;;;5816:1;5813;5806:12;5786:34;5855:70;5917:7;5908:6;5897:9;5893:22;5855:70;:::i;:::-;5944:8;;-1:-1:-1;5829:96:1;-1:-1:-1;6032:2:1;6017:18;;6004:32;;-1:-1:-1;6048:16:1;;;6045:36;;;6077:1;6074;6067:12;6045:36;;6116:72;6180:7;6169:8;6158:9;6154:24;6116:72;:::i;:::-;5475:773;;;;-1:-1:-1;6207:8:1;-1:-1:-1;;;;5475:773:1:o;6253:260::-;6321:6;6329;6382:2;6370:9;6361:7;6357:23;6353:32;6350:52;;;6398:1;6395;6388:12;6350:52;6421:29;6440:9;6421:29;:::i;:::-;6411:39;;6469:38;6503:2;6492:9;6488:18;6469:38;:::i;:::-;6459:48;;6253:260;;;;;:::o;6518:380::-;6597:1;6593:12;;;;6640;;;6661:61;;6715:4;6707:6;6703:17;6693:27;;6661:61;6768:2;6760:6;6757:14;6737:18;6734:38;6731:161;;6814:10;6809:3;6805:20;6802:1;6795:31;6849:4;6846:1;6839:15;6877:4;6874:1;6867:15;6731:161;;6518:380;;;:::o;6903:356::-;7105:2;7087:21;;;7124:18;;;7117:30;7183:34;7178:2;7163:18;;7156:62;7250:2;7235:18;;6903:356::o;7264:526::-;7524:3;7562:6;7556:13;7578:53;7624:6;7619:3;7612:4;7604:6;7600:17;7578:53;:::i;:::-;-1:-1:-1;;;7653:16:1;;7678:37;;;-1:-1:-1;7742:2:1;7731:14;;7724:30;;;;7781:2;7770:14;;7264:526;-1:-1:-1;7264:526:1:o;7795:522::-;8055:3;8093:6;8087:13;8109:53;8155:6;8150:3;8143:4;8135:6;8131:17;8109:53;:::i;:::-;-1:-1:-1;;;8184:16:1;;8209:33;;;-1:-1:-1;8269:2:1;8258:14;;8251:30;;;;8308:2;8297:14;;7795:522;-1:-1:-1;7795:522:1:o;8322:526::-;8582:3;8620:6;8614:13;8636:53;8682:6;8677:3;8670:4;8662:6;8658:17;8636:53;:::i;:::-;-1:-1:-1;;;8711:16:1;;8736:37;;;-1:-1:-1;8800:2:1;8789:14;;8782:30;;;;8839:2;8828:14;;8322:526;-1:-1:-1;8322:526:1:o;9201:127::-;9262:10;9257:3;9253:20;9250:1;9243:31;9293:4;9290:1;9283:15;9317:4;9314:1;9307:15;9333:127;9394:10;9389:3;9385:20;9382:1;9375:31;9425:4;9422:1;9415:15;9449:4;9446:1;9439:15;9465:128;9505:3;9536:1;9532:6;9529:1;9526:13;9523:39;;;9542:18;;:::i;:::-;-1:-1:-1;9578:9:1;;9465:128::o;9598:400::-;9800:2;9782:21;;;9839:2;9819:18;;;9812:30;9878:34;9873:2;9858:18;;9851:62;-1:-1:-1;;;9944:2:1;9929:18;;9922:34;9988:3;9973:19;;9598:400::o;10003:135::-;10042:3;10063:17;;;10060:43;;10083:18;;:::i;:::-;-1:-1:-1;10130:1:1;10119:13;;10003:135::o;10550:489::-;-1:-1:-1;;;;;10819:15:1;;;10801:34;;10871:15;;10866:2;10851:18;;10844:43;10918:2;10903:18;;10896:34;;;10966:3;10961:2;10946:18;;10939:31;;;10744:4;;10987:46;;11013:19;;11005:6;10987:46;:::i;:::-;10979:54;10550:489;-1:-1:-1;;;;;;10550:489:1:o;11044:249::-;11113:6;11166:2;11154:9;11145:7;11141:23;11137:32;11134:52;;;11182:1;11179;11172:12;11134:52;11214:9;11208:16;11233:30;11257:5;11233:30;:::i;11298:470::-;11477:3;11515:6;11509:13;11531:53;11577:6;11572:3;11565:4;11557:6;11553:17;11531:53;:::i;:::-;11647:13;;11606:16;;;;11669:57;11647:13;11606:16;11703:4;11691:17;;11669:57;:::i;:::-;11742:20;;11298:470;-1:-1:-1;;;;11298:470:1:o;11773:127::-;11834:10;11829:3;11825:20;11822:1;11815:31;11865:4;11862:1;11855:15;11889:4;11886:1;11879:15;11905:120;11945:1;11971;11961:35;;11976:18;;:::i;:::-;-1:-1:-1;12010:9:1;;11905:120::o;12030:125::-;12070:4;12098:1;12095;12092:8;12089:34;;;12103:18;;:::i;:::-;-1:-1:-1;12140:9:1;;12030:125::o;12160:112::-;12192:1;12218;12208:35;;12223:18;;:::i;:::-;-1:-1:-1;12257:9:1;;12160:112::o
Swarm Source
ipfs://7a847664ee7caf5e686fe987518325b093e85cceb6dc495c3efaae14706039ac
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.