ERC-721
Overview
Max Total Supply
247 STATS
Holders
91
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 STATSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Stats
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 pragma solidity ^0.8.0; import "./Base64.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; contract Stats is ERC721Enumerable, ReentrancyGuard { ERC721 public ogStrikers = ERC721(0xdCAad9Fd9a74144d226DbF94ce6162ca9f09ED7e); ERC721 public wrappedStrikers = ERC721(0x11739D7bd793543a6e83Bd7D8601fcbcDE04e798); string[] private countries = [ unicode"🇧🇪", unicode"🇧🇷", unicode"🇫🇷", unicode"🏴", unicode"🇮🇹", unicode"🇦🇷", unicode"🇪🇸", unicode"🇵🇹", unicode"🇲🇽", unicode"🇺🇸", unicode"🇩🇰", unicode"🇳🇱", unicode"🇺🇾", unicode"🇨🇭", unicode"🇨🇴", unicode"🇩🇪", unicode"🇸🇪", unicode"🇭🇷", unicode"🏴", unicode"🇨🇱", unicode"🇸🇳", unicode"🇵🇪", unicode"🇦🇹", unicode"🇯🇵", unicode"🇺🇦", unicode"🇮🇷", unicode"🇵🇱", unicode"🇹🇳", unicode"🇷🇸", unicode"🇩🇿", unicode"🇨🇿", unicode"🇲🇦", unicode"🇵🇾", unicode"🇳🇬", unicode"🇦🇺", unicode"🇰🇷", unicode"🇭🇺", unicode"🇸🇰", unicode"🇹🇷", unicode"🇻🇪", unicode"🇷🇺", unicode"🇶🇦", unicode"🇳🇴", unicode"🇨🇷", unicode"🇷🇴", unicode"🇪🇬", unicode"🇮🇪", unicode"🇬🇷", unicode"🏴", unicode"🇯🇲", unicode"🇬🇭", unicode"🇮🇸", unicode"🇨🇲", unicode"🇪🇨", unicode"🇫🇮", unicode"🇨🇮", unicode"🇧🇦", unicode"🇨🇦" ]; string[] private positions = [ "GK", "RB", "CB", "LB", "RWB", "LWB", "CDM", "CM", "CAM", "RM", "LM", "RW", "LW", "CF", "ST" ]; function randomNumberBetween0And(uint256 max, string memory input) internal pure returns (uint256) { return (uint256(keccak256(abi.encodePacked(input))) % max); } function getValue( uint256 tokenId, string memory key, string[] memory sourceArray ) internal pure returns (uint256) { string memory input = string(abi.encodePacked(key, toString(tokenId))); bool isStat = sourceArray.length == 0; return isStat ? 55 + randomNumberBetween0And(35, input) : randomNumberBetween0And(sourceArray.length, input); } function getCountry(uint256 tokenId) public view returns (uint256) { return getValue(tokenId, "Country", countries); } function getPosition(uint256 tokenId) public view returns (uint256) { return getValue(tokenId, "Position", positions); } function getFirstStat(uint256 tokenId) public pure returns (uint256) { string[] memory sourceArray; return getValue(tokenId, "First", sourceArray); } function getSecondStat(uint256 tokenId) public pure returns (uint256) { string[] memory sourceArray; return getValue(tokenId, "Second", sourceArray); } function getThirdStat(uint256 tokenId) public pure returns (uint256) { string[] memory sourceArray; return getValue(tokenId, "Third", sourceArray); } function getFourthStat(uint256 tokenId) public pure returns (uint256) { string[] memory sourceArray; return getValue(tokenId, "Fourth", sourceArray); } function getFifthStat(uint256 tokenId) public pure returns (uint256) { string[] memory sourceArray; return getValue(tokenId, "Fifth", sourceArray); } function getSixthStat(uint256 tokenId) public pure returns (uint256) { string[] memory sourceArray; return getValue(tokenId, "Sixth", sourceArray); } function concat(string memory key, string memory value) internal pure returns (string memory) { return string(abi.encodePacked(key, ": ", value)); } function tokenURI(uint256 tokenId) public view override returns (string memory) { uint256 position = getPosition(tokenId); bool isKeeper = position == 0; uint256 firstStat = getFirstStat(tokenId); uint256 secondStat = getSecondStat(tokenId); uint256 thirdStat = getThirdStat(tokenId); uint256 fourthStat = getFourthStat(tokenId); uint256 fifthStat = getFifthStat(tokenId); uint256 sixthStat = getSixthStat(tokenId); uint256 overall = (firstStat + secondStat + thirdStat + fourthStat + fifthStat + sixthStat) / 6; string[19] memory parts; parts[ 0 ] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="base">'; parts[1] = concat("Country", countries[getCountry(tokenId)]); parts[2] = '</text><text x="10" y="40" class="base">'; parts[3] = concat("Position", positions[position]); parts[4] = '</text><text x="10" y="60" class="base">'; parts[5] = concat("Overall", toString(overall)); parts[6] = '</text><text x="10" y="100" class="base">'; parts[7] = concat(isKeeper ? "Diving" : "Pace", toString(firstStat)); parts[8] = '</text><text x="10" y="120" class="base">'; parts[9] = concat( isKeeper ? "Handling" : "Shooting", toString(secondStat) ); parts[10] = '</text><text x="10" y="140" class="base">'; parts[11] = concat( isKeeper ? "Kicking" : "Passing", toString(thirdStat) ); parts[12] = '</text><text x="10" y="160" class="base">'; parts[13] = concat( isKeeper ? "Reflexes" : "Dribbling", toString(fourthStat) ); parts[14] = '</text><text x="10" y="180" class="base">'; parts[15] = concat( isKeeper ? "Speed" : "Defending", toString(fifthStat) ); parts[16] = '</text><text x="10" y="200" class="base">'; parts[17] = concat( isKeeper ? "Positioning" : "Physical", toString(sixthStat) ); parts[18] = "</text></svg>"; string memory output = string( abi.encodePacked( parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8] ) ); output = string( abi.encodePacked( output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14], parts[15], parts[16], parts[17], parts[18] ) ); string memory json = Base64.encode( bytes( string( abi.encodePacked( '{"name": "Player #', toString(tokenId), '", "description": "STATS are randomized player attributes generated and stored on chain. Feel free to use STATS in any way you want.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}' ) ) ) ); output = string( abi.encodePacked("data:application/json;base64,", json) ); return output; } function claim(uint256 tokenId) public nonReentrant { require(tokenId > 10260 && tokenId < 11111, "Token ID invalid"); _safeMint(_msgSender(), tokenId); } function claimWithStriker(uint256 tokenId) public nonReentrant { bool ownsOG = ogStrikers.ownerOf(tokenId) == msg.sender; bool ownsWrapped = wrappedStrikers.ownerOf(tokenId) == msg.sender; require(ownsOG || ownsWrapped, "You don't own this Striker!"); _safeMint(_msgSender(), tokenId); } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // 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); } constructor() ERC721("Stats", "STATS") {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF) ) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF) ) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF) ) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// 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; 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 "./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; } }
// 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 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 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 "../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; /** * @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; /** * @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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimWithStriker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCountry","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFifthStat","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFirstStat","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFourthStat","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getPosition","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSecondStat","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSixthStat","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getThirdStat","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogStrikers","outputs":[{"internalType":"contract ERC721","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":[{"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wrappedStrikers","outputs":[{"internalType":"contract ERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405273dcaad9fd9a74144d226dbf94ce6162ca9f09ed7e600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507311739d7bd793543a6e83bd7d8601fcbcde04e798600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518061074001604052806040518060400160405280600881526020017ff09f87a7f09f87aa00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a7f09f87b700000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87abf09f87b700000000000000000000000000000000000000000000000081525081526020016040518060400160405280601c81526020017ff09f8fb4f3a081a7f3a081a2f3a081a5f3a081aef3a081a7f3a081bf0000000081525081526020016040518060400160405280600881526020017ff09f87aef09f87b900000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a6f09f87b700000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87aaf09f87b800000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b5f09f87b900000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b2f09f87bd00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87baf09f87b800000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a9f09f87b000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b3f09f87b100000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87baf09f87be00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a8f09f87ad00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a8f09f87b400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a9f09f87aa00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b8f09f87aa00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87adf09f87b700000000000000000000000000000000000000000000000081525081526020016040518060400160405280601c81526020017ff09f8fb4f3a081a7f3a081a2f3a081b7f3a081acf3a081b3f3a081bf0000000081525081526020016040518060400160405280600881526020017ff09f87a8f09f87b100000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b8f09f87b300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b5f09f87aa00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a6f09f87b900000000000000000000000000000000000000000000000081525081526020016040518060400160405280601881526020017ff3a081a7f3a081a2f3a081a5f3a081aef09f87aff09f87b5000000000000000081525081526020016040518060400160405280600881526020017ff09f87baf09f87a600000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87aef09f87b700000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b5f09f87b100000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b9f09f87b300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b7f09f87b800000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a9f09f87bf00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a8f09f87bf00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b2f09f87a600000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b5f09f87be00000000000000000000000000000000000000000000000081525081526020016040518060400160405280601881526020017ff3a081a7f3a081a2f3a081a5f3a081aef09f87b3f09f87ac000000000000000081525081526020016040518060400160405280600881526020017ff09f87a6f09f87ba00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b0f09f87b700000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87adf09f87ba00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b8f09f87b000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b9f09f87b700000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87bbf09f87aa00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b7f09f87ba00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b6f09f87a600000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b3f09f87b400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a8f09f87b700000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87b7f09f87b400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87aaf09f87ac00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87aef09f87aa00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87acf09f87b700000000000000000000000000000000000000000000000081525081526020016040518060400160405280601c81526020017ff09f8fb4f3a081a7f3a081a2f3a081b3f3a081a3f3a081b4f3a081bf0000000081525081526020016040518060400160405280600881526020017ff09f87aff09f87b200000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87acf09f87ad00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87aef09f87b800000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a8f09f87b200000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87aaf09f87a800000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87abf09f87ae00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a8f09f87ae00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a7f09f87a600000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017ff09f87a8f09f87a6000000000000000000000000000000000000000000000000815250815250600d90603a62000e2892919062001277565b50604051806101e001604052806040518060400160405280600281526020017f474b00000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f524200000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f434200000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f4c4200000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f525742000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f4c5742000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f43444d000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f434d00000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f43414d000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f524d00000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f4c4d00000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f525700000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f4c5700000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f434600000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f5354000000000000000000000000000000000000000000000000000000000000815250815250600e90600f620011ba929190620012de565b50348015620011c857600080fd5b506040518060400160405280600581526020017f53746174730000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f535441545300000000000000000000000000000000000000000000000000000081525081600090805190602001906200124d92919062001345565b5080600190805190602001906200126692919062001345565b5050506001600a81905550620014c8565b828054828255906000526020600020908101928215620012cb579160200282015b82811115620012ca578251829080519060200190620012b992919062001345565b509160200191906001019062001298565b5b509050620012da9190620013d6565b5090565b82805482825590600052602060002090810192821562001332579160200282015b82811115620013315782518290805190602001906200132092919062001345565b5091602001919060010190620012ff565b5b509050620013419190620013d6565b5090565b828054620013539062001463565b90600052602060002090601f016020900481019282620013775760008555620013c3565b82601f106200139257805160ff1916838001178555620013c3565b82800160010185558215620013c3579182015b82811115620013c2578251825591602001919060010190620013a5565b5b509050620013d29190620013fe565b5090565b5b80821115620013fa5760008181620013f091906200141d565b50600101620013d7565b5090565b5b8082111562001419576000816000905550600101620013ff565b5090565b5080546200142b9062001463565b6000825580601f106200143f575062001460565b601f0160209004906000526020600020908101906200145f9190620013fe565b5b50565b600060028204905060018216806200147c57607f821691505b6020821081141562001493576200149262001499565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6154ea80620014d86000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806353971489116100f9578063b88d4fde11610097578063e50f8f2b11610071578063e50f8f2b14610575578063e6201fd3146105a5578063e985e9c5146105c3578063eb02c301146105f3576101c4565b8063b88d4fde146104f9578063be2115e214610515578063c87b56dd14610545576101c4565b806395d89b41116100d357806395d89b411461045f578063970fcd8c1461047d578063a22cb465146104ad578063afa5e0a9146104c9576101c4565b806353971489146103cf5780636352211e146103ff57806370a082311461042f576101c4565b8063276aeac111610166578063379607f511610140578063379607f51461034b57806342842e0e146103675780634874470e146103835780634f6ccce71461039f576101c4565b8063276aeac1146102cd5780632ccc06ba146102fd5780632f745c591461031b576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd146102635780632374c9241461028157806323b872dd146102b1576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190613dec565b610623565b6040516101f091906144bb565b60405180910390f35b61020161069d565b60405161020e91906144f1565b60405180910390f35b610231600480360381019061022c9190613e3e565b61072f565b60405161023e9190614454565b60405180910390f35b610261600480360381019061025c9190613db0565b6107b4565b005b61026b6108cc565b6040516102789190614753565b60405180910390f35b61029b60048036038101906102969190613e3e565b6108d9565b6040516102a89190614753565b60405180910390f35b6102cb60048036038101906102c69190613caa565b610925565b005b6102e760048036038101906102e29190613e3e565b610985565b6040516102f49190614753565b60405180910390f35b6103056109d1565b60405161031291906144d6565b60405180910390f35b61033560048036038101906103309190613db0565b6109f7565b6040516103429190614753565b60405180910390f35b61036560048036038101906103609190613e3e565b610a9c565b005b610381600480360381019061037c9190613caa565b610b57565b005b61039d60048036038101906103989190613e3e565b610b77565b005b6103b960048036038101906103b49190613e3e565b610de5565b6040516103c69190614753565b60405180910390f35b6103e960048036038101906103e49190613e3e565b610e7c565b6040516103f69190614753565b60405180910390f35b61041960048036038101906104149190613e3e565b610ec8565b6040516104269190614454565b60405180910390f35b61044960048036038101906104449190613c1c565b610f7a565b6040516104569190614753565b60405180910390f35b610467611032565b60405161047491906144f1565b60405180910390f35b61049760048036038101906104929190613e3e565b6110c4565b6040516104a49190614753565b60405180910390f35b6104c760048036038101906104c29190613d74565b611110565b005b6104e360048036038101906104de9190613e3e565b611291565b6040516104f09190614753565b60405180910390f35b610513600480360381019061050e9190613cf9565b6113ab565b005b61052f600480360381019061052a9190613e3e565b61140d565b60405161053c9190614753565b60405180910390f35b61055f600480360381019061055a9190613e3e565b611459565b60405161056c91906144f1565b60405180910390f35b61058f600480360381019061058a9190613e3e565b612618565b60405161059c9190614753565b60405180910390f35b6105ad612664565b6040516105ba91906144d6565b60405180910390f35b6105dd60048036038101906105d89190613c6e565b61268a565b6040516105ea91906144bb565b60405180910390f35b61060d60048036038101906106089190613e3e565b61271e565b60405161061a9190614753565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610696575061069582612838565b5b9050919050565b6060600080546106ac906149f6565b80601f01602080910402602001604051908101604052809291908181526020018280546106d8906149f6565b80156107255780601f106106fa57610100808354040283529160200191610725565b820191906000526020600020905b81548152906001019060200180831161070857829003601f168201915b5050505050905090565b600061073a8261291a565b610779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077090614653565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107bf82610ec8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610830576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610827906146b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661084f612986565b73ffffffffffffffffffffffffffffffffffffffff16148061087e575061087d81610878612986565b61268a565b5b6108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b4906145d3565b60405180910390fd5b6108c7838361298e565b505050565b6000600880549050905090565b6000606061091d836040518060400160405280600681526020017f5365636f6e64000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b610936610930612986565b82612ab6565b610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c906146d3565b60405180910390fd5b610980838383612b94565b505050565b600060606109c9836040518060400160405280600581526020017f466972737400000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a0283610f7a565b8210610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90614513565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6002600a541415610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990614733565b60405180910390fd5b6002600a8190555061281481118015610afc5750612b6781105b610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290614673565b60405180910390fd5b610b4c610b46612986565b82612df0565b6001600a8190555050565b610b72838383604051806020016040528060008152506113ab565b505050565b6002600a541415610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490614733565b60405180910390fd5b6002600a8190555060003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610c399190614753565b60206040518083038186803b158015610c5157600080fd5b505afa158015610c65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c899190613c45565b73ffffffffffffffffffffffffffffffffffffffff1614905060003373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b8152600401610d169190614753565b60206040518083038186803b158015610d2e57600080fd5b505afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d669190613c45565b73ffffffffffffffffffffffffffffffffffffffff161490508180610d885750805b610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe90614713565b60405180910390fd5b610dd8610dd2612986565b84612df0565b50506001600a8190555050565b6000610def6108cc565b8210610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e27906146f3565b60405180910390fd5b60088281548110610e6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60006060610ec0836040518060400160405280600681526020017f466f75727468000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614613565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe2906145f3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054611041906149f6565b80601f016020809104026020016040519081016040528092919081815260200182805461106d906149f6565b80156110ba5780601f1061108f576101008083540402835291602001916110ba565b820191906000526020600020905b81548152906001019060200180831161109d57829003601f168201915b5050505050905090565b60006060611108836040518060400160405280600581526020017f536978746800000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b611118612986565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90614593565b60405180910390fd5b8060056000611193612986565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611240612986565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161128591906144bb565b60405180910390a35050565b60006113a4826040518060400160405280600781526020017f436f756e74727900000000000000000000000000000000000000000000000000815250600d805480602002602001604051908101604052809291908181526020016000905b8282101561139b57838290600052602060002001805461130e906149f6565b80601f016020809104026020016040519081016040528092919081815260200182805461133a906149f6565b80156113875780601f1061135c57610100808354040283529160200191611387565b820191906000526020600020905b81548152906001019060200180831161136a57829003601f168201915b5050505050815260200190600101906112ef565b50505050612a47565b9050919050565b6113bc6113b6612986565b83612ab6565b6113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f2906146d3565b60405180910390fd5b61140784848484612e0e565b50505050565b60006060611451836040518060400160405280600581526020017f546869726400000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b606060006114668361271e565b905060008082149050600061147a85610985565b90506000611487866108d9565b905060006114948761140d565b905060006114a188610e7c565b905060006114ae89612618565b905060006114bb8a6110c4565b905060006006828486888a8c6114d19190614807565b6114db9190614807565b6114e59190614807565b6114ef9190614807565b6114f99190614807565b611503919061485d565b905061150d613b0e565b60405180610120016040528060fd81526020016152fe60fd913981600060138110611561577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525061167c6040518060400160405280600781526020017f436f756e74727900000000000000000000000000000000000000000000000000815250600d6115ad8f611291565b815481106115e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200180546115f9906149f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611625906149f6565b80156116725780601f1061164757610100808354040283529160200191611672565b820191906000526020600020905b81548152906001019060200180831161165557829003601f168201915b5050505050612e6a565b816001601381106116b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602881526020016154646028913981600260138110611711577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506118246040518060400160405280600881526020017f506f736974696f6e000000000000000000000000000000000000000000000000815250600e8c8154811061178c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200180546117a1906149f6565b80601f01602080910402602001604051908101604052809291908181526020018280546117cd906149f6565b801561181a5780601f106117ef5761010080835404028352916020019161181a565b820191906000526020600020905b8154815290600101906020018083116117fd57829003601f168201915b5050505050612e6a565b8160036013811061185e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806028815260200161523260289139816004601381106118b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506119086040518060400160405280600781526020017f4f766572616c6c0000000000000000000000000000000000000000000000000081525061190384612e96565b612e6a565b81600560138110611942577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016152ac602991398160066013811061199d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611a2d896119e8576040518060400160405280600481526020017f5061636500000000000000000000000000000000000000000000000000000000815250611a1f565b6040518060400160405280600681526020017f446976696e6700000000000000000000000000000000000000000000000000008152505b611a288a612e96565b612e6a565b81600760138110611a67577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016152836029913981600860138110611ac2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611b5289611b0d576040518060400160405280600881526020017f53686f6f74696e67000000000000000000000000000000000000000000000000815250611b44565b6040518060400160405280600881526020017f48616e646c696e670000000000000000000000000000000000000000000000008152505b611b4d89612e96565b612e6a565b81600960138110611b8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016153fb6029913981600a60138110611be7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611c7789611c32576040518060400160405280600781526020017f50617373696e6700000000000000000000000000000000000000000000000000815250611c69565b6040518060400160405280600781526020017f4b69636b696e67000000000000000000000000000000000000000000000000008152505b611c7288612e96565b612e6a565b81600b60138110611cb1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806029815260200161525a6029913981600c60138110611d0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611d9c89611d57576040518060400160405280600981526020017f44726962626c696e670000000000000000000000000000000000000000000000815250611d8e565b6040518060400160405280600881526020017f5265666c657865730000000000000000000000000000000000000000000000008152505b611d9787612e96565b612e6a565b81600d60138110611dd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806029815260200161548c6029913981600e60138110611e31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611ec189611e7c576040518060400160405280600981526020017f446566656e64696e670000000000000000000000000000000000000000000000815250611eb3565b6040518060400160405280600581526020017f53706565640000000000000000000000000000000000000000000000000000008152505b611ebc86612e96565b612e6a565b81600f60138110611efb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016152d56029913981601060138110611f56577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611fe689611fa1576040518060400160405280600881526020017f506879736963616c000000000000000000000000000000000000000000000000815250611fd8565b6040518060400160405280600b81526020017f506f736974696f6e696e670000000000000000000000000000000000000000008152505b611fe185612e96565b612e6a565b81601160138110612020577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081601260138110612098577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506000816000601381106120dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518260016013811061211b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518360026013811061215a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600360138110612199577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151856004601381106121d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600560138110612217577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600660138110612256577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015188600760138110612295577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151896008601381106122d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016122f1999897969594939291906142a6565b6040516020818303038152906040529050808260096013811061233d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600a6013811061237c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600b601381106123bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600c601381106123fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600d60138110612439577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600e60138110612478577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015188600f601381106124b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151896010601381106124f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518a601160138110612535577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518b601260138110612574577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016125939b9a99989796959493929190614325565b604051602081830303815290604052905060006125e06125b28f612e96565b6125bb84613043565b6040516020016125cc9291906143ed565b604051602081830303815290604052613043565b9050806040516020016125f39190614432565b6040516020818303038152906040529150819c50505050505050505050505050919050565b6000606061265c836040518060400160405280600581526020017f466966746800000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612831826040518060400160405280600881526020017f506f736974696f6e000000000000000000000000000000000000000000000000815250600e805480602002602001604051908101604052809291908181526020016000905b8282101561282857838290600052602060002001805461279b906149f6565b80601f01602080910402602001604051908101604052809291908181526020018280546127c7906149f6565b80156128145780601f106127e957610100808354040283529160200191612814565b820191906000526020600020905b8154815290600101906020018083116127f757829003601f168201915b50505050508152602001906001019061277c565b50505050612a47565b9050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061290357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612913575061291282613201565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a0183610ec8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008083612a5486612e96565b604051602001612a65929190614282565b6040516020818303038152906040529050600080845114905080612a9357612a8e84518361326b565b612aab565b612a9e60238361326b565b6037612aaa9190614807565b5b925050509392505050565b6000612ac18261291a565b612b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af7906145b3565b60405180910390fd5b6000612b0b83610ec8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b7a57508373ffffffffffffffffffffffffffffffffffffffff16612b628461072f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b8b5750612b8a818561268a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bb482610ec8565b73ffffffffffffffffffffffffffffffffffffffff1614612c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0190614693565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7190614573565b60405180910390fd5b612c858383836132aa565b612c9060008261298e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ce091906148e8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d379190614807565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612e0a8282604051806020016040528060008152506133be565b5050565b612e19848484612b94565b612e2584848484613419565b612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b90614533565b60405180910390fd5b50505050565b60608282604051602001612e7f9291906143be565b604051602081830303815290604052905092915050565b60606000821415612ede576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061303e565b600082905060005b60008214612f10578080612ef990614a59565b915050600a82612f09919061485d565b9150612ee6565b60008167ffffffffffffffff811115612f52577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f845781602001600182028036833780820191505090505b5090505b6000851461303757600182612f9d91906148e8565b9150600a85612fac9190614aa2565b6030612fb89190614807565b60f81b818381518110612ff4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613030919061485d565b9450612f88565b8093505050505b919050565b6060600082519050600081141561306c57604051806020016040528060008152509150506131fc565b6000600360028361307d9190614807565b613087919061485d565b6004613093919061488e565b905060006020826130a49190614807565b67ffffffffffffffff8111156130e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131155781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615424604091399050600181016020830160005b868110156131b95760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050613140565b5060038606600181146131d357600281146131e3576131ee565b613d3d60f01b60028303526131ee565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000828260405160200161327f919061426b565b6040516020818303038152906040528051906020012060001c6132a29190614aa2565b905092915050565b6132b58383836135b0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132f8576132f3816135b5565b613337565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133365761333583826135fe565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561337a576133758161376b565b6133b9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133b8576133b782826138ae565b5b5b505050565b6133c8838361392d565b6133d56000848484613419565b613414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340b90614533565b60405180910390fd5b505050565b600061343a8473ffffffffffffffffffffffffffffffffffffffff16613afb565b156135a3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613463612986565b8786866040518563ffffffff1660e01b8152600401613485949392919061446f565b602060405180830381600087803b15801561349f57600080fd5b505af19250505080156134d057506040513d601f19601f820116820180604052508101906134cd9190613e15565b60015b613553573d8060008114613500576040519150601f19603f3d011682016040523d82523d6000602084013e613505565b606091505b5060008151141561354b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354290614533565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135a8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161360b84610f7a565b61361591906148e8565b90506000600760008481526020019081526020016000205490508181146136fa576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061377f91906148e8565b90506000600960008481526020019081526020016000205490506000600883815481106137d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061381d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613892577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006138b983610f7a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561399d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399490614633565b60405180910390fd5b6139a68161291a565b156139e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139dd90614553565b60405180910390fd5b6139f2600083836132aa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a429190614807565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061026001604052806013905b6060815260200190600190039081613b1e5790505090565b6000613b49613b4484614793565b61476e565b905082815260208101848484011115613b6157600080fd5b613b6c8482856149b4565b509392505050565b600081359050613b83816151d5565b92915050565b600081519050613b98816151d5565b92915050565b600081359050613bad816151ec565b92915050565b600081359050613bc281615203565b92915050565b600081519050613bd781615203565b92915050565b600082601f830112613bee57600080fd5b8135613bfe848260208601613b36565b91505092915050565b600081359050613c168161521a565b92915050565b600060208284031215613c2e57600080fd5b6000613c3c84828501613b74565b91505092915050565b600060208284031215613c5757600080fd5b6000613c6584828501613b89565b91505092915050565b60008060408385031215613c8157600080fd5b6000613c8f85828601613b74565b9250506020613ca085828601613b74565b9150509250929050565b600080600060608486031215613cbf57600080fd5b6000613ccd86828701613b74565b9350506020613cde86828701613b74565b9250506040613cef86828701613c07565b9150509250925092565b60008060008060808587031215613d0f57600080fd5b6000613d1d87828801613b74565b9450506020613d2e87828801613b74565b9350506040613d3f87828801613c07565b925050606085013567ffffffffffffffff811115613d5c57600080fd5b613d6887828801613bdd565b91505092959194509250565b60008060408385031215613d8757600080fd5b6000613d9585828601613b74565b9250506020613da685828601613b9e565b9150509250929050565b60008060408385031215613dc357600080fd5b6000613dd185828601613b74565b9250506020613de285828601613c07565b9150509250929050565b600060208284031215613dfe57600080fd5b6000613e0c84828501613bb3565b91505092915050565b600060208284031215613e2757600080fd5b6000613e3584828501613bc8565b91505092915050565b600060208284031215613e5057600080fd5b6000613e5e84828501613c07565b91505092915050565b613e708161491c565b82525050565b613e7f8161492e565b82525050565b6000613e90826147c4565b613e9a81856147da565b9350613eaa8185602086016149c3565b613eb381614b8f565b840191505092915050565b613ec781614990565b82525050565b6000613ed8826147cf565b613ee281856147eb565b9350613ef28185602086016149c3565b613efb81614b8f565b840191505092915050565b6000613f11826147cf565b613f1b81856147fc565b9350613f2b8185602086016149c3565b80840191505092915050565b6000613f44602b836147eb565b9150613f4f82614ba0565b604082019050919050565b6000613f676032836147eb565b9150613f7282614bef565b604082019050919050565b6000613f8a601c836147eb565b9150613f9582614c3e565b602082019050919050565b6000613fad6012836147fc565b9150613fb882614c67565b601282019050919050565b6000613fd06024836147eb565b9150613fdb82614c90565b604082019050919050565b6000613ff36019836147eb565b9150613ffe82614cdf565b602082019050919050565b6000614016602c836147eb565b915061402182614d08565b604082019050919050565b600061403960ab836147fc565b915061404482614d57565b60ab82019050919050565b600061405c6038836147eb565b915061406782614e3e565b604082019050919050565b600061407f602a836147eb565b915061408a82614e8d565b604082019050919050565b60006140a26029836147eb565b91506140ad82614edc565b604082019050919050565b60006140c56002836147fc565b91506140d082614f2b565b600282019050919050565b60006140e86020836147eb565b91506140f382614f54565b602082019050919050565b600061410b602c836147eb565b915061411682614f7d565b604082019050919050565b600061412e6010836147eb565b915061413982614fcc565b602082019050919050565b60006141516029836147eb565b915061415c82614ff5565b604082019050919050565b60006141746021836147eb565b915061417f82615044565b604082019050919050565b6000614197601d836147fc565b91506141a282615093565b601d82019050919050565b60006141ba6031836147eb565b91506141c5826150bc565b604082019050919050565b60006141dd602c836147eb565b91506141e88261510b565b604082019050919050565b60006142006002836147fc565b915061420b8261515a565b600282019050919050565b6000614223601b836147eb565b915061422e82615183565b602082019050919050565b6000614246601f836147eb565b9150614251826151ac565b602082019050919050565b61426581614986565b82525050565b60006142778284613f06565b915081905092915050565b600061428e8285613f06565b915061429a8284613f06565b91508190509392505050565b60006142b2828c613f06565b91506142be828b613f06565b91506142ca828a613f06565b91506142d68289613f06565b91506142e28288613f06565b91506142ee8287613f06565b91506142fa8286613f06565b91506143068285613f06565b91506143128284613f06565b91508190509a9950505050505050505050565b6000614331828e613f06565b915061433d828d613f06565b9150614349828c613f06565b9150614355828b613f06565b9150614361828a613f06565b915061436d8289613f06565b91506143798288613f06565b91506143858287613f06565b91506143918286613f06565b915061439d8285613f06565b91506143a98284613f06565b91508190509c9b505050505050505050505050565b60006143ca8285613f06565b91506143d5826141f3565b91506143e18284613f06565b91508190509392505050565b60006143f882613fa0565b91506144048285613f06565b915061440f8261402c565b915061441b8284613f06565b9150614426826140b8565b91508190509392505050565b600061443d8261418a565b91506144498284613f06565b915081905092915050565b60006020820190506144696000830184613e67565b92915050565b60006080820190506144846000830187613e67565b6144916020830186613e67565b61449e604083018561425c565b81810360608301526144b08184613e85565b905095945050505050565b60006020820190506144d06000830184613e76565b92915050565b60006020820190506144eb6000830184613ebe565b92915050565b6000602082019050818103600083015261450b8184613ecd565b905092915050565b6000602082019050818103600083015261452c81613f37565b9050919050565b6000602082019050818103600083015261454c81613f5a565b9050919050565b6000602082019050818103600083015261456c81613f7d565b9050919050565b6000602082019050818103600083015261458c81613fc3565b9050919050565b600060208201905081810360008301526145ac81613fe6565b9050919050565b600060208201905081810360008301526145cc81614009565b9050919050565b600060208201905081810360008301526145ec8161404f565b9050919050565b6000602082019050818103600083015261460c81614072565b9050919050565b6000602082019050818103600083015261462c81614095565b9050919050565b6000602082019050818103600083015261464c816140db565b9050919050565b6000602082019050818103600083015261466c816140fe565b9050919050565b6000602082019050818103600083015261468c81614121565b9050919050565b600060208201905081810360008301526146ac81614144565b9050919050565b600060208201905081810360008301526146cc81614167565b9050919050565b600060208201905081810360008301526146ec816141ad565b9050919050565b6000602082019050818103600083015261470c816141d0565b9050919050565b6000602082019050818103600083015261472c81614216565b9050919050565b6000602082019050818103600083015261474c81614239565b9050919050565b6000602082019050614768600083018461425c565b92915050565b6000614778614789565b90506147848282614a28565b919050565b6000604051905090565b600067ffffffffffffffff8211156147ae576147ad614b60565b5b6147b782614b8f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061481282614986565b915061481d83614986565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561485257614851614ad3565b5b828201905092915050565b600061486882614986565b915061487383614986565b92508261488357614882614b02565b5b828204905092915050565b600061489982614986565b91506148a483614986565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148dd576148dc614ad3565b5b828202905092915050565b60006148f382614986565b91506148fe83614986565b92508282101561491157614910614ad3565b5b828203905092915050565b600061492782614966565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061499b826149a2565b9050919050565b60006149ad82614966565b9050919050565b82818337600083830152505050565b60005b838110156149e15780820151818401526020810190506149c6565b838111156149f0576000848401525b50505050565b60006002820490506001821680614a0e57607f821691505b60208210811415614a2257614a21614b31565b5b50919050565b614a3182614b8f565b810181811067ffffffffffffffff82111715614a5057614a4f614b60565b5b80604052505050565b6000614a6482614986565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a9757614a96614ad3565b5b600182019050919050565b6000614aad82614986565b9150614ab883614986565b925082614ac857614ac7614b02565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7b226e616d65223a2022506c6179657220230000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a20225354415453206172652072616e60008201527f646f6d697a656420706c6179657220617474726962757465732067656e65726160208201527f74656420616e642073746f726564206f6e20636861696e2e204665656c20667260408201527f656520746f2075736520535441545320696e20616e792077617920796f75207760608201527f616e742e222c2022696d616765223a2022646174613a696d6167652f7376672b60808201527f786d6c3b6261736536342c00000000000000000000000000000000000000000060a082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f3a20000000000000000000000000000000000000000000000000000000000000600082015250565b7f596f7520646f6e2774206f776e207468697320537472696b6572210000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6151de8161491c565b81146151e957600080fd5b50565b6151f58161492e565b811461520057600080fd5b50565b61520c8161493a565b811461521757600080fd5b50565b61522381614986565b811461522e57600080fd5b5056fe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223230302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223138302220636c6173733d2262617365223ea2646970667358221220014dd2409dca3d20a9ceeb4c6bb2d5832dd642e1e64ac347e3dca607d7599fa164736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806353971489116100f9578063b88d4fde11610097578063e50f8f2b11610071578063e50f8f2b14610575578063e6201fd3146105a5578063e985e9c5146105c3578063eb02c301146105f3576101c4565b8063b88d4fde146104f9578063be2115e214610515578063c87b56dd14610545576101c4565b806395d89b41116100d357806395d89b411461045f578063970fcd8c1461047d578063a22cb465146104ad578063afa5e0a9146104c9576101c4565b806353971489146103cf5780636352211e146103ff57806370a082311461042f576101c4565b8063276aeac111610166578063379607f511610140578063379607f51461034b57806342842e0e146103675780634874470e146103835780634f6ccce71461039f576101c4565b8063276aeac1146102cd5780632ccc06ba146102fd5780632f745c591461031b576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd146102635780632374c9241461028157806323b872dd146102b1576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190613dec565b610623565b6040516101f091906144bb565b60405180910390f35b61020161069d565b60405161020e91906144f1565b60405180910390f35b610231600480360381019061022c9190613e3e565b61072f565b60405161023e9190614454565b60405180910390f35b610261600480360381019061025c9190613db0565b6107b4565b005b61026b6108cc565b6040516102789190614753565b60405180910390f35b61029b60048036038101906102969190613e3e565b6108d9565b6040516102a89190614753565b60405180910390f35b6102cb60048036038101906102c69190613caa565b610925565b005b6102e760048036038101906102e29190613e3e565b610985565b6040516102f49190614753565b60405180910390f35b6103056109d1565b60405161031291906144d6565b60405180910390f35b61033560048036038101906103309190613db0565b6109f7565b6040516103429190614753565b60405180910390f35b61036560048036038101906103609190613e3e565b610a9c565b005b610381600480360381019061037c9190613caa565b610b57565b005b61039d60048036038101906103989190613e3e565b610b77565b005b6103b960048036038101906103b49190613e3e565b610de5565b6040516103c69190614753565b60405180910390f35b6103e960048036038101906103e49190613e3e565b610e7c565b6040516103f69190614753565b60405180910390f35b61041960048036038101906104149190613e3e565b610ec8565b6040516104269190614454565b60405180910390f35b61044960048036038101906104449190613c1c565b610f7a565b6040516104569190614753565b60405180910390f35b610467611032565b60405161047491906144f1565b60405180910390f35b61049760048036038101906104929190613e3e565b6110c4565b6040516104a49190614753565b60405180910390f35b6104c760048036038101906104c29190613d74565b611110565b005b6104e360048036038101906104de9190613e3e565b611291565b6040516104f09190614753565b60405180910390f35b610513600480360381019061050e9190613cf9565b6113ab565b005b61052f600480360381019061052a9190613e3e565b61140d565b60405161053c9190614753565b60405180910390f35b61055f600480360381019061055a9190613e3e565b611459565b60405161056c91906144f1565b60405180910390f35b61058f600480360381019061058a9190613e3e565b612618565b60405161059c9190614753565b60405180910390f35b6105ad612664565b6040516105ba91906144d6565b60405180910390f35b6105dd60048036038101906105d89190613c6e565b61268a565b6040516105ea91906144bb565b60405180910390f35b61060d60048036038101906106089190613e3e565b61271e565b60405161061a9190614753565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610696575061069582612838565b5b9050919050565b6060600080546106ac906149f6565b80601f01602080910402602001604051908101604052809291908181526020018280546106d8906149f6565b80156107255780601f106106fa57610100808354040283529160200191610725565b820191906000526020600020905b81548152906001019060200180831161070857829003601f168201915b5050505050905090565b600061073a8261291a565b610779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077090614653565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107bf82610ec8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610830576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610827906146b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661084f612986565b73ffffffffffffffffffffffffffffffffffffffff16148061087e575061087d81610878612986565b61268a565b5b6108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b4906145d3565b60405180910390fd5b6108c7838361298e565b505050565b6000600880549050905090565b6000606061091d836040518060400160405280600681526020017f5365636f6e64000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b610936610930612986565b82612ab6565b610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c906146d3565b60405180910390fd5b610980838383612b94565b505050565b600060606109c9836040518060400160405280600581526020017f466972737400000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a0283610f7a565b8210610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90614513565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6002600a541415610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990614733565b60405180910390fd5b6002600a8190555061281481118015610afc5750612b6781105b610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290614673565b60405180910390fd5b610b4c610b46612986565b82612df0565b6001600a8190555050565b610b72838383604051806020016040528060008152506113ab565b505050565b6002600a541415610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490614733565b60405180910390fd5b6002600a8190555060003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610c399190614753565b60206040518083038186803b158015610c5157600080fd5b505afa158015610c65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c899190613c45565b73ffffffffffffffffffffffffffffffffffffffff1614905060003373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b8152600401610d169190614753565b60206040518083038186803b158015610d2e57600080fd5b505afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d669190613c45565b73ffffffffffffffffffffffffffffffffffffffff161490508180610d885750805b610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe90614713565b60405180910390fd5b610dd8610dd2612986565b84612df0565b50506001600a8190555050565b6000610def6108cc565b8210610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e27906146f3565b60405180910390fd5b60088281548110610e6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60006060610ec0836040518060400160405280600681526020017f466f75727468000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614613565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe2906145f3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054611041906149f6565b80601f016020809104026020016040519081016040528092919081815260200182805461106d906149f6565b80156110ba5780601f1061108f576101008083540402835291602001916110ba565b820191906000526020600020905b81548152906001019060200180831161109d57829003601f168201915b5050505050905090565b60006060611108836040518060400160405280600581526020017f536978746800000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b611118612986565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90614593565b60405180910390fd5b8060056000611193612986565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611240612986565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161128591906144bb565b60405180910390a35050565b60006113a4826040518060400160405280600781526020017f436f756e74727900000000000000000000000000000000000000000000000000815250600d805480602002602001604051908101604052809291908181526020016000905b8282101561139b57838290600052602060002001805461130e906149f6565b80601f016020809104026020016040519081016040528092919081815260200182805461133a906149f6565b80156113875780601f1061135c57610100808354040283529160200191611387565b820191906000526020600020905b81548152906001019060200180831161136a57829003601f168201915b5050505050815260200190600101906112ef565b50505050612a47565b9050919050565b6113bc6113b6612986565b83612ab6565b6113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f2906146d3565b60405180910390fd5b61140784848484612e0e565b50505050565b60006060611451836040518060400160405280600581526020017f546869726400000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b606060006114668361271e565b905060008082149050600061147a85610985565b90506000611487866108d9565b905060006114948761140d565b905060006114a188610e7c565b905060006114ae89612618565b905060006114bb8a6110c4565b905060006006828486888a8c6114d19190614807565b6114db9190614807565b6114e59190614807565b6114ef9190614807565b6114f99190614807565b611503919061485d565b905061150d613b0e565b60405180610120016040528060fd81526020016152fe60fd913981600060138110611561577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525061167c6040518060400160405280600781526020017f436f756e74727900000000000000000000000000000000000000000000000000815250600d6115ad8f611291565b815481106115e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200180546115f9906149f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611625906149f6565b80156116725780601f1061164757610100808354040283529160200191611672565b820191906000526020600020905b81548152906001019060200180831161165557829003601f168201915b5050505050612e6a565b816001601381106116b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602881526020016154646028913981600260138110611711577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506118246040518060400160405280600881526020017f506f736974696f6e000000000000000000000000000000000000000000000000815250600e8c8154811061178c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200180546117a1906149f6565b80601f01602080910402602001604051908101604052809291908181526020018280546117cd906149f6565b801561181a5780601f106117ef5761010080835404028352916020019161181a565b820191906000526020600020905b8154815290600101906020018083116117fd57829003601f168201915b5050505050612e6a565b8160036013811061185e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806028815260200161523260289139816004601381106118b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506119086040518060400160405280600781526020017f4f766572616c6c0000000000000000000000000000000000000000000000000081525061190384612e96565b612e6a565b81600560138110611942577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016152ac602991398160066013811061199d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611a2d896119e8576040518060400160405280600481526020017f5061636500000000000000000000000000000000000000000000000000000000815250611a1f565b6040518060400160405280600681526020017f446976696e6700000000000000000000000000000000000000000000000000008152505b611a288a612e96565b612e6a565b81600760138110611a67577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016152836029913981600860138110611ac2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611b5289611b0d576040518060400160405280600881526020017f53686f6f74696e67000000000000000000000000000000000000000000000000815250611b44565b6040518060400160405280600881526020017f48616e646c696e670000000000000000000000000000000000000000000000008152505b611b4d89612e96565b612e6a565b81600960138110611b8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016153fb6029913981600a60138110611be7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611c7789611c32576040518060400160405280600781526020017f50617373696e6700000000000000000000000000000000000000000000000000815250611c69565b6040518060400160405280600781526020017f4b69636b696e67000000000000000000000000000000000000000000000000008152505b611c7288612e96565b612e6a565b81600b60138110611cb1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806029815260200161525a6029913981600c60138110611d0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611d9c89611d57576040518060400160405280600981526020017f44726962626c696e670000000000000000000000000000000000000000000000815250611d8e565b6040518060400160405280600881526020017f5265666c657865730000000000000000000000000000000000000000000000008152505b611d9787612e96565b612e6a565b81600d60138110611dd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806029815260200161548c6029913981600e60138110611e31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611ec189611e7c576040518060400160405280600981526020017f446566656e64696e670000000000000000000000000000000000000000000000815250611eb3565b6040518060400160405280600581526020017f53706565640000000000000000000000000000000000000000000000000000008152505b611ebc86612e96565b612e6a565b81600f60138110611efb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016152d56029913981601060138110611f56577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611fe689611fa1576040518060400160405280600881526020017f506879736963616c000000000000000000000000000000000000000000000000815250611fd8565b6040518060400160405280600b81526020017f506f736974696f6e696e670000000000000000000000000000000000000000008152505b611fe185612e96565b612e6a565b81601160138110612020577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081601260138110612098577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506000816000601381106120dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518260016013811061211b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518360026013811061215a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600360138110612199577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151856004601381106121d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600560138110612217577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600660138110612256577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015188600760138110612295577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151896008601381106122d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016122f1999897969594939291906142a6565b6040516020818303038152906040529050808260096013811061233d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600a6013811061237c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600b601381106123bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600c601381106123fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600d60138110612439577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600e60138110612478577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015188600f601381106124b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151896010601381106124f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518a601160138110612535577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518b601260138110612574577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016125939b9a99989796959493929190614325565b604051602081830303815290604052905060006125e06125b28f612e96565b6125bb84613043565b6040516020016125cc9291906143ed565b604051602081830303815290604052613043565b9050806040516020016125f39190614432565b6040516020818303038152906040529150819c50505050505050505050505050919050565b6000606061265c836040518060400160405280600581526020017f466966746800000000000000000000000000000000000000000000000000000081525083612a47565b915050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612831826040518060400160405280600881526020017f506f736974696f6e000000000000000000000000000000000000000000000000815250600e805480602002602001604051908101604052809291908181526020016000905b8282101561282857838290600052602060002001805461279b906149f6565b80601f01602080910402602001604051908101604052809291908181526020018280546127c7906149f6565b80156128145780601f106127e957610100808354040283529160200191612814565b820191906000526020600020905b8154815290600101906020018083116127f757829003601f168201915b50505050508152602001906001019061277c565b50505050612a47565b9050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061290357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612913575061291282613201565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a0183610ec8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008083612a5486612e96565b604051602001612a65929190614282565b6040516020818303038152906040529050600080845114905080612a9357612a8e84518361326b565b612aab565b612a9e60238361326b565b6037612aaa9190614807565b5b925050509392505050565b6000612ac18261291a565b612b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af7906145b3565b60405180910390fd5b6000612b0b83610ec8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b7a57508373ffffffffffffffffffffffffffffffffffffffff16612b628461072f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b8b5750612b8a818561268a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bb482610ec8565b73ffffffffffffffffffffffffffffffffffffffff1614612c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0190614693565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7190614573565b60405180910390fd5b612c858383836132aa565b612c9060008261298e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ce091906148e8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d379190614807565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612e0a8282604051806020016040528060008152506133be565b5050565b612e19848484612b94565b612e2584848484613419565b612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b90614533565b60405180910390fd5b50505050565b60608282604051602001612e7f9291906143be565b604051602081830303815290604052905092915050565b60606000821415612ede576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061303e565b600082905060005b60008214612f10578080612ef990614a59565b915050600a82612f09919061485d565b9150612ee6565b60008167ffffffffffffffff811115612f52577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f845781602001600182028036833780820191505090505b5090505b6000851461303757600182612f9d91906148e8565b9150600a85612fac9190614aa2565b6030612fb89190614807565b60f81b818381518110612ff4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613030919061485d565b9450612f88565b8093505050505b919050565b6060600082519050600081141561306c57604051806020016040528060008152509150506131fc565b6000600360028361307d9190614807565b613087919061485d565b6004613093919061488e565b905060006020826130a49190614807565b67ffffffffffffffff8111156130e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131155781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615424604091399050600181016020830160005b868110156131b95760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050613140565b5060038606600181146131d357600281146131e3576131ee565b613d3d60f01b60028303526131ee565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000828260405160200161327f919061426b565b6040516020818303038152906040528051906020012060001c6132a29190614aa2565b905092915050565b6132b58383836135b0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132f8576132f3816135b5565b613337565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133365761333583826135fe565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561337a576133758161376b565b6133b9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133b8576133b782826138ae565b5b5b505050565b6133c8838361392d565b6133d56000848484613419565b613414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340b90614533565b60405180910390fd5b505050565b600061343a8473ffffffffffffffffffffffffffffffffffffffff16613afb565b156135a3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613463612986565b8786866040518563ffffffff1660e01b8152600401613485949392919061446f565b602060405180830381600087803b15801561349f57600080fd5b505af19250505080156134d057506040513d601f19601f820116820180604052508101906134cd9190613e15565b60015b613553573d8060008114613500576040519150601f19603f3d011682016040523d82523d6000602084013e613505565b606091505b5060008151141561354b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354290614533565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135a8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161360b84610f7a565b61361591906148e8565b90506000600760008481526020019081526020016000205490508181146136fa576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061377f91906148e8565b90506000600960008481526020019081526020016000205490506000600883815481106137d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061381d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613892577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006138b983610f7a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561399d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399490614633565b60405180910390fd5b6139a68161291a565b156139e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139dd90614553565b60405180910390fd5b6139f2600083836132aa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a429190614807565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061026001604052806013905b6060815260200190600190039081613b1e5790505090565b6000613b49613b4484614793565b61476e565b905082815260208101848484011115613b6157600080fd5b613b6c8482856149b4565b509392505050565b600081359050613b83816151d5565b92915050565b600081519050613b98816151d5565b92915050565b600081359050613bad816151ec565b92915050565b600081359050613bc281615203565b92915050565b600081519050613bd781615203565b92915050565b600082601f830112613bee57600080fd5b8135613bfe848260208601613b36565b91505092915050565b600081359050613c168161521a565b92915050565b600060208284031215613c2e57600080fd5b6000613c3c84828501613b74565b91505092915050565b600060208284031215613c5757600080fd5b6000613c6584828501613b89565b91505092915050565b60008060408385031215613c8157600080fd5b6000613c8f85828601613b74565b9250506020613ca085828601613b74565b9150509250929050565b600080600060608486031215613cbf57600080fd5b6000613ccd86828701613b74565b9350506020613cde86828701613b74565b9250506040613cef86828701613c07565b9150509250925092565b60008060008060808587031215613d0f57600080fd5b6000613d1d87828801613b74565b9450506020613d2e87828801613b74565b9350506040613d3f87828801613c07565b925050606085013567ffffffffffffffff811115613d5c57600080fd5b613d6887828801613bdd565b91505092959194509250565b60008060408385031215613d8757600080fd5b6000613d9585828601613b74565b9250506020613da685828601613b9e565b9150509250929050565b60008060408385031215613dc357600080fd5b6000613dd185828601613b74565b9250506020613de285828601613c07565b9150509250929050565b600060208284031215613dfe57600080fd5b6000613e0c84828501613bb3565b91505092915050565b600060208284031215613e2757600080fd5b6000613e3584828501613bc8565b91505092915050565b600060208284031215613e5057600080fd5b6000613e5e84828501613c07565b91505092915050565b613e708161491c565b82525050565b613e7f8161492e565b82525050565b6000613e90826147c4565b613e9a81856147da565b9350613eaa8185602086016149c3565b613eb381614b8f565b840191505092915050565b613ec781614990565b82525050565b6000613ed8826147cf565b613ee281856147eb565b9350613ef28185602086016149c3565b613efb81614b8f565b840191505092915050565b6000613f11826147cf565b613f1b81856147fc565b9350613f2b8185602086016149c3565b80840191505092915050565b6000613f44602b836147eb565b9150613f4f82614ba0565b604082019050919050565b6000613f676032836147eb565b9150613f7282614bef565b604082019050919050565b6000613f8a601c836147eb565b9150613f9582614c3e565b602082019050919050565b6000613fad6012836147fc565b9150613fb882614c67565b601282019050919050565b6000613fd06024836147eb565b9150613fdb82614c90565b604082019050919050565b6000613ff36019836147eb565b9150613ffe82614cdf565b602082019050919050565b6000614016602c836147eb565b915061402182614d08565b604082019050919050565b600061403960ab836147fc565b915061404482614d57565b60ab82019050919050565b600061405c6038836147eb565b915061406782614e3e565b604082019050919050565b600061407f602a836147eb565b915061408a82614e8d565b604082019050919050565b60006140a26029836147eb565b91506140ad82614edc565b604082019050919050565b60006140c56002836147fc565b91506140d082614f2b565b600282019050919050565b60006140e86020836147eb565b91506140f382614f54565b602082019050919050565b600061410b602c836147eb565b915061411682614f7d565b604082019050919050565b600061412e6010836147eb565b915061413982614fcc565b602082019050919050565b60006141516029836147eb565b915061415c82614ff5565b604082019050919050565b60006141746021836147eb565b915061417f82615044565b604082019050919050565b6000614197601d836147fc565b91506141a282615093565b601d82019050919050565b60006141ba6031836147eb565b91506141c5826150bc565b604082019050919050565b60006141dd602c836147eb565b91506141e88261510b565b604082019050919050565b60006142006002836147fc565b915061420b8261515a565b600282019050919050565b6000614223601b836147eb565b915061422e82615183565b602082019050919050565b6000614246601f836147eb565b9150614251826151ac565b602082019050919050565b61426581614986565b82525050565b60006142778284613f06565b915081905092915050565b600061428e8285613f06565b915061429a8284613f06565b91508190509392505050565b60006142b2828c613f06565b91506142be828b613f06565b91506142ca828a613f06565b91506142d68289613f06565b91506142e28288613f06565b91506142ee8287613f06565b91506142fa8286613f06565b91506143068285613f06565b91506143128284613f06565b91508190509a9950505050505050505050565b6000614331828e613f06565b915061433d828d613f06565b9150614349828c613f06565b9150614355828b613f06565b9150614361828a613f06565b915061436d8289613f06565b91506143798288613f06565b91506143858287613f06565b91506143918286613f06565b915061439d8285613f06565b91506143a98284613f06565b91508190509c9b505050505050505050505050565b60006143ca8285613f06565b91506143d5826141f3565b91506143e18284613f06565b91508190509392505050565b60006143f882613fa0565b91506144048285613f06565b915061440f8261402c565b915061441b8284613f06565b9150614426826140b8565b91508190509392505050565b600061443d8261418a565b91506144498284613f06565b915081905092915050565b60006020820190506144696000830184613e67565b92915050565b60006080820190506144846000830187613e67565b6144916020830186613e67565b61449e604083018561425c565b81810360608301526144b08184613e85565b905095945050505050565b60006020820190506144d06000830184613e76565b92915050565b60006020820190506144eb6000830184613ebe565b92915050565b6000602082019050818103600083015261450b8184613ecd565b905092915050565b6000602082019050818103600083015261452c81613f37565b9050919050565b6000602082019050818103600083015261454c81613f5a565b9050919050565b6000602082019050818103600083015261456c81613f7d565b9050919050565b6000602082019050818103600083015261458c81613fc3565b9050919050565b600060208201905081810360008301526145ac81613fe6565b9050919050565b600060208201905081810360008301526145cc81614009565b9050919050565b600060208201905081810360008301526145ec8161404f565b9050919050565b6000602082019050818103600083015261460c81614072565b9050919050565b6000602082019050818103600083015261462c81614095565b9050919050565b6000602082019050818103600083015261464c816140db565b9050919050565b6000602082019050818103600083015261466c816140fe565b9050919050565b6000602082019050818103600083015261468c81614121565b9050919050565b600060208201905081810360008301526146ac81614144565b9050919050565b600060208201905081810360008301526146cc81614167565b9050919050565b600060208201905081810360008301526146ec816141ad565b9050919050565b6000602082019050818103600083015261470c816141d0565b9050919050565b6000602082019050818103600083015261472c81614216565b9050919050565b6000602082019050818103600083015261474c81614239565b9050919050565b6000602082019050614768600083018461425c565b92915050565b6000614778614789565b90506147848282614a28565b919050565b6000604051905090565b600067ffffffffffffffff8211156147ae576147ad614b60565b5b6147b782614b8f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061481282614986565b915061481d83614986565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561485257614851614ad3565b5b828201905092915050565b600061486882614986565b915061487383614986565b92508261488357614882614b02565b5b828204905092915050565b600061489982614986565b91506148a483614986565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148dd576148dc614ad3565b5b828202905092915050565b60006148f382614986565b91506148fe83614986565b92508282101561491157614910614ad3565b5b828203905092915050565b600061492782614966565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061499b826149a2565b9050919050565b60006149ad82614966565b9050919050565b82818337600083830152505050565b60005b838110156149e15780820151818401526020810190506149c6565b838111156149f0576000848401525b50505050565b60006002820490506001821680614a0e57607f821691505b60208210811415614a2257614a21614b31565b5b50919050565b614a3182614b8f565b810181811067ffffffffffffffff82111715614a5057614a4f614b60565b5b80604052505050565b6000614a6482614986565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a9757614a96614ad3565b5b600182019050919050565b6000614aad82614986565b9150614ab883614986565b925082614ac857614ac7614b02565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7b226e616d65223a2022506c6179657220230000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a20225354415453206172652072616e60008201527f646f6d697a656420706c6179657220617474726962757465732067656e65726160208201527f74656420616e642073746f726564206f6e20636861696e2e204665656c20667260408201527f656520746f2075736520535441545320696e20616e792077617920796f75207760608201527f616e742e222c2022696d616765223a2022646174613a696d6167652f7376672b60808201527f786d6c3b6261736536342c00000000000000000000000000000000000000000060a082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f3a20000000000000000000000000000000000000000000000000000000000000600082015250565b7f596f7520646f6e2774206f776e207468697320537472696b6572210000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6151de8161491c565b81146151e957600080fd5b50565b6151f58161492e565b811461520057600080fd5b50565b61520c8161493a565b811461521757600080fd5b50565b61522381614986565b811461522e57600080fd5b5056fe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223230302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223138302220636c6173733d2262617365223ea2646970667358221220014dd2409dca3d20a9ceeb4c6bb2d5832dd642e1e64ac347e3dca607d7599fa164736f6c63430008040033
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.