ERC-721
Overview
Max Total Supply
0 MASH
Holders
71
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MASHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MashNFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-06 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/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 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/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/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/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/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/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/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/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/IPunk.sol pragma solidity >=0.8.0; interface IPunk { function punkIndexToAddress(uint256) external returns (address); } // File: contracts/Mash.sol pragma solidity >=0.8.0; contract MashNFT is Ownable, ReentrancyGuard, ERC721 { using Address for address payable; bool public mintEnabled = true; bool public mashEnabled = false; // maximum number of tokens to exist uint256 constant MAX_TOKENS = 6969; // current number of tokens in existence uint256 public minted = 0; // special case for punk contract address constant punkAddress = address(0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB); mapping(uint256 => Mash) public mashes; struct Mash { address contract1; address contract2; uint256 tokenId1; uint256 tokenId2; } // address to withdraw funds address payable public teamAddress; // URI of metadata string baseURI; event Mashed( address indexed sender, uint256 containerId, address contract1, uint256 tokenId1, address contract2, uint256 tokenId2 ); constructor(string memory _uri) ERC721("Mash", "MASH") { baseURI = _uri; teamAddress = payable(_msgSender()); } /***********************************| | Modifiers | |__________________________________*/ modifier onlyMintEnabled() { require(mintEnabled, "Contract is locked"); _; } modifier onlyMashEnabled() { require(mashEnabled, "Contract is locked"); _; } /***********************************| | User Interactions | |__________________________________*/ /** * @notice mints masher NFTs * @param quantity the number of masher NFTs to create */ function mint(uint256 quantity) external payable nonReentrant onlyMintEnabled { require(minted + quantity <= MAX_TOKENS, "Exceeds max NFT supply"); require(quantity > 0, "Cannot mint 0 NFTs"); require(quantity <= 10, "Cannot mint more than 10 NFTs at once"); require(msg.value == cost() * quantity, "Incorrect payment amount"); for (uint256 i = 0; i < quantity; i++) { minted = minted + 1; _safeMint(_msgSender(), minted); } } /** * @notice mash together two ERC721 NFTs * @param containerId ID of container to use * @param contract1 address of first ERC721 contract * @param tokenId1 ID of first token to mash * @param contract2 address of second ERC721 contract * @param tokenId2 ID of second token to mash */ function mash( uint256 containerId, address contract1, uint256 tokenId1, address contract2, uint256 tokenId2 ) external onlyMashEnabled { require( ownerOf(containerId) == _msgSender(), "Must own container to mash" ); require( mashes[containerId].contract1 == address(0x0), "Container already used" ); require( !(contract1 == contract2 && tokenId1 == tokenId2), "Must mash unique tokens" ); require( contract1 == punkAddress || ERC165(contract1).supportsInterface(0x80ac58cd), "Can only mash ERC721 (1)" ); require( contract2 == punkAddress || ERC165(contract2).supportsInterface(0x80ac58cd), "Can only mash ERC721 (2)" ); require( _getOwner(contract1, tokenId1) == _msgSender(), "Must own token to mash (1)" ); require( _getOwner(contract2, tokenId2) == _msgSender(), "Must own token to mash (2)" ); Mash storage m = mashes[containerId]; m.contract1 = contract1; m.tokenId1 = tokenId1; m.contract2 = contract2; m.tokenId2 = tokenId2; emit Mashed( _msgSender(), containerId, contract1, tokenId1, contract2, tokenId2 ); } /***********************************| | Public Getters | |__________________________________*/ /** * @notice current cost to mint a single masher * @return cost to create */ function cost() public pure returns (uint256) { return 0.069420 ether; } /***********************************| | Internal | |__________________________________*/ function _baseURI() internal view override returns (string memory) { return baseURI; } function _getOwner(address addr, uint256 id) internal returns (address) { // special case if (addr == punkAddress) { return IPunk(addr).punkIndexToAddress(id); } // standard return ERC721(addr).ownerOf(id); } /***********************************| | Owner Interactions | |__________________________________*/ /** * @notice withdraws funds that are owed to the project */ function withdraw() external onlyOwner { payable(teamAddress).transfer(address(this).balance); } /** * @notice sets the address to send withdrawable funds to * @param _teamAddress the new destination address */ function setTeamAddress(address payable _teamAddress) public onlyOwner { teamAddress = _teamAddress; } /** * @notice sets the mint enabled status for the contract * @param _mintEnabled the new mint enabled status */ function setMintEnabled(bool _mintEnabled) external onlyOwner { mintEnabled = _mintEnabled; } /** * @notice sets the lock enabled status for the contract * @param _mashEnabled the new mash enabled status */ function setMashEnabled(bool _mashEnabled) external onlyOwner { mashEnabled = _mashEnabled; } /** * @notice sets the base URI for the contract * @param _uri the new base URI */ function setBaseURI(string calldata _uri) external onlyOwner { baseURI = _uri; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"containerId","type":"uint256"},{"indexed":false,"internalType":"address","name":"contract1","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId1","type":"uint256"},{"indexed":false,"internalType":"address","name":"contract2","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId2","type":"uint256"}],"name":"Mashed","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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"containerId","type":"uint256"},{"internalType":"address","name":"contract1","type":"address"},{"internalType":"uint256","name":"tokenId1","type":"uint256"},{"internalType":"address","name":"contract2","type":"address"},{"internalType":"uint256","name":"tokenId2","type":"uint256"}],"name":"mash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mashEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mashes","outputs":[{"internalType":"address","name":"contract1","type":"address"},{"internalType":"address","name":"contract2","type":"address"},{"internalType":"uint256","name":"tokenId1","type":"uint256"},{"internalType":"uint256","name":"tokenId2","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mashEnabled","type":"bool"}],"name":"setMashEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintEnabled","type":"bool"}],"name":"setMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_teamAddress","type":"address"}],"name":"setTeamAddress","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":[],"name":"teamAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526008805461ffff1916600117905560006009553480156200002457600080fd5b5060405162002aeb38038062002aeb8339810160408190526200004791620001f6565b6040518060400160405280600481526020016309ac2e6d60e31b8152506040518060400160405280600481526020016309a82a6960e31b8152506200009b62000095620000fc60201b60201c565b62000100565b600180558151620000b490600290602085019062000150565b508051620000ca90600390602084019062000150565b50508151620000e29150600c90602084019062000150565b5050600b80546001600160a01b031916331790556200031f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200015e90620002cc565b90600052602060002090601f016020900481019282620001825760008555620001cd565b82601f106200019d57805160ff1916838001178555620001cd565b82800160010185558215620001cd579182015b82811115620001cd578251825591602001919060010190620001b0565b50620001db929150620001df565b5090565b5b80821115620001db5760008155600101620001e0565b6000602080838503121562000209578182fd5b82516001600160401b038082111562000220578384fd5b818501915085601f83011262000234578384fd5b81518181111562000249576200024962000309565b604051601f8201601f19908116603f0116810190838211818310171562000274576200027462000309565b8160405282815288868487010111156200028c578687fd5b8693505b82841015620002af578484018601518185018701529285019262000290565b82841115620002c057868684830101525b98975050505050505050565b600181811c90821680620002e157607f821691505b602082108114156200030357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6127bc806200032f6000396000f3fe6080604052600436106101c25760003560e01c80636690864e116100f7578063a22cb46511610095578063d822188411610064578063d822188414610535578063e985e9c514610555578063f2fde38b1461059e578063f46a04eb146105be57600080fd5b8063a22cb465146104bb578063b88d4fde146104db578063c87b56dd146104fb578063d12397301461051b57600080fd5b806385546d9d116100d157806385546d9d146104555780638da5cb5b1461047557806395d89b4114610493578063a0712d68146104a857600080fd5b80636690864e1461040057806370a0823114610420578063715018a61461044057600080fd5b80633ccfd60b1161016457806355f804b31161013e57806355f804b31461032757806360f08ac814610347578063630ebf06146103665780636352211e146103e057600080fd5b80633ccfd60b146102dc57806342842e0e146102f15780634f02c4201461031157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806313faede6146102785780631c75f0851461029c57806323b872dd146102bc57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461245b565b6105de565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610649565b6040516101f39190612600565b34801561022a57600080fd5b5061023e610239366004612500565b6106db565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046123f8565b610775565b005b34801561028457600080fd5b5066f6a11f484ec0005b6040519081526020016101f3565b3480156102a857600080fd5b50600b5461023e906001600160a01b031681565b3480156102c857600080fd5b506102766102d73660046122b2565b6108c5565b3480156102e857600080fd5b5061027661094c565b3480156102fd57600080fd5b5061027661030c3660046122b2565b6109e2565b34801561031d57600080fd5b5061028e60095481565b34801561033357600080fd5b50610276610342366004612493565b6109fd565b34801561035357600080fd5b506008546101e790610100900460ff1681565b34801561037257600080fd5b506103b5610381366004612500565b600a6020526000908152604090208054600182015460028301546003909301546001600160a01b0392831693919092169184565b604080516001600160a01b0395861681529490931660208501529183015260608201526080016101f3565b3480156103ec57600080fd5b5061023e6103fb366004612500565b610a63565b34801561040c57600080fd5b5061027661041b366004612242565b610aee565b34801561042c57600080fd5b5061028e61043b366004612242565b610b6a565b34801561044c57600080fd5b50610276610c04565b34801561046157600080fd5b50610276610470366004612518565b610c6a565b34801561048157600080fd5b506000546001600160a01b031661023e565b34801561049f57600080fd5b50610211611148565b6102766104b6366004612500565b611157565b3480156104c757600080fd5b506102766104d63660046123cb565b6113c8565b3480156104e757600080fd5b506102766104f63660046122f2565b61148d565b34801561050757600080fd5b50610211610516366004612500565b61151b565b34801561052757600080fd5b506008546101e79060ff1681565b34801561054157600080fd5b50610276610550366004612423565b611604565b34801561056157600080fd5b506101e761057036600461227a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105aa57600080fd5b506102766105b9366004612242565b611678565b3480156105ca57600080fd5b506102766105d9366004612423565b611757565b60006001600160e01b031982166380ac58cd60e01b148061062857506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061064357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610658906126a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610684906126a1565b80156106d15780601f106106a6576101008083540402835291602001916106d1565b820191906000526020600020905b8154815290600101906020018083116106b457829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166107595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078082610a63565b9050806001600160a01b0316836001600160a01b0316141561080a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610750565b336001600160a01b038216148061084457506001600160a01b038116600090815260076020908152604080832033845290915290205460ff165b6108b65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610750565b6108c083836117c4565b505050565b6108cf3382611832565b6109415760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610750565b6108c0838383611929565b6000546001600160a01b031633146109a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156109df573d6000803e3d6000fd5b50565b6108c08383836040518060200160405280600081525061148d565b6000546001600160a01b03163314610a575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b6108c0600c83836121a9565b6000818152600460205260408120546001600160a01b0316806106435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610750565b6000546001600160a01b03163314610b485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610be85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610750565b506001600160a01b031660009081526005602052604090205490565b6000546001600160a01b03163314610c5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b610c686000611af6565b565b600854610100900460ff16610cc15760405162461bcd60e51b815260206004820152601260248201527f436f6e7472616374206973206c6f636b656400000000000000000000000000006044820152606401610750565b33610ccb86610a63565b6001600160a01b031614610d215760405162461bcd60e51b815260206004820152601a60248201527f4d757374206f776e20636f6e7461696e657220746f206d6173680000000000006044820152606401610750565b6000858152600a60205260409020546001600160a01b031615610d865760405162461bcd60e51b815260206004820152601660248201527f436f6e7461696e657220616c72656164792075736564000000000000000000006044820152606401610750565b816001600160a01b0316846001600160a01b0316148015610da657508083145b15610df35760405162461bcd60e51b815260206004820152601760248201527f4d757374206d61736820756e6971756520746f6b656e730000000000000000006044820152606401610750565b6001600160a01b03841673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb1480610e9757506040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038516906301ffc9a79060240160206040518083038186803b158015610e5f57600080fd5b505afa158015610e73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e97919061243f565b610ee35760405162461bcd60e51b815260206004820152601860248201527f43616e206f6e6c79206d617368204552433732312028312900000000000000006044820152606401610750565b6001600160a01b03821673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb1480610f8757506040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038316906301ffc9a79060240160206040518083038186803b158015610f4f57600080fd5b505afa158015610f63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f87919061243f565b610fd35760405162461bcd60e51b815260206004820152601860248201527f43616e206f6e6c79206d617368204552433732312028322900000000000000006044820152606401610750565b33610fde8585611b46565b6001600160a01b0316146110345760405162461bcd60e51b815260206004820152601a60248201527f4d757374206f776e20746f6b656e20746f206d617368202831290000000000006044820152606401610750565b3361103f8383611b46565b6001600160a01b0316146110955760405162461bcd60e51b815260206004820152601a60248201527f4d757374206f776e20746f6b656e20746f206d617368202832290000000000006044820152606401610750565b6000858152600a6020526040902080546001600160a01b038087166001600160a01b03199283161783556002830186905560018301805491861691909216179055600381018290556110e43390565b604080518881526001600160a01b0388811660208301529181018790528582166060820152608081018590529116907fb7dcd5d7a1760ff755dd0d6921902bb59fd94ba89561b1e386818c1bc65bd74b9060a00160405180910390a2505050505050565b606060038054610658906126a1565b600260015414156111aa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610750565b600260015560085460ff166112015760405162461bcd60e51b815260206004820152601260248201527f436f6e7472616374206973206c6f636b656400000000000000000000000000006044820152606401610750565b611b39816009546112129190612613565b11156112605760405162461bcd60e51b815260206004820152601660248201527f45786365656473206d6178204e465420737570706c79000000000000000000006044820152606401610750565b600081116112b05760405162461bcd60e51b815260206004820152601260248201527f43616e6e6f74206d696e742030204e46547300000000000000000000000000006044820152606401610750565b600a8111156113275760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206d696e74206d6f7265207468616e203130204e46547320617460448201527f206f6e63650000000000000000000000000000000000000000000000000000006064820152608401610750565b6113388166f6a11f484ec00061263f565b34146113865760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374207061796d656e7420616d6f756e7400000000000000006044820152606401610750565b60005b818110156113c05760095461139f906001612613565b6009556113ae33600954611c98565b806113b8816126dc565b915050611389565b505060018055565b6001600160a01b0382163314156114215760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610750565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114973383611832565b6115095760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610750565b61151584848484611cb6565b50505050565b6000818152600460205260409020546060906001600160a01b03166115a85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610750565b60006115b2611d34565b905060008151116115d257604051806020016040528060008152506115fd565b806115dc84611d43565b6040516020016115ed929190612595565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461165e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b600880549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146116d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b6001600160a01b03811661174e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610750565b6109df81611af6565b6000546001600160a01b031633146117b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b6008805460ff1916911515919091179055565b600081815260066020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117f982610a63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166118ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610750565b60006118b683610a63565b9050806001600160a01b0316846001600160a01b031614806118f15750836001600160a01b03166118e6846106db565b6001600160a01b0316145b8061192157506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661193c82610a63565b6001600160a01b0316146119b85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610750565b6001600160a01b038216611a335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610750565b611a3e6000826117c4565b6001600160a01b0383166000908152600560205260408120805460019290611a6790849061265e565b90915550506001600160a01b0382166000908152600560205260408120805460019290611a95908490612613565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b03831673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb1415611c07576040517f58178168000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03841690635817816890602401602060405180830381600087803b158015611bc857600080fd5b505af1158015611bdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c00919061225e565b9050610643565b6040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03841690636352211e9060240160206040518083038186803b158015611c6057600080fd5b505afa158015611c74573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fd919061225e565b611cb2828260405180602001604052806000815250611e91565b5050565b611cc1848484611929565b611ccd84848484611f0f565b6115155760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610750565b6060600c8054610658906126a1565b606081611d8357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611dad5780611d97816126dc565b9150611da69050600a8361262b565b9150611d87565b60008167ffffffffffffffff811115611dd657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e00576020820181803683370190505b5090505b841561192157611e1560018361265e565b9150611e22600a866126f7565b611e2d906030612613565b60f81b818381518110611e5057634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e8a600a8661262b565b9450611e04565b611e9b8383612067565b611ea86000848484611f0f565b6108c05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610750565b60006001600160a01b0384163b1561205c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f539033908990889088906004016125c4565b602060405180830381600087803b158015611f6d57600080fd5b505af1925050508015611f9d575060408051601f3d908101601f19168201909252611f9a91810190612477565b60015b612042573d808015611fcb576040519150601f19603f3d011682016040523d82523d6000602084013e611fd0565b606091505b50805161203a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610750565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611921565b506001949350505050565b6001600160a01b0382166120bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610750565b6000818152600460205260409020546001600160a01b0316156121225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610750565b6001600160a01b038216600090815260056020526040812080546001929061214b908490612613565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121b5906126a1565b90600052602060002090601f0160209004810192826121d7576000855561221d565b82601f106121f05782800160ff1982351617855561221d565b8280016001018555821561221d579182015b8281111561221d578235825591602001919060010190612202565b5061222992915061222d565b5090565b5b80821115612229576000815560010161222e565b600060208284031215612253578081fd5b81356115fd8161274d565b60006020828403121561226f578081fd5b81516115fd8161274d565b6000806040838503121561228c578081fd5b82356122978161274d565b915060208301356122a78161274d565b809150509250929050565b6000806000606084860312156122c6578081fd5b83356122d18161274d565b925060208401356122e18161274d565b929592945050506040919091013590565b60008060008060808587031215612307578081fd5b84356123128161274d565b935060208501356123228161274d565b925060408501359150606085013567ffffffffffffffff80821115612345578283fd5b818701915087601f830112612358578283fd5b81358181111561236a5761236a612737565b604051601f8201601f19908116603f0116810190838211818310171561239257612392612737565b816040528281528a60208487010111156123aa578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156123dd578182fd5b82356123e88161274d565b915060208301356122a781612762565b6000806040838503121561240a578182fd5b82356124158161274d565b946020939093013593505050565b600060208284031215612434578081fd5b81356115fd81612762565b600060208284031215612450578081fd5b81516115fd81612762565b60006020828403121561246c578081fd5b81356115fd81612770565b600060208284031215612488578081fd5b81516115fd81612770565b600080602083850312156124a5578182fd5b823567ffffffffffffffff808211156124bc578384fd5b818501915085601f8301126124cf578384fd5b8135818111156124dd578485fd5b8660208285010111156124ee578485fd5b60209290920196919550909350505050565b600060208284031215612511578081fd5b5035919050565b600080600080600060a0868803121561252f578283fd5b8535945060208601356125418161274d565b93506040860135925060608601356125588161274d565b949793965091946080013592915050565b60008151808452612581816020860160208601612675565b601f01601f19169290920160200192915050565b600083516125a7818460208801612675565b8351908301906125bb818360208801612675565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526125f66080830184612569565b9695505050505050565b6020815260006115fd6020830184612569565b600082198211156126265761262661270b565b500190565b60008261263a5761263a612721565b500490565b60008160001904831182151516156126595761265961270b565b500290565b6000828210156126705761267061270b565b500390565b60005b83811015612690578181015183820152602001612678565b838111156115155750506000910152565b600181811c908216806126b557607f821691505b602082108114156126d657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126f0576126f061270b565b5060010190565b60008261270657612706612721565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109df57600080fd5b80151581146109df57600080fd5b6001600160e01b0319811681146109df57600080fdfea2646970667358221220ee88e3160ddbf7364a22aa7e126a6c0d51e7176457f715e4011f83e7fa93f6d864736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d585075765539656139314447464d476d6673673754734845696d58616b4b34473950537546574b4e374777662f00000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80636690864e116100f7578063a22cb46511610095578063d822188411610064578063d822188414610535578063e985e9c514610555578063f2fde38b1461059e578063f46a04eb146105be57600080fd5b8063a22cb465146104bb578063b88d4fde146104db578063c87b56dd146104fb578063d12397301461051b57600080fd5b806385546d9d116100d157806385546d9d146104555780638da5cb5b1461047557806395d89b4114610493578063a0712d68146104a857600080fd5b80636690864e1461040057806370a0823114610420578063715018a61461044057600080fd5b80633ccfd60b1161016457806355f804b31161013e57806355f804b31461032757806360f08ac814610347578063630ebf06146103665780636352211e146103e057600080fd5b80633ccfd60b146102dc57806342842e0e146102f15780634f02c4201461031157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806313faede6146102785780631c75f0851461029c57806323b872dd146102bc57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461245b565b6105de565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610649565b6040516101f39190612600565b34801561022a57600080fd5b5061023e610239366004612500565b6106db565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046123f8565b610775565b005b34801561028457600080fd5b5066f6a11f484ec0005b6040519081526020016101f3565b3480156102a857600080fd5b50600b5461023e906001600160a01b031681565b3480156102c857600080fd5b506102766102d73660046122b2565b6108c5565b3480156102e857600080fd5b5061027661094c565b3480156102fd57600080fd5b5061027661030c3660046122b2565b6109e2565b34801561031d57600080fd5b5061028e60095481565b34801561033357600080fd5b50610276610342366004612493565b6109fd565b34801561035357600080fd5b506008546101e790610100900460ff1681565b34801561037257600080fd5b506103b5610381366004612500565b600a6020526000908152604090208054600182015460028301546003909301546001600160a01b0392831693919092169184565b604080516001600160a01b0395861681529490931660208501529183015260608201526080016101f3565b3480156103ec57600080fd5b5061023e6103fb366004612500565b610a63565b34801561040c57600080fd5b5061027661041b366004612242565b610aee565b34801561042c57600080fd5b5061028e61043b366004612242565b610b6a565b34801561044c57600080fd5b50610276610c04565b34801561046157600080fd5b50610276610470366004612518565b610c6a565b34801561048157600080fd5b506000546001600160a01b031661023e565b34801561049f57600080fd5b50610211611148565b6102766104b6366004612500565b611157565b3480156104c757600080fd5b506102766104d63660046123cb565b6113c8565b3480156104e757600080fd5b506102766104f63660046122f2565b61148d565b34801561050757600080fd5b50610211610516366004612500565b61151b565b34801561052757600080fd5b506008546101e79060ff1681565b34801561054157600080fd5b50610276610550366004612423565b611604565b34801561056157600080fd5b506101e761057036600461227a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105aa57600080fd5b506102766105b9366004612242565b611678565b3480156105ca57600080fd5b506102766105d9366004612423565b611757565b60006001600160e01b031982166380ac58cd60e01b148061062857506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061064357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610658906126a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610684906126a1565b80156106d15780601f106106a6576101008083540402835291602001916106d1565b820191906000526020600020905b8154815290600101906020018083116106b457829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166107595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078082610a63565b9050806001600160a01b0316836001600160a01b0316141561080a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610750565b336001600160a01b038216148061084457506001600160a01b038116600090815260076020908152604080832033845290915290205460ff165b6108b65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610750565b6108c083836117c4565b505050565b6108cf3382611832565b6109415760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610750565b6108c0838383611929565b6000546001600160a01b031633146109a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156109df573d6000803e3d6000fd5b50565b6108c08383836040518060200160405280600081525061148d565b6000546001600160a01b03163314610a575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b6108c0600c83836121a9565b6000818152600460205260408120546001600160a01b0316806106435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610750565b6000546001600160a01b03163314610b485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610be85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610750565b506001600160a01b031660009081526005602052604090205490565b6000546001600160a01b03163314610c5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b610c686000611af6565b565b600854610100900460ff16610cc15760405162461bcd60e51b815260206004820152601260248201527f436f6e7472616374206973206c6f636b656400000000000000000000000000006044820152606401610750565b33610ccb86610a63565b6001600160a01b031614610d215760405162461bcd60e51b815260206004820152601a60248201527f4d757374206f776e20636f6e7461696e657220746f206d6173680000000000006044820152606401610750565b6000858152600a60205260409020546001600160a01b031615610d865760405162461bcd60e51b815260206004820152601660248201527f436f6e7461696e657220616c72656164792075736564000000000000000000006044820152606401610750565b816001600160a01b0316846001600160a01b0316148015610da657508083145b15610df35760405162461bcd60e51b815260206004820152601760248201527f4d757374206d61736820756e6971756520746f6b656e730000000000000000006044820152606401610750565b6001600160a01b03841673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb1480610e9757506040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038516906301ffc9a79060240160206040518083038186803b158015610e5f57600080fd5b505afa158015610e73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e97919061243f565b610ee35760405162461bcd60e51b815260206004820152601860248201527f43616e206f6e6c79206d617368204552433732312028312900000000000000006044820152606401610750565b6001600160a01b03821673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb1480610f8757506040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038316906301ffc9a79060240160206040518083038186803b158015610f4f57600080fd5b505afa158015610f63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f87919061243f565b610fd35760405162461bcd60e51b815260206004820152601860248201527f43616e206f6e6c79206d617368204552433732312028322900000000000000006044820152606401610750565b33610fde8585611b46565b6001600160a01b0316146110345760405162461bcd60e51b815260206004820152601a60248201527f4d757374206f776e20746f6b656e20746f206d617368202831290000000000006044820152606401610750565b3361103f8383611b46565b6001600160a01b0316146110955760405162461bcd60e51b815260206004820152601a60248201527f4d757374206f776e20746f6b656e20746f206d617368202832290000000000006044820152606401610750565b6000858152600a6020526040902080546001600160a01b038087166001600160a01b03199283161783556002830186905560018301805491861691909216179055600381018290556110e43390565b604080518881526001600160a01b0388811660208301529181018790528582166060820152608081018590529116907fb7dcd5d7a1760ff755dd0d6921902bb59fd94ba89561b1e386818c1bc65bd74b9060a00160405180910390a2505050505050565b606060038054610658906126a1565b600260015414156111aa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610750565b600260015560085460ff166112015760405162461bcd60e51b815260206004820152601260248201527f436f6e7472616374206973206c6f636b656400000000000000000000000000006044820152606401610750565b611b39816009546112129190612613565b11156112605760405162461bcd60e51b815260206004820152601660248201527f45786365656473206d6178204e465420737570706c79000000000000000000006044820152606401610750565b600081116112b05760405162461bcd60e51b815260206004820152601260248201527f43616e6e6f74206d696e742030204e46547300000000000000000000000000006044820152606401610750565b600a8111156113275760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206d696e74206d6f7265207468616e203130204e46547320617460448201527f206f6e63650000000000000000000000000000000000000000000000000000006064820152608401610750565b6113388166f6a11f484ec00061263f565b34146113865760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374207061796d656e7420616d6f756e7400000000000000006044820152606401610750565b60005b818110156113c05760095461139f906001612613565b6009556113ae33600954611c98565b806113b8816126dc565b915050611389565b505060018055565b6001600160a01b0382163314156114215760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610750565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114973383611832565b6115095760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610750565b61151584848484611cb6565b50505050565b6000818152600460205260409020546060906001600160a01b03166115a85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610750565b60006115b2611d34565b905060008151116115d257604051806020016040528060008152506115fd565b806115dc84611d43565b6040516020016115ed929190612595565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461165e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b600880549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146116d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b6001600160a01b03811661174e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610750565b6109df81611af6565b6000546001600160a01b031633146117b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610750565b6008805460ff1916911515919091179055565b600081815260066020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117f982610a63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166118ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610750565b60006118b683610a63565b9050806001600160a01b0316846001600160a01b031614806118f15750836001600160a01b03166118e6846106db565b6001600160a01b0316145b8061192157506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661193c82610a63565b6001600160a01b0316146119b85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610750565b6001600160a01b038216611a335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610750565b611a3e6000826117c4565b6001600160a01b0383166000908152600560205260408120805460019290611a6790849061265e565b90915550506001600160a01b0382166000908152600560205260408120805460019290611a95908490612613565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b03831673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb1415611c07576040517f58178168000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03841690635817816890602401602060405180830381600087803b158015611bc857600080fd5b505af1158015611bdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c00919061225e565b9050610643565b6040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b03841690636352211e9060240160206040518083038186803b158015611c6057600080fd5b505afa158015611c74573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fd919061225e565b611cb2828260405180602001604052806000815250611e91565b5050565b611cc1848484611929565b611ccd84848484611f0f565b6115155760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610750565b6060600c8054610658906126a1565b606081611d8357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611dad5780611d97816126dc565b9150611da69050600a8361262b565b9150611d87565b60008167ffffffffffffffff811115611dd657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e00576020820181803683370190505b5090505b841561192157611e1560018361265e565b9150611e22600a866126f7565b611e2d906030612613565b60f81b818381518110611e5057634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e8a600a8661262b565b9450611e04565b611e9b8383612067565b611ea86000848484611f0f565b6108c05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610750565b60006001600160a01b0384163b1561205c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f539033908990889088906004016125c4565b602060405180830381600087803b158015611f6d57600080fd5b505af1925050508015611f9d575060408051601f3d908101601f19168201909252611f9a91810190612477565b60015b612042573d808015611fcb576040519150601f19603f3d011682016040523d82523d6000602084013e611fd0565b606091505b50805161203a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610750565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611921565b506001949350505050565b6001600160a01b0382166120bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610750565b6000818152600460205260409020546001600160a01b0316156121225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610750565b6001600160a01b038216600090815260056020526040812080546001929061214b908490612613565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121b5906126a1565b90600052602060002090601f0160209004810192826121d7576000855561221d565b82601f106121f05782800160ff1982351617855561221d565b8280016001018555821561221d579182015b8281111561221d578235825591602001919060010190612202565b5061222992915061222d565b5090565b5b80821115612229576000815560010161222e565b600060208284031215612253578081fd5b81356115fd8161274d565b60006020828403121561226f578081fd5b81516115fd8161274d565b6000806040838503121561228c578081fd5b82356122978161274d565b915060208301356122a78161274d565b809150509250929050565b6000806000606084860312156122c6578081fd5b83356122d18161274d565b925060208401356122e18161274d565b929592945050506040919091013590565b60008060008060808587031215612307578081fd5b84356123128161274d565b935060208501356123228161274d565b925060408501359150606085013567ffffffffffffffff80821115612345578283fd5b818701915087601f830112612358578283fd5b81358181111561236a5761236a612737565b604051601f8201601f19908116603f0116810190838211818310171561239257612392612737565b816040528281528a60208487010111156123aa578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156123dd578182fd5b82356123e88161274d565b915060208301356122a781612762565b6000806040838503121561240a578182fd5b82356124158161274d565b946020939093013593505050565b600060208284031215612434578081fd5b81356115fd81612762565b600060208284031215612450578081fd5b81516115fd81612762565b60006020828403121561246c578081fd5b81356115fd81612770565b600060208284031215612488578081fd5b81516115fd81612770565b600080602083850312156124a5578182fd5b823567ffffffffffffffff808211156124bc578384fd5b818501915085601f8301126124cf578384fd5b8135818111156124dd578485fd5b8660208285010111156124ee578485fd5b60209290920196919550909350505050565b600060208284031215612511578081fd5b5035919050565b600080600080600060a0868803121561252f578283fd5b8535945060208601356125418161274d565b93506040860135925060608601356125588161274d565b949793965091946080013592915050565b60008151808452612581816020860160208601612675565b601f01601f19169290920160200192915050565b600083516125a7818460208801612675565b8351908301906125bb818360208801612675565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526125f66080830184612569565b9695505050505050565b6020815260006115fd6020830184612569565b600082198211156126265761262661270b565b500190565b60008261263a5761263a612721565b500490565b60008160001904831182151516156126595761265961270b565b500290565b6000828210156126705761267061270b565b500390565b60005b83811015612690578181015183820152602001612678565b838111156115155750506000910152565b600181811c908216806126b557607f821691505b602082108114156126d657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126f0576126f061270b565b5060010190565b60008261270657612706612721565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109df57600080fd5b80151581146109df57600080fd5b6001600160e01b0319811681146109df57600080fdfea2646970667358221220ee88e3160ddbf7364a22aa7e126a6c0d51e7176457f715e4011f83e7fa93f6d864736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d585075765539656139314447464d476d6673673754734845696d58616b4b34473950537546574b4e374777662f00000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmXPuvU9ea91DGFMGmfsg7TsHEimXakK4G9PSuFWKN7Gwf/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d585075765539656139314447464d476d66736737547348
Arg [3] : 45696d58616b4b34473950537546574b4e374777662f00000000000000000000
Deployed Bytecode Sourcemap
37994:6321:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25646:305;;;;;;;;;;-1:-1:-1;25646:305:0;;;;;:::i;:::-;;:::i;:::-;;;8591:14:1;;8584:22;8566:41;;8554:2;8539:18;25646:305:0;;;;;;;;26591:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28150:221::-;;;;;;;;;;-1:-1:-1;28150:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7121:55:1;;;7103:74;;7091:2;7076:18;28150:221:0;7058:125:1;27673:411:0;;;;;;;;;;-1:-1:-1;27673:411:0;;;;;:::i;:::-;;:::i;:::-;;42409:86;;;;;;;;;;-1:-1:-1;42473:14:0;42409:86;;;20216:25:1;;;20204:2;20189:18;42409:86:0;20171:76:1;38692:34:0;;;;;;;;;;-1:-1:-1;38692:34:0;;;;-1:-1:-1;;;;;38692:34:0;;;29040:339;;;;;;;;;;-1:-1:-1;29040:339:0;;;;;:::i;:::-;;:::i;43231:110::-;;;;;;;;;;;;;:::i;29450:185::-;;;;;;;;;;-1:-1:-1;29450:185:0;;;;;:::i;:::-;;:::i;38302:25::-;;;;;;;;;;;;;;;;44218:94;;;;;;;;;;-1:-1:-1;44218:94:0;;;;;:::i;:::-;;:::i;38133:31::-;;;;;;;;;;-1:-1:-1;38133:31:0;;;;;;;;;;;38473:38;;;;;;;;;;-1:-1:-1;38473:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38473:38:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;8261:15:1;;;8243:34;;8313:15;;;;8308:2;8293:18;;8286:43;8345:18;;;8338:34;8403:2;8388:18;;8381:34;8169:3;8154:19;38473:38:0;8136:285:1;26285:239:0;;;;;;;;;;-1:-1:-1;26285:239:0;;;;;:::i;:::-;;:::i;43486:116::-;;;;;;;;;;-1:-1:-1;43486:116:0;;;;;:::i;:::-;;:::i;26015:208::-;;;;;;;;;;-1:-1:-1;26015:208:0;;;;;:::i;:::-;;:::i;2519:94::-;;;;;;;;;;;;;:::i;40607:1561::-;;;;;;;;;;-1:-1:-1;40607:1561:0;;;;;:::i;:::-;;:::i;1868:87::-;;;;;;;;;;-1:-1:-1;1914:7:0;1941:6;-1:-1:-1;;;;;1941:6:0;1868:87;;26760:104;;;;;;;;;;;;;:::i;39713:554::-;;;;;;:::i;:::-;;:::i;28443:295::-;;;;;;;;;;-1:-1:-1;28443:295:0;;;;;:::i;:::-;;:::i;29706:328::-;;;;;;;;;;-1:-1:-1;29706:328:0;;;;;:::i;:::-;;:::i;26935:334::-;;;;;;;;;;-1:-1:-1;26935:334:0;;;;;:::i;:::-;;:::i;38096:30::-;;;;;;;;;;-1:-1:-1;38096:30:0;;;;;;;;43997:107;;;;;;;;;;-1:-1:-1;43997:107:0;;;;;:::i;:::-;;:::i;28809:164::-;;;;;;;;;;-1:-1:-1;28809:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28930:25:0;;;28906:4;28930:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28809:164;2768:192;;;;;;;;;;-1:-1:-1;2768:192:0;;;;;:::i;:::-;;:::i;43746:107::-;;;;;;;;;;-1:-1:-1;43746:107:0;;;;;:::i;:::-;;:::i;25646:305::-;25748:4;-1:-1:-1;;;;;;25785:40:0;;-1:-1:-1;;;25785:40:0;;:105;;-1:-1:-1;;;;;;;25842:48:0;;25857:33;25842:48;25785:105;:158;;;-1:-1:-1;;;;;;;;;;24259:40:0;;;25907:36;25765:178;25646:305;-1:-1:-1;;25646:305:0:o;26591:100::-;26645:13;26678:5;26671:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26591:100;:::o;28150:221::-;28226:7;31633:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31633:16:0;28246:73;;;;-1:-1:-1;;;28246:73:0;;14973:2:1;28246:73:0;;;14955:21:1;15012:2;14992:18;;;14985:30;15051:34;15031:18;;;15024:62;-1:-1:-1;;;15102:18:1;;;15095:42;15154:19;;28246:73:0;;;;;;;;;-1:-1:-1;28339:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28339:24:0;;28150:221::o;27673:411::-;27754:13;27770:23;27785:7;27770:14;:23::i;:::-;27754:39;;27818:5;-1:-1:-1;;;;;27812:11:0;:2;-1:-1:-1;;;;;27812:11:0;;;27804:57;;;;-1:-1:-1;;;27804:57:0;;17334:2:1;27804:57:0;;;17316:21:1;17373:2;17353:18;;;17346:30;17412:34;17392:18;;;17385:62;17483:3;17463:18;;;17456:31;17504:19;;27804:57:0;17306:223:1;27804:57:0;736:10;-1:-1:-1;;;;;27896:21:0;;;;:62;;-1:-1:-1;;;;;;28930:25:0;;28906:4;28930:25;;;:18;:25;;;;;;;;736:10;28930:35;;;;;;;;;;27921:37;27874:168;;;;-1:-1:-1;;;27874:168:0;;13366:2:1;27874:168:0;;;13348:21:1;13405:2;13385:18;;;13378:30;13444:34;13424:18;;;13417:62;13515:26;13495:18;;;13488:54;13559:19;;27874:168:0;13338:246:1;27874:168:0;28055:21;28064:2;28068:7;28055:8;:21::i;:::-;27673:411;;;:::o;29040:339::-;29235:41;736:10;29268:7;29235:18;:41::i;:::-;29227:103;;;;-1:-1:-1;;;29227:103:0;;18796:2:1;29227:103:0;;;18778:21:1;18835:2;18815:18;;;18808:30;18874:34;18854:18;;;18847:62;18945:19;18925:18;;;18918:47;18982:19;;29227:103:0;18768:239:1;29227:103:0;29343:28;29353:4;29359:2;29363:7;29343:9;:28::i;43231:110::-;1914:7;1941:6;-1:-1:-1;;;;;1941:6:0;736:10;2088:23;2080:68;;;;-1:-1:-1;;;2080:68:0;;15386:2:1;2080:68:0;;;15368:21:1;;;15405:18;;;15398:30;15464:34;15444:18;;;15437:62;15516:18;;2080:68:0;15358:182:1;2080:68:0;43289:11:::1;::::0;43281:52:::1;::::0;-1:-1:-1;;;;;43289:11:0;;::::1;::::0;43311:21:::1;43281:52:::0;::::1;;;::::0;43289:11:::1;43281:52:::0;43289:11;43281:52;43311:21;43289:11;43281:52;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43231:110::o:0;29450:185::-;29588:39;29605:4;29611:2;29615:7;29588:39;;;;;;;;;;;;:16;:39::i;44218:94::-;1914:7;1941:6;-1:-1:-1;;;;;1941:6:0;736:10;2088:23;2080:68;;;;-1:-1:-1;;;2080:68:0;;15386:2:1;2080:68:0;;;15368:21:1;;;15405:18;;;15398:30;15464:34;15444:18;;;15437:62;15516:18;;2080:68:0;15358:182:1;2080:68:0;44290:14:::1;:7;44300:4:::0;;44290:14:::1;:::i;26285:239::-:0;26357:7;26393:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26393:16:0;26428:19;26420:73;;;;-1:-1:-1;;;26420:73:0;;14202:2:1;26420:73:0;;;14184:21:1;14241:2;14221:18;;;14214:30;14280:34;14260:18;;;14253:62;14351:11;14331:18;;;14324:39;14380:19;;26420:73:0;14174:231:1;43486:116:0;1914:7;1941:6;-1:-1:-1;;;;;1941:6:0;736:10;2088:23;2080:68;;;;-1:-1:-1;;;2080:68:0;;15386:2:1;2080:68:0;;;15368:21:1;;;15405:18;;;15398:30;15464:34;15444:18;;;15437:62;15516:18;;2080:68:0;15358:182:1;2080:68:0;43568:11:::1;:26:::0;;-1:-1:-1;;;;;;43568:26:0::1;-1:-1:-1::0;;;;;43568:26:0;;;::::1;::::0;;;::::1;::::0;;43486:116::o;26015:208::-;26087:7;-1:-1:-1;;;;;26115:19:0;;26107:74;;;;-1:-1:-1;;;26107:74:0;;13791:2:1;26107:74:0;;;13773:21:1;13830:2;13810:18;;;13803:30;13869:34;13849:18;;;13842:62;13940:12;13920:18;;;13913:40;13970:19;;26107:74:0;13763:232:1;26107:74:0;-1:-1:-1;;;;;;26199:16:0;;;;;:9;:16;;;;;;;26015:208::o;2519:94::-;1914:7;1941:6;-1:-1:-1;;;;;1941:6:0;736:10;2088:23;2080:68;;;;-1:-1:-1;;;2080:68:0;;15386:2:1;2080:68:0;;;15368:21:1;;;15405:18;;;15398:30;15464:34;15444:18;;;15437:62;15516:18;;2080:68:0;15358:182:1;2080:68:0;2584:21:::1;2602:1;2584:9;:21::i;:::-;2519:94::o:0;40607:1561::-;39408:11;;;;;;;39400:42;;;;-1:-1:-1;;;39400:42:0;;19565:2:1;39400:42:0;;;19547:21:1;19604:2;19584:18;;;19577:30;19643:20;19623:18;;;19616:48;19681:18;;39400:42:0;19537:168:1;39400:42:0;736:10;40826:20:::1;40834:11:::0;40826:7:::1;:20::i;:::-;-1:-1:-1::0;;;;;40826:36:0::1;;40804:112;;;::::0;-1:-1:-1;;;40804:112:0;;18089:2:1;40804:112:0::1;::::0;::::1;18071:21:1::0;18128:2;18108:18;;;18101:30;18167:28;18147:18;;;18140:56;18213:18;;40804:112:0::1;18061:176:1::0;40804:112:0::1;40990:3;40949:19:::0;;;:6:::1;:19;::::0;;;;:29;-1:-1:-1;;;;;40949:29:0::1;:45:::0;40927:117:::1;;;::::0;-1:-1:-1;;;40927:117:0;;12668:2:1;40927:117:0::1;::::0;::::1;12650:21:1::0;12707:2;12687:18;;;12680:30;12746:24;12726:18;;;12719:52;12788:18;;40927:117:0::1;12640:172:1::0;40927:117:0::1;41092:9;-1:-1:-1::0;;;;;41079:22:0::1;:9;-1:-1:-1::0;;;;;41079:22:0::1;;:46;;;;;41117:8;41105;:20;41079:46;41077:49;41055:122;;;::::0;-1:-1:-1;;;41055:122:0;;18444:2:1;41055:122:0::1;::::0;::::1;18426:21:1::0;18483:2;18463:18;;;18456:30;18522:25;18502:18;;;18495:53;18565:18;;41055:122:0::1;18416:173:1::0;41055:122:0::1;-1:-1:-1::0;;;;;41210:24:0;::::1;38421:42;41210:24;::::0;:92:::1;;-1:-1:-1::0;41255:47:0::1;::::0;-1:-1:-1;;;41255:47:0;;-1:-1:-1;;;41255:47:0::1;::::0;::::1;8780:35:1::0;-1:-1:-1;;;;;41255:35:0;::::1;::::0;::::1;::::0;8753:18:1;;41255:47:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41188:166;;;::::0;-1:-1:-1;;;41188:166:0;;17736:2:1;41188:166:0::1;::::0;::::1;17718:21:1::0;17775:2;17755:18;;;17748:30;17814:26;17794:18;;;17787:54;17858:18;;41188:166:0::1;17708:174:1::0;41188:166:0::1;-1:-1:-1::0;;;;;41387:24:0;::::1;38421:42;41387:24;::::0;:92:::1;;-1:-1:-1::0;41432:47:0::1;::::0;-1:-1:-1;;;41432:47:0;;-1:-1:-1;;;41432:47:0::1;::::0;::::1;8780:35:1::0;-1:-1:-1;;;;;41432:35:0;::::1;::::0;::::1;::::0;8753:18:1;;41432:47:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41365:166;;;::::0;-1:-1:-1;;;41365:166:0;;9252:2:1;41365:166:0::1;::::0;::::1;9234:21:1::0;9291:2;9271:18;;;9264:30;9330:26;9310:18;;;9303:54;9374:18;;41365:166:0::1;9224:174:1::0;41365:166:0::1;736:10:::0;41564:30:::1;41574:9:::0;41585:8;41564:9:::1;:30::i;:::-;-1:-1:-1::0;;;;;41564:46:0::1;;41542:122;;;::::0;-1:-1:-1;;;41542:122:0;;9605:2:1;41542:122:0::1;::::0;::::1;9587:21:1::0;9644:2;9624:18;;;9617:30;9683:28;9663:18;;;9656:56;9729:18;;41542:122:0::1;9577:176:1::0;41542:122:0::1;736:10:::0;41697:30:::1;41707:9:::0;41718:8;41697:9:::1;:30::i;:::-;-1:-1:-1::0;;;;;41697:46:0::1;;41675:122;;;::::0;-1:-1:-1;;;41675:122:0;;16979:2:1;41675:122:0::1;::::0;::::1;16961:21:1::0;17018:2;16998:18;;;16991:30;17057:28;17037:18;;;17030:56;17103:18;;41675:122:0::1;16951:176:1::0;41675:122:0::1;41810:14;41827:19:::0;;;:6:::1;:19;::::0;;;;41857:23;;-1:-1:-1;;;;;41857:23:0;;::::1;-1:-1:-1::0;;;;;;41857:23:0;;::::1;;::::0;;41891:10:::1;::::0;::::1;:21:::0;;;41857:23;41923:11;::::1;:23:::0;;;;::::1;::::0;;;::::1;;::::0;;41957:10:::1;::::0;::::1;:21:::0;;;42017:12:::1;736:10:::0;;656:98;42017:12:::1;41996:164;::::0;;20511:25:1;;;-1:-1:-1;;;;;20633:15:1;;;20628:2;20613:18;;20606:43;20665:18;;;20658:34;;;20728:15;;;20723:2;20708:18;;20701:43;20775:3;20760:19;;20753:35;;;41996:164:0;::::1;::::0;::::1;::::0;20498:3:1;20483:19;41996:164:0::1;;;;;;;39453:1;40607:1561:::0;;;;;:::o;26760:104::-;26816:13;26849:7;26842:14;;;;;:::i;39713:554::-;4895:1;5491:7;;:19;;5483:63;;;;-1:-1:-1;;;5483:63:0;;19912:2:1;5483:63:0;;;19894:21:1;19951:2;19931:18;;;19924:30;19990:33;19970:18;;;19963:61;20041:18;;5483:63:0;19884:181:1;5483:63:0;4895:1;5624:7;:18;39300:11:::1;::::0;::::1;;39292:42;;;::::0;-1:-1:-1;;;39292:42:0;;19565:2:1;39292:42:0::1;::::0;::::1;19547:21:1::0;19604:2;19584:18;;;19577:30;19643:20;19623:18;;;19616:48;19681:18;;39292:42:0::1;19537:168:1::0;39292:42:0::1;38245:4:::2;39860:8;39851:6;;:17;;;;:::i;:::-;:31;;39843:66;;;::::0;-1:-1:-1;;;39843:66:0;;19214:2:1;39843:66:0::2;::::0;::::2;19196:21:1::0;19253:2;19233:18;;;19226:30;19292:24;19272:18;;;19265:52;19334:18;;39843:66:0::2;19186:172:1::0;39843:66:0::2;39939:1;39928:8;:12;39920:43;;;::::0;-1:-1:-1;;;39920:43:0;;13019:2:1;39920:43:0::2;::::0;::::2;13001:21:1::0;13058:2;13038:18;;;13031:30;13097:20;13077:18;;;13070:48;13135:18;;39920:43:0::2;12991:168:1::0;39920:43:0::2;39994:2;39982:8;:14;;39974:64;;;::::0;-1:-1:-1;;;39974:64:0;;15747:2:1;39974:64:0::2;::::0;::::2;15729:21:1::0;15786:2;15766:18;;;15759:30;15825:34;15805:18;;;15798:62;15896:7;15876:18;;;15869:35;15921:19;;39974:64:0::2;15719:227:1::0;39974:64:0::2;40070:17;40079:8:::0;42473:14;40070:17:::2;:::i;:::-;40057:9;:30;40049:67;;;::::0;-1:-1:-1;;;40049:67:0;;11902:2:1;40049:67:0::2;::::0;::::2;11884:21:1::0;11941:2;11921:18;;;11914:30;11980:26;11960:18;;;11953:54;12024:18;;40049:67:0::2;11874:174:1::0;40049:67:0::2;40134:9;40129:131;40153:8;40149:1;:12;40129:131;;;40192:6;::::0;:10:::2;::::0;40201:1:::2;40192:10;:::i;:::-;40183:6;:19:::0;40217:31:::2;736:10:::0;40241:6:::2;;40217:9;:31::i;:::-;40163:3:::0;::::2;::::0;::::2;:::i;:::-;;;;40129:131;;;-1:-1:-1::0;;4851:1:0;5803:22;;39713:554::o;28443:295::-;-1:-1:-1;;;;;28546:24:0;;736:10;28546:24;;28538:62;;;;-1:-1:-1;;;28538:62:0;;11548:2:1;28538:62:0;;;11530:21:1;11587:2;11567:18;;;11560:30;11626:27;11606:18;;;11599:55;11671:18;;28538:62:0;11520:175:1;28538:62:0;736:10;28613:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28613:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28613:53:0;;;;;;;;;;28682:48;;8566:41:1;;;28613:42:0;;736:10;28682:48;;8539:18:1;28682:48:0;;;;;;;28443:295;;:::o;29706:328::-;29881:41;736:10;29914:7;29881:18;:41::i;:::-;29873:103;;;;-1:-1:-1;;;29873:103:0;;18796:2:1;29873:103:0;;;18778:21:1;18835:2;18815:18;;;18808:30;18874:34;18854:18;;;18847:62;18945:19;18925:18;;;18918:47;18982:19;;29873:103:0;18768:239:1;29873:103:0;29987:39;30001:4;30007:2;30011:7;30020:5;29987:13;:39::i;:::-;29706:328;;;;:::o;26935:334::-;31609:4;31633:16;;;:7;:16;;;;;;27008:13;;-1:-1:-1;;;;;31633:16:0;27034:76;;;;-1:-1:-1;;;27034:76:0;;16563:2:1;27034:76:0;;;16545:21:1;16602:2;16582:18;;;16575:30;16641:34;16621:18;;;16614:62;16712:17;16692:18;;;16685:45;16747:19;;27034:76:0;16535:237:1;27034:76:0;27123:21;27147:10;:8;:10::i;:::-;27123:34;;27199:1;27181:7;27175:21;:25;:86;;;;;;;;;;;;;;;;;27227:7;27236:18;:7;:16;:18::i;:::-;27210:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27175:86;27168:93;26935:334;-1:-1:-1;;;26935:334:0:o;43997:107::-;1914:7;1941:6;-1:-1:-1;;;;;1941:6:0;736:10;2088:23;2080:68;;;;-1:-1:-1;;;2080:68:0;;15386:2:1;2080:68:0;;;15368:21:1;;;15405:18;;;15398:30;15464:34;15444:18;;;15437:62;15516:18;;2080:68:0;15358:182:1;2080:68:0;44070:11:::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;44070:26:0;;::::1;::::0;;;::::1;::::0;;43997:107::o;2768:192::-;1914:7;1941:6;-1:-1:-1;;;;;1941:6:0;736:10;2088:23;2080:68;;;;-1:-1:-1;;;2080:68:0;;15386:2:1;2080:68:0;;;15368:21:1;;;15405:18;;;15398:30;15464:34;15444:18;;;15437:62;15516:18;;2080:68:0;15358:182:1;2080:68:0;-1:-1:-1;;;;;2857:22:0;::::1;2849:73;;;::::0;-1:-1:-1;;;2849:73:0;;10379:2:1;2849:73:0::1;::::0;::::1;10361:21:1::0;10418:2;10398:18;;;10391:30;10457:34;10437:18;;;10430:62;10528:8;10508:18;;;10501:36;10554:19;;2849:73:0::1;10351:228:1::0;2849:73:0::1;2933:19;2943:8;2933:9;:19::i;43746:107::-:0;1914:7;1941:6;-1:-1:-1;;;;;1941:6:0;736:10;2088:23;2080:68;;;;-1:-1:-1;;;2080:68:0;;15386:2:1;2080:68:0;;;15368:21:1;;;15405:18;;;15398:30;15464:34;15444:18;;;15437:62;15516:18;;2080:68:0;15358:182:1;2080:68:0;43819:11:::1;:26:::0;;-1:-1:-1;;43819:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43746:107::o;35526:174::-;35601:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35601:29:0;-1:-1:-1;;;;;35601:29:0;;;;;;;;:24;;35655:23;35601:24;35655:14;:23::i;:::-;-1:-1:-1;;;;;35646:46:0;;;;;;;;;;;35526:174;;:::o;31838:348::-;31931:4;31633:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31633:16:0;31948:73;;;;-1:-1:-1;;;31948:73:0;;12255:2:1;31948:73:0;;;12237:21:1;12294:2;12274:18;;;12267:30;12333:34;12313:18;;;12306:62;-1:-1:-1;;;12384:18:1;;;12377:42;12436:19;;31948:73:0;12227:234:1;31948:73:0;32032:13;32048:23;32063:7;32048:14;:23::i;:::-;32032:39;;32101:5;-1:-1:-1;;;;;32090:16:0;:7;-1:-1:-1;;;;;32090:16:0;;:51;;;;32134:7;-1:-1:-1;;;;;32110:31:0;:20;32122:7;32110:11;:20::i;:::-;-1:-1:-1;;;;;32110:31:0;;32090:51;:87;;;-1:-1:-1;;;;;;28930:25:0;;;28906:4;28930:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32145:32;32082:96;31838:348;-1:-1:-1;;;;31838:348:0:o;34830:578::-;34989:4;-1:-1:-1;;;;;34962:31:0;:23;34977:7;34962:14;:23::i;:::-;-1:-1:-1;;;;;34962:31:0;;34954:85;;;;-1:-1:-1;;;34954:85:0;;16153:2:1;34954:85:0;;;16135:21:1;16192:2;16172:18;;;16165:30;16231:34;16211:18;;;16204:62;16302:11;16282:18;;;16275:39;16331:19;;34954:85:0;16125:231:1;34954:85:0;-1:-1:-1;;;;;35058:16:0;;35050:65;;;;-1:-1:-1;;;35050:65:0;;11143:2:1;35050:65:0;;;11125:21:1;11182:2;11162:18;;;11155:30;11221:34;11201:18;;;11194:62;11292:6;11272:18;;;11265:34;11316:19;;35050:65:0;11115:226:1;35050:65:0;35232:29;35249:1;35253:7;35232:8;:29::i;:::-;-1:-1:-1;;;;;35274:15:0;;;;;;:9;:15;;;;;:20;;35293:1;;35274:15;:20;;35293:1;;35274:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35305:13:0;;;;;;:9;:13;;;;;:18;;35322:1;;35305:13;:18;;35322:1;;35305:18;:::i;:::-;;;;-1:-1:-1;;35334:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35334:21:0;-1:-1:-1;;;;;35334:21:0;;;;;;;;;35373:27;;35334:16;;35373:27;;;;;;;34830:578;;;:::o;2968:173::-;3024:16;3043:6;;-1:-1:-1;;;;;3060:17:0;;;-1:-1:-1;;;;;;3060:17:0;;;;;;3093:40;;3043:6;;;;;;;3093:40;;3024:16;3093:40;2968:173;;:::o;42742:271::-;42805:7;-1:-1:-1;;;;;42854:19:0;;38421:42;42854:19;42850:93;;;42897:34;;;;;;;;20216:25:1;;;-1:-1:-1;;;;;42897:30:0;;;;;20189:18:1;;42897:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42890:41;;;;42850:93;42981:24;;;;;;;;20216:25:1;;;-1:-1:-1;;;;;42981:20:0;;;;;20189:18:1;;42981:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;32528:110::-;32604:26;32614:2;32618:7;32604:26;;;;;;;;;;;;:9;:26::i;:::-;32528:110;;:::o;30916:315::-;31073:28;31083:4;31089:2;31093:7;31073:9;:28::i;:::-;31120:48;31143:4;31149:2;31153:7;31162:5;31120:22;:48::i;:::-;31112:111;;;;-1:-1:-1;;;31112:111:0;;9960:2:1;31112:111:0;;;9942:21:1;9999:2;9979:18;;;9972:30;10038:34;10018:18;;;10011:62;-1:-1:-1;;;10089:18:1;;;10082:48;10147:19;;31112:111:0;9932:240:1;42634:100:0;42686:13;42719:7;42712:14;;;;;:::i;21593:723::-;21649:13;21870:10;21866:53;;-1:-1:-1;;21897:10:0;;;;;;;;;;;;;;;;;;21593:723::o;21866:53::-;21944:5;21929:12;21985:78;21992:9;;21985:78;;22018:8;;;;:::i;:::-;;-1:-1:-1;22041:10:0;;-1:-1:-1;22049:2:0;22041:10;;:::i;:::-;;;21985:78;;;22073:19;22105:6;22095:17;;;;;;-1:-1:-1;;;22095:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22095:17:0;;22073:39;;22123:154;22130:10;;22123:154;;22157:11;22167:1;22157:11;;:::i;:::-;;-1:-1:-1;22226:10:0;22234:2;22226:5;:10;:::i;:::-;22213:24;;:2;:24;:::i;:::-;22200:39;;22183:6;22190;22183:14;;;;;;-1:-1:-1;;;22183:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;22254:11:0;22263:2;22254:11;;:::i;:::-;;;22123:154;;32865:321;32995:18;33001:2;33005:7;32995:5;:18::i;:::-;33046:54;33077:1;33081:2;33085:7;33094:5;33046:22;:54::i;:::-;33024:154;;;;-1:-1:-1;;;33024:154:0;;9960:2:1;33024:154:0;;;9942:21:1;9999:2;9979:18;;;9972:30;10038:34;10018:18;;;10011:62;-1:-1:-1;;;10089:18:1;;;10082:48;10147:19;;33024:154:0;9932:240:1;36265:799:0;36420:4;-1:-1:-1;;;;;36441:13:0;;14274:20;14322:8;36437:620;;36477:72;;-1:-1:-1;;;36477:72:0;;-1:-1:-1;;;;;36477:36:0;;;;;:72;;736:10;;36528:4;;36534:7;;36543:5;;36477:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36477:72:0;;;;;;;;-1:-1:-1;;36477:72:0;;;;;;;;;;;;:::i;:::-;;;36473:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36719:13:0;;36715:272;;36762:60;;-1:-1:-1;;;36762:60:0;;9960:2:1;36762:60:0;;;9942:21:1;9999:2;9979:18;;;9972:30;10038:34;10018:18;;;10011:62;-1:-1:-1;;;10089:18:1;;;10082:48;10147:19;;36762:60:0;9932:240:1;36715:272:0;36937:6;36931:13;36922:6;36918:2;36914:15;36907:38;36473:529;-1:-1:-1;;;;;;36600:51:0;-1:-1:-1;;;36600:51:0;;-1:-1:-1;36593:58:0;;36437:620;-1:-1:-1;37041:4:0;36265:799;;;;;;:::o;33522:382::-;-1:-1:-1;;;;;33602:16:0;;33594:61;;;;-1:-1:-1;;;33594:61:0;;14612:2:1;33594:61:0;;;14594:21:1;;;14631:18;;;14624:30;14690:34;14670:18;;;14663:62;14742:18;;33594:61:0;14584:182:1;33594:61:0;31609:4;31633:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31633:16:0;:30;33666:58;;;;-1:-1:-1;;;33666:58:0;;10786:2:1;33666:58:0;;;10768:21:1;10825:2;10805:18;;;10798:30;10864;10844:18;;;10837:58;10912:18;;33666:58:0;10758:178:1;33666:58:0;-1:-1:-1;;;;;33795:13:0;;;;;;:9;:13;;;;;:18;;33812:1;;33795:13;:18;;33812:1;;33795:18;:::i;:::-;;;;-1:-1:-1;;33824:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33824:21:0;-1:-1:-1;;;;;33824:21:0;;;;;;;;33863:33;;33824:16;;;33863:33;;33824:16;;33863:33;33522:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:257:1;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;812:398::-;880:6;888;941:2;929:9;920:7;916:23;912:32;909:2;;;962:6;954;947:22;909:2;1006:9;993:23;1025:31;1050:5;1025:31;:::i;:::-;1075:5;-1:-1:-1;1132:2:1;1117:18;;1104:32;1145:33;1104:32;1145:33;:::i;:::-;1197:7;1187:17;;;899:311;;;;;:::o;1215:466::-;1292:6;1300;1308;1361:2;1349:9;1340:7;1336:23;1332:32;1329:2;;;1382:6;1374;1367:22;1329:2;1426:9;1413:23;1445:31;1470:5;1445:31;:::i;:::-;1495:5;-1:-1:-1;1552:2:1;1537:18;;1524:32;1565:33;1524:32;1565:33;:::i;:::-;1319:362;;1617:7;;-1:-1:-1;;;1671:2:1;1656:18;;;;1643:32;;1319:362::o;1686:1311::-;1781:6;1789;1797;1805;1858:3;1846:9;1837:7;1833:23;1829:33;1826:2;;;1880:6;1872;1865:22;1826:2;1924:9;1911:23;1943:31;1968:5;1943:31;:::i;:::-;1993:5;-1:-1:-1;2050:2:1;2035:18;;2022:32;2063:33;2022:32;2063:33;:::i;:::-;2115:7;-1:-1:-1;2169:2:1;2154:18;;2141:32;;-1:-1:-1;2224:2:1;2209:18;;2196:32;2247:18;2277:14;;;2274:2;;;2309:6;2301;2294:22;2274:2;2352:6;2341:9;2337:22;2327:32;;2397:7;2390:4;2386:2;2382:13;2378:27;2368:2;;2424:6;2416;2409:22;2368:2;2465;2452:16;2487:2;2483;2480:10;2477:2;;;2493:18;;:::i;:::-;2568:2;2562:9;2536:2;2622:13;;-1:-1:-1;;2618:22:1;;;2642:2;2614:31;2610:40;2598:53;;;2666:18;;;2686:22;;;2663:46;2660:2;;;2712:18;;:::i;:::-;2752:10;2748:2;2741:22;2787:2;2779:6;2772:18;2827:7;2822:2;2817;2813;2809:11;2805:20;2802:33;2799:2;;;2853:6;2845;2838:22;2799:2;2914;2909;2905;2901:11;2896:2;2888:6;2884:15;2871:46;2937:15;;;2954:2;2933:24;2926:40;;;;1816:1181;;;;-1:-1:-1;1816:1181:1;;-1:-1:-1;;;;1816:1181:1:o;3002:392::-;3067:6;3075;3128:2;3116:9;3107:7;3103:23;3099:32;3096:2;;;3149:6;3141;3134:22;3096:2;3193:9;3180:23;3212:31;3237:5;3212:31;:::i;:::-;3262:5;-1:-1:-1;3319:2:1;3304:18;;3291:32;3332:30;3291:32;3332:30;:::i;3399:325::-;3467:6;3475;3528:2;3516:9;3507:7;3503:23;3499:32;3496:2;;;3549:6;3541;3534:22;3496:2;3593:9;3580:23;3612:31;3637:5;3612:31;:::i;:::-;3662:5;3714:2;3699:18;;;;3686:32;;-1:-1:-1;;;3486:238:1:o;3729:251::-;3785:6;3838:2;3826:9;3817:7;3813:23;3809:32;3806:2;;;3859:6;3851;3844:22;3806:2;3903:9;3890:23;3922:28;3944:5;3922:28;:::i;3985:255::-;4052:6;4105:2;4093:9;4084:7;4080:23;4076:32;4073:2;;;4126:6;4118;4111:22;4073:2;4163:9;4157:16;4182:28;4204:5;4182:28;:::i;4245:255::-;4303:6;4356:2;4344:9;4335:7;4331:23;4327:32;4324:2;;;4377:6;4369;4362:22;4324:2;4421:9;4408:23;4440:30;4464:5;4440:30;:::i;4505:259::-;4574:6;4627:2;4615:9;4606:7;4602:23;4598:32;4595:2;;;4648:6;4640;4633:22;4595:2;4685:9;4679:16;4704:30;4728:5;4704:30;:::i;4769:642::-;4840:6;4848;4901:2;4889:9;4880:7;4876:23;4872:32;4869:2;;;4922:6;4914;4907:22;4869:2;4967:9;4954:23;4996:18;5037:2;5029:6;5026:14;5023:2;;;5058:6;5050;5043:22;5023:2;5101:6;5090:9;5086:22;5076:32;;5146:7;5139:4;5135:2;5131:13;5127:27;5117:2;;5173:6;5165;5158:22;5117:2;5218;5205:16;5244:2;5236:6;5233:14;5230:2;;;5265:6;5257;5250:22;5230:2;5315:7;5310:2;5301:6;5297:2;5293:15;5289:24;5286:37;5283:2;;;5341:6;5333;5326:22;5283:2;5377;5369:11;;;;;5399:6;;-1:-1:-1;4859:552:1;;-1:-1:-1;;;;4859:552:1:o;5416:190::-;5475:6;5528:2;5516:9;5507:7;5503:23;5499:32;5496:2;;;5549:6;5541;5534:22;5496:2;-1:-1:-1;5577:23:1;;5486:120;-1:-1:-1;5486:120:1:o;5611:604::-;5706:6;5714;5722;5730;5738;5791:3;5779:9;5770:7;5766:23;5762:33;5759:2;;;5813:6;5805;5798:22;5759:2;5854:9;5841:23;5831:33;;5914:2;5903:9;5899:18;5886:32;5927:31;5952:5;5927:31;:::i;:::-;5977:5;-1:-1:-1;6029:2:1;6014:18;;6001:32;;-1:-1:-1;6085:2:1;6070:18;;6057:32;6098:33;6057:32;6098:33;:::i;:::-;5749:466;;;;-1:-1:-1;5749:466:1;;6204:3;6189:19;6176:33;;5749:466;-1:-1:-1;;5749:466:1:o;6220:257::-;6261:3;6299:5;6293:12;6326:6;6321:3;6314:19;6342:63;6398:6;6391:4;6386:3;6382:14;6375:4;6368:5;6364:16;6342:63;:::i;:::-;6459:2;6438:15;-1:-1:-1;;6434:29:1;6425:39;;;;6466:4;6421:50;;6269:208;-1:-1:-1;;6269:208:1:o;6482:470::-;6661:3;6699:6;6693:13;6715:53;6761:6;6756:3;6749:4;6741:6;6737:17;6715:53;:::i;:::-;6831:13;;6790:16;;;;6853:57;6831:13;6790:16;6887:4;6875:17;;6853:57;:::i;:::-;6926:20;;6669:283;-1:-1:-1;;;;6669:283:1:o;7435:511::-;7629:4;-1:-1:-1;;;;;7739:2:1;7731:6;7727:15;7716:9;7709:34;7791:2;7783:6;7779:15;7774:2;7763:9;7759:18;7752:43;;7831:6;7826:2;7815:9;7811:18;7804:34;7874:3;7869:2;7858:9;7854:18;7847:31;7895:45;7935:3;7924:9;7920:19;7912:6;7895:45;:::i;:::-;7887:53;7638:308;-1:-1:-1;;;;;;7638:308:1:o;8826:219::-;8975:2;8964:9;8957:21;8938:4;8995:44;9035:2;9024:9;9020:18;9012:6;8995:44;:::i;20799:128::-;20839:3;20870:1;20866:6;20863:1;20860:13;20857:2;;;20876:18;;:::i;:::-;-1:-1:-1;20912:9:1;;20847:80::o;20932:120::-;20972:1;20998;20988:2;;21003:18;;:::i;:::-;-1:-1:-1;21037:9:1;;20978:74::o;21057:168::-;21097:7;21163:1;21159;21155:6;21151:14;21148:1;21145:21;21140:1;21133:9;21126:17;21122:45;21119:2;;;21170:18;;:::i;:::-;-1:-1:-1;21210:9:1;;21109:116::o;21230:125::-;21270:4;21298:1;21295;21292:8;21289:2;;;21303:18;;:::i;:::-;-1:-1:-1;21340:9:1;;21279:76::o;21360:258::-;21432:1;21442:113;21456:6;21453:1;21450:13;21442:113;;;21532:11;;;21526:18;21513:11;;;21506:39;21478:2;21471:10;21442:113;;;21573:6;21570:1;21567:13;21564:2;;;-1:-1:-1;;21608:1:1;21590:16;;21583:27;21413:205::o;21623:437::-;21702:1;21698:12;;;;21745;;;21766:2;;21820:4;21812:6;21808:17;21798:27;;21766:2;21873;21865:6;21862:14;21842:18;21839:38;21836:2;;;-1:-1:-1;;;21907:1:1;21900:88;22011:4;22008:1;22001:15;22039:4;22036:1;22029:15;21836:2;;21678:382;;;:::o;22065:135::-;22104:3;-1:-1:-1;;22125:17:1;;22122:2;;;22145:18;;:::i;:::-;-1:-1:-1;22192:1:1;22181:13;;22112:88::o;22205:112::-;22237:1;22263;22253:2;;22268:18;;:::i;:::-;-1:-1:-1;22302:9:1;;22243:74::o;22322:184::-;-1:-1:-1;;;22371:1:1;22364:88;22471:4;22468:1;22461:15;22495:4;22492:1;22485:15;22511:184;-1:-1:-1;;;22560:1:1;22553:88;22660:4;22657:1;22650:15;22684:4;22681:1;22674:15;22700:184;-1:-1:-1;;;22749:1:1;22742:88;22849:4;22846:1;22839:15;22873:4;22870:1;22863:15;22889:154;-1:-1:-1;;;;;22968:5:1;22964:54;22957:5;22954:65;22944:2;;23033:1;23030;23023:12;23048:118;23134:5;23127:13;23120:21;23113:5;23110:32;23100:2;;23156:1;23153;23146:12;23171:177;-1:-1:-1;;;;;;23249:5:1;23245:78;23238:5;23235:89;23225:2;;23338:1;23335;23328:12
Swarm Source
ipfs://ee88e3160ddbf7364a22aa7e126a6c0d51e7176457f715e4011f83e7fa93f6d8
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.