Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 TIKTOK
Holders
70
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TIKTOKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Bored
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Written by Tim Kang <> illestrater // Thought innovation by Monstercat // Product by universe.xyz pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import 'base64-sol/base64.sol'; contract Bored is ERC721, Ownable { string private _title = 'Bored in the Distrikt'; string private _description = 'Prize NFT for Bored in the District game beat masters - Made with <3 by coin artist, illestrater, & curtis roach.'; string private _presetBaseURI = 'https://arweave.net/'; string private _assetHash; bool public mintingFinalized; uint256 private tokenIndex = 1; constructor( string memory name, string memory symbol, string memory assetHash ) ERC721(name, symbol) { _assetHash = assetHash; mintingFinalized = false; } function mintPrize(address winner) public onlyOwner { require(tokenIndex < 100, 'Minting has concluded'); _safeMint(winner, tokenIndex); tokenIndex++; } function updateAsset(string memory asset) public onlyOwner { _assetHash = asset; } function tokenURI(uint256 tokenId) public view virtual override(ERC721) returns (string memory) { require(ownerOf(tokenId) != address(0)); string memory encoded = string( abi.encodePacked( 'data:application/json;base64,', Base64.encode( bytes( abi.encodePacked( '{"name":"', _title, ' #', Strings.toString(tokenId), '", "description":"', _description, '", "image": "', _presetBaseURI, _assetHash, '" }' ) ) ) ) ); return encoded; } bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584; bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a; function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) { return interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981 || super.supportsInterface(interfaceId); } function getFeeRecipients(uint256 tokenId) public view returns (address payable[] memory) { address payable[] memory recipients = new address payable[](2); recipients[0] = payable(0xeEE5Eb24E7A0EA53B75a1b9aD72e7D20562f4283); recipients[1] = payable(0x148e2ED011A9EAAa200795F62889D68153EEacdE); return recipients; } function getFeeBps(uint256 tokenId) public view returns (uint[] memory) { uint[] memory fees = new uint[](2); fees[0] = 500; fees[1] = 500; return fees; } function royaltyInfo(uint256 tokenId, uint256 value) public view returns (address recipient, uint256 amount){ return (0x148e2ED011A9EAAa200795F62889D68153EEacdE, 500 * value / 10000); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @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 {} }
// SPDX-License-Identifier: MIT 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); } }
// SPDX-License-Identifier: MIT /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides a function for encoding some bytes in base64 library Base64 { string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { dataPtr := add(dataPtr, 3) // read 3 bytes let input := mload(dataPtr) // write 4 characters mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and( input, 0x3F))))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT 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); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"assetHash","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"winner","type":"address"}],"name":"mintPrize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingFinalized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"string","name":"asset","type":"string"}],"name":"updateAsset","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280601581526020017f426f72656420696e20746865204469737472696b74000000000000000000000081525060079080519060200190620000519291906200026b565b506040518060a001604052806071815260200162003f3c6071913960089080519060200190620000839291906200026b565b506040518060400160405280601481526020017f68747470733a2f2f617277656176652e6e65742f00000000000000000000000081525060099080519060200190620000d19291906200026b565b506001600c55348015620000e457600080fd5b5060405162003fad38038062003fad83398181016040528101906200010a91906200038d565b82828160009080519060200190620001249291906200026b565b5080600190805190602001906200013d9291906200026b565b50505062000160620001546200019d60201b60201c565b620001a560201b60201c565b80600a9080519060200190620001789291906200026b565b506000600b60006101000a81548160ff0219169083151502179055505050506200059e565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027990620004c3565b90600052602060002090601f0160209004810192826200029d5760008555620002e9565b82601f10620002b857805160ff1916838001178555620002e9565b82800160010185558215620002e9579182015b82811115620002e8578251825591602001919060010190620002cb565b5b509050620002f89190620002fc565b5090565b5b8082111562000317576000816000905550600101620002fd565b5090565b6000620003326200032c8462000457565b6200042e565b9050828152602081018484840111156200034b57600080fd5b620003588482856200048d565b509392505050565b600082601f8301126200037257600080fd5b8151620003848482602086016200031b565b91505092915050565b600080600060608486031215620003a357600080fd5b600084015167ffffffffffffffff811115620003be57600080fd5b620003cc8682870162000360565b935050602084015167ffffffffffffffff811115620003ea57600080fd5b620003f88682870162000360565b925050604084015167ffffffffffffffff8111156200041657600080fd5b620004248682870162000360565b9150509250925092565b60006200043a6200044d565b9050620004488282620004f9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200047557620004746200055e565b5b62000480826200058d565b9050602081019050919050565b60005b83811015620004ad57808201518184015260208101905062000490565b83811115620004bd576000848401525b50505050565b60006002820490506001821680620004dc57607f821691505b60208210811415620004f357620004f26200052f565b5b50919050565b62000504826200058d565b810181811067ffffffffffffffff821117156200052657620005256200055e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61398e80620005ae6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde14610376578063b9c4d9fb14610392578063c54216b4146103c2578063c87b56dd146103de578063e985e9c51461040e578063f2fde38b1461043e57610142565b806370a08231146102e4578063715018a6146103145780638da5cb5b1461031e57806395d89b411461033c578063a22cb4651461035a57610142565b806316b0ae5e1161010a57806316b0ae5e1461021157806323b872dd1461022d5780632a55205a1461024957806342842e0e1461027a5780634934bf5c146102965780636352211e146102b457610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c55780630ebd4c7f146101e1575b600080fd5b610161600480360381019061015c9190612499565b61045a565b60405161016e9190612c64565b60405180910390f35b61017f61050a565b60405161018c9190612c7f565b60405180910390f35b6101af60048036038101906101aa919061252c565b61059c565b6040516101bc9190612b90565b60405180910390f35b6101df60048036038101906101da919061245d565b610621565b005b6101fb60048036038101906101f6919061252c565b610739565b6040516102089190612c42565b60405180910390f35b61022b600480360381019061022691906122f2565b61084a565b005b61024760048036038101906102429190612357565b610932565b005b610263600480360381019061025e9190612555565b610992565b604051610271929190612bf7565b60405180910390f35b610294600480360381019061028f9190612357565b6109d0565b005b61029e6109f0565b6040516102ab9190612c64565b60405180910390f35b6102ce60048036038101906102c9919061252c565b610a03565b6040516102db9190612b90565b60405180910390f35b6102fe60048036038101906102f991906122f2565b610ab5565b60405161030b9190612ea1565b60405180910390f35b61031c610b6d565b005b610326610bf5565b6040516103339190612b90565b60405180910390f35b610344610c1f565b6040516103519190612c7f565b60405180910390f35b610374600480360381019061036f9190612421565b610cb1565b005b610390600480360381019061038b91906123a6565b610e32565b005b6103ac60048036038101906103a7919061252c565b610e94565b6040516103b99190612c20565b60405180910390f35b6103dc60048036038101906103d791906124eb565b611025565b005b6103f860048036038101906103f3919061252c565b6110bb565b6040516104059190612c7f565b60405180910390f35b6104286004803603810190610423919061231b565b611167565b6040516104359190612c64565b60405180910390f35b610458600480360381019061045391906122f2565b6111fb565b005b600063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f35750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105035750610502826112f3565b5b9050919050565b606060008054610519906131ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610545906131ea565b80156105925780601f1061056757610100808354040283529160200191610592565b820191906000526020600020905b81548152906001019060200180831161057557829003601f168201915b5050505050905090565b60006105a7826113d5565b6105e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105dd90612e01565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061062c82610a03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561069d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069490612e61565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106bc611441565b73ffffffffffffffffffffffffffffffffffffffff1614806106eb57506106ea816106e5611441565b611167565b5b61072a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072190612d81565b60405180910390fd5b6107348383611449565b505050565b60606000600267ffffffffffffffff81111561077e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107ac5781602001602082028036833780820191505090505b5090506101f4816000815181106107ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506101f481600181518110610835577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b610852611441565b73ffffffffffffffffffffffffffffffffffffffff16610870610bf5565b73ffffffffffffffffffffffffffffffffffffffff16146108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90612e21565b60405180910390fd5b6064600c541061090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290612d41565b60405180910390fd5b61091781600c54611502565b600c600081548092919061092a9061324d565b919050555050565b61094361093d611441565b82611520565b610982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097990612e81565b60405180910390fd5b61098d8383836115fe565b505050565b60008073148e2ed011a9eaaa200795f62889d68153eeacde612710846101f46109bb9190613094565b6109c59190613063565b915091509250929050565b6109eb83838360405180602001604052806000815250610e32565b505050565b600b60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390612dc1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90612da1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b75611441565b73ffffffffffffffffffffffffffffffffffffffff16610b93610bf5565b73ffffffffffffffffffffffffffffffffffffffff1614610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090612e21565b60405180910390fd5b610bf3600061185a565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c2e906131ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5a906131ea565b8015610ca75780601f10610c7c57610100808354040283529160200191610ca7565b820191906000526020600020905b815481529060010190602001808311610c8a57829003601f168201915b5050505050905090565b610cb9611441565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90612d21565b60405180910390fd5b8060056000610d34611441565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610de1611441565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e269190612c64565b60405180910390a35050565b610e43610e3d611441565b83611520565b610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990612e81565b60405180910390fd5b610e8e84848484611920565b50505050565b60606000600267ffffffffffffffff811115610ed9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f075781602001602082028036833780820191505090505b50905073eee5eb24e7a0ea53b75a1b9ad72e7d20562f428381600081518110610f59577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073148e2ed011a9eaaa200795f62889d68153eeacde81600181518110610fe2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080915050919050565b61102d611441565b73ffffffffffffffffffffffffffffffffffffffff1661104b610bf5565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890612e21565b60405180910390fd5b80600a90805190602001906110b7929190612116565b5050565b6060600073ffffffffffffffffffffffffffffffffffffffff166110de83610a03565b73ffffffffffffffffffffffffffffffffffffffff1614156110ff57600080fd5b600061113d600761110f8561197c565b60086009600a604051602001611129959493929190612aec565b604051602081830303815290604052611b29565b60405160200161114d9190612b6e565b604051602081830303815290604052905080915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611203611441565b73ffffffffffffffffffffffffffffffffffffffff16611221610bf5565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90612e21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90612cc1565b60405180910390fd5b6112f08161185a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806113be57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806113ce57506113cd82611cd4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114bc83610a03565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61151c828260405180602001604052806000815250611d3e565b5050565b600061152b826113d5565b61156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190612d61565b60405180910390fd5b600061157583610a03565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115e457508373ffffffffffffffffffffffffffffffffffffffff166115cc8461059c565b73ffffffffffffffffffffffffffffffffffffffff16145b806115f557506115f48185611167565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661161e82610a03565b73ffffffffffffffffffffffffffffffffffffffff1614611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90612e41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90612d01565b60405180910390fd5b6116ef838383611d99565b6116fa600082611449565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461174a91906130ee565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a1919061300d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61192b8484846115fe565b61193784848484611d9e565b611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90612ca1565b60405180910390fd5b50505050565b606060008214156119c4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b24565b600082905060005b600082146119f65780806119df9061324d565b915050600a826119ef9190613063565b91506119cc565b60008167ffffffffffffffff811115611a38577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a6a5781602001600182028036833780820191505090505b5090505b60008514611b1d57600182611a8391906130ee565b9150600a85611a929190613296565b6030611a9e919061300d565b60f81b818381518110611ada577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b169190613063565b9450611a6e565b8093505050505b919050565b6060600082511415611b4c57604051806020016040528060008152509050611ccf565b60006040518060600160405280604081526020016139196040913990506000600360028551611b7b919061300d565b611b859190613063565b6004611b919190613094565b90506000602082611ba2919061300d565b67ffffffffffffffff811115611be1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c135781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611c8e576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050611c27565b600389510660018114611ca85760028114611cb857611cc3565b613d3d60f01b6002830352611cc3565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d488383611f35565b611d556000848484611d9e565b611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90612ca1565b60405180910390fd5b505050565b505050565b6000611dbf8473ffffffffffffffffffffffffffffffffffffffff16612103565b15611f28578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de8611441565b8786866040518563ffffffff1660e01b8152600401611e0a9493929190612bab565b602060405180830381600087803b158015611e2457600080fd5b505af1925050508015611e5557506040513d601f19601f82011682018060405250810190611e5291906124c2565b60015b611ed8573d8060008114611e85576040519150601f19603f3d011682016040523d82523d6000602084013e611e8a565b606091505b50600081511415611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec790612ca1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f2d565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90612de1565b60405180910390fd5b611fae816113d5565b15611fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe590612ce1565b60405180910390fd5b611ffa60008383611d99565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204a919061300d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612122906131ea565b90600052602060002090601f016020900481019282612144576000855561218b565b82601f1061215d57805160ff191683800117855561218b565b8280016001018555821561218b579182015b8281111561218a57825182559160200191906001019061216f565b5b509050612198919061219c565b5090565b5b808211156121b557600081600090555060010161219d565b5090565b60006121cc6121c784612ee1565b612ebc565b9050828152602081018484840111156121e457600080fd5b6121ef8482856131a8565b509392505050565b600061220a61220584612f12565b612ebc565b90508281526020810184848401111561222257600080fd5b61222d8482856131a8565b509392505050565b600081359050612244816138bc565b92915050565b600081359050612259816138d3565b92915050565b60008135905061226e816138ea565b92915050565b600081519050612283816138ea565b92915050565b600082601f83011261229a57600080fd5b81356122aa8482602086016121b9565b91505092915050565b600082601f8301126122c457600080fd5b81356122d48482602086016121f7565b91505092915050565b6000813590506122ec81613901565b92915050565b60006020828403121561230457600080fd5b600061231284828501612235565b91505092915050565b6000806040838503121561232e57600080fd5b600061233c85828601612235565b925050602061234d85828601612235565b9150509250929050565b60008060006060848603121561236c57600080fd5b600061237a86828701612235565b935050602061238b86828701612235565b925050604061239c868287016122dd565b9150509250925092565b600080600080608085870312156123bc57600080fd5b60006123ca87828801612235565b94505060206123db87828801612235565b93505060406123ec878288016122dd565b925050606085013567ffffffffffffffff81111561240957600080fd5b61241587828801612289565b91505092959194509250565b6000806040838503121561243457600080fd5b600061244285828601612235565b92505060206124538582860161224a565b9150509250929050565b6000806040838503121561247057600080fd5b600061247e85828601612235565b925050602061248f858286016122dd565b9150509250929050565b6000602082840312156124ab57600080fd5b60006124b98482850161225f565b91505092915050565b6000602082840312156124d457600080fd5b60006124e284828501612274565b91505092915050565b6000602082840312156124fd57600080fd5b600082013567ffffffffffffffff81111561251757600080fd5b612523848285016122b3565b91505092915050565b60006020828403121561253e57600080fd5b600061254c848285016122dd565b91505092915050565b6000806040838503121561256857600080fd5b6000612576858286016122dd565b9250506020612587858286016122dd565b9150509250929050565b600061259d83836125c1565b60208301905092915050565b60006125b58383612ace565b60208301905092915050565b6125ca81613134565b82525050565b6125d981613122565b82525050565b60006125ea82612f78565b6125f48185612fbe565b93506125ff83612f43565b8060005b838110156126305781516126178882612591565b975061262283612fa4565b925050600181019050612603565b5085935050505092915050565b600061264882612f83565b6126528185612fcf565b935061265d83612f53565b8060005b8381101561268e57815161267588826125a9565b975061268083612fb1565b925050600181019050612661565b5085935050505092915050565b6126a481613146565b82525050565b60006126b582612f8e565b6126bf8185612fe0565b93506126cf8185602086016131b7565b6126d881613383565b840191505092915050565b60006126ee82612f99565b6126f88185612ff1565b93506127088185602086016131b7565b61271181613383565b840191505092915050565b600061272782612f99565b6127318185613002565b93506127418185602086016131b7565b80840191505092915050565b6000815461275a816131ea565b6127648186613002565b9450600182166000811461277f5760018114612790576127c3565b60ff198316865281860193506127c3565b61279985612f63565b60005b838110156127bb5781548189015260018201915060208101905061279c565b838801955050505b50505092915050565b60006127d9600983613002565b91506127e482613394565b600982019050919050565b60006127fc603283612ff1565b9150612807826133bd565b604082019050919050565b600061281f600283613002565b915061282a8261340c565b600282019050919050565b6000612842602683612ff1565b915061284d82613435565b604082019050919050565b6000612865601c83612ff1565b915061287082613484565b602082019050919050565b6000612888602483612ff1565b9150612893826134ad565b604082019050919050565b60006128ab601983612ff1565b91506128b6826134fc565b602082019050919050565b60006128ce601583612ff1565b91506128d982613525565b602082019050919050565b60006128f1600383613002565b91506128fc8261354e565b600382019050919050565b6000612914602c83612ff1565b915061291f82613577565b604082019050919050565b6000612937603883612ff1565b9150612942826135c6565b604082019050919050565b600061295a602a83612ff1565b915061296582613615565b604082019050919050565b600061297d602983612ff1565b915061298882613664565b604082019050919050565b60006129a0602083612ff1565b91506129ab826136b3565b602082019050919050565b60006129c3600d83613002565b91506129ce826136dc565b600d82019050919050565b60006129e6602c83612ff1565b91506129f182613705565b604082019050919050565b6000612a09601283613002565b9150612a1482613754565b601282019050919050565b6000612a2c602083612ff1565b9150612a378261377d565b602082019050919050565b6000612a4f602983612ff1565b9150612a5a826137a6565b604082019050919050565b6000612a72602183612ff1565b9150612a7d826137f5565b604082019050919050565b6000612a95601d83613002565b9150612aa082613844565b601d82019050919050565b6000612ab8603183612ff1565b9150612ac38261386d565b604082019050919050565b612ad78161319e565b82525050565b612ae68161319e565b82525050565b6000612af7826127cc565b9150612b03828861274d565b9150612b0e82612812565b9150612b1a828761271c565b9150612b25826129fc565b9150612b31828661274d565b9150612b3c826129b6565b9150612b48828561274d565b9150612b54828461274d565b9150612b5f826128e4565b91508190509695505050505050565b6000612b7982612a88565b9150612b85828461271c565b915081905092915050565b6000602082019050612ba560008301846125d0565b92915050565b6000608082019050612bc060008301876125d0565b612bcd60208301866125d0565b612bda6040830185612add565b8181036060830152612bec81846126aa565b905095945050505050565b6000604082019050612c0c60008301856125d0565b612c196020830184612add565b9392505050565b60006020820190508181036000830152612c3a81846125df565b905092915050565b60006020820190508181036000830152612c5c818461263d565b905092915050565b6000602082019050612c79600083018461269b565b92915050565b60006020820190508181036000830152612c9981846126e3565b905092915050565b60006020820190508181036000830152612cba816127ef565b9050919050565b60006020820190508181036000830152612cda81612835565b9050919050565b60006020820190508181036000830152612cfa81612858565b9050919050565b60006020820190508181036000830152612d1a8161287b565b9050919050565b60006020820190508181036000830152612d3a8161289e565b9050919050565b60006020820190508181036000830152612d5a816128c1565b9050919050565b60006020820190508181036000830152612d7a81612907565b9050919050565b60006020820190508181036000830152612d9a8161292a565b9050919050565b60006020820190508181036000830152612dba8161294d565b9050919050565b60006020820190508181036000830152612dda81612970565b9050919050565b60006020820190508181036000830152612dfa81612993565b9050919050565b60006020820190508181036000830152612e1a816129d9565b9050919050565b60006020820190508181036000830152612e3a81612a1f565b9050919050565b60006020820190508181036000830152612e5a81612a42565b9050919050565b60006020820190508181036000830152612e7a81612a65565b9050919050565b60006020820190508181036000830152612e9a81612aab565b9050919050565b6000602082019050612eb66000830184612add565b92915050565b6000612ec6612ed7565b9050612ed2828261321c565b919050565b6000604051905090565b600067ffffffffffffffff821115612efc57612efb613354565b5b612f0582613383565b9050602081019050919050565b600067ffffffffffffffff821115612f2d57612f2c613354565b5b612f3682613383565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006130188261319e565b91506130238361319e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613058576130576132c7565b5b828201905092915050565b600061306e8261319e565b91506130798361319e565b925082613089576130886132f6565b5b828204905092915050565b600061309f8261319e565b91506130aa8361319e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130e3576130e26132c7565b5b828202905092915050565b60006130f98261319e565b91506131048361319e565b925082821015613117576131166132c7565b5b828203905092915050565b600061312d8261317e565b9050919050565b600061313f8261317e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131d55780820151818401526020810190506131ba565b838111156131e4576000848401525b50505050565b6000600282049050600182168061320257607f821691505b6020821081141561321657613215613325565b5b50919050565b61322582613383565b810181811067ffffffffffffffff8211171561324457613243613354565b5b80604052505050565b60006132588261319e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561328b5761328a6132c7565b5b600182019050919050565b60006132a18261319e565b91506132ac8361319e565b9250826132bc576132bb6132f6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f2023000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e74696e672068617320636f6e636c756465640000000000000000000000600082015250565b7f22207d0000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f222c2022696d616765223a202200000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a220000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6138c581613122565b81146138d057600080fd5b50565b6138dc81613146565b81146138e757600080fd5b50565b6138f381613152565b81146138fe57600080fd5b50565b61390a8161319e565b811461391557600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212201d05afe88b0bbc63905ac59dc70501dbcd50758660e33cb54b99d5b31429ac4664736f6c634300080400335072697a65204e465420666f7220426f72656420696e207468652044697374726963742067616d652062656174206d617374657273202d204d6164652077697468203c3320627920636f696e206172746973742c20696c6c65737472617465722c20262063757274697320726f6163682e000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000015426f72656420696e207468652044697374726963740000000000000000000000000000000000000000000000000000000000000000000000000000000000000654494b544f4b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b626e6a78567449474f646d65614945785f58585f6b3466757a7642456a5467544d6578384238685a784273000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde14610376578063b9c4d9fb14610392578063c54216b4146103c2578063c87b56dd146103de578063e985e9c51461040e578063f2fde38b1461043e57610142565b806370a08231146102e4578063715018a6146103145780638da5cb5b1461031e57806395d89b411461033c578063a22cb4651461035a57610142565b806316b0ae5e1161010a57806316b0ae5e1461021157806323b872dd1461022d5780632a55205a1461024957806342842e0e1461027a5780634934bf5c146102965780636352211e146102b457610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c55780630ebd4c7f146101e1575b600080fd5b610161600480360381019061015c9190612499565b61045a565b60405161016e9190612c64565b60405180910390f35b61017f61050a565b60405161018c9190612c7f565b60405180910390f35b6101af60048036038101906101aa919061252c565b61059c565b6040516101bc9190612b90565b60405180910390f35b6101df60048036038101906101da919061245d565b610621565b005b6101fb60048036038101906101f6919061252c565b610739565b6040516102089190612c42565b60405180910390f35b61022b600480360381019061022691906122f2565b61084a565b005b61024760048036038101906102429190612357565b610932565b005b610263600480360381019061025e9190612555565b610992565b604051610271929190612bf7565b60405180910390f35b610294600480360381019061028f9190612357565b6109d0565b005b61029e6109f0565b6040516102ab9190612c64565b60405180910390f35b6102ce60048036038101906102c9919061252c565b610a03565b6040516102db9190612b90565b60405180910390f35b6102fe60048036038101906102f991906122f2565b610ab5565b60405161030b9190612ea1565b60405180910390f35b61031c610b6d565b005b610326610bf5565b6040516103339190612b90565b60405180910390f35b610344610c1f565b6040516103519190612c7f565b60405180910390f35b610374600480360381019061036f9190612421565b610cb1565b005b610390600480360381019061038b91906123a6565b610e32565b005b6103ac60048036038101906103a7919061252c565b610e94565b6040516103b99190612c20565b60405180910390f35b6103dc60048036038101906103d791906124eb565b611025565b005b6103f860048036038101906103f3919061252c565b6110bb565b6040516104059190612c7f565b60405180910390f35b6104286004803603810190610423919061231b565b611167565b6040516104359190612c64565b60405180910390f35b610458600480360381019061045391906122f2565b6111fb565b005b600063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f35750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105035750610502826112f3565b5b9050919050565b606060008054610519906131ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610545906131ea565b80156105925780601f1061056757610100808354040283529160200191610592565b820191906000526020600020905b81548152906001019060200180831161057557829003601f168201915b5050505050905090565b60006105a7826113d5565b6105e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105dd90612e01565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061062c82610a03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561069d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069490612e61565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106bc611441565b73ffffffffffffffffffffffffffffffffffffffff1614806106eb57506106ea816106e5611441565b611167565b5b61072a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072190612d81565b60405180910390fd5b6107348383611449565b505050565b60606000600267ffffffffffffffff81111561077e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156107ac5781602001602082028036833780820191505090505b5090506101f4816000815181106107ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506101f481600181518110610835577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b610852611441565b73ffffffffffffffffffffffffffffffffffffffff16610870610bf5565b73ffffffffffffffffffffffffffffffffffffffff16146108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90612e21565b60405180910390fd5b6064600c541061090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290612d41565b60405180910390fd5b61091781600c54611502565b600c600081548092919061092a9061324d565b919050555050565b61094361093d611441565b82611520565b610982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097990612e81565b60405180910390fd5b61098d8383836115fe565b505050565b60008073148e2ed011a9eaaa200795f62889d68153eeacde612710846101f46109bb9190613094565b6109c59190613063565b915091509250929050565b6109eb83838360405180602001604052806000815250610e32565b505050565b600b60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390612dc1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90612da1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b75611441565b73ffffffffffffffffffffffffffffffffffffffff16610b93610bf5565b73ffffffffffffffffffffffffffffffffffffffff1614610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090612e21565b60405180910390fd5b610bf3600061185a565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c2e906131ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5a906131ea565b8015610ca75780601f10610c7c57610100808354040283529160200191610ca7565b820191906000526020600020905b815481529060010190602001808311610c8a57829003601f168201915b5050505050905090565b610cb9611441565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90612d21565b60405180910390fd5b8060056000610d34611441565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610de1611441565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e269190612c64565b60405180910390a35050565b610e43610e3d611441565b83611520565b610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990612e81565b60405180910390fd5b610e8e84848484611920565b50505050565b60606000600267ffffffffffffffff811115610ed9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f075781602001602082028036833780820191505090505b50905073eee5eb24e7a0ea53b75a1b9ad72e7d20562f428381600081518110610f59577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073148e2ed011a9eaaa200795f62889d68153eeacde81600181518110610fe2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080915050919050565b61102d611441565b73ffffffffffffffffffffffffffffffffffffffff1661104b610bf5565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890612e21565b60405180910390fd5b80600a90805190602001906110b7929190612116565b5050565b6060600073ffffffffffffffffffffffffffffffffffffffff166110de83610a03565b73ffffffffffffffffffffffffffffffffffffffff1614156110ff57600080fd5b600061113d600761110f8561197c565b60086009600a604051602001611129959493929190612aec565b604051602081830303815290604052611b29565b60405160200161114d9190612b6e565b604051602081830303815290604052905080915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611203611441565b73ffffffffffffffffffffffffffffffffffffffff16611221610bf5565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90612e21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90612cc1565b60405180910390fd5b6112f08161185a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806113be57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806113ce57506113cd82611cd4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114bc83610a03565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61151c828260405180602001604052806000815250611d3e565b5050565b600061152b826113d5565b61156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190612d61565b60405180910390fd5b600061157583610a03565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115e457508373ffffffffffffffffffffffffffffffffffffffff166115cc8461059c565b73ffffffffffffffffffffffffffffffffffffffff16145b806115f557506115f48185611167565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661161e82610a03565b73ffffffffffffffffffffffffffffffffffffffff1614611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90612e41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90612d01565b60405180910390fd5b6116ef838383611d99565b6116fa600082611449565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461174a91906130ee565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a1919061300d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61192b8484846115fe565b61193784848484611d9e565b611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90612ca1565b60405180910390fd5b50505050565b606060008214156119c4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b24565b600082905060005b600082146119f65780806119df9061324d565b915050600a826119ef9190613063565b91506119cc565b60008167ffffffffffffffff811115611a38577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a6a5781602001600182028036833780820191505090505b5090505b60008514611b1d57600182611a8391906130ee565b9150600a85611a929190613296565b6030611a9e919061300d565b60f81b818381518110611ada577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b169190613063565b9450611a6e565b8093505050505b919050565b6060600082511415611b4c57604051806020016040528060008152509050611ccf565b60006040518060600160405280604081526020016139196040913990506000600360028551611b7b919061300d565b611b859190613063565b6004611b919190613094565b90506000602082611ba2919061300d565b67ffffffffffffffff811115611be1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c135781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611c8e576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050611c27565b600389510660018114611ca85760028114611cb857611cc3565b613d3d60f01b6002830352611cc3565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d488383611f35565b611d556000848484611d9e565b611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90612ca1565b60405180910390fd5b505050565b505050565b6000611dbf8473ffffffffffffffffffffffffffffffffffffffff16612103565b15611f28578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de8611441565b8786866040518563ffffffff1660e01b8152600401611e0a9493929190612bab565b602060405180830381600087803b158015611e2457600080fd5b505af1925050508015611e5557506040513d601f19601f82011682018060405250810190611e5291906124c2565b60015b611ed8573d8060008114611e85576040519150601f19603f3d011682016040523d82523d6000602084013e611e8a565b606091505b50600081511415611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec790612ca1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f2d565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90612de1565b60405180910390fd5b611fae816113d5565b15611fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe590612ce1565b60405180910390fd5b611ffa60008383611d99565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204a919061300d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612122906131ea565b90600052602060002090601f016020900481019282612144576000855561218b565b82601f1061215d57805160ff191683800117855561218b565b8280016001018555821561218b579182015b8281111561218a57825182559160200191906001019061216f565b5b509050612198919061219c565b5090565b5b808211156121b557600081600090555060010161219d565b5090565b60006121cc6121c784612ee1565b612ebc565b9050828152602081018484840111156121e457600080fd5b6121ef8482856131a8565b509392505050565b600061220a61220584612f12565b612ebc565b90508281526020810184848401111561222257600080fd5b61222d8482856131a8565b509392505050565b600081359050612244816138bc565b92915050565b600081359050612259816138d3565b92915050565b60008135905061226e816138ea565b92915050565b600081519050612283816138ea565b92915050565b600082601f83011261229a57600080fd5b81356122aa8482602086016121b9565b91505092915050565b600082601f8301126122c457600080fd5b81356122d48482602086016121f7565b91505092915050565b6000813590506122ec81613901565b92915050565b60006020828403121561230457600080fd5b600061231284828501612235565b91505092915050565b6000806040838503121561232e57600080fd5b600061233c85828601612235565b925050602061234d85828601612235565b9150509250929050565b60008060006060848603121561236c57600080fd5b600061237a86828701612235565b935050602061238b86828701612235565b925050604061239c868287016122dd565b9150509250925092565b600080600080608085870312156123bc57600080fd5b60006123ca87828801612235565b94505060206123db87828801612235565b93505060406123ec878288016122dd565b925050606085013567ffffffffffffffff81111561240957600080fd5b61241587828801612289565b91505092959194509250565b6000806040838503121561243457600080fd5b600061244285828601612235565b92505060206124538582860161224a565b9150509250929050565b6000806040838503121561247057600080fd5b600061247e85828601612235565b925050602061248f858286016122dd565b9150509250929050565b6000602082840312156124ab57600080fd5b60006124b98482850161225f565b91505092915050565b6000602082840312156124d457600080fd5b60006124e284828501612274565b91505092915050565b6000602082840312156124fd57600080fd5b600082013567ffffffffffffffff81111561251757600080fd5b612523848285016122b3565b91505092915050565b60006020828403121561253e57600080fd5b600061254c848285016122dd565b91505092915050565b6000806040838503121561256857600080fd5b6000612576858286016122dd565b9250506020612587858286016122dd565b9150509250929050565b600061259d83836125c1565b60208301905092915050565b60006125b58383612ace565b60208301905092915050565b6125ca81613134565b82525050565b6125d981613122565b82525050565b60006125ea82612f78565b6125f48185612fbe565b93506125ff83612f43565b8060005b838110156126305781516126178882612591565b975061262283612fa4565b925050600181019050612603565b5085935050505092915050565b600061264882612f83565b6126528185612fcf565b935061265d83612f53565b8060005b8381101561268e57815161267588826125a9565b975061268083612fb1565b925050600181019050612661565b5085935050505092915050565b6126a481613146565b82525050565b60006126b582612f8e565b6126bf8185612fe0565b93506126cf8185602086016131b7565b6126d881613383565b840191505092915050565b60006126ee82612f99565b6126f88185612ff1565b93506127088185602086016131b7565b61271181613383565b840191505092915050565b600061272782612f99565b6127318185613002565b93506127418185602086016131b7565b80840191505092915050565b6000815461275a816131ea565b6127648186613002565b9450600182166000811461277f5760018114612790576127c3565b60ff198316865281860193506127c3565b61279985612f63565b60005b838110156127bb5781548189015260018201915060208101905061279c565b838801955050505b50505092915050565b60006127d9600983613002565b91506127e482613394565b600982019050919050565b60006127fc603283612ff1565b9150612807826133bd565b604082019050919050565b600061281f600283613002565b915061282a8261340c565b600282019050919050565b6000612842602683612ff1565b915061284d82613435565b604082019050919050565b6000612865601c83612ff1565b915061287082613484565b602082019050919050565b6000612888602483612ff1565b9150612893826134ad565b604082019050919050565b60006128ab601983612ff1565b91506128b6826134fc565b602082019050919050565b60006128ce601583612ff1565b91506128d982613525565b602082019050919050565b60006128f1600383613002565b91506128fc8261354e565b600382019050919050565b6000612914602c83612ff1565b915061291f82613577565b604082019050919050565b6000612937603883612ff1565b9150612942826135c6565b604082019050919050565b600061295a602a83612ff1565b915061296582613615565b604082019050919050565b600061297d602983612ff1565b915061298882613664565b604082019050919050565b60006129a0602083612ff1565b91506129ab826136b3565b602082019050919050565b60006129c3600d83613002565b91506129ce826136dc565b600d82019050919050565b60006129e6602c83612ff1565b91506129f182613705565b604082019050919050565b6000612a09601283613002565b9150612a1482613754565b601282019050919050565b6000612a2c602083612ff1565b9150612a378261377d565b602082019050919050565b6000612a4f602983612ff1565b9150612a5a826137a6565b604082019050919050565b6000612a72602183612ff1565b9150612a7d826137f5565b604082019050919050565b6000612a95601d83613002565b9150612aa082613844565b601d82019050919050565b6000612ab8603183612ff1565b9150612ac38261386d565b604082019050919050565b612ad78161319e565b82525050565b612ae68161319e565b82525050565b6000612af7826127cc565b9150612b03828861274d565b9150612b0e82612812565b9150612b1a828761271c565b9150612b25826129fc565b9150612b31828661274d565b9150612b3c826129b6565b9150612b48828561274d565b9150612b54828461274d565b9150612b5f826128e4565b91508190509695505050505050565b6000612b7982612a88565b9150612b85828461271c565b915081905092915050565b6000602082019050612ba560008301846125d0565b92915050565b6000608082019050612bc060008301876125d0565b612bcd60208301866125d0565b612bda6040830185612add565b8181036060830152612bec81846126aa565b905095945050505050565b6000604082019050612c0c60008301856125d0565b612c196020830184612add565b9392505050565b60006020820190508181036000830152612c3a81846125df565b905092915050565b60006020820190508181036000830152612c5c818461263d565b905092915050565b6000602082019050612c79600083018461269b565b92915050565b60006020820190508181036000830152612c9981846126e3565b905092915050565b60006020820190508181036000830152612cba816127ef565b9050919050565b60006020820190508181036000830152612cda81612835565b9050919050565b60006020820190508181036000830152612cfa81612858565b9050919050565b60006020820190508181036000830152612d1a8161287b565b9050919050565b60006020820190508181036000830152612d3a8161289e565b9050919050565b60006020820190508181036000830152612d5a816128c1565b9050919050565b60006020820190508181036000830152612d7a81612907565b9050919050565b60006020820190508181036000830152612d9a8161292a565b9050919050565b60006020820190508181036000830152612dba8161294d565b9050919050565b60006020820190508181036000830152612dda81612970565b9050919050565b60006020820190508181036000830152612dfa81612993565b9050919050565b60006020820190508181036000830152612e1a816129d9565b9050919050565b60006020820190508181036000830152612e3a81612a1f565b9050919050565b60006020820190508181036000830152612e5a81612a42565b9050919050565b60006020820190508181036000830152612e7a81612a65565b9050919050565b60006020820190508181036000830152612e9a81612aab565b9050919050565b6000602082019050612eb66000830184612add565b92915050565b6000612ec6612ed7565b9050612ed2828261321c565b919050565b6000604051905090565b600067ffffffffffffffff821115612efc57612efb613354565b5b612f0582613383565b9050602081019050919050565b600067ffffffffffffffff821115612f2d57612f2c613354565b5b612f3682613383565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006130188261319e565b91506130238361319e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613058576130576132c7565b5b828201905092915050565b600061306e8261319e565b91506130798361319e565b925082613089576130886132f6565b5b828204905092915050565b600061309f8261319e565b91506130aa8361319e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130e3576130e26132c7565b5b828202905092915050565b60006130f98261319e565b91506131048361319e565b925082821015613117576131166132c7565b5b828203905092915050565b600061312d8261317e565b9050919050565b600061313f8261317e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131d55780820151818401526020810190506131ba565b838111156131e4576000848401525b50505050565b6000600282049050600182168061320257607f821691505b6020821081141561321657613215613325565b5b50919050565b61322582613383565b810181811067ffffffffffffffff8211171561324457613243613354565b5b80604052505050565b60006132588261319e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561328b5761328a6132c7565b5b600182019050919050565b60006132a18261319e565b91506132ac8361319e565b9250826132bc576132bb6132f6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f2023000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e74696e672068617320636f6e636c756465640000000000000000000000600082015250565b7f22207d0000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f222c2022696d616765223a202200000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a220000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6138c581613122565b81146138d057600080fd5b50565b6138dc81613146565b81146138e757600080fd5b50565b6138f381613152565b81146138fe57600080fd5b50565b61390a8161319e565b811461391557600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212201d05afe88b0bbc63905ac59dc70501dbcd50758660e33cb54b99d5b31429ac4664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000015426f72656420696e207468652044697374726963740000000000000000000000000000000000000000000000000000000000000000000000000000000000000654494b544f4b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b626e6a78567449474f646d65614945785f58585f6b3466757a7642456a5467544d6578384238685a784273000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Bored in the District
Arg [1] : symbol (string): TIKTOK
Arg [2] : assetHash (string): bnjxVtIGOdmeaIEx_XX_k4fuzvBEjTgTMex8B8hZxBs
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [4] : 426f72656420696e207468652044697374726963740000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 54494b544f4b0000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [8] : 626e6a78567449474f646d65614945785f58585f6b3466757a7642456a546754
Arg [9] : 4d6578384238685a784273000000000000000000000000000000000000000000
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.