Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,558 GG
Holders
515
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
14 GGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GlitchGirls
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.4; //man thats a lot of imports... import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /* _________ __ __ _______ __ / ____/ (_) /______/ /_ / ____(_)____/ /____ / / __/ / / __/ ___/ __ \ / / __/ / ___/ / ___/ / /_/ / / / /_/ /__/ / / / / /_/ / / / / (__ ) \____/_/_/\__/\___/_/ /_/ \____/_/_/ /_/____/ v0.2 */ contract GlitchGirls is Context, ERC721Enumerable, ERC721Burnable, Ownable { using Counters for Counters.Counter; using Strings for uint256; using ECDSA for bytes32; Counters.Counter private _tokenIdTracker; string private _tokenBaseURI; uint256 public constant GG_PRICE = 0.1 ether; uint256 public constant GG_WHITELIST = 1743; uint256 public constant GG_REGISTER = GG_WHITELIST + 3000; uint256 public constant DEV_HOLDBACK = 69; uint256 public constant GG_PUBLIC = (GG_REGISTER + 2226) - DEV_HOLDBACK; uint256 public constant GG_MAX = GG_PUBLIC + DEV_HOLDBACK; //6969 bool public whitelistLive; bool public publicLive; bool public registerLive; address private _signerAddress; constructor(string memory startingBaseToken, address startingSignerAddress) ERC721("Glitch Girls", "GG") { _tokenBaseURI = startingBaseToken; _signerAddress = startingSignerAddress; } function currentSupply() public view returns(uint256) { return _tokenIdTracker.current()+1; } function _baseURI() internal view virtual override returns (string memory) { return _tokenBaseURI; } mapping(address => uint256) public whiteListAmountLeft; function addToWhiteList(address[] calldata entries, uint256[] calldata amountAllowed) external onlyOwner { for(uint256 i = 0; i < entries.length; i++) { address entry = entries[i]; whiteListAmountLeft[entry] = amountAllowed[i]; } } function removeFromWhiteList(address[] calldata entries) external onlyOwner { for(uint256 i = 0; i < entries.length; i++) { address entry = entries[i]; whiteListAmountLeft[entry] = 0; } } function mintGGWhiteList(uint256 tokenQuantity) external payable { require(whitelistLive, "11"); int256 AmountOfWhiteLists = int256(whiteListAmountLeft[msg.sender]); require(!(AmountOfWhiteLists == 0), "10"); require((AmountOfWhiteLists - int256(tokenQuantity)) >= 0, "12"); require(_tokenIdTracker.current() <= GG_WHITELIST, "13"); require((_tokenIdTracker.current() + tokenQuantity) <= GG_WHITELIST, "12"); require((GG_PRICE * tokenQuantity) <= msg.value, "2"); for (uint256 i = 0; i < tokenQuantity; i++) { _tokenIdTracker.increment(); _mint(msg.sender, _tokenIdTracker.current()); } whiteListAmountLeft[msg.sender] = whiteListAmountLeft[msg.sender] - tokenQuantity; } function gift(address[] calldata receivers) external onlyOwner { require(_tokenIdTracker.current() <= GG_MAX, "13"); require((_tokenIdTracker.current() + receivers.length) <= GG_MAX, "12"); for (uint256 i = 0; i < receivers.length; i++) { _tokenIdTracker.increment(); _safeMint(receivers[i], _tokenIdTracker.current()); } } function verifyAddressSigner(bytes32 hash, bytes memory signature) private view returns(bool) { return _signerAddress == hash.toEthSignedMessageHash().recover(signature); } function hashTransaction(address sender, string memory transactionID, uint256 tokenQuantity) private pure returns(bytes32) { bytes32 hash = keccak256(abi.encodePacked(sender, transactionID, tokenQuantity)); return hash; } mapping(string => bool) public usedTransactions; function mintGG(bytes32 hash, bytes memory signature, uint256 tokenQuantity, string memory transactionID) external payable { require(publicLive || registerLive, "31"); uint256 supplyForMint; if (registerLive) { supplyForMint = GG_REGISTER; } if (publicLive) { supplyForMint = GG_PUBLIC; } require(verifyAddressSigner(hash, signature), "68"); require(!usedTransactions[transactionID], "3"); require(hashTransaction(msg.sender, transactionID, tokenQuantity) == hash, "5"); require(_tokenIdTracker.current() <= supplyForMint, "32"); require((_tokenIdTracker.current()+ tokenQuantity) <= supplyForMint, "33"); require((GG_PRICE * tokenQuantity) <= msg.value, "2"); for (uint256 i = 0; i < tokenQuantity; i++) { _tokenIdTracker.increment(); _mint(msg.sender, _tokenIdTracker.current()); } usedTransactions[transactionID] = true; } address private withdrawAccount = 0x3586218D139C2fd5eC9445E13FFC466D5bB5aa8c; modifier withdrawAddressCheck() { require(msg.sender == withdrawAccount, "99"); _; } function totalBalance() external view returns(uint) { return payable(address(this)).balance; } function withdrawFunds() external withdrawAddressCheck() { payable(msg.sender).transfer(this.totalBalance()); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function toggleWhiteList(uint256 typeToActivate) external onlyOwner { if (typeToActivate == 1) { whitelistLive = !whitelistLive; } else if (typeToActivate == 2) { registerLive = !registerLive; } else if (typeToActivate == 3) { publicLive = !publicLive; } } function setSignerAddress(address addr) external onlyOwner { _signerAddress = addr; } function setBaseURI(string calldata URI) external onlyOwner { _tokenBaseURI = URI; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "1"); return string(abi.encodePacked(_tokenBaseURI, (tokenId).toString(), string(".json"))); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// 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 "../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; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// 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; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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; 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 Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"startingBaseToken","type":"string"},{"internalType":"address","name":"startingSignerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEV_HOLDBACK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GG_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GG_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GG_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GG_REGISTER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GG_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"},{"internalType":"uint256[]","name":"amountAllowed","type":"uint256[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentSupply","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":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"string","name":"transactionID","type":"string"}],"name":"mintGG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintGGWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registerLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setSignerAddress","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":"typeToActivate","type":"uint256"}],"name":"toggleWhiteList","outputs":[],"stateMutability":"nonpayable","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":"totalBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"usedTransactions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListAmountLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052733586218d139c2fd5ec9445e13ffc466d5bb5aa8c601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b50604051620065a9380380620065a983398181016040528101906200008c9190620003b5565b6040518060400160405280600c81526020017f476c69746368204769726c7300000000000000000000000000000000000000008152506040518060400160405280600281526020017f47470000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001109291906200027c565b508060019080519060200190620001299291906200027c565b5050506200014c62000140620001ae60201b60201c565b620001b660201b60201c565b81600c9080519060200190620001649291906200027c565b5080600d60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620005cd565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028a90620004d8565b90600052602060002090601f016020900481019282620002ae5760008555620002fa565b82601f10620002c957805160ff1916838001178555620002fa565b82800160010185558215620002fa579182015b82811115620002f9578251825591602001919060010190620002dc565b5b5090506200030991906200030d565b5090565b5b80821115620003285760008160009055506001016200030e565b5090565b6000620003436200033d8462000438565b6200040f565b9050828152602081018484840111156200035c57600080fd5b62000369848285620004a2565b509392505050565b6000815190506200038281620005b3565b92915050565b600082601f8301126200039a57600080fd5b8151620003ac8482602086016200032c565b91505092915050565b60008060408385031215620003c957600080fd5b600083015167ffffffffffffffff811115620003e457600080fd5b620003f28582860162000388565b9250506020620004058582860162000371565b9150509250929050565b60006200041b6200042e565b90506200042982826200050e565b919050565b6000604051905090565b600067ffffffffffffffff82111562000456576200045562000573565b5b6200046182620005a2565b9050602081019050919050565b60006200047b8262000482565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004c2578082015181840152602081019050620004a5565b83811115620004d2576000848401525b50505050565b60006002820490506001821680620004f157607f821691505b6020821081141562000508576200050762000544565b5b50919050565b6200051982620005a2565b810181811067ffffffffffffffff821117156200053b576200053a62000573565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005be816200046e565b8114620005ca57600080fd5b50565b615fcc80620005dd6000396000f3fe6080604052600436106102515760003560e01c8063758123f711610139578063b88d4fde116100b6578063eb94e5a71161007a578063eb94e5a7146108c9578063ed43b799146108f4578063f2db2e871461091f578063f2fde38b1461094a578063f48e0bcb14610973578063fb2a3bbb1461099c57610251565b8063b88d4fde146107d2578063c87b56dd146107fb578063d0f3b6d714610838578063e14304f314610861578063e985e9c51461088c57610251565b80639979a194116100fd5780639979a194146106ff578063a22cb4651461072a578063ad7a672f14610753578063b11560c51461077e578063b7f751d8146107a757610251565b8063758123f714610628578063771282f6146106535780638da5cb5b1461067e57806394197597146106a957806395d89b41146106d457610251565b806324600fc3116101d257806342966c681161019657806342966c68146105085780634f6ccce71461053157806355f804b31461056e5780636352211e1461059757806370a08231146105d4578063715018a61461061157610251565b806324600fc3146104325780632f745c59146104495780633552bb1414610486578063409c2d08146104c357806342842e0e146104df57610251565b8063109bbbf811610219578063109bbbf81461034d578063163e1e611461037857806318160ddd146103a15780631cc4ad1f146103cc57806323b872dd1461040957610251565b806301ffc9a714610256578063046dc1661461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906143de565b6109b8565b60405161028a9190614cb4565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906140ea565b6109ca565b005b3480156102c857600080fd5b506102d1610a8a565b6040516102de9190614d14565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906144b6565b610b1c565b60405161031b9190614c4d565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190614255565b610ba1565b005b34801561035957600080fd5b50610362610cb9565b60405161036f9190615196565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190614291565b610ce5565b005b3480156103ad57600080fd5b506103b6610efd565b6040516103c39190615196565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190614475565b610f0a565b6040516104009190614cb4565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b919061414f565b610f40565b005b34801561043e57600080fd5b50610447610fa0565b005b34801561045557600080fd5b50610470600480360381019061046b9190614255565b6110f6565b60405161047d9190615196565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906140ea565b61119b565b6040516104ba9190615196565b60405180910390f35b6104dd60048036038101906104d891906144b6565b6111b3565b005b3480156104eb57600080fd5b506105066004803603810190610501919061414f565b6114a4565b005b34801561051457600080fd5b5061052f600480360381019061052a91906144b6565b6114c4565b005b34801561053d57600080fd5b50610558600480360381019061055391906144b6565b611520565b6040516105659190615196565b60405180910390f35b34801561057a57600080fd5b5061059560048036038101906105909190614430565b6115b7565b005b3480156105a357600080fd5b506105be60048036038101906105b991906144b6565b611649565b6040516105cb9190614c4d565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906140ea565b6116fb565b6040516106089190615196565b60405180910390f35b34801561061d57600080fd5b506106266117b3565b005b34801561063457600080fd5b5061063d61183b565b60405161064a9190614cb4565b60405180910390f35b34801561065f57600080fd5b5061066861184e565b6040516106759190615196565b60405180910390f35b34801561068a57600080fd5b5061069361186b565b6040516106a09190614c4d565b60405180910390f35b3480156106b557600080fd5b506106be611895565b6040516106cb9190615196565b60405180910390f35b3480156106e057600080fd5b506106e961189a565b6040516106f69190614d14565b60405180910390f35b34801561070b57600080fd5b5061071461192c565b6040516107219190614cb4565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190614219565b61193f565b005b34801561075f57600080fd5b50610768611ac0565b6040516107759190615196565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190614291565b611adf565b005b3480156107b357600080fd5b506107bc611c19565b6040516107c99190614cb4565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f4919061419e565b611c2c565b005b34801561080757600080fd5b50610822600480360381019061081d91906144b6565b611c8e565b60405161082f9190614d14565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a91906144b6565b611d41565b005b34801561086d57600080fd5b50610876611e66565b6040516108839190615196565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190614113565b611e9d565b6040516108c09190614cb4565b60405180910390f35b3480156108d557600080fd5b506108de611f31565b6040516108eb9190615196565b60405180910390f35b34801561090057600080fd5b50610909611f3d565b6040516109169190615196565b60405180910390f35b34801561092b57600080fd5b50610934611f50565b6040516109419190615196565b60405180910390f35b34801561095657600080fd5b50610971600480360381019061096c91906140ea565b611f56565b005b34801561097f57600080fd5b5061099a600480360381019061099591906142d6565b61204e565b005b6109b660048036038101906109b1919061434b565b6121c8565b005b60006109c38261250d565b9050919050565b6109d2612587565b73ffffffffffffffffffffffffffffffffffffffff166109f061186b565b73ffffffffffffffffffffffffffffffffffffffff1614610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90615016565b60405180910390fd5b80600d60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610a9990615510565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac590615510565b8015610b125780601f10610ae757610100808354040283529160200191610b12565b820191906000526020600020905b815481529060010190602001808311610af557829003601f168201915b5050505050905090565b6000610b278261258f565b610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d90614fd6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bac82611649565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490615076565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c3c612587565b73ffffffffffffffffffffffffffffffffffffffff161480610c6b5750610c6a81610c65612587565b611e9d565b5b610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190614eb6565b60405180910390fd5b610cb483836125fb565b505050565b60456108b2610bb86106cf610cce9190615290565b610cd89190615290565b610ce29190615405565b81565b610ced612587565b73ffffffffffffffffffffffffffffffffffffffff16610d0b61186b565b73ffffffffffffffffffffffffffffffffffffffff1614610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890615016565b60405180910390fd5b6045806108b2610bb86106cf610d779190615290565b610d819190615290565b610d8b9190615405565b610d959190615290565b610d9f600b6126b4565b1115610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790614f36565b60405180910390fd5b6045806108b2610bb86106cf610df69190615290565b610e009190615290565b610e0a9190615405565b610e149190615290565b82829050610e22600b6126b4565b610e2c9190615290565b1115610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490614f56565b60405180910390fd5b60005b82829050811015610ef857610e85600b6126c2565b610ee5838383818110610ec1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610ed691906140ea565b610ee0600b6126b4565b6126d8565b8080610ef090615573565b915050610e70565b505050565b6000600880549050905090565b600f818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b610f51610f4b612587565b826126f6565b610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f87906150b6565b60405180910390fd5b610f9b8383836127d4565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790615096565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff1663ad7a672f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561109057600080fd5b505afa1580156110a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c891906144df565b9081150290604051600060405180830381858888f193505050501580156110f3573d6000803e3d6000fd5b50565b6000611101836116fb565b8210611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990614d96565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e6020528060005260406000206000915090505481565b600d60009054906101000a900460ff16611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614f16565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081141561128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190614d76565b60405180910390fd5b600082826112989190615371565b12156112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090614f56565b60405180910390fd5b6106cf6112e6600b6126b4565b1115611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90614f36565b60405180910390fd5b6106cf82611335600b6126b4565b61133f9190615290565b1115611380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137790614f56565b60405180910390fd5b348267016345785d8a00006113959190615317565b11156113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90615056565b60405180910390fd5b60005b82811015611411576113eb600b6126c2565b6113fe336113f9600b6126b4565b612a30565b808061140990615573565b9150506113d9565b5081600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145d9190615405565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6114bf83838360405180602001604052806000815250611c2c565b505050565b6114d56114cf612587565b826126f6565b611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90615176565b60405180910390fd5b61151d81612bfe565b50565b600061152a610efd565b821061156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290615136565b60405180910390fd5b600882815481106115a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6115bf612587565b73ffffffffffffffffffffffffffffffffffffffff166115dd61186b565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90615016565b60405180910390fd5b8181600c9190611644929190613e06565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990614ef6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390614ed6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117bb612587565b73ffffffffffffffffffffffffffffffffffffffff166117d961186b565b73ffffffffffffffffffffffffffffffffffffffff161461182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690615016565b60405180910390fd5b6118396000612d0f565b565b600d60029054906101000a900460ff1681565b6000600161185c600b6126b4565b6118669190615290565b905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b604581565b6060600180546118a990615510565b80601f01602080910402602001604051908101604052809291908181526020018280546118d590615510565b80156119225780601f106118f757610100808354040283529160200191611922565b820191906000526020600020905b81548152906001019060200180831161190557829003601f168201915b5050505050905090565b600d60009054906101000a900460ff1681565b611947612587565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90614e56565b60405180910390fd5b80600560006119c2612587565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a6f612587565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab49190614cb4565b60405180910390a35050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b611ae7612587565b73ffffffffffffffffffffffffffffffffffffffff16611b0561186b565b73ffffffffffffffffffffffffffffffffffffffff1614611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290615016565b60405180910390fd5b60005b82829050811015611c14576000838383818110611ba4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611bb991906140ea565b90506000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080611c0c90615573565b915050611b5e565b505050565b600d60019054906101000a900460ff1681565b611c3d611c37612587565b836126f6565b611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c73906150b6565b60405180910390fd5b611c8884848484612dd5565b50505050565b6060611c998261258f565b611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf906150d6565b60405180910390fd5b600c611ce383612e31565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611d2b93929190614bf6565b6040516020818303038152906040529050919050565b611d49612587565b73ffffffffffffffffffffffffffffffffffffffff16611d6761186b565b73ffffffffffffffffffffffffffffffffffffffff1614611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490615016565b60405180910390fd5b6001811415611df557600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550611e63565b6002811415611e2d57600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550611e62565b6003811415611e6157600d60019054906101000a900460ff1615600d60016101000a81548160ff0219169083151502179055505b5b5b50565b6045806108b2610bb86106cf611e7c9190615290565b611e869190615290565b611e909190615405565b611e9a9190615290565b81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b67016345785d8a000081565b610bb86106cf611f4d9190615290565b81565b6106cf81565b611f5e612587565b73ffffffffffffffffffffffffffffffffffffffff16611f7c61186b565b73ffffffffffffffffffffffffffffffffffffffff1614611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990615016565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203990614dd6565b60405180910390fd5b61204b81612d0f565b50565b612056612587565b73ffffffffffffffffffffffffffffffffffffffff1661207461186b565b73ffffffffffffffffffffffffffffffffffffffff16146120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190615016565b60405180910390fd5b60005b848490508110156121c1576000858583818110612113577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061212891906140ea565b9050838383818110612163577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505080806121b990615573565b9150506120cd565b5050505050565b600d60019054906101000a900460ff16806121ef5750600d60029054906101000a900460ff165b61222e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222590614ff6565b60405180910390fd5b6000600d60029054906101000a900460ff161561225857610bb86106cf6122559190615290565b90505b600d60019054906101000a900460ff16156122995760456108b2610bb86106cf6122829190615290565b61228c9190615290565b6122969190615405565b90505b6122a38585612fde565b6122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d9906150f6565b60405180910390fd5b600f826040516122f29190614bdf565b908152602001604051809103902060009054906101000a900460ff161561234e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234590614e16565b60405180910390fd5b8461235a338486613053565b1461239a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239190615116565b60405180910390fd5b806123a5600b6126b4565b11156123e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dd90614fb6565b60405180910390fd5b80836123f2600b6126b4565b6123fc9190615290565b111561243d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243490615156565b60405180910390fd5b348367016345785d8a00006124529190615317565b1115612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a90615056565b60405180910390fd5b60005b838110156124ce576124a8600b6126c2565b6124bb336124b6600b6126b4565b612a30565b80806124c690615573565b915050612496565b506001600f836040516124e19190614bdf565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505050505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612580575061257f8261308e565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661266e83611649565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6126f2828260405180602001604052806000815250613170565b5050565b60006127018261258f565b612740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273790614e96565b60405180910390fd5b600061274b83611649565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127ba57508373ffffffffffffffffffffffffffffffffffffffff166127a284610b1c565b73ffffffffffffffffffffffffffffffffffffffff16145b806127cb57506127ca8185611e9d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127f482611649565b73ffffffffffffffffffffffffffffffffffffffff161461284a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284190615036565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190614e36565b60405180910390fd5b6128c58383836131cb565b6128d06000826125fb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129209190615405565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129779190615290565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9790614f96565b60405180910390fd5b612aa98161258f565b15612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae090614df6565b60405180910390fd5b612af5600083836131cb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b459190615290565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612c0982611649565b9050612c17816000846131cb565b612c226000836125fb565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c729190615405565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612de08484846127d4565b612dec848484846131db565b612e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2290614db6565b60405180910390fd5b50505050565b60606000821415612e79576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fd9565b600082905060005b60008214612eab578080612e9490615573565b915050600a82612ea491906152e6565b9150612e81565b60008167ffffffffffffffff811115612eed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f1f5781602001600182028036833780820191505090505b5090505b60008514612fd257600182612f389190615405565b9150600a85612f4791906155f4565b6030612f539190615290565b60f81b818381518110612f8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fcb91906152e6565b9450612f23565b8093505050505b919050565b6000612ffb82612fed85613372565b6133a290919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600d60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b60008084848460405160200161306b93929190614ba6565b604051602081830303815290604052805190602001209050809150509392505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061315957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131695750613168826133c9565b5b9050919050565b61317a8383612a30565b61318760008484846131db565b6131c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bd90614db6565b60405180910390fd5b505050565b6131d6838383613433565b505050565b60006131fc8473ffffffffffffffffffffffffffffffffffffffff16613547565b15613365578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613225612587565b8786866040518563ffffffff1660e01b81526004016132479493929190614c68565b602060405180830381600087803b15801561326157600080fd5b505af192505050801561329257506040513d601f19601f8201168201806040525081019061328f9190614407565b60015b613315573d80600081146132c2576040519150601f19603f3d011682016040523d82523d6000602084013e6132c7565b606091505b5060008151141561330d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330490614db6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061336a565b600190505b949350505050565b6000816040516020016133859190614c27565b604051602081830303815290604052805190602001209050919050565b60008060006133b1858561355a565b915091506133be816135dd565b819250505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61343e83838361392e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134815761347c81613933565b6134c0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134bf576134be838261397c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613503576134fe81613ae9565b613542565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613541576135408282613c2c565b5b5b505050565b600080823b905060008111915050919050565b60008060418351141561359c5760008060006020860151925060408601519150606086015160001a905061359087828585613cab565b945094505050506135d6565b6040835114156135cd5760008060208501519150604085015190506135c2868383613db8565b9350935050506135d6565b60006002915091505b9250929050565b60006004811115613617577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613650577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561365b5761392b565b60016004811115613695577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156136ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561370f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370690614d36565b60405180910390fd5b60026004811115613749577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613782577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156137c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ba90614d56565b60405180910390fd5b600360048111156137fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613836577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386e90614e76565b60405180910390fd5b6004808111156138b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156138e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561392a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392190614f76565b60405180910390fd5b5b50565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613989846116fb565b6139939190615405565b9050600060076000848152602001908152602001600020549050818114613a78576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613afd9190615405565b9050600060096000848152602001908152602001600020549050600060088381548110613b53577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613b9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c10577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613c37836116fb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613ce6576000600391509150613daf565b601b8560ff1614158015613cfe5750601c8560ff1614155b15613d10576000600491509150613daf565b600060018787878760405160008152602001604052604051613d359493929190614ccf565b6020604051602081039080840390855afa158015613d57573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613da657600060019250925050613daf565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613df887828885613cab565b935093505050935093915050565b828054613e1290615510565b90600052602060002090601f016020900481019282613e345760008555613e7b565b82601f10613e4d57803560ff1916838001178555613e7b565b82800160010185558215613e7b579182015b82811115613e7a578235825591602001919060010190613e5f565b5b509050613e889190613e8c565b5090565b5b80821115613ea5576000816000905550600101613e8d565b5090565b6000613ebc613eb7846151d6565b6151b1565b905082815260208101848484011115613ed457600080fd5b613edf8482856154ce565b509392505050565b6000613efa613ef584615207565b6151b1565b905082815260208101848484011115613f1257600080fd5b613f1d8482856154ce565b509392505050565b600081359050613f3481615f23565b92915050565b60008083601f840112613f4c57600080fd5b8235905067ffffffffffffffff811115613f6557600080fd5b602083019150836020820283011115613f7d57600080fd5b9250929050565b60008083601f840112613f9657600080fd5b8235905067ffffffffffffffff811115613faf57600080fd5b602083019150836020820283011115613fc757600080fd5b9250929050565b600081359050613fdd81615f3a565b92915050565b600081359050613ff281615f51565b92915050565b60008135905061400781615f68565b92915050565b60008151905061401c81615f68565b92915050565b600082601f83011261403357600080fd5b8135614043848260208601613ea9565b91505092915050565b60008083601f84011261405e57600080fd5b8235905067ffffffffffffffff81111561407757600080fd5b60208301915083600182028301111561408f57600080fd5b9250929050565b600082601f8301126140a757600080fd5b81356140b7848260208601613ee7565b91505092915050565b6000813590506140cf81615f7f565b92915050565b6000815190506140e481615f7f565b92915050565b6000602082840312156140fc57600080fd5b600061410a84828501613f25565b91505092915050565b6000806040838503121561412657600080fd5b600061413485828601613f25565b925050602061414585828601613f25565b9150509250929050565b60008060006060848603121561416457600080fd5b600061417286828701613f25565b935050602061418386828701613f25565b9250506040614194868287016140c0565b9150509250925092565b600080600080608085870312156141b457600080fd5b60006141c287828801613f25565b94505060206141d387828801613f25565b93505060406141e4878288016140c0565b925050606085013567ffffffffffffffff81111561420157600080fd5b61420d87828801614022565b91505092959194509250565b6000806040838503121561422c57600080fd5b600061423a85828601613f25565b925050602061424b85828601613fce565b9150509250929050565b6000806040838503121561426857600080fd5b600061427685828601613f25565b9250506020614287858286016140c0565b9150509250929050565b600080602083850312156142a457600080fd5b600083013567ffffffffffffffff8111156142be57600080fd5b6142ca85828601613f3a565b92509250509250929050565b600080600080604085870312156142ec57600080fd5b600085013567ffffffffffffffff81111561430657600080fd5b61431287828801613f3a565b9450945050602085013567ffffffffffffffff81111561433157600080fd5b61433d87828801613f84565b925092505092959194509250565b6000806000806080858703121561436157600080fd5b600061436f87828801613fe3565b945050602085013567ffffffffffffffff81111561438c57600080fd5b61439887828801614022565b93505060406143a9878288016140c0565b925050606085013567ffffffffffffffff8111156143c657600080fd5b6143d287828801614096565b91505092959194509250565b6000602082840312156143f057600080fd5b60006143fe84828501613ff8565b91505092915050565b60006020828403121561441957600080fd5b60006144278482850161400d565b91505092915050565b6000806020838503121561444357600080fd5b600083013567ffffffffffffffff81111561445d57600080fd5b6144698582860161404c565b92509250509250929050565b60006020828403121561448757600080fd5b600082013567ffffffffffffffff8111156144a157600080fd5b6144ad84828501614096565b91505092915050565b6000602082840312156144c857600080fd5b60006144d6848285016140c0565b91505092915050565b6000602082840312156144f157600080fd5b60006144ff848285016140d5565b91505092915050565b61451181615439565b82525050565b61452861452382615439565b6155bc565b82525050565b6145378161544b565b82525050565b61454681615457565b82525050565b61455d61455882615457565b6155ce565b82525050565b600061456e8261524d565b6145788185615263565b93506145888185602086016154dd565b614591816156e1565b840191505092915050565b60006145a782615258565b6145b18185615274565b93506145c18185602086016154dd565b6145ca816156e1565b840191505092915050565b60006145e082615258565b6145ea8185615285565b93506145fa8185602086016154dd565b80840191505092915050565b6000815461461381615510565b61461d8186615285565b9450600182166000811461463857600181146146495761467c565b60ff1983168652818601935061467c565b61465285615238565b60005b8381101561467457815481890152600182019150602081019050614655565b838801955050505b50505092915050565b6000614692601883615274565b915061469d826156ff565b602082019050919050565b60006146b5601f83615274565b91506146c082615728565b602082019050919050565b60006146d8601c83615285565b91506146e382615751565b601c82019050919050565b60006146fb600283615274565b91506147068261577a565b602082019050919050565b600061471e602b83615274565b9150614729826157a3565b604082019050919050565b6000614741603283615274565b915061474c826157f2565b604082019050919050565b6000614764602683615274565b915061476f82615841565b604082019050919050565b6000614787601c83615274565b915061479282615890565b602082019050919050565b60006147aa600183615274565b91506147b5826158b9565b602082019050919050565b60006147cd602483615274565b91506147d8826158e2565b604082019050919050565b60006147f0601983615274565b91506147fb82615931565b602082019050919050565b6000614813602283615274565b915061481e8261595a565b604082019050919050565b6000614836602c83615274565b9150614841826159a9565b604082019050919050565b6000614859603883615274565b9150614864826159f8565b604082019050919050565b600061487c602a83615274565b915061488782615a47565b604082019050919050565b600061489f602983615274565b91506148aa82615a96565b604082019050919050565b60006148c2600283615274565b91506148cd82615ae5565b602082019050919050565b60006148e5600283615274565b91506148f082615b0e565b602082019050919050565b6000614908600283615274565b915061491382615b37565b602082019050919050565b600061492b602283615274565b915061493682615b60565b604082019050919050565b600061494e602083615274565b915061495982615baf565b602082019050919050565b6000614971600283615274565b915061497c82615bd8565b602082019050919050565b6000614994602c83615274565b915061499f82615c01565b604082019050919050565b60006149b7600283615274565b91506149c282615c50565b602082019050919050565b60006149da602083615274565b91506149e582615c79565b602082019050919050565b60006149fd602983615274565b9150614a0882615ca2565b604082019050919050565b6000614a20600183615274565b9150614a2b82615cf1565b602082019050919050565b6000614a43602183615274565b9150614a4e82615d1a565b604082019050919050565b6000614a66600283615274565b9150614a7182615d69565b602082019050919050565b6000614a89603183615274565b9150614a9482615d92565b604082019050919050565b6000614aac600183615274565b9150614ab782615de1565b602082019050919050565b6000614acf600283615274565b9150614ada82615e0a565b602082019050919050565b6000614af2600183615274565b9150614afd82615e33565b602082019050919050565b6000614b15602c83615274565b9150614b2082615e5c565b604082019050919050565b6000614b38600283615274565b9150614b4382615eab565b602082019050919050565b6000614b5b603083615274565b9150614b6682615ed4565b604082019050919050565b614b7a816154b7565b82525050565b614b91614b8c826154b7565b6155ea565b82525050565b614ba0816154c1565b82525050565b6000614bb28286614517565b601482019150614bc282856145d5565b9150614bce8284614b80565b602082019150819050949350505050565b6000614beb82846145d5565b915081905092915050565b6000614c028286614606565b9150614c0e82856145d5565b9150614c1a82846145d5565b9150819050949350505050565b6000614c32826146cb565b9150614c3e828461454c565b60208201915081905092915050565b6000602082019050614c626000830184614508565b92915050565b6000608082019050614c7d6000830187614508565b614c8a6020830186614508565b614c976040830185614b71565b8181036060830152614ca98184614563565b905095945050505050565b6000602082019050614cc9600083018461452e565b92915050565b6000608082019050614ce4600083018761453d565b614cf16020830186614b97565b614cfe604083018561453d565b614d0b606083018461453d565b95945050505050565b60006020820190508181036000830152614d2e818461459c565b905092915050565b60006020820190508181036000830152614d4f81614685565b9050919050565b60006020820190508181036000830152614d6f816146a8565b9050919050565b60006020820190508181036000830152614d8f816146ee565b9050919050565b60006020820190508181036000830152614daf81614711565b9050919050565b60006020820190508181036000830152614dcf81614734565b9050919050565b60006020820190508181036000830152614def81614757565b9050919050565b60006020820190508181036000830152614e0f8161477a565b9050919050565b60006020820190508181036000830152614e2f8161479d565b9050919050565b60006020820190508181036000830152614e4f816147c0565b9050919050565b60006020820190508181036000830152614e6f816147e3565b9050919050565b60006020820190508181036000830152614e8f81614806565b9050919050565b60006020820190508181036000830152614eaf81614829565b9050919050565b60006020820190508181036000830152614ecf8161484c565b9050919050565b60006020820190508181036000830152614eef8161486f565b9050919050565b60006020820190508181036000830152614f0f81614892565b9050919050565b60006020820190508181036000830152614f2f816148b5565b9050919050565b60006020820190508181036000830152614f4f816148d8565b9050919050565b60006020820190508181036000830152614f6f816148fb565b9050919050565b60006020820190508181036000830152614f8f8161491e565b9050919050565b60006020820190508181036000830152614faf81614941565b9050919050565b60006020820190508181036000830152614fcf81614964565b9050919050565b60006020820190508181036000830152614fef81614987565b9050919050565b6000602082019050818103600083015261500f816149aa565b9050919050565b6000602082019050818103600083015261502f816149cd565b9050919050565b6000602082019050818103600083015261504f816149f0565b9050919050565b6000602082019050818103600083015261506f81614a13565b9050919050565b6000602082019050818103600083015261508f81614a36565b9050919050565b600060208201905081810360008301526150af81614a59565b9050919050565b600060208201905081810360008301526150cf81614a7c565b9050919050565b600060208201905081810360008301526150ef81614a9f565b9050919050565b6000602082019050818103600083015261510f81614ac2565b9050919050565b6000602082019050818103600083015261512f81614ae5565b9050919050565b6000602082019050818103600083015261514f81614b08565b9050919050565b6000602082019050818103600083015261516f81614b2b565b9050919050565b6000602082019050818103600083015261518f81614b4e565b9050919050565b60006020820190506151ab6000830184614b71565b92915050565b60006151bb6151cc565b90506151c78282615542565b919050565b6000604051905090565b600067ffffffffffffffff8211156151f1576151f06156b2565b5b6151fa826156e1565b9050602081019050919050565b600067ffffffffffffffff821115615222576152216156b2565b5b61522b826156e1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061529b826154b7565b91506152a6836154b7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152db576152da615625565b5b828201905092915050565b60006152f1826154b7565b91506152fc836154b7565b92508261530c5761530b615654565b5b828204905092915050565b6000615322826154b7565b915061532d836154b7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561536657615365615625565b5b828202905092915050565b600061537c8261548d565b91506153878361548d565b9250827f8000000000000000000000000000000000000000000000000000000000000000018212600084121516156153c2576153c1615625565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0182136000841216156153fa576153f9615625565b5b828203905092915050565b6000615410826154b7565b915061541b836154b7565b92508282101561542e5761542d615625565b5b828203905092915050565b600061544482615497565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156154fb5780820151818401526020810190506154e0565b8381111561550a576000848401525b50505050565b6000600282049050600182168061552857607f821691505b6020821081141561553c5761553b615683565b5b50919050565b61554b826156e1565b810181811067ffffffffffffffff8211171561556a576155696156b2565b5b80604052505050565b600061557e826154b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155b1576155b0615625565b5b600182019050919050565b60006155c7826155d8565b9050919050565b6000819050919050565b60006155e3826156f2565b9050919050565b6000819050919050565b60006155ff826154b7565b915061560a836154b7565b92508261561a57615619615654565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f3130000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f3300000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f3131000000000000000000000000000000000000000000000000000000000000600082015250565b7f3133000000000000000000000000000000000000000000000000000000000000600082015250565b7f3132000000000000000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f3332000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f3331000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f3200000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f3939000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f3100000000000000000000000000000000000000000000000000000000000000600082015250565b7f3638000000000000000000000000000000000000000000000000000000000000600082015250565b7f3500000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f3333000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b615f2c81615439565b8114615f3757600080fd5b50565b615f438161544b565b8114615f4e57600080fd5b50565b615f5a81615457565b8114615f6557600080fd5b50565b615f7181615461565b8114615f7c57600080fd5b50565b615f88816154b7565b8114615f9357600080fd5b5056fea26469706673582212204e263be120a43503e66554d8517b29e4e0b3f0eb2b8dc9f44ecf12493eadcbf664736f6c634300080400330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000773005d8f295a346c1b3c8749d45c72b45d399d0000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f676c697463686769726c732e756b2e722e61707073706f742e636f6d2f6170692f0000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c8063758123f711610139578063b88d4fde116100b6578063eb94e5a71161007a578063eb94e5a7146108c9578063ed43b799146108f4578063f2db2e871461091f578063f2fde38b1461094a578063f48e0bcb14610973578063fb2a3bbb1461099c57610251565b8063b88d4fde146107d2578063c87b56dd146107fb578063d0f3b6d714610838578063e14304f314610861578063e985e9c51461088c57610251565b80639979a194116100fd5780639979a194146106ff578063a22cb4651461072a578063ad7a672f14610753578063b11560c51461077e578063b7f751d8146107a757610251565b8063758123f714610628578063771282f6146106535780638da5cb5b1461067e57806394197597146106a957806395d89b41146106d457610251565b806324600fc3116101d257806342966c681161019657806342966c68146105085780634f6ccce71461053157806355f804b31461056e5780636352211e1461059757806370a08231146105d4578063715018a61461061157610251565b806324600fc3146104325780632f745c59146104495780633552bb1414610486578063409c2d08146104c357806342842e0e146104df57610251565b8063109bbbf811610219578063109bbbf81461034d578063163e1e611461037857806318160ddd146103a15780631cc4ad1f146103cc57806323b872dd1461040957610251565b806301ffc9a714610256578063046dc1661461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906143de565b6109b8565b60405161028a9190614cb4565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906140ea565b6109ca565b005b3480156102c857600080fd5b506102d1610a8a565b6040516102de9190614d14565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906144b6565b610b1c565b60405161031b9190614c4d565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190614255565b610ba1565b005b34801561035957600080fd5b50610362610cb9565b60405161036f9190615196565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190614291565b610ce5565b005b3480156103ad57600080fd5b506103b6610efd565b6040516103c39190615196565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190614475565b610f0a565b6040516104009190614cb4565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b919061414f565b610f40565b005b34801561043e57600080fd5b50610447610fa0565b005b34801561045557600080fd5b50610470600480360381019061046b9190614255565b6110f6565b60405161047d9190615196565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906140ea565b61119b565b6040516104ba9190615196565b60405180910390f35b6104dd60048036038101906104d891906144b6565b6111b3565b005b3480156104eb57600080fd5b506105066004803603810190610501919061414f565b6114a4565b005b34801561051457600080fd5b5061052f600480360381019061052a91906144b6565b6114c4565b005b34801561053d57600080fd5b50610558600480360381019061055391906144b6565b611520565b6040516105659190615196565b60405180910390f35b34801561057a57600080fd5b5061059560048036038101906105909190614430565b6115b7565b005b3480156105a357600080fd5b506105be60048036038101906105b991906144b6565b611649565b6040516105cb9190614c4d565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906140ea565b6116fb565b6040516106089190615196565b60405180910390f35b34801561061d57600080fd5b506106266117b3565b005b34801561063457600080fd5b5061063d61183b565b60405161064a9190614cb4565b60405180910390f35b34801561065f57600080fd5b5061066861184e565b6040516106759190615196565b60405180910390f35b34801561068a57600080fd5b5061069361186b565b6040516106a09190614c4d565b60405180910390f35b3480156106b557600080fd5b506106be611895565b6040516106cb9190615196565b60405180910390f35b3480156106e057600080fd5b506106e961189a565b6040516106f69190614d14565b60405180910390f35b34801561070b57600080fd5b5061071461192c565b6040516107219190614cb4565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190614219565b61193f565b005b34801561075f57600080fd5b50610768611ac0565b6040516107759190615196565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190614291565b611adf565b005b3480156107b357600080fd5b506107bc611c19565b6040516107c99190614cb4565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f4919061419e565b611c2c565b005b34801561080757600080fd5b50610822600480360381019061081d91906144b6565b611c8e565b60405161082f9190614d14565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a91906144b6565b611d41565b005b34801561086d57600080fd5b50610876611e66565b6040516108839190615196565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190614113565b611e9d565b6040516108c09190614cb4565b60405180910390f35b3480156108d557600080fd5b506108de611f31565b6040516108eb9190615196565b60405180910390f35b34801561090057600080fd5b50610909611f3d565b6040516109169190615196565b60405180910390f35b34801561092b57600080fd5b50610934611f50565b6040516109419190615196565b60405180910390f35b34801561095657600080fd5b50610971600480360381019061096c91906140ea565b611f56565b005b34801561097f57600080fd5b5061099a600480360381019061099591906142d6565b61204e565b005b6109b660048036038101906109b1919061434b565b6121c8565b005b60006109c38261250d565b9050919050565b6109d2612587565b73ffffffffffffffffffffffffffffffffffffffff166109f061186b565b73ffffffffffffffffffffffffffffffffffffffff1614610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90615016565b60405180910390fd5b80600d60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610a9990615510565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac590615510565b8015610b125780601f10610ae757610100808354040283529160200191610b12565b820191906000526020600020905b815481529060010190602001808311610af557829003601f168201915b5050505050905090565b6000610b278261258f565b610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d90614fd6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bac82611649565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490615076565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c3c612587565b73ffffffffffffffffffffffffffffffffffffffff161480610c6b5750610c6a81610c65612587565b611e9d565b5b610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190614eb6565b60405180910390fd5b610cb483836125fb565b505050565b60456108b2610bb86106cf610cce9190615290565b610cd89190615290565b610ce29190615405565b81565b610ced612587565b73ffffffffffffffffffffffffffffffffffffffff16610d0b61186b565b73ffffffffffffffffffffffffffffffffffffffff1614610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890615016565b60405180910390fd5b6045806108b2610bb86106cf610d779190615290565b610d819190615290565b610d8b9190615405565b610d959190615290565b610d9f600b6126b4565b1115610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790614f36565b60405180910390fd5b6045806108b2610bb86106cf610df69190615290565b610e009190615290565b610e0a9190615405565b610e149190615290565b82829050610e22600b6126b4565b610e2c9190615290565b1115610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490614f56565b60405180910390fd5b60005b82829050811015610ef857610e85600b6126c2565b610ee5838383818110610ec1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610ed691906140ea565b610ee0600b6126b4565b6126d8565b8080610ef090615573565b915050610e70565b505050565b6000600880549050905090565b600f818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b610f51610f4b612587565b826126f6565b610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f87906150b6565b60405180910390fd5b610f9b8383836127d4565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790615096565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff1663ad7a672f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561109057600080fd5b505afa1580156110a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c891906144df565b9081150290604051600060405180830381858888f193505050501580156110f3573d6000803e3d6000fd5b50565b6000611101836116fb565b8210611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990614d96565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e6020528060005260406000206000915090505481565b600d60009054906101000a900460ff16611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614f16565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081141561128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190614d76565b60405180910390fd5b600082826112989190615371565b12156112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090614f56565b60405180910390fd5b6106cf6112e6600b6126b4565b1115611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90614f36565b60405180910390fd5b6106cf82611335600b6126b4565b61133f9190615290565b1115611380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137790614f56565b60405180910390fd5b348267016345785d8a00006113959190615317565b11156113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90615056565b60405180910390fd5b60005b82811015611411576113eb600b6126c2565b6113fe336113f9600b6126b4565b612a30565b808061140990615573565b9150506113d9565b5081600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145d9190615405565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6114bf83838360405180602001604052806000815250611c2c565b505050565b6114d56114cf612587565b826126f6565b611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90615176565b60405180910390fd5b61151d81612bfe565b50565b600061152a610efd565b821061156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290615136565b60405180910390fd5b600882815481106115a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6115bf612587565b73ffffffffffffffffffffffffffffffffffffffff166115dd61186b565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90615016565b60405180910390fd5b8181600c9190611644929190613e06565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990614ef6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390614ed6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117bb612587565b73ffffffffffffffffffffffffffffffffffffffff166117d961186b565b73ffffffffffffffffffffffffffffffffffffffff161461182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690615016565b60405180910390fd5b6118396000612d0f565b565b600d60029054906101000a900460ff1681565b6000600161185c600b6126b4565b6118669190615290565b905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b604581565b6060600180546118a990615510565b80601f01602080910402602001604051908101604052809291908181526020018280546118d590615510565b80156119225780601f106118f757610100808354040283529160200191611922565b820191906000526020600020905b81548152906001019060200180831161190557829003601f168201915b5050505050905090565b600d60009054906101000a900460ff1681565b611947612587565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90614e56565b60405180910390fd5b80600560006119c2612587565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a6f612587565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab49190614cb4565b60405180910390a35050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b611ae7612587565b73ffffffffffffffffffffffffffffffffffffffff16611b0561186b565b73ffffffffffffffffffffffffffffffffffffffff1614611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290615016565b60405180910390fd5b60005b82829050811015611c14576000838383818110611ba4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611bb991906140ea565b90506000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080611c0c90615573565b915050611b5e565b505050565b600d60019054906101000a900460ff1681565b611c3d611c37612587565b836126f6565b611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c73906150b6565b60405180910390fd5b611c8884848484612dd5565b50505050565b6060611c998261258f565b611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf906150d6565b60405180910390fd5b600c611ce383612e31565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611d2b93929190614bf6565b6040516020818303038152906040529050919050565b611d49612587565b73ffffffffffffffffffffffffffffffffffffffff16611d6761186b565b73ffffffffffffffffffffffffffffffffffffffff1614611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490615016565b60405180910390fd5b6001811415611df557600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550611e63565b6002811415611e2d57600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550611e62565b6003811415611e6157600d60019054906101000a900460ff1615600d60016101000a81548160ff0219169083151502179055505b5b5b50565b6045806108b2610bb86106cf611e7c9190615290565b611e869190615290565b611e909190615405565b611e9a9190615290565b81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b67016345785d8a000081565b610bb86106cf611f4d9190615290565b81565b6106cf81565b611f5e612587565b73ffffffffffffffffffffffffffffffffffffffff16611f7c61186b565b73ffffffffffffffffffffffffffffffffffffffff1614611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990615016565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203990614dd6565b60405180910390fd5b61204b81612d0f565b50565b612056612587565b73ffffffffffffffffffffffffffffffffffffffff1661207461186b565b73ffffffffffffffffffffffffffffffffffffffff16146120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190615016565b60405180910390fd5b60005b848490508110156121c1576000858583818110612113577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061212891906140ea565b9050838383818110612163577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505080806121b990615573565b9150506120cd565b5050505050565b600d60019054906101000a900460ff16806121ef5750600d60029054906101000a900460ff165b61222e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222590614ff6565b60405180910390fd5b6000600d60029054906101000a900460ff161561225857610bb86106cf6122559190615290565b90505b600d60019054906101000a900460ff16156122995760456108b2610bb86106cf6122829190615290565b61228c9190615290565b6122969190615405565b90505b6122a38585612fde565b6122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d9906150f6565b60405180910390fd5b600f826040516122f29190614bdf565b908152602001604051809103902060009054906101000a900460ff161561234e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234590614e16565b60405180910390fd5b8461235a338486613053565b1461239a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239190615116565b60405180910390fd5b806123a5600b6126b4565b11156123e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dd90614fb6565b60405180910390fd5b80836123f2600b6126b4565b6123fc9190615290565b111561243d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243490615156565b60405180910390fd5b348367016345785d8a00006124529190615317565b1115612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a90615056565b60405180910390fd5b60005b838110156124ce576124a8600b6126c2565b6124bb336124b6600b6126b4565b612a30565b80806124c690615573565b915050612496565b506001600f836040516124e19190614bdf565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505050505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612580575061257f8261308e565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661266e83611649565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6126f2828260405180602001604052806000815250613170565b5050565b60006127018261258f565b612740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273790614e96565b60405180910390fd5b600061274b83611649565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127ba57508373ffffffffffffffffffffffffffffffffffffffff166127a284610b1c565b73ffffffffffffffffffffffffffffffffffffffff16145b806127cb57506127ca8185611e9d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127f482611649565b73ffffffffffffffffffffffffffffffffffffffff161461284a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284190615036565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190614e36565b60405180910390fd5b6128c58383836131cb565b6128d06000826125fb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129209190615405565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129779190615290565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9790614f96565b60405180910390fd5b612aa98161258f565b15612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae090614df6565b60405180910390fd5b612af5600083836131cb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b459190615290565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612c0982611649565b9050612c17816000846131cb565b612c226000836125fb565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c729190615405565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612de08484846127d4565b612dec848484846131db565b612e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2290614db6565b60405180910390fd5b50505050565b60606000821415612e79576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fd9565b600082905060005b60008214612eab578080612e9490615573565b915050600a82612ea491906152e6565b9150612e81565b60008167ffffffffffffffff811115612eed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f1f5781602001600182028036833780820191505090505b5090505b60008514612fd257600182612f389190615405565b9150600a85612f4791906155f4565b6030612f539190615290565b60f81b818381518110612f8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fcb91906152e6565b9450612f23565b8093505050505b919050565b6000612ffb82612fed85613372565b6133a290919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600d60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b60008084848460405160200161306b93929190614ba6565b604051602081830303815290604052805190602001209050809150509392505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061315957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131695750613168826133c9565b5b9050919050565b61317a8383612a30565b61318760008484846131db565b6131c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bd90614db6565b60405180910390fd5b505050565b6131d6838383613433565b505050565b60006131fc8473ffffffffffffffffffffffffffffffffffffffff16613547565b15613365578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613225612587565b8786866040518563ffffffff1660e01b81526004016132479493929190614c68565b602060405180830381600087803b15801561326157600080fd5b505af192505050801561329257506040513d601f19601f8201168201806040525081019061328f9190614407565b60015b613315573d80600081146132c2576040519150601f19603f3d011682016040523d82523d6000602084013e6132c7565b606091505b5060008151141561330d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330490614db6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061336a565b600190505b949350505050565b6000816040516020016133859190614c27565b604051602081830303815290604052805190602001209050919050565b60008060006133b1858561355a565b915091506133be816135dd565b819250505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61343e83838361392e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134815761347c81613933565b6134c0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134bf576134be838261397c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613503576134fe81613ae9565b613542565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613541576135408282613c2c565b5b5b505050565b600080823b905060008111915050919050565b60008060418351141561359c5760008060006020860151925060408601519150606086015160001a905061359087828585613cab565b945094505050506135d6565b6040835114156135cd5760008060208501519150604085015190506135c2868383613db8565b9350935050506135d6565b60006002915091505b9250929050565b60006004811115613617577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613650577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561365b5761392b565b60016004811115613695577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156136ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561370f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370690614d36565b60405180910390fd5b60026004811115613749577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613782577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156137c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ba90614d56565b60405180910390fd5b600360048111156137fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613836577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386e90614e76565b60405180910390fd5b6004808111156138b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156138e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561392a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392190614f76565b60405180910390fd5b5b50565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613989846116fb565b6139939190615405565b9050600060076000848152602001908152602001600020549050818114613a78576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613afd9190615405565b9050600060096000848152602001908152602001600020549050600060088381548110613b53577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613b9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c10577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613c37836116fb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613ce6576000600391509150613daf565b601b8560ff1614158015613cfe5750601c8560ff1614155b15613d10576000600491509150613daf565b600060018787878760405160008152602001604052604051613d359493929190614ccf565b6020604051602081039080840390855afa158015613d57573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613da657600060019250925050613daf565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613df887828885613cab565b935093505050935093915050565b828054613e1290615510565b90600052602060002090601f016020900481019282613e345760008555613e7b565b82601f10613e4d57803560ff1916838001178555613e7b565b82800160010185558215613e7b579182015b82811115613e7a578235825591602001919060010190613e5f565b5b509050613e889190613e8c565b5090565b5b80821115613ea5576000816000905550600101613e8d565b5090565b6000613ebc613eb7846151d6565b6151b1565b905082815260208101848484011115613ed457600080fd5b613edf8482856154ce565b509392505050565b6000613efa613ef584615207565b6151b1565b905082815260208101848484011115613f1257600080fd5b613f1d8482856154ce565b509392505050565b600081359050613f3481615f23565b92915050565b60008083601f840112613f4c57600080fd5b8235905067ffffffffffffffff811115613f6557600080fd5b602083019150836020820283011115613f7d57600080fd5b9250929050565b60008083601f840112613f9657600080fd5b8235905067ffffffffffffffff811115613faf57600080fd5b602083019150836020820283011115613fc757600080fd5b9250929050565b600081359050613fdd81615f3a565b92915050565b600081359050613ff281615f51565b92915050565b60008135905061400781615f68565b92915050565b60008151905061401c81615f68565b92915050565b600082601f83011261403357600080fd5b8135614043848260208601613ea9565b91505092915050565b60008083601f84011261405e57600080fd5b8235905067ffffffffffffffff81111561407757600080fd5b60208301915083600182028301111561408f57600080fd5b9250929050565b600082601f8301126140a757600080fd5b81356140b7848260208601613ee7565b91505092915050565b6000813590506140cf81615f7f565b92915050565b6000815190506140e481615f7f565b92915050565b6000602082840312156140fc57600080fd5b600061410a84828501613f25565b91505092915050565b6000806040838503121561412657600080fd5b600061413485828601613f25565b925050602061414585828601613f25565b9150509250929050565b60008060006060848603121561416457600080fd5b600061417286828701613f25565b935050602061418386828701613f25565b9250506040614194868287016140c0565b9150509250925092565b600080600080608085870312156141b457600080fd5b60006141c287828801613f25565b94505060206141d387828801613f25565b93505060406141e4878288016140c0565b925050606085013567ffffffffffffffff81111561420157600080fd5b61420d87828801614022565b91505092959194509250565b6000806040838503121561422c57600080fd5b600061423a85828601613f25565b925050602061424b85828601613fce565b9150509250929050565b6000806040838503121561426857600080fd5b600061427685828601613f25565b9250506020614287858286016140c0565b9150509250929050565b600080602083850312156142a457600080fd5b600083013567ffffffffffffffff8111156142be57600080fd5b6142ca85828601613f3a565b92509250509250929050565b600080600080604085870312156142ec57600080fd5b600085013567ffffffffffffffff81111561430657600080fd5b61431287828801613f3a565b9450945050602085013567ffffffffffffffff81111561433157600080fd5b61433d87828801613f84565b925092505092959194509250565b6000806000806080858703121561436157600080fd5b600061436f87828801613fe3565b945050602085013567ffffffffffffffff81111561438c57600080fd5b61439887828801614022565b93505060406143a9878288016140c0565b925050606085013567ffffffffffffffff8111156143c657600080fd5b6143d287828801614096565b91505092959194509250565b6000602082840312156143f057600080fd5b60006143fe84828501613ff8565b91505092915050565b60006020828403121561441957600080fd5b60006144278482850161400d565b91505092915050565b6000806020838503121561444357600080fd5b600083013567ffffffffffffffff81111561445d57600080fd5b6144698582860161404c565b92509250509250929050565b60006020828403121561448757600080fd5b600082013567ffffffffffffffff8111156144a157600080fd5b6144ad84828501614096565b91505092915050565b6000602082840312156144c857600080fd5b60006144d6848285016140c0565b91505092915050565b6000602082840312156144f157600080fd5b60006144ff848285016140d5565b91505092915050565b61451181615439565b82525050565b61452861452382615439565b6155bc565b82525050565b6145378161544b565b82525050565b61454681615457565b82525050565b61455d61455882615457565b6155ce565b82525050565b600061456e8261524d565b6145788185615263565b93506145888185602086016154dd565b614591816156e1565b840191505092915050565b60006145a782615258565b6145b18185615274565b93506145c18185602086016154dd565b6145ca816156e1565b840191505092915050565b60006145e082615258565b6145ea8185615285565b93506145fa8185602086016154dd565b80840191505092915050565b6000815461461381615510565b61461d8186615285565b9450600182166000811461463857600181146146495761467c565b60ff1983168652818601935061467c565b61465285615238565b60005b8381101561467457815481890152600182019150602081019050614655565b838801955050505b50505092915050565b6000614692601883615274565b915061469d826156ff565b602082019050919050565b60006146b5601f83615274565b91506146c082615728565b602082019050919050565b60006146d8601c83615285565b91506146e382615751565b601c82019050919050565b60006146fb600283615274565b91506147068261577a565b602082019050919050565b600061471e602b83615274565b9150614729826157a3565b604082019050919050565b6000614741603283615274565b915061474c826157f2565b604082019050919050565b6000614764602683615274565b915061476f82615841565b604082019050919050565b6000614787601c83615274565b915061479282615890565b602082019050919050565b60006147aa600183615274565b91506147b5826158b9565b602082019050919050565b60006147cd602483615274565b91506147d8826158e2565b604082019050919050565b60006147f0601983615274565b91506147fb82615931565b602082019050919050565b6000614813602283615274565b915061481e8261595a565b604082019050919050565b6000614836602c83615274565b9150614841826159a9565b604082019050919050565b6000614859603883615274565b9150614864826159f8565b604082019050919050565b600061487c602a83615274565b915061488782615a47565b604082019050919050565b600061489f602983615274565b91506148aa82615a96565b604082019050919050565b60006148c2600283615274565b91506148cd82615ae5565b602082019050919050565b60006148e5600283615274565b91506148f082615b0e565b602082019050919050565b6000614908600283615274565b915061491382615b37565b602082019050919050565b600061492b602283615274565b915061493682615b60565b604082019050919050565b600061494e602083615274565b915061495982615baf565b602082019050919050565b6000614971600283615274565b915061497c82615bd8565b602082019050919050565b6000614994602c83615274565b915061499f82615c01565b604082019050919050565b60006149b7600283615274565b91506149c282615c50565b602082019050919050565b60006149da602083615274565b91506149e582615c79565b602082019050919050565b60006149fd602983615274565b9150614a0882615ca2565b604082019050919050565b6000614a20600183615274565b9150614a2b82615cf1565b602082019050919050565b6000614a43602183615274565b9150614a4e82615d1a565b604082019050919050565b6000614a66600283615274565b9150614a7182615d69565b602082019050919050565b6000614a89603183615274565b9150614a9482615d92565b604082019050919050565b6000614aac600183615274565b9150614ab782615de1565b602082019050919050565b6000614acf600283615274565b9150614ada82615e0a565b602082019050919050565b6000614af2600183615274565b9150614afd82615e33565b602082019050919050565b6000614b15602c83615274565b9150614b2082615e5c565b604082019050919050565b6000614b38600283615274565b9150614b4382615eab565b602082019050919050565b6000614b5b603083615274565b9150614b6682615ed4565b604082019050919050565b614b7a816154b7565b82525050565b614b91614b8c826154b7565b6155ea565b82525050565b614ba0816154c1565b82525050565b6000614bb28286614517565b601482019150614bc282856145d5565b9150614bce8284614b80565b602082019150819050949350505050565b6000614beb82846145d5565b915081905092915050565b6000614c028286614606565b9150614c0e82856145d5565b9150614c1a82846145d5565b9150819050949350505050565b6000614c32826146cb565b9150614c3e828461454c565b60208201915081905092915050565b6000602082019050614c626000830184614508565b92915050565b6000608082019050614c7d6000830187614508565b614c8a6020830186614508565b614c976040830185614b71565b8181036060830152614ca98184614563565b905095945050505050565b6000602082019050614cc9600083018461452e565b92915050565b6000608082019050614ce4600083018761453d565b614cf16020830186614b97565b614cfe604083018561453d565b614d0b606083018461453d565b95945050505050565b60006020820190508181036000830152614d2e818461459c565b905092915050565b60006020820190508181036000830152614d4f81614685565b9050919050565b60006020820190508181036000830152614d6f816146a8565b9050919050565b60006020820190508181036000830152614d8f816146ee565b9050919050565b60006020820190508181036000830152614daf81614711565b9050919050565b60006020820190508181036000830152614dcf81614734565b9050919050565b60006020820190508181036000830152614def81614757565b9050919050565b60006020820190508181036000830152614e0f8161477a565b9050919050565b60006020820190508181036000830152614e2f8161479d565b9050919050565b60006020820190508181036000830152614e4f816147c0565b9050919050565b60006020820190508181036000830152614e6f816147e3565b9050919050565b60006020820190508181036000830152614e8f81614806565b9050919050565b60006020820190508181036000830152614eaf81614829565b9050919050565b60006020820190508181036000830152614ecf8161484c565b9050919050565b60006020820190508181036000830152614eef8161486f565b9050919050565b60006020820190508181036000830152614f0f81614892565b9050919050565b60006020820190508181036000830152614f2f816148b5565b9050919050565b60006020820190508181036000830152614f4f816148d8565b9050919050565b60006020820190508181036000830152614f6f816148fb565b9050919050565b60006020820190508181036000830152614f8f8161491e565b9050919050565b60006020820190508181036000830152614faf81614941565b9050919050565b60006020820190508181036000830152614fcf81614964565b9050919050565b60006020820190508181036000830152614fef81614987565b9050919050565b6000602082019050818103600083015261500f816149aa565b9050919050565b6000602082019050818103600083015261502f816149cd565b9050919050565b6000602082019050818103600083015261504f816149f0565b9050919050565b6000602082019050818103600083015261506f81614a13565b9050919050565b6000602082019050818103600083015261508f81614a36565b9050919050565b600060208201905081810360008301526150af81614a59565b9050919050565b600060208201905081810360008301526150cf81614a7c565b9050919050565b600060208201905081810360008301526150ef81614a9f565b9050919050565b6000602082019050818103600083015261510f81614ac2565b9050919050565b6000602082019050818103600083015261512f81614ae5565b9050919050565b6000602082019050818103600083015261514f81614b08565b9050919050565b6000602082019050818103600083015261516f81614b2b565b9050919050565b6000602082019050818103600083015261518f81614b4e565b9050919050565b60006020820190506151ab6000830184614b71565b92915050565b60006151bb6151cc565b90506151c78282615542565b919050565b6000604051905090565b600067ffffffffffffffff8211156151f1576151f06156b2565b5b6151fa826156e1565b9050602081019050919050565b600067ffffffffffffffff821115615222576152216156b2565b5b61522b826156e1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061529b826154b7565b91506152a6836154b7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152db576152da615625565b5b828201905092915050565b60006152f1826154b7565b91506152fc836154b7565b92508261530c5761530b615654565b5b828204905092915050565b6000615322826154b7565b915061532d836154b7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561536657615365615625565b5b828202905092915050565b600061537c8261548d565b91506153878361548d565b9250827f8000000000000000000000000000000000000000000000000000000000000000018212600084121516156153c2576153c1615625565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0182136000841216156153fa576153f9615625565b5b828203905092915050565b6000615410826154b7565b915061541b836154b7565b92508282101561542e5761542d615625565b5b828203905092915050565b600061544482615497565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156154fb5780820151818401526020810190506154e0565b8381111561550a576000848401525b50505050565b6000600282049050600182168061552857607f821691505b6020821081141561553c5761553b615683565b5b50919050565b61554b826156e1565b810181811067ffffffffffffffff8211171561556a576155696156b2565b5b80604052505050565b600061557e826154b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155b1576155b0615625565b5b600182019050919050565b60006155c7826155d8565b9050919050565b6000819050919050565b60006155e3826156f2565b9050919050565b6000819050919050565b60006155ff826154b7565b915061560a836154b7565b92508261561a57615619615654565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f3130000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f3300000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f3131000000000000000000000000000000000000000000000000000000000000600082015250565b7f3133000000000000000000000000000000000000000000000000000000000000600082015250565b7f3132000000000000000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f3332000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f3331000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f3200000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f3939000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f3100000000000000000000000000000000000000000000000000000000000000600082015250565b7f3638000000000000000000000000000000000000000000000000000000000000600082015250565b7f3500000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f3333000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b615f2c81615439565b8114615f3757600080fd5b50565b615f438161544b565b8114615f4e57600080fd5b50565b615f5a81615457565b8114615f6557600080fd5b50565b615f7181615461565b8114615f7c57600080fd5b50565b615f88816154b7565b8114615f9357600080fd5b5056fea26469706673582212204e263be120a43503e66554d8517b29e4e0b3f0eb2b8dc9f44ecf12493eadcbf664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000773005d8f295a346c1b3c8749d45c72b45d399d0000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f676c697463686769726c732e756b2e722e61707073706f742e636f6d2f6170692f0000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : startingBaseToken (string): https://glitchgirls.uk.r.appspot.com/api/
Arg [1] : startingSignerAddress (address): 0x773005d8f295A346c1B3C8749D45C72B45D399D0
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000773005d8f295a346c1b3c8749d45c72b45d399d0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [3] : 68747470733a2f2f676c697463686769726c732e756b2e722e61707073706f74
Arg [4] : 2e636f6d2f6170692f0000000000000000000000000000000000000000000000
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.