ERC-721
Overview
Max Total Supply
1,000,000 A NFT Sprites
Holders
60,853
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 A NFT SpritesLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
NFTSprites
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-08-07 */ /* NFT Sprites (https://nftsprites.com), launched in March 2021, is by the same developer as Ether Rock which sold nearly $1 million worth of rocks in a few hours. Ether Sprites are AI-generated people turned into NFT's (Non-Fungible Tokens), which you can buy and sell on the Ethereum blockchain. None of the people in this game are real -- they are 100% generated by state-of-the-art AI. By buying one of the NFT's here, you are the sole owner of the NFT until the end of time (as will be shown on the blockchain) unless you sell it or gift it to another person. The NFT Sprites smart contract is a fully compliant ERC721 NFT contract that allows for a maximum of only 100 NFT's to be minted. The first NFT costs 0.005 Ether, and each NFT gets a little more expensive. Once you buy an NFT you can either list it for sale at any price or gift it to someone else. The NFT's in this specific contract might be used to reward NFT Sprites owners in future. */ pragma solidity 0.8.0; /** * @dev ERC-721 interface for accepting safe transfers. * See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md. */ interface ERC721TokenReceiver { /** * @dev Handle the receipt of a NFT. The ERC721 smart contract calls this function on the * recipient after a `transfer`. This function MAY throw to revert and reject the transfer. Return * of other than the magic value MUST result in the transaction being reverted. * Returns `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` unless throwing. * @notice The contract address is always the message sender. A wallet/broker/auction application * MUST implement the wallet interface if it will accept safe transfers. * @param _operator The address which called `safeTransferFrom` function. * @param _from The address which previously owned the token. * @param _tokenId The NFT identifier which is being transferred. * @param _data Additional data with no specified format. * @return Returns `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`. */ function onERC721Received( address _operator, address _from, uint256 _tokenId, bytes calldata _data ) external returns(bytes4); } /** * @dev ERC-721 non-fungible token standard. * See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md. */ interface ERC721 { /** * @dev Emits when ownership of any NFT changes by any mechanism. This event emits when NFTs are * created (`from` == 0) and destroyed (`to` == 0). Exception: during contract creation, any * number of NFTs may be created and assigned without emitting Transfer. At the time of any * transfer, the approved address for that NFT (if any) is reset to none. */ event Transfer( address indexed _from, address indexed _to, uint256 indexed _tokenId ); /** * @dev This emits when the approved address for an NFT is changed or reaffirmed. The zero * address indicates there is no approved address. When a Transfer event emits, this also * indicates that the approved address for that NFT (if any) is reset to none. */ event Approval( address indexed _owner, address indexed _approved, uint256 indexed _tokenId ); /** * @dev This emits when an operator is enabled or disabled for an owner. The operator can manage * all NFTs of the owner. */ event ApprovalForAll( address indexed _owner, address indexed _operator, bool _approved ); /** * @dev Transfers the ownership of an NFT from one address to another address. * @notice Throws unless `msg.sender` is the current owner, an authorized operator, or the * approved address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is * the zero address. Throws if `_tokenId` is not a valid NFT. When transfer is complete, this * function checks if `_to` is a smart contract (code size > 0). If so, it calls * `onERC721Received` on `_to` and throws if the return value is not * `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))`. * @param _from The current owner of the NFT. * @param _to The new owner. * @param _tokenId The NFT to transfer. * @param _data Additional data with no specified format, sent in call to `_to`. */ function safeTransferFrom( address _from, address _to, uint256 _tokenId, bytes calldata _data ) external; /** * @dev Transfers the ownership of an NFT from one address to another address. * @notice This works identically to the other function with an extra data parameter, except this * function just sets data to "" * @param _from The current owner of the NFT. * @param _to The new owner. * @param _tokenId The NFT to transfer. */ function safeTransferFrom( address _from, address _to, uint256 _tokenId ) external; /** * @dev Throws unless `msg.sender` is the current owner, an authorized operator, or the approved * address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero * address. Throws if `_tokenId` is not a valid NFT. * @notice The caller is responsible to confirm that `_to` is capable of receiving NFTs or else * they mayb be permanently lost. * @param _from The current owner of the NFT. * @param _to The new owner. * @param _tokenId The NFT to transfer. */ function transferFrom( address _from, address _to, uint256 _tokenId ) external; /** * @dev Set or reaffirm the approved address for an NFT. * @notice The zero address indicates there is no approved address. Throws unless `msg.sender` is * the current NFT owner, or an authorized operator of the current owner. * @param _approved The new approved NFT controller. * @param _tokenId The NFT to approve. */ function approve( address _approved, uint256 _tokenId ) external; /** * @dev Enables or disables approval for a third party ("operator") to manage all of * `msg.sender`'s assets. It also emits the ApprovalForAll event. * @notice The contract MUST allow multiple operators per owner. * @param _operator Address to add to the set of authorized operators. * @param _approved True if the operators is approved, false to revoke approval. */ function setApprovalForAll( address _operator, bool _approved ) external; /** * @dev Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are * considered invalid, and this function throws for queries about the zero address. * @param _owner Address for whom to query the balance. * @return Balance of _owner. */ function balanceOf( address _owner ) external view returns (uint256); /** * @dev Returns the address of the owner of the NFT. NFTs assigned to zero address are considered * invalid, and queries about them do throw. * @param _tokenId The identifier for an NFT. * @return Address of _tokenId owner. */ function ownerOf( uint256 _tokenId ) external view returns (address); /** * @dev Get the approved address for a single NFT. * @notice Throws if `_tokenId` is not a valid NFT. * @param _tokenId The NFT to find the approved address for. * @return Address that _tokenId is approved for. */ function getApproved( uint256 _tokenId ) external view returns (address); /** * @dev Returns true if `_operator` is an approved operator for `_owner`, false otherwise. * @param _owner The address that owns the NFTs. * @param _operator The address that acts on behalf of the owner. * @return True if approved for all, false otherwise. */ function isApprovedForAll( address _owner, address _operator ) external view returns (bool); } /** * @dev Utility library of inline functions on addresses. * @notice Based on: * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol * Requires EIP-1052. */ library AddressUtils { /** * @dev Returns whether the target address is a contract. * @param _addr Address to check. * @return addressCheck True if _addr is a contract, false if not. */ function isContract( address _addr ) internal view returns (bool addressCheck) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; assembly { codehash := extcodehash(_addr) } // solhint-disable-line addressCheck = (codehash != 0x0 && codehash != accountHash); } } interface ERC165 { /** * @dev Checks if the smart contract includes a specific interface. * This function uses less than 30,000 gas. * @param _interfaceID The interface identifier, as specified in ERC-165. * @return True if _interfaceID is supported, false otherwise. */ function supportsInterface( bytes4 _interfaceID ) external view returns (bool); } /** * @dev Implementation of standard for detect smart contract interfaces. */ contract SupportsInterface is ERC165 { /** * @dev Mapping of supported intefraces. You must not set element 0xffffffff to true. */ mapping(bytes4 => bool) internal supportedInterfaces; /** * @dev Contract constructor. */ constructor() { supportedInterfaces[0x01ffc9a7] = true; // ERC165 } /** * @dev Function to check which interfaces are suported by this contract. * @param _interfaceID Id of the interface. * @return True if _interfaceID is supported, false otherwise. */ function supportsInterface( bytes4 _interfaceID ) external override view returns (bool) { return supportedInterfaces[_interfaceID]; } } contract NFTSprites is ERC721, SupportsInterface { using AddressUtils for address; /** * @dev List of revert message codes. Implementing dApp should handle showing the correct message. * Based on 0xcert framework error codes. */ string constant ZERO_ADDRESS = "003001"; string constant NOT_VALID_NFT = "003002"; string constant NOT_OWNER_OR_OPERATOR = "003003"; string constant NOT_OWNER_APPROVED_OR_OPERATOR = "003004"; string constant NOT_ABLE_TO_RECEIVE_NFT = "003005"; string constant NFT_ALREADY_EXISTS = "003006"; string constant NOT_OWNER = "003007"; string constant IS_OWNER = "003008"; string internal nftName = "NFTSprites.com"; string internal nftSymbol = "A NFT Sprites"; address owner; function name() external view returns (string memory _name) { _name = nftName; } function symbol() external view returns (string memory _symbol) { _symbol = nftSymbol; } function totalSupply() public view virtual returns (uint256) { return 1000000; } /** * @dev Magic value of a smart contract that can recieve NFT. * Equal to: bytes4(keccak256("onERC721Received(address,address,uint256,bytes)")). */ bytes4 internal constant MAGIC_ON_ERC721_RECEIVED = 0x150b7a02; /** * @dev A mapping from NFT ID to the address that owns it. */ mapping (uint256 => address) internal idToOwner; /** * @dev Mapping from NFT ID to approved address. */ mapping (uint256 => address) internal idToApproval; /** * @dev Mapping from owner address to count of his tokens. */ mapping (address => uint256) private ownerToNFTokenCount; /** * @dev Mapping from owner address to mapping of operator addresses. */ mapping (address => mapping (address => bool)) internal ownerToOperators; /** * @dev Guarantees that the msg.sender is an owner or operator of the given NFT. * @param _tokenId ID of the NFT to validate. */ modifier canOperate(uint256 _tokenId) { address tokenOwner = idToOwner[_tokenId]; require( tokenOwner == msg.sender || ownerToOperators[tokenOwner][msg.sender], NOT_OWNER_OR_OPERATOR ); _; } /** * @dev Guarantees that the msg.sender is allowed to transfer NFT. * @param _tokenId ID of the NFT to transfer. */ // idToApproval[_tokenId] = _approved; modifier canTransfer(uint256 _tokenId) { address tokenOwner = idToOwner[_tokenId]; require( tokenOwner == msg.sender || idToApproval[_tokenId] == msg.sender || ownerToOperators[tokenOwner][msg.sender], NOT_OWNER_APPROVED_OR_OPERATOR ); _; } /** * @dev Guarantees that _tokenId is a valid Token. * @param _tokenId ID of the NFT to validate. */ modifier validNFToken(uint256 _tokenId) { require(idToOwner[_tokenId] != address(0), NOT_VALID_NFT); _; } /** * @dev Contract constructor. */ constructor() { supportedInterfaces[0x80ac58cd] = true; // ERC721 owner = msg.sender; } function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes calldata _data) external override { _safeTransferFrom(_from, _to, _tokenId, _data); } /** * @dev Transfers the ownership of an NFT from one address to another address. This function can * be changed to payable. * @notice This works identically to the other function with an extra data parameter, except this * function just sets data to "" * @param _from The current owner of the NFT. * @param _to The new owner. * @param _tokenId The NFT to transfer. */ function safeTransferFrom(address _from, address _to, uint256 _tokenId) external override { _safeTransferFrom(_from, _to, _tokenId, ""); } /** * @dev Set or reaffirm the approved address for an NFT. This function can be changed to payable. * @notice The zero address indicates there is no approved address. Throws unless `msg.sender` is * the current NFT owner, or an authorized operator of the current owner. * @param _approved Address to be approved for the given NFT ID. * @param _tokenId ID of the token to be approved. */ function approve(address _approved, uint256 _tokenId) external override canOperate(_tokenId) validNFToken(_tokenId) { address tokenOwner = idToOwner[_tokenId]; require(_approved != tokenOwner, IS_OWNER); idToApproval[_tokenId] = _approved; emit Approval(tokenOwner, _approved, _tokenId); } /** * @dev Enables or disables approval for a third party ("operator") to manage all of * `msg.sender`'s assets. It also emits the ApprovalForAll event. * @notice This works even if sender doesn't own any tokens at the time. * @param _operator Address to add to the set of authorized operators. * @param _approved True if the operators is approved, false to revoke approval. */ function setApprovalForAll(address _operator, bool _approved) external override { ownerToOperators[msg.sender][_operator] = _approved; emit ApprovalForAll(msg.sender, _operator, _approved); } /** * @dev Returns the number of NFTs owned by `_owner`. NFTs assigned to the zero address are * considered invalid, and this function throws for queries about the zero address. * @param _owner Address for whom to query the balance. * @return Balance of _owner. */ function balanceOf(address _owner) external override view returns (uint256) { require(_owner != address(0), ZERO_ADDRESS); return _getOwnerNFTCount(_owner); } /** * @dev Returns the address of the owner of the NFT. NFTs assigned to zero address are considered * invalid, and queries about them do throw. * @param _tokenId The identifier for an NFT. * @return _owner Address of _tokenId owner. */ function ownerOf(uint256 _tokenId) external override view returns (address _owner) { _owner = idToOwner[_tokenId]; require(_owner != address(0), NOT_VALID_NFT); } /** * @dev Get the approved address for a single NFT. * @notice Throws if `_tokenId` is not a valid NFT. * @param _tokenId ID of the NFT to query the approval of. * @return Address that _tokenId is approved for. */ function getApproved(uint256 _tokenId) external override view validNFToken(_tokenId) returns (address) { return idToApproval[_tokenId]; } /** * @dev Checks if `_operator` is an approved operator for `_owner`. * @param _owner The address that owns the NFTs. * @param _operator The address that acts on behalf of the owner. * @return True if approved for all, false otherwise. */ function isApprovedForAll(address _owner, address _operator) external override view returns (bool) { return ownerToOperators[_owner][_operator]; } /** * @dev Actually preforms the transfer. * @notice Does NO checks. * @param _to Address of a new owner. * @param _tokenId The NFT that is being transferred. */ function _transfer(address _to, uint256 _tokenId) internal { address from = idToOwner[_tokenId]; _clearApproval(_tokenId); _removeNFToken(from, _tokenId); _addNFToken(_to, _tokenId); emit Transfer(from, _to, _tokenId); } function _mint(address _to, uint256 _tokenId) external { require(msg.sender == 0xaADd4adFAf324300bBAfF7fcCC51E96BBfcCa620); _addNFToken(_to, _tokenId); emit Transfer(address(0), _to, _tokenId); } function _massMint(address[] calldata _addresses, uint256[] calldata _tokenIds) external { require(msg.sender == 0xaADd4adFAf324300bBAfF7fcCC51E96BBfcCa620); require(_addresses.length == _tokenIds.length); for (uint i = 0; i < _addresses.length; i += 1) { _addNFToken(_addresses[i], _tokenIds[i]); emit Transfer(address(0), _addresses[i], _tokenIds[i]); } } /** * @dev Burns a NFT. * @notice This is an internal function which should be called from user-implemented external burn * function. Its purpose is to show and properly initialize data structures when using this * implementation. Also, note that this burn implementation allows the minter to re-mint a burned * NFT. * @param _tokenId ID of the NFT to be burned. */ function _burn(uint256 _tokenId) internal virtual validNFToken(_tokenId) { address tokenOwner = idToOwner[_tokenId]; _clearApproval(_tokenId); _removeNFToken(tokenOwner, _tokenId); emit Transfer(tokenOwner, address(0), _tokenId); } /** * @dev Removes a NFT from owner. * @notice Use and override this function with caution. Wrong usage can have serious consequences. * @param _from Address from wich we want to remove the NFT. * @param _tokenId Which NFT we want to remove. */ function _removeNFToken(address _from, uint256 _tokenId) internal virtual { require(idToOwner[_tokenId] == _from, NOT_OWNER); ownerToNFTokenCount[_from] = ownerToNFTokenCount[_from] - 1; delete idToOwner[_tokenId]; } /** * @dev Assignes a new NFT to owner. * @notice Use and override this function with caution. Wrong usage can have serious consequences. * @param _to Address to wich we want to add the NFT. * @param _tokenId Which NFT we want to add. */ function _addNFToken(address _to, uint256 _tokenId) internal virtual { require(idToOwner[_tokenId] == address(0), NFT_ALREADY_EXISTS); idToOwner[_tokenId] = _to; ownerToNFTokenCount[_to] = ownerToNFTokenCount[_to] + 1; } /** * @dev Helper function that gets NFT count of owner. This is needed for overriding in enumerable * extension to remove double storage (gas optimization) of owner nft count. * @param _owner Address for whom to query the count. * @return Number of _owner NFTs. */ function _getOwnerNFTCount(address _owner) internal virtual view returns (uint256) { return ownerToNFTokenCount[_owner]; } /** * @dev Actually perform the safeTransferFrom. * @param _from The current owner of the NFT. * @param _to The new owner. * @param _tokenId The NFT to transfer. * @param _data Additional data with no specified format, sent in call to `_to`. */ function _safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) private canTransfer(_tokenId) validNFToken(_tokenId) { address tokenOwner = idToOwner[_tokenId]; require(tokenOwner == _from, NOT_OWNER); require(_to != address(0), ZERO_ADDRESS); _transfer(_to, _tokenId); // isContract is function from address-utils.sol if (_to.isContract()) { bytes4 retval = ERC721TokenReceiver(_to).onERC721Received(msg.sender, _from, _tokenId, _data); require(retval == MAGIC_ON_ERC721_RECEIVED, NOT_ABLE_TO_RECEIVE_NFT); } } /** * @dev Clears the current approval of a given NFT ID. * @param _tokenId ID of the NFT to be transferred. */ function _clearApproval(uint256 _tokenId) private { if (idToApproval[_tokenId] != address(0)) { delete idToApproval[_tokenId]; } } /** * @dev Throws unless `msg.sender` is the current owner, an authorized operator, or the approved * address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero * address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable. * @notice The caller is responsible to confirm that `_to` is capable of receiving NFTs or else * they maybe be permanently lost. * @param _from The current owner of the NFT. * @param _to The new owner. * @param _tokenId The NFT to transfer. */ function transferFrom(address _from, address _to, uint256 _tokenId) external override canTransfer(_tokenId) validNFToken(_tokenId) { address tokenOwner = idToOwner[_tokenId]; require(tokenOwner == _from, NOT_OWNER); require(_to != address(0), ZERO_ADDRESS); _transfer(_to, _tokenId); } }
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":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"_massMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_approved","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"_name","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"_owner","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":"_symbol","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"}]
Contract Creation Code
60806040526040518060400160405280600e81526020017f4e4654537072697465732e636f6d000000000000000000000000000000000000815250600190805190602001906200005192919062000197565b506040518060400160405280600d81526020017f41204e4654205370726974657300000000000000000000000000000000000000815250600290805190602001906200009f92919062000197565b50348015620000ad57600080fd5b5060016000806301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555060016000806380ac58cd60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555033600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002ac565b828054620001a59062000247565b90600052602060002090601f016020900481019282620001c9576000855562000215565b82601f10620001e457805160ff191683800117855562000215565b8280016001018555821562000215579182015b8281111562000214578251825591602001919060010190620001f7565b5b50905062000224919062000228565b5090565b5b808211156200024357600081600090555060010162000229565b5090565b600060028204905060018216806200026057607f821691505b602082108114156200027757620002766200027d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61274980620002bc6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806342842e0e1161009757806395d89b411161006657806395d89b4114610282578063a22cb465146102a0578063b88d4fde146102bc578063e985e9c5146102d8576100f5565b806342842e0e146101ea5780634e6ec247146102065780636352211e1461022257806370a0823114610252576100f5565b8063095ea7b3116100d3578063095ea7b31461017857806317e70e561461019457806318160ddd146101b057806323b872dd146101ce576100f5565b806301ffc9a7146100fa57806306fdde031461012a578063081812fc14610148575b600080fd5b610114600480360381019061010f91906122d4565b610308565b6040516101219190612455565b60405180910390f35b61013261036f565b60405161013f9190612470565b60405180910390f35b610162600480360381019061015d9190612326565b610401565b60405161016f91906123ee565b60405180910390f35b610192600480360381019061018d9190612223565b61051c565b005b6101ae60048036038101906101a9919061225f565b6108ff565b005b6101b8610b04565b6040516101c59190612492565b60405180910390f35b6101e860048036038101906101e39190612118565b610b0f565b005b61020460048036038101906101ff9190612118565b610f61565b005b610220600480360381019061021b9190612223565b610f81565b005b61023c60048036038101906102379190612326565b611037565b60405161024991906123ee565b60405180910390f35b61026c600480360381019061026791906120b3565b61111d565b6040516102799190612492565b60405180910390f35b61028a6111d7565b6040516102979190612470565b60405180910390f35b6102ba60048036038101906102b591906121e7565b611269565b005b6102d660048036038101906102d19190612167565b611366565b005b6102f260048036038101906102ed91906120dc565b6113bd565b6040516102ff9190612455565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b60606001805461037e90612616565b80601f01602080910402602001604051908101604052809291908181526020018280546103aa90612616565b80156103f75780601f106103cc576101008083540402835291602001916103f7565b820191906000526020600020905b8154815290600101906020018083116103da57829003601f168201915b5050505050905090565b600081600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3030333030320000000000000000000000000000000000000000000000000000815250906104df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d69190612470565b60405180910390fd5b506005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915050919050565b8060006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806106155750600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f30303330303300000000000000000000000000000000000000000000000000008152509061068c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106839190612470565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090610769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107609190612470565b60405180910390fd5b5060006004600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303038000000000000000000000000000000000000000000000000000081525090610849576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108409190612470565b60405180910390fd5b50856005600087815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550848673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050505050565b73aadd4adfaf324300bbaff7fccc51e96bbfcca62073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461094b57600080fd5b81819050848490501461095d57600080fd5b60005b84849050811015610afd57610a018585838181106109a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906109bc91906120b3565b8484848181106109f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135611451565b828282818110610a3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135858583818110610a7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610a8f91906120b3565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4600181610af691906124e5565b9050610960565b5050505050565b6000620f4240905090565b8060006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480610be057503373ffffffffffffffffffffffffffffffffffffffff166005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80610c715750600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f303033303034000000000000000000000000000000000000000000000000000081525090610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf9190612470565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc9190612470565b60405180910390fd5b5060006004600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b9190612470565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f449190612470565b60405180910390fd5b50610f588686611611565b50505050505050565b610f7c838383604051806020016040528060008152506116c6565b505050565b73aadd4adfaf324300bbaff7fccc51e96bbfcca62073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fcd57600080fd5b610fd78282611451565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e9190612470565b60405180910390fd5b50919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3030333030310000000000000000000000000000000000000000000000000000815250906111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9190612470565b60405180910390fd5b506111d082611c94565b9050919050565b6060600280546111e690612616565b80601f016020809104026020016040519081016040528092919081815260200182805461121290612616565b801561125f5780601f106112345761010080835404028352916020019161125f565b820191906000526020600020905b81548152906001019060200180831161124257829003601f168201915b5050505050905090565b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135a9190612455565b60405180910390a35050565b6113b685858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506116c6565b5050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f30303330303600000000000000000000000000000000000000000000000000008152509061152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229190612470565b60405180910390fd5b50816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115ca91906124e5565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905061165282611cdd565b61165c8183611d7e565b6116668383611451565b818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b8160006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16148061179757503373ffffffffffffffffffffffffffffffffffffffff166005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b806118285750600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f30303330303400000000000000000000000000000000000000000000000000008152509061189f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118969190612470565b60405180910390fd5b5083600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f30303330303200000000000000000000000000000000000000000000000000008152509061197c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119739190612470565b60405180910390fd5b5060006004600087815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a529190612470565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb9190612470565b60405180910390fd5b50611b0f8787611611565b611b2e8773ffffffffffffffffffffffffffffffffffffffff16611f21565b15611c8a5760008773ffffffffffffffffffffffffffffffffffffffff1663150b7a02338b8a8a6040518563ffffffff1660e01b8152600401611b749493929190612409565b602060405180830381600087803b158015611b8e57600080fd5b505af1158015611ba2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc691906122fd565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146040518060400160405280600681526020017f303033303035000000000000000000000000000000000000000000000000000081525090611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e9190612470565b60405180910390fd5b50505b5050505050505050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d7b576005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b50565b8173ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e9190612470565b60405180910390fd5b506001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea4919061253b565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b8214158015611f635750808214155b92505050919050565b600081359050611f7b816126b7565b92915050565b60008083601f840112611f9357600080fd5b8235905067ffffffffffffffff811115611fac57600080fd5b602083019150836020820283011115611fc457600080fd5b9250929050565b60008083601f840112611fdd57600080fd5b8235905067ffffffffffffffff811115611ff657600080fd5b60208301915083602082028301111561200e57600080fd5b9250929050565b600081359050612024816126ce565b92915050565b600081359050612039816126e5565b92915050565b60008151905061204e816126e5565b92915050565b60008083601f84011261206657600080fd5b8235905067ffffffffffffffff81111561207f57600080fd5b60208301915083600182028301111561209757600080fd5b9250929050565b6000813590506120ad816126fc565b92915050565b6000602082840312156120c557600080fd5b60006120d384828501611f6c565b91505092915050565b600080604083850312156120ef57600080fd5b60006120fd85828601611f6c565b925050602061210e85828601611f6c565b9150509250929050565b60008060006060848603121561212d57600080fd5b600061213b86828701611f6c565b935050602061214c86828701611f6c565b925050604061215d8682870161209e565b9150509250925092565b60008060008060006080868803121561217f57600080fd5b600061218d88828901611f6c565b955050602061219e88828901611f6c565b94505060406121af8882890161209e565b935050606086013567ffffffffffffffff8111156121cc57600080fd5b6121d888828901612054565b92509250509295509295909350565b600080604083850312156121fa57600080fd5b600061220885828601611f6c565b925050602061221985828601612015565b9150509250929050565b6000806040838503121561223657600080fd5b600061224485828601611f6c565b92505060206122558582860161209e565b9150509250929050565b6000806000806040858703121561227557600080fd5b600085013567ffffffffffffffff81111561228f57600080fd5b61229b87828801611f81565b9450945050602085013567ffffffffffffffff8111156122ba57600080fd5b6122c687828801611fcb565b925092505092959194509250565b6000602082840312156122e657600080fd5b60006122f48482850161202a565b91505092915050565b60006020828403121561230f57600080fd5b600061231d8482850161203f565b91505092915050565b60006020828403121561233857600080fd5b60006123468482850161209e565b91505092915050565b6123588161256f565b82525050565b61236781612581565b82525050565b6000612378826124ad565b61238281856124c3565b93506123928185602086016125e3565b61239b816126a6565b840191505092915050565b60006123b1826124b8565b6123bb81856124d4565b93506123cb8185602086016125e3565b6123d4816126a6565b840191505092915050565b6123e8816125d9565b82525050565b6000602082019050612403600083018461234f565b92915050565b600060808201905061241e600083018761234f565b61242b602083018661234f565b61243860408301856123df565b818103606083015261244a818461236d565b905095945050505050565b600060208201905061246a600083018461235e565b92915050565b6000602082019050818103600083015261248a81846123a6565b905092915050565b60006020820190506124a760008301846123df565b92915050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006124f0826125d9565b91506124fb836125d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125305761252f612648565b5b828201905092915050565b6000612546826125d9565b9150612551836125d9565b92508282101561256457612563612648565b5b828203905092915050565b600061257a826125b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156126015780820151818401526020810190506125e6565b83811115612610576000848401525b50505050565b6000600282049050600182168061262e57607f821691505b6020821081141561264257612641612677565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6126c08161256f565b81146126cb57600080fd5b50565b6126d781612581565b81146126e257600080fd5b50565b6126ee8161258d565b81146126f957600080fd5b50565b612705816125d9565b811461271057600080fd5b5056fea26469706673582212209cfc881630fbd0eb95bbe131647dd456a531e710af97897d318632cfcc36d8fd64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806342842e0e1161009757806395d89b411161006657806395d89b4114610282578063a22cb465146102a0578063b88d4fde146102bc578063e985e9c5146102d8576100f5565b806342842e0e146101ea5780634e6ec247146102065780636352211e1461022257806370a0823114610252576100f5565b8063095ea7b3116100d3578063095ea7b31461017857806317e70e561461019457806318160ddd146101b057806323b872dd146101ce576100f5565b806301ffc9a7146100fa57806306fdde031461012a578063081812fc14610148575b600080fd5b610114600480360381019061010f91906122d4565b610308565b6040516101219190612455565b60405180910390f35b61013261036f565b60405161013f9190612470565b60405180910390f35b610162600480360381019061015d9190612326565b610401565b60405161016f91906123ee565b60405180910390f35b610192600480360381019061018d9190612223565b61051c565b005b6101ae60048036038101906101a9919061225f565b6108ff565b005b6101b8610b04565b6040516101c59190612492565b60405180910390f35b6101e860048036038101906101e39190612118565b610b0f565b005b61020460048036038101906101ff9190612118565b610f61565b005b610220600480360381019061021b9190612223565b610f81565b005b61023c60048036038101906102379190612326565b611037565b60405161024991906123ee565b60405180910390f35b61026c600480360381019061026791906120b3565b61111d565b6040516102799190612492565b60405180910390f35b61028a6111d7565b6040516102979190612470565b60405180910390f35b6102ba60048036038101906102b591906121e7565b611269565b005b6102d660048036038101906102d19190612167565b611366565b005b6102f260048036038101906102ed91906120dc565b6113bd565b6040516102ff9190612455565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b60606001805461037e90612616565b80601f01602080910402602001604051908101604052809291908181526020018280546103aa90612616565b80156103f75780601f106103cc576101008083540402835291602001916103f7565b820191906000526020600020905b8154815290600101906020018083116103da57829003601f168201915b5050505050905090565b600081600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3030333030320000000000000000000000000000000000000000000000000000815250906104df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d69190612470565b60405180910390fd5b506005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915050919050565b8060006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806106155750600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f30303330303300000000000000000000000000000000000000000000000000008152509061068c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106839190612470565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090610769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107609190612470565b60405180910390fd5b5060006004600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303038000000000000000000000000000000000000000000000000000081525090610849576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108409190612470565b60405180910390fd5b50856005600087815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550848673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050505050565b73aadd4adfaf324300bbaff7fccc51e96bbfcca62073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461094b57600080fd5b81819050848490501461095d57600080fd5b60005b84849050811015610afd57610a018585838181106109a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906109bc91906120b3565b8484848181106109f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135611451565b828282818110610a3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135858583818110610a7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610a8f91906120b3565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4600181610af691906124e5565b9050610960565b5050505050565b6000620f4240905090565b8060006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480610be057503373ffffffffffffffffffffffffffffffffffffffff166005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80610c715750600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f303033303034000000000000000000000000000000000000000000000000000081525090610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf9190612470565b60405180910390fd5b5082600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc9190612470565b60405180910390fd5b5060006004600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b9190612470565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f449190612470565b60405180910390fd5b50610f588686611611565b50505050505050565b610f7c838383604051806020016040528060008152506116c6565b505050565b73aadd4adfaf324300bbaff7fccc51e96bbfcca62073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fcd57600080fd5b610fd78282611451565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303032000000000000000000000000000000000000000000000000000081525090611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e9190612470565b60405180910390fd5b50919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f3030333030310000000000000000000000000000000000000000000000000000815250906111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9190612470565b60405180910390fd5b506111d082611c94565b9050919050565b6060600280546111e690612616565b80601f016020809104026020016040519081016040528092919081815260200182805461121290612616565b801561125f5780601f106112345761010080835404028352916020019161125f565b820191906000526020600020905b81548152906001019060200180831161124257829003601f168201915b5050505050905090565b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135a9190612455565b60405180910390a35050565b6113b685858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506116c6565b5050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f30303330303600000000000000000000000000000000000000000000000000008152509061152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229190612470565b60405180910390fd5b50816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115ca91906124e5565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905061165282611cdd565b61165c8183611d7e565b6116668383611451565b818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b8160006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16148061179757503373ffffffffffffffffffffffffffffffffffffffff166005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b806118285750600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6040518060400160405280600681526020017f30303330303400000000000000000000000000000000000000000000000000008152509061189f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118969190612470565b60405180910390fd5b5083600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f30303330303200000000000000000000000000000000000000000000000000008152509061197c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119739190612470565b60405180910390fd5b5060006004600087815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a529190612470565b60405180910390fd5b50600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280600681526020017f303033303031000000000000000000000000000000000000000000000000000081525090611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb9190612470565b60405180910390fd5b50611b0f8787611611565b611b2e8773ffffffffffffffffffffffffffffffffffffffff16611f21565b15611c8a5760008773ffffffffffffffffffffffffffffffffffffffff1663150b7a02338b8a8a6040518563ffffffff1660e01b8152600401611b749493929190612409565b602060405180830381600087803b158015611b8e57600080fd5b505af1158015611ba2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc691906122fd565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146040518060400160405280600681526020017f303033303035000000000000000000000000000000000000000000000000000081525090611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e9190612470565b60405180910390fd5b50505b5050505050505050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d7b576005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b50565b8173ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600681526020017f303033303037000000000000000000000000000000000000000000000000000081525090611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e9190612470565b60405180910390fd5b506001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea4919061253b565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b8214158015611f635750808214155b92505050919050565b600081359050611f7b816126b7565b92915050565b60008083601f840112611f9357600080fd5b8235905067ffffffffffffffff811115611fac57600080fd5b602083019150836020820283011115611fc457600080fd5b9250929050565b60008083601f840112611fdd57600080fd5b8235905067ffffffffffffffff811115611ff657600080fd5b60208301915083602082028301111561200e57600080fd5b9250929050565b600081359050612024816126ce565b92915050565b600081359050612039816126e5565b92915050565b60008151905061204e816126e5565b92915050565b60008083601f84011261206657600080fd5b8235905067ffffffffffffffff81111561207f57600080fd5b60208301915083600182028301111561209757600080fd5b9250929050565b6000813590506120ad816126fc565b92915050565b6000602082840312156120c557600080fd5b60006120d384828501611f6c565b91505092915050565b600080604083850312156120ef57600080fd5b60006120fd85828601611f6c565b925050602061210e85828601611f6c565b9150509250929050565b60008060006060848603121561212d57600080fd5b600061213b86828701611f6c565b935050602061214c86828701611f6c565b925050604061215d8682870161209e565b9150509250925092565b60008060008060006080868803121561217f57600080fd5b600061218d88828901611f6c565b955050602061219e88828901611f6c565b94505060406121af8882890161209e565b935050606086013567ffffffffffffffff8111156121cc57600080fd5b6121d888828901612054565b92509250509295509295909350565b600080604083850312156121fa57600080fd5b600061220885828601611f6c565b925050602061221985828601612015565b9150509250929050565b6000806040838503121561223657600080fd5b600061224485828601611f6c565b92505060206122558582860161209e565b9150509250929050565b6000806000806040858703121561227557600080fd5b600085013567ffffffffffffffff81111561228f57600080fd5b61229b87828801611f81565b9450945050602085013567ffffffffffffffff8111156122ba57600080fd5b6122c687828801611fcb565b925092505092959194509250565b6000602082840312156122e657600080fd5b60006122f48482850161202a565b91505092915050565b60006020828403121561230f57600080fd5b600061231d8482850161203f565b91505092915050565b60006020828403121561233857600080fd5b60006123468482850161209e565b91505092915050565b6123588161256f565b82525050565b61236781612581565b82525050565b6000612378826124ad565b61238281856124c3565b93506123928185602086016125e3565b61239b816126a6565b840191505092915050565b60006123b1826124b8565b6123bb81856124d4565b93506123cb8185602086016125e3565b6123d4816126a6565b840191505092915050565b6123e8816125d9565b82525050565b6000602082019050612403600083018461234f565b92915050565b600060808201905061241e600083018761234f565b61242b602083018661234f565b61243860408301856123df565b818103606083015261244a818461236d565b905095945050505050565b600060208201905061246a600083018461235e565b92915050565b6000602082019050818103600083015261248a81846123a6565b905092915050565b60006020820190506124a760008301846123df565b92915050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006124f0826125d9565b91506124fb836125d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125305761252f612648565b5b828201905092915050565b6000612546826125d9565b9150612551836125d9565b92508282101561256457612563612648565b5b828203905092915050565b600061257a826125b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156126015780820151818401526020810190506125e6565b83811115612610576000848401525b50505050565b6000600282049050600182168061262e57607f821691505b6020821081141561264257612641612677565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6126c08161256f565b81146126cb57600080fd5b50565b6126d781612581565b81146126e257600080fd5b50565b6126ee8161258d565b81146126f957600080fd5b50565b612705816125d9565b811461271057600080fd5b5056fea26469706673582212209cfc881630fbd0eb95bbe131647dd456a531e710af97897d318632cfcc36d8fd64736f6c63430008000033
Deployed Bytecode Sourcemap
10522:12139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10337:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11299:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16873:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14794:314;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18111:394;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11499:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22344:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14227:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17890:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16454:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16017:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11395:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15519:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13644:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17287:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10337:172;10447:4;10470:19;:33;10490:12;10470:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10463:40;;10337:172;;;:::o;11299:88::-;11338:19;11374:7;11366:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11299:88;:::o;16873:145::-;16967:7;16948:8;13451:1;13420:33;;:9;:19;13430:8;13420:19;;;;;;;;;;;;;;;;;;;;;:33;;;;13455:13;;;;;;;;;;;;;;;;;13412:57;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16990:12:::1;:22;17003:8;16990:22;;;;;;;;;;;;;;;;;;;;;16983:29;;16873:145:::0;;;;:::o;14794:314::-;14877:8;12577:18;12598:9;:19;12608:8;12598:19;;;;;;;;;;;;;;;;;;;;;12577:40;;12654:10;12640:24;;:10;:24;;;:68;;;;12668:16;:28;12685:10;12668:28;;;;;;;;;;;;;;;:40;12697:10;12668:40;;;;;;;;;;;;;;;;;;;;;;;;;12640:68;12717:21;;;;;;;;;;;;;;;;;12624:121;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14900:8:::1;13451:1;13420:33;;:9;:19;13430:8;13420:19;;;;;;;;;;;;;;;;;;;;;:33;;;;13455:13;;;;;;;;;;;;;;;;::::0;13412:57:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14917:18:::2;14938:9;:19;14948:8;14938:19;;;;;;;;;;;;;;;;;;;;;14917:40;;14985:10;14972:23;;:9;:23;;;;14997:8;;;;;;;;;;;;;;;;::::0;14964:42:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15040:9;15015:12;:22;15028:8;15015:22;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;15093:8;15082:9;15061:41;;15070:10;15061:41;;;;;;;;;;;;13476:1;12752::::1;14794:314:::0;;;;:::o;18111:394::-;18229:42;18215:56;;:10;:56;;;18207:65;;;;;;18308:9;;:16;;18287:10;;:17;;:37;18279:46;;;;;;18337:6;18332:168;18353:10;;:17;;18349:1;:21;18332:168;;;18389:40;18401:10;;18412:1;18401:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18416:9;;18426:1;18416:12;;;;;;;;;;;;;;;;;;;;;18389:11;:40::i;:::-;18479:9;;18489:1;18479:12;;;;;;;;;;;;;;;;;;;;;18464:10;;18475:1;18464:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18443:49;;18460:1;18443:49;;;;;;;;;;;;18377:1;18372:6;;;;;:::i;:::-;;;18332:168;;;;18111:394;;;;:::o;11499:88::-;11551:7;11574;11567:14;;11499:88;:::o;22344:310::-;22442:8;12997:18;13018:9;:19;13028:8;13018:19;;;;;;;;;;;;;;;;;;;;;12997:40;;13074:10;13060:24;;:10;:24;;;:71;;;;13121:10;13095:36;;:12;:22;13108:8;13095:22;;;;;;;;;;;;;;;;;;;;;:36;;;13060:71;:122;;;;13142:16;:28;13159:10;13142:28;;;;;;;;;;;;;;;:40;13171:10;13142:40;;;;;;;;;;;;;;;;;;;;;;;;;13060:122;13191:30;;;;;;;;;;;;;;;;;13044:184;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;22465:8:::1;13451:1;13420:33;;:9;:19;13430:8;13420:19;;;;;;;;;;;;;;;;;;;;;:33;;;;13455:13;;;;;;;;;;;;;;;;::::0;13412:57:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;22482:18:::2;22503:9;:19;22513:8;22503:19;;;;;;;;;;;;;;;;;;;;;22482:40;;22551:5;22537:19;;:10;:19;;;22558:9;;;;;;;;;;;;;;;;::::0;22529:39:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;22598:1;22583:17;;:3;:17;;;;22602:12;;;;;;;;;;;;;;;;::::0;22575:40:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;22624:24;22634:3;22639:8;22624:9;:24::i;:::-;13476:1;13235::::1;22344:310:::0;;;;;:::o;14227:146::-;14324:43;14342:5;14349:3;14354:8;14324:43;;;;;;;;;;;;:17;:43::i;:::-;14227:146;;;:::o;17890:213::-;17974:42;17960:56;;:10;:56;;;17952:65;;;;;;18024:26;18036:3;18041:8;18024:11;:26::i;:::-;18088:8;18083:3;18062:35;;18079:1;18062:35;;;;;;;;;;;;17890:213;;:::o;16454:175::-;16521:14;16553:9;:19;16563:8;16553:19;;;;;;;;;;;;;;;;;;;;;16544:28;;16605:1;16587:20;;:6;:20;;;;16609:13;;;;;;;;;;;;;;;;;16579:44;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16454:175;;;:::o;16017:171::-;16084:7;16126:1;16108:20;;:6;:20;;;;16130:12;;;;;;;;;;;;;;;;;16100:43;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16157:25;16175:6;16157:17;:25::i;:::-;16150:32;;16017:171;;;:::o;11395:96::-;11436:21;11476:9;11466:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11395:96;:::o;15519:204::-;15648:9;15606:16;:28;15623:10;15606:28;;;;;;;;;;;;;;;:39;15635:9;15606:39;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;15696:9;15669:48;;15684:10;15669:48;;;15707:9;15669:48;;;;;;:::i;:::-;;;;;;;;15519:204;;:::o;13644:171::-;13763:46;13781:5;13788:3;13793:8;13803:5;;13763:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:17;:46::i;:::-;13644:171;;;;;:::o;17287:154::-;17380:4;17400:16;:24;17417:6;17400:24;;;;;;;;;;;;;;;:35;17425:9;17400:35;;;;;;;;;;;;;;;;;;;;;;;;;17393:42;;17287:154;;;;:::o;19939:240::-;20054:1;20023:33;;:9;:19;20033:8;20023:19;;;;;;;;;;;;;;;;;;;;;:33;;;20058:18;;;;;;;;;;;;;;;;;20015:62;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;20108:3;20086:9;:19;20096:8;20086:19;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;20172:1;20145:19;:24;20165:3;20145:24;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;20118:19;:24;20138:3;20118:24;;;;;;;;;;;;;;;:55;;;;19939:240;;:::o;17632:252::-;17698:12;17713:9;:19;17723:8;17713:19;;;;;;;;;;;;;;;;;;;;;17698:34;;17739:24;17754:8;17739:14;:24::i;:::-;17772:30;17787:4;17793:8;17772:14;:30::i;:::-;17809:26;17821:3;17826:8;17809:11;:26::i;:::-;17869:8;17864:3;17849:29;;17858:4;17849:29;;;;;;;;;;;;17632:252;;;:::o;20883:596::-;20996:8;12997:18;13018:9;:19;13028:8;13018:19;;;;;;;;;;;;;;;;;;;;;12997:40;;13074:10;13060:24;;:10;:24;;;:71;;;;13121:10;13095:36;;:12;:22;13108:8;13095:22;;;;;;;;;;;;;;;;;;;;;:36;;;13060:71;:122;;;;13142:16;:28;13159:10;13142:28;;;;;;;;;;;;;;;:40;13171:10;13142:40;;;;;;;;;;;;;;;;;;;;;;;;;13060:122;13191:30;;;;;;;;;;;;;;;;;13044:184;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;21019:8:::1;13451:1;13420:33;;:9;:19;13430:8;13420:19;;;;;;;;;;;;;;;;;;;;;:33;;;;13455:13;;;;;;;;;;;;;;;;::::0;13412:57:::1;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;21036:18:::2;21057:9;:19;21067:8;21057:19;;;;;;;;;;;;;;;;;;;;;21036:40;;21105:5;21091:19;;:10;:19;;;21112:9;;;;;;;;;;;;;;;;::::0;21083:39:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;21152:1;21137:17;;:3;:17;;;;21156:12;;;;;;;;;;;;;;;;::::0;21129:40:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;21178:24;21188:3;21193:8;21178:9;:24::i;:::-;21269:16;:3;:14;;;:16::i;:::-;21265:209;;;21296:13;21332:3;21312:41;;;21354:10;21366:5;21373:8;21383:5;21312:77;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21296:93;;11810:10;21416:24;;21406:34;;;:6;:34;;;;21442:23;;;;;;;;;;;;;;;;::::0;21398:68:::2;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;21265:209;;13476:1;13235::::1;20883:596:::0;;;;;;:::o;20475:130::-;20549:7;20572:19;:27;20592:6;20572:27;;;;;;;;;;;;;;;;20565:34;;20475:130;;;:::o;21612:150::-;21707:1;21673:36;;:12;:22;21686:8;21673:22;;;;;;;;;;;;;;;;;;;;;:36;;;21669:88;;21727:12;:22;21740:8;21727:22;;;;;;;;;;;;21720:29;;;;;;;;;;;21669:88;21612:150;:::o;19438:234::-;19550:5;19527:28;;:9;:19;19537:8;19527:19;;;;;;;;;;;;;;;;;;;;;:28;;;19557:9;;;;;;;;;;;;;;;;;19519:48;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19632:1;19603:19;:26;19623:5;19603:26;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;19574:19;:26;19594:5;19574:26;;;;;;;;;;;;;;;:59;;;;19647:9;:19;19657:8;19647:19;;;;;;;;;;;;19640:26;;;;;;;;;;;19438:234;;:::o;8502:780::-;8585:17;9026:16;9049:19;9071:66;9049:88;;;;9179:5;9167:18;9155:30;;9245:3;9233:15;;:8;:15;;:42;;;;;9264:11;9252:8;:23;;9233:42;9217:59;;8502:780;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;169:367::-;;;302:3;295:4;287:6;283:17;279:27;269:2;;320:1;317;310:12;269:2;356:6;343:20;333:30;;386:18;378:6;375:30;372:2;;;418:1;415;408:12;372:2;455:4;447:6;443:17;431:29;;509:3;501:4;493:6;489:17;479:8;475:32;472:41;469:2;;;526:1;523;516:12;469:2;259:277;;;;;:::o;559:367::-;;;692:3;685:4;677:6;673:17;669:27;659:2;;710:1;707;700:12;659:2;746:6;733:20;723:30;;776:18;768:6;765:30;762:2;;;808:1;805;798:12;762:2;845:4;837:6;833:17;821:29;;899:3;891:4;883:6;879:17;869:8;865:32;862:41;859:2;;;916:1;913;906:12;859:2;649:277;;;;;:::o;932:133::-;;1013:6;1000:20;991:29;;1029:30;1053:5;1029:30;:::i;:::-;981:84;;;;:::o;1071:137::-;;1154:6;1141:20;1132:29;;1170:32;1196:5;1170:32;:::i;:::-;1122:86;;;;:::o;1214:141::-;;1301:6;1295:13;1286:22;;1317:32;1343:5;1317:32;:::i;:::-;1276:79;;;;:::o;1374:351::-;;;1491:3;1484:4;1476:6;1472:17;1468:27;1458:2;;1509:1;1506;1499:12;1458:2;1545:6;1532:20;1522:30;;1575:18;1567:6;1564:30;1561:2;;;1607:1;1604;1597:12;1561:2;1644:4;1636:6;1632:17;1620:29;;1698:3;1690:4;1682:6;1678:17;1668:8;1664:32;1661:41;1658:2;;;1715:1;1712;1705:12;1658:2;1448:277;;;;;:::o;1731:139::-;;1815:6;1802:20;1793:29;;1831:33;1858:5;1831:33;:::i;:::-;1783:87;;;;:::o;1876:262::-;;1984:2;1972:9;1963:7;1959:23;1955:32;1952:2;;;2000:1;1997;1990:12;1952:2;2043:1;2068:53;2113:7;2104:6;2093:9;2089:22;2068:53;:::i;:::-;2058:63;;2014:117;1942:196;;;;:::o;2144:407::-;;;2269:2;2257:9;2248:7;2244:23;2240:32;2237:2;;;2285:1;2282;2275:12;2237:2;2328:1;2353:53;2398:7;2389:6;2378:9;2374:22;2353:53;:::i;:::-;2343:63;;2299:117;2455:2;2481:53;2526:7;2517:6;2506:9;2502:22;2481:53;:::i;:::-;2471:63;;2426:118;2227:324;;;;;:::o;2557:552::-;;;;2699:2;2687:9;2678:7;2674:23;2670:32;2667:2;;;2715:1;2712;2705:12;2667:2;2758:1;2783:53;2828:7;2819:6;2808:9;2804:22;2783:53;:::i;:::-;2773:63;;2729:117;2885:2;2911:53;2956:7;2947:6;2936:9;2932:22;2911:53;:::i;:::-;2901:63;;2856:118;3013:2;3039:53;3084:7;3075:6;3064:9;3060:22;3039:53;:::i;:::-;3029:63;;2984:118;2657:452;;;;;:::o;3115:829::-;;;;;;3293:3;3281:9;3272:7;3268:23;3264:33;3261:2;;;3310:1;3307;3300:12;3261:2;3353:1;3378:53;3423:7;3414:6;3403:9;3399:22;3378:53;:::i;:::-;3368:63;;3324:117;3480:2;3506:53;3551:7;3542:6;3531:9;3527:22;3506:53;:::i;:::-;3496:63;;3451:118;3608:2;3634:53;3679:7;3670:6;3659:9;3655:22;3634:53;:::i;:::-;3624:63;;3579:118;3764:2;3753:9;3749:18;3736:32;3795:18;3787:6;3784:30;3781:2;;;3827:1;3824;3817:12;3781:2;3863:64;3919:7;3910:6;3899:9;3895:22;3863:64;:::i;:::-;3845:82;;;;3707:230;3251:693;;;;;;;;:::o;3950:401::-;;;4072:2;4060:9;4051:7;4047:23;4043:32;4040:2;;;4088:1;4085;4078:12;4040:2;4131:1;4156:53;4201:7;4192:6;4181:9;4177:22;4156:53;:::i;:::-;4146:63;;4102:117;4258:2;4284:50;4326:7;4317:6;4306:9;4302:22;4284:50;:::i;:::-;4274:60;;4229:115;4030:321;;;;;:::o;4357:407::-;;;4482:2;4470:9;4461:7;4457:23;4453:32;4450:2;;;4498:1;4495;4488:12;4450:2;4541:1;4566:53;4611:7;4602:6;4591:9;4587:22;4566:53;:::i;:::-;4556:63;;4512:117;4668:2;4694:53;4739:7;4730:6;4719:9;4715:22;4694:53;:::i;:::-;4684:63;;4639:118;4440:324;;;;;:::o;4770:733::-;;;;;4965:2;4953:9;4944:7;4940:23;4936:32;4933:2;;;4981:1;4978;4971:12;4933:2;5052:1;5041:9;5037:17;5024:31;5082:18;5074:6;5071:30;5068:2;;;5114:1;5111;5104:12;5068:2;5150:80;5222:7;5213:6;5202:9;5198:22;5150:80;:::i;:::-;5132:98;;;;4995:245;5307:2;5296:9;5292:18;5279:32;5338:18;5330:6;5327:30;5324:2;;;5370:1;5367;5360:12;5324:2;5406:80;5478:7;5469:6;5458:9;5454:22;5406:80;:::i;:::-;5388:98;;;;5250:246;4923:580;;;;;;;:::o;5509:260::-;;5616:2;5604:9;5595:7;5591:23;5587:32;5584:2;;;5632:1;5629;5622:12;5584:2;5675:1;5700:52;5744:7;5735:6;5724:9;5720:22;5700:52;:::i;:::-;5690:62;;5646:116;5574:195;;;;:::o;5775:282::-;;5893:2;5881:9;5872:7;5868:23;5864:32;5861:2;;;5909:1;5906;5899:12;5861:2;5952:1;5977:63;6032:7;6023:6;6012:9;6008:22;5977:63;:::i;:::-;5967:73;;5923:127;5851:206;;;;:::o;6063:262::-;;6171:2;6159:9;6150:7;6146:23;6142:32;6139:2;;;6187:1;6184;6177:12;6139:2;6230:1;6255:53;6300:7;6291:6;6280:9;6276:22;6255:53;:::i;:::-;6245:63;;6201:117;6129:196;;;;:::o;6331:118::-;6418:24;6436:5;6418:24;:::i;:::-;6413:3;6406:37;6396:53;;:::o;6455:109::-;6536:21;6551:5;6536:21;:::i;:::-;6531:3;6524:34;6514:50;;:::o;6570:360::-;;6684:38;6716:5;6684:38;:::i;:::-;6738:70;6801:6;6796:3;6738:70;:::i;:::-;6731:77;;6817:52;6862:6;6857:3;6850:4;6843:5;6839:16;6817:52;:::i;:::-;6894:29;6916:6;6894:29;:::i;:::-;6889:3;6885:39;6878:46;;6660:270;;;;;:::o;6936:364::-;;7052:39;7085:5;7052:39;:::i;:::-;7107:71;7171:6;7166:3;7107:71;:::i;:::-;7100:78;;7187:52;7232:6;7227:3;7220:4;7213:5;7209:16;7187:52;:::i;:::-;7264:29;7286:6;7264:29;:::i;:::-;7259:3;7255:39;7248:46;;7028:272;;;;;:::o;7306:118::-;7393:24;7411:5;7393:24;:::i;:::-;7388:3;7381:37;7371:53;;:::o;7430:222::-;;7561:2;7550:9;7546:18;7538:26;;7574:71;7642:1;7631:9;7627:17;7618:6;7574:71;:::i;:::-;7528:124;;;;:::o;7658:640::-;;7891:3;7880:9;7876:19;7868:27;;7905:71;7973:1;7962:9;7958:17;7949:6;7905:71;:::i;:::-;7986:72;8054:2;8043:9;8039:18;8030:6;7986:72;:::i;:::-;8068;8136:2;8125:9;8121:18;8112:6;8068:72;:::i;:::-;8187:9;8181:4;8177:20;8172:2;8161:9;8157:18;8150:48;8215:76;8286:4;8277:6;8215:76;:::i;:::-;8207:84;;7858:440;;;;;;;:::o;8304:210::-;;8429:2;8418:9;8414:18;8406:26;;8442:65;8504:1;8493:9;8489:17;8480:6;8442:65;:::i;:::-;8396:118;;;;:::o;8520:313::-;;8671:2;8660:9;8656:18;8648:26;;8720:9;8714:4;8710:20;8706:1;8695:9;8691:17;8684:47;8748:78;8821:4;8812:6;8748:78;:::i;:::-;8740:86;;8638:195;;;;:::o;8839:222::-;;8970:2;8959:9;8955:18;8947:26;;8983:71;9051:1;9040:9;9036:17;9027:6;8983:71;:::i;:::-;8937:124;;;;:::o;9067:98::-;;9152:5;9146:12;9136:22;;9125:40;;;:::o;9171:99::-;;9257:5;9251:12;9241:22;;9230:40;;;:::o;9276:168::-;;9393:6;9388:3;9381:19;9433:4;9428:3;9424:14;9409:29;;9371:73;;;;:::o;9450:169::-;;9568:6;9563:3;9556:19;9608:4;9603:3;9599:14;9584:29;;9546:73;;;;:::o;9625:305::-;;9684:20;9702:1;9684:20;:::i;:::-;9679:25;;9718:20;9736:1;9718:20;:::i;:::-;9713:25;;9872:1;9804:66;9800:74;9797:1;9794:81;9791:2;;;9878:18;;:::i;:::-;9791:2;9922:1;9919;9915:9;9908:16;;9669:261;;;;:::o;9936:191::-;;9996:20;10014:1;9996:20;:::i;:::-;9991:25;;10030:20;10048:1;10030:20;:::i;:::-;10025:25;;10069:1;10066;10063:8;10060:2;;;10074:18;;:::i;:::-;10060:2;10119:1;10116;10112:9;10104:17;;9981:146;;;;:::o;10133:96::-;;10199:24;10217:5;10199:24;:::i;:::-;10188:35;;10178:51;;;:::o;10235:90::-;;10312:5;10305:13;10298:21;10287:32;;10277:48;;;:::o;10331:149::-;;10407:66;10400:5;10396:78;10385:89;;10375:105;;;:::o;10486:126::-;;10563:42;10556:5;10552:54;10541:65;;10531:81;;;:::o;10618:77::-;;10684:5;10673:16;;10663:32;;;:::o;10701:307::-;10769:1;10779:113;10793:6;10790:1;10787:13;10779:113;;;10878:1;10873:3;10869:11;10863:18;10859:1;10854:3;10850:11;10843:39;10815:2;10812:1;10808:10;10803:15;;10779:113;;;10910:6;10907:1;10904:13;10901:2;;;10990:1;10981:6;10976:3;10972:16;10965:27;10901:2;10750:258;;;;:::o;11014:320::-;;11095:1;11089:4;11085:12;11075:22;;11142:1;11136:4;11132:12;11163:18;11153:2;;11219:4;11211:6;11207:17;11197:27;;11153:2;11281;11273:6;11270:14;11250:18;11247:38;11244:2;;;11300:18;;:::i;:::-;11244:2;11065:269;;;;:::o;11340:180::-;11388:77;11385:1;11378:88;11485:4;11482:1;11475:15;11509:4;11506:1;11499:15;11526:180;11574:77;11571:1;11564:88;11671:4;11668:1;11661:15;11695:4;11692:1;11685:15;11712:102;;11804:2;11800:7;11795:2;11788:5;11784:14;11780:28;11770:38;;11760:54;;;:::o;11820:122::-;11893:24;11911:5;11893:24;:::i;:::-;11886:5;11883:35;11873:2;;11932:1;11929;11922:12;11873:2;11863:79;:::o;11948:116::-;12018:21;12033:5;12018:21;:::i;:::-;12011:5;12008:32;11998:2;;12054:1;12051;12044:12;11998:2;11988:76;:::o;12070:120::-;12142:23;12159:5;12142:23;:::i;:::-;12135:5;12132:34;12122:2;;12180:1;12177;12170:12;12122:2;12112:78;:::o;12196:122::-;12269:24;12287:5;12269:24;:::i;:::-;12262:5;12259:35;12249:2;;12308:1;12305;12298:12;12249:2;12239:79;:::o
Swarm Source
ipfs://9cfc881630fbd0eb95bbe131647dd456a531e710af97897d318632cfcc36d8fd
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.