ERC-1155
Overview
Max Total Supply
428 TWG
Holders
151
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TWGToken
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; error TWG_ExceedsMaxPerAddress(); error TWG_ExceedsPublicSupply(); error TWG_FunctionLocked(); error TWG_InvalidAmount(); error TWG_InvalidValue(); error TWG_ClaimDisabled(); error TWG_MintDisabled(); error TWG_TokenNotVested(); error TWG_VestingNotStarted(); interface IWolfGuildMintPass is IERC1155 { function burn(address from, uint256 id) external; } interface IWolfGuildVestingMintPass is IWolfGuildMintPass { function mint(address to, uint256 id) external; } contract TWGToken is ERC1155, Ownable, ReentrancyGuard { IWolfGuildMintPass public immutable WOLF_GUILD_MINT_PASS; IWolfGuildVestingMintPass public immutable WOLF_GUILD_VESTING_MINT_PASS; uint256 public constant RT_DAY0_CLAIM_AMOUNT = 27; uint256 public constant FC_DAY0_CLAIM_AMOUNT = 16; uint256 public constant RT_VESTED_CLAIM_AMOUNT = 9; uint256 public constant FC_VESTED_CLAIM_AMOUNT = 5; uint256 public constant OG_CLAIM_AMOUNT_PER_MP = 3; uint256 public constant VESTING_PERIOD_DURATION = 90 days; uint256 public constant MAX_VESTING_PERIOD = 8; string private constant NAME = "The Wolf Guild Token"; string private constant SYMBOL = "TWG"; uint256 public publicSupply = 3460; uint256 public ogPrice = 0.069 ether; uint256 public publicPrice = 0.1 ether; uint256 public maxPerAddress = 20; uint256 public vestingStartedAt; uint256 public discountMinted; uint256 public publicMinted; uint256 public totalClaimed; bool public claimEnabled; bool public mintEnabled; mapping(address => uint256) public addressMintedAmount; constructor( string memory _uri, IWolfGuildMintPass _mintPass, IWolfGuildVestingMintPass _vestingMintPass ) ERC1155(_uri) { WOLF_GUILD_MINT_PASS = IWolfGuildMintPass(_mintPass); WOLF_GUILD_VESTING_MINT_PASS = IWolfGuildVestingMintPass(_vestingMintPass); } /** * @notice Mock ERC721 name functionality * @return string Token name */ function name() public pure returns (string memory) { return NAME; } /** * @notice Mock ERC721 symbol functionality * @return string Token symbol */ function symbol() public pure returns (string memory) { return SYMBOL; } /** * @notice Total amount of tokens minted and claimed * @return uint256 Total supply of tokens */ function totalSupply() public view returns (uint256) { return totalClaimed + publicMinted + discountMinted; } /** * @notice Current vesting period if vesting has started * @return uint256 Current vesting period */ function vestingPeriod() public view returns (uint256) { if (vestingStartedAt == 0) revert TWG_VestingNotStarted(); uint256 period = (block.timestamp - vestingStartedAt) / VESTING_PERIOD_DURATION; return (period > MAX_VESTING_PERIOD) ? MAX_VESTING_PERIOD : period; } /** * @notice Time remaining until next vesting period * @return uint256 Seconds until next vesting period */ function vestingRemainingTime() public view returns (uint256) { return (vestingPeriod() == MAX_VESTING_PERIOD) ? 0 : VESTING_PERIOD_DURATION - ((block.timestamp - vestingStartedAt) % VESTING_PERIOD_DURATION); } /** * @notice Flip between enabling and disabling RT and FC token claim * @dev The first time this is done will set the vesting timer */ function flipClaimEnabled() external onlyOwner { if (vestingStartedAt == 0) vestingStartedAt = block.timestamp; claimEnabled = !claimEnabled; } /** * @notice Flip between enabling and disabling OG and public mint */ function flipMintEnabled() external onlyOwner { mintEnabled = !mintEnabled; } /** * @notice Set the discounted price for OG mints * @param price New price of OG mints */ function setOgPrice(uint256 price) external onlyOwner { ogPrice = price; } /** * @notice Set the price for public mints * @param price New price of public mints */ function setPublicPrice(uint256 price) external onlyOwner { publicPrice = price; } /** * @notice Set the maximum amount of tokens an address can public mint * @param max New maximum amount of tokens */ function setMaxPerAddress(uint256 max) external onlyOwner { maxPerAddress = max; } /** * @notice Set token URI for all tokens * @dev More details in ERC1155 contract * @param uri base metadata URI applied to token IDs */ function setURI(string memory uri) public onlyOwner { _setURI(uri); } /** * @notice Claim tokens using a RT or FC mint pass * @param tokenId Mint pass to claim with */ function claim(uint256 tokenId) external nonReentrant { if (!claimEnabled) revert TWG_ClaimDisabled(); uint256 requiredVestingPeriod = tokenId / 2; uint256 currentVestingPeriod = vestingPeriod(); if (requiredVestingPeriod > currentVestingPeriod) revert TWG_TokenNotVested(); totalClaimed += requiredVestingPeriod > 0 ? vestedClaim(tokenId, currentVestingPeriod, currentVestingPeriod - requiredVestingPeriod) : day0Claim(tokenId); } /** * @notice Returns if a token is a RT token * @param tokenId Token to check * @return bool Whether or not token is a RT token */ function isRTToken(uint256 tokenId) private pure returns (bool) { return tokenId % 2 == 0; } /** * @notice Initial claim for a RT or FC mint pass available at day 0 * @param tokenId Mint pass to claim with * @return uint256 Amount of tokens minted */ function day0Claim(uint256 tokenId) private returns (uint256) { WOLF_GUILD_MINT_PASS.burn(msg.sender, tokenId); uint256 amountClaimed = isRTToken(tokenId) ? RT_DAY0_CLAIM_AMOUNT : FC_DAY0_CLAIM_AMOUNT; _mint(msg.sender, 0, amountClaimed, ""); WOLF_GUILD_VESTING_MINT_PASS.mint(msg.sender, tokenId + 2); return amountClaimed; } /** * @notice Vested claim for a RT or FC mint pass * @param tokenId Mint pass to claim with * @param currentVestingPeriod Current vesting period * @param vestingPeriodDifference Difference between the current vesting period and required vesting period * @return uint256 Amount of tokens minted */ function vestedClaim( uint256 tokenId, uint256 currentVestingPeriod, uint256 vestingPeriodDifference ) private returns (uint256) { WOLF_GUILD_VESTING_MINT_PASS.burn(msg.sender, tokenId); uint256 baseClaimAmount = isRTToken(tokenId) ? RT_VESTED_CLAIM_AMOUNT : FC_VESTED_CLAIM_AMOUNT; uint256 amountClaimed = (vestingPeriodDifference + 1) * baseClaimAmount; _mint(msg.sender, 0, amountClaimed, ""); if (currentVestingPeriod < MAX_VESTING_PERIOD) { WOLF_GUILD_VESTING_MINT_PASS.mint(msg.sender, tokenId + 2 + (vestingPeriodDifference * 2)); } return amountClaimed; } /** * @notice Mint tokens at a discounted price using OG mint passes * @param amount Amount of tokens to mint (requires 1 OG MP for every 3 tokens) */ function discountMint(uint256 amount) external payable nonReentrant { if (msg.value != amount * ogPrice) revert TWG_InvalidValue(); if (amount == 0) revert TWG_InvalidAmount(); uint256 abandonedTokens = amount % OG_CLAIM_AMOUNT_PER_MP; uint256 requiredMintPasses = amount / OG_CLAIM_AMOUNT_PER_MP + (abandonedTokens == 0 ? 0 : 1); publicSupply += abandonedTokens; for (uint256 i; i < requiredMintPasses;) { WOLF_GUILD_MINT_PASS.burn(msg.sender, 2); unchecked { ++i; } } _mint(msg.sender, amount); discountMinted += amount; } /** * @notice Mint tokens at full price * @param amount Amount of tokens to mint */ function publicMint(uint256 amount) external payable nonReentrant { addressMintedAmount[msg.sender] += amount; publicMinted += amount; if (addressMintedAmount[msg.sender] > maxPerAddress) revert TWG_ExceedsMaxPerAddress(); if (publicMinted > publicSupply) revert TWG_ExceedsPublicSupply(); if (msg.value != amount * publicPrice) revert TWG_InvalidValue(); _mint(msg.sender, amount); } /** * @notice Private minting function * @param account Address to mint the tokens to * @param amount Amount of tokens to mint */ function _mint(address account, uint256 amount) internal { if (!mintEnabled) revert TWG_MintDisabled(); _mint(account, 0, amount, ""); } /** * @notice Withdraw all ETH transferred to the contract */ function withdraw() external onlyOwner { Address.sendValue(payable(_msgSender()), address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) 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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "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":"_uri","type":"string"},{"internalType":"contract IWolfGuildMintPass","name":"_mintPass","type":"address"},{"internalType":"contract IWolfGuildVestingMintPass","name":"_vestingMintPass","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"TWG_ClaimDisabled","type":"error"},{"inputs":[],"name":"TWG_ExceedsMaxPerAddress","type":"error"},{"inputs":[],"name":"TWG_ExceedsPublicSupply","type":"error"},{"inputs":[],"name":"TWG_InvalidAmount","type":"error"},{"inputs":[],"name":"TWG_InvalidValue","type":"error"},{"inputs":[],"name":"TWG_MintDisabled","type":"error"},{"inputs":[],"name":"TWG_TokenNotVested","type":"error"},{"inputs":[],"name":"TWG_VestingNotStarted","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"FC_DAY0_CLAIM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FC_VESTED_CLAIM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_CLAIM_AMOUNT_PER_MP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RT_DAY0_CLAIM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RT_VESTED_CLAIM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VESTING_PERIOD_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WOLF_GUILD_MINT_PASS","outputs":[{"internalType":"contract IWolfGuildMintPass","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WOLF_GUILD_VESTING_MINT_PASS","outputs":[{"internalType":"contract IWolfGuildVestingMintPass","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"discountMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"discountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"ogPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setOgPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setURI","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":"pure","type":"function"},{"inputs":[],"name":"totalClaimed","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingRemainingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingStartedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052610d8460055566f523226980800060065567016345785d8a000060075560146008553480156200003357600080fd5b506040516200533c3803806200533c833981810160405281019062000059919062000443565b826200006b816200010560201b60201c565b506200008c620000806200011a60201b60201c565b6200012260201b60201c565b60016004819055508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050505050620007f0565b806002908162000116919062000709565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002518262000206565b810181811067ffffffffffffffff8211171562000273576200027262000217565b5b80604052505050565b600062000288620001e8565b905062000296828262000246565b919050565b600067ffffffffffffffff821115620002b957620002b862000217565b5b620002c48262000206565b9050602081019050919050565b60005b83811015620002f1578082015181840152602081019050620002d4565b8381111562000301576000848401525b50505050565b60006200031e62000318846200029b565b6200027c565b9050828152602081018484840111156200033d576200033c62000201565b5b6200034a848285620002d1565b509392505050565b600082601f8301126200036a5762000369620001fc565b5b81516200037c84826020860162000307565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003b28262000385565b9050919050565b6000620003c682620003a5565b9050919050565b620003d881620003b9565b8114620003e457600080fd5b50565b600081519050620003f881620003cd565b92915050565b60006200040b82620003a5565b9050919050565b6200041d81620003fe565b81146200042957600080fd5b50565b6000815190506200043d8162000412565b92915050565b6000806000606084860312156200045f576200045e620001f2565b5b600084015167ffffffffffffffff81111562000480576200047f620001f7565b5b6200048e8682870162000352565b9350506020620004a186828701620003e7565b9250506040620004b4868287016200042c565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200051157607f821691505b602082108103620005275762000526620004c9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000552565b6200059d868362000552565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005ea620005e4620005de84620005b5565b620005bf565b620005b5565b9050919050565b6000819050919050565b6200060683620005c9565b6200061e6200061582620005f1565b8484546200055f565b825550505050565b600090565b6200063562000626565b62000642818484620005fb565b505050565b5b818110156200066a576200065e6000826200062b565b60018101905062000648565b5050565b601f821115620006b95762000683816200052d565b6200068e8462000542565b810160208510156200069e578190505b620006b6620006ad8562000542565b83018262000647565b50505b505050565b600082821c905092915050565b6000620006de60001984600802620006be565b1980831691505092915050565b6000620006f98383620006cb565b9150826002028217905092915050565b6200071482620004be565b67ffffffffffffffff81111562000730576200072f62000217565b5b6200073c8254620004f8565b620007498282856200066e565b600060209050601f8311600181146200078157600084156200076c578287015190505b620007788582620006eb565b865550620007e8565b601f19841662000791866200052d565b60005b82811015620007bb5784890151825560018201915060208501945060208101905062000794565b86831015620007db5784890151620007d7601f891682620006cb565b8355505b6001600288020188555050505b505050505050565b60805160a051614b03620008396000396000818161179c01528181612120015281816121c401526122ad0152600081816112f801528181611832015261205c0152614b036000f3fe60806040526004361061027c5760003560e01c80637bddd65b1161014f578063a7d5eb4e116100c1578063d9e4289d1161007a578063d9e4289d14610917578063e5a5e67414610942578063e985e9c51461096d578063f242432a146109aa578063f2fde38b146109d3578063fa129986146109fc5761027c565b8063a7d5eb4e14610817578063a945bf8014610842578063c5b2aba51461086d578063c627525514610898578063d1239730146108c1578063d54ad2a1146108ec5761027c565b8063979c71b711610113578063979c71b71461072b5780639e2fd4ba14610756578063a18567bc14610781578063a22cb465146107ac578063a4f4f8af146107d5578063a7242e8c146108005761027c565b80637bddd65b1461065857806383af79e71461068157806386a2e377146106aa5780638da5cb5b146106d557806395d89b41146107005761027c565b80632eb2c2d6116101f35780634e1273f4116101ac5780634e1273f41461056c57806354d78f56146105a95780635e84d723146105c0578063639814e0146105eb578063715018a6146106165780637313ee5a1461062d5761027c565b80632eb2c2d61461047f578063379607f5146104a85780633ccfd60b146104d15780633cd7b152146104e857806341de890e146105255780634d9197b7146105415761027c565b806315f5d8a01161024557806315f5d8a01461038c57806318160ddd146103b7578063260d965c146103e257806327235fd81461040d5780632866ed21146104385780632db11544146104635761027c565b8062fdd58e1461028157806301ffc9a7146102be57806302fe5305146102fb57806306fdde03146103245780630e89341c1461034f575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a39190612fb7565b610a27565b6040516102b59190613006565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613079565b610aef565b6040516102f291906130c1565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613222565b610bd1565b005b34801561033057600080fd5b50610339610c59565b60405161034691906132f3565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613315565b610c96565b60405161038391906132f3565b60405180910390f35b34801561039857600080fd5b506103a1610d2a565b6040516103ae9190613006565b60405180910390f35b3480156103c357600080fd5b506103cc610d30565b6040516103d99190613006565b60405180910390f35b3480156103ee57600080fd5b506103f7610d54565b6040516104049190613006565b60405180910390f35b34801561041957600080fd5b50610422610d59565b60405161042f9190613006565b60405180910390f35b34801561044457600080fd5b5061044d610d5e565b60405161045a91906130c1565b60405180910390f35b61047d60048036038101906104789190613315565b610d71565b005b34801561048b57600080fd5b506104a660048036038101906104a191906134ab565b610f41565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190613315565b610fe2565b005b3480156104dd57600080fd5b506104e661111e565b005b3480156104f457600080fd5b5061050f600480360381019061050a919061357a565b6111ad565b60405161051c9190613006565b60405180910390f35b61053f600480360381019061053a9190613315565b6111c5565b005b34801561054d57600080fd5b506105566113c0565b6040516105639190613006565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061366a565b6113c5565b6040516105a091906137a0565b60405180910390f35b3480156105b557600080fd5b506105be6114de565b005b3480156105cc57600080fd5b506105d5611586565b6040516105e29190613006565b60405180910390f35b3480156105f757600080fd5b5061060061158c565b60405161060d9190613006565b60405180910390f35b34801561062257600080fd5b5061062b611592565b005b34801561063957600080fd5b5061064261161a565b60405161064f9190613006565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190613315565b61168e565b005b34801561068d57600080fd5b506106a860048036038101906106a39190613315565b611714565b005b3480156106b657600080fd5b506106bf61179a565b6040516106cc9190613821565b60405180910390f35b3480156106e157600080fd5b506106ea6117be565b6040516106f7919061384b565b60405180910390f35b34801561070c57600080fd5b506107156117e8565b60405161072291906132f3565b60405180910390f35b34801561073757600080fd5b50610740611825565b60405161074d9190613006565b60405180910390f35b34801561076257600080fd5b5061076b61182b565b6040516107789190613006565b60405180910390f35b34801561078d57600080fd5b50610796611830565b6040516107a39190613887565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906138ce565b611854565b005b3480156107e157600080fd5b506107ea61186a565b6040516107f79190613006565b60405180910390f35b34801561080c57600080fd5b50610815611870565b005b34801561082357600080fd5b5061082c61192a565b6040516108399190613006565b60405180910390f35b34801561084e57600080fd5b50610857611931565b6040516108649190613006565b60405180910390f35b34801561087957600080fd5b50610882611937565b60405161088f9190613006565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613315565b61197f565b005b3480156108cd57600080fd5b506108d6611a05565b6040516108e391906130c1565b60405180910390f35b3480156108f857600080fd5b50610901611a18565b60405161090e9190613006565b60405180910390f35b34801561092357600080fd5b5061092c611a1e565b6040516109399190613006565b60405180910390f35b34801561094e57600080fd5b50610957611a24565b6040516109649190613006565b60405180910390f35b34801561097957600080fd5b50610994600480360381019061098f919061390e565b611a29565b6040516109a191906130c1565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc919061394e565b611abd565b005b3480156109df57600080fd5b506109fa60048036038101906109f5919061357a565b611b5e565b005b348015610a0857600080fd5b50610a11611c55565b604051610a1e9190613006565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90613a57565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bba57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bca5750610bc982611c5a565b5b9050919050565b610bd9611cc4565b73ffffffffffffffffffffffffffffffffffffffff16610bf76117be565b73ffffffffffffffffffffffffffffffffffffffff1614610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490613ac3565b60405180910390fd5b610c5681611ccc565b50565b60606040518060400160405280601481526020017f54686520576f6c66204775696c6420546f6b656e000000000000000000000000815250905090565b606060028054610ca590613b12565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd190613b12565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b50505050509050919050565b60065481565b6000600a54600b54600c54610d459190613b72565b610d4f9190613b72565b905090565b600381565b600981565b600d60009054906101000a900460ff1681565b600260045403610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90613c14565b60405180910390fd5b600260048190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e0d9190613b72565b9250508190555080600b6000828254610e269190613b72565b92505081905550600854600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610ea8576040517ffd8c11d500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600554600b541115610ee6576040517feb01c68600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075481610ef49190613c34565b3414610f2c576040517f0895064800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f363382611cdf565b600160048190555050565b610f49611cc4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f8f5750610f8e85610f89611cc4565b611a29565b5b610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590613d00565b60405180910390fd5b610fdb8585858585611d45565b5050505050565b600260045403611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613c14565b60405180910390fd5b6002600481905550600d60009054906101000a900460ff16611075576040517fb09ade1500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006002826110849190613d4f565b9050600061109061161a565b9050808211156110cc576040517f9d166d2d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082116110e2576110dd83612058565b6110f9565b6110f8838284846110f39190613d80565b6121c0565b5b600c600082825461110a9190613b72565b925050819055505050600160048190555050565b611126611cc4565b73ffffffffffffffffffffffffffffffffffffffff166111446117be565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613ac3565b60405180910390fd5b6111ab6111a5611cc4565b47612368565b565b600e6020528060005260406000206000915090505481565b60026004540361120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613c14565b60405180910390fd5b6002600481905550600654816112209190613c34565b3414611258576040517f0895064800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103611292576040517fbf771af400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006003826112a19190613db4565b905060008082146112b35760016112b6565b60005b60ff166003846112c69190613d4f565b6112d09190613b72565b905081600560008282546112e49190613b72565b9250508190555060005b8181101561138f577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639dc29fac3360026040518363ffffffff1660e01b8152600401611352929190613e20565b600060405180830381600087803b15801561136c57600080fd5b505af1158015611380573d6000803e3d6000fd5b505050508060010190506112ee565b5061139a3384611cdf565b82600a60008282546113ac9190613b72565b925050819055505050600160048190555050565b600581565b6060815183511461140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290613ebb565b60405180910390fd5b6000835167ffffffffffffffff811115611428576114276130f7565b5b6040519080825280602002602001820160405280156114565781602001602082028036833780820191505090505b50905060005b84518110156114d3576114a385828151811061147b5761147a613edb565b5b602002602001015185838151811061149657611495613edb565b5b6020026020010151610a27565b8282815181106114b6576114b5613edb565b5b602002602001018181525050806114cc90613f0a565b905061145c565b508091505092915050565b6114e6611cc4565b73ffffffffffffffffffffffffffffffffffffffff166115046117be565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613ac3565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b60055481565b60085481565b61159a611cc4565b73ffffffffffffffffffffffffffffffffffffffff166115b86117be565b73ffffffffffffffffffffffffffffffffffffffff161461160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613ac3565b60405180910390fd5b611618600061245c565b565b60008060095403611657576040517fcd5e98ea00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006276a7006009544261166b9190613d80565b6116759190613d4f565b9050600881116116855780611688565b60085b91505090565b611696611cc4565b73ffffffffffffffffffffffffffffffffffffffff166116b46117be565b73ffffffffffffffffffffffffffffffffffffffff161461170a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170190613ac3565b60405180910390fd5b8060088190555050565b61171c611cc4565b73ffffffffffffffffffffffffffffffffffffffff1661173a6117be565b73ffffffffffffffffffffffffffffffffffffffff1614611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613ac3565b60405180910390fd5b8060068190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f5457470000000000000000000000000000000000000000000000000000000000815250905090565b60095481565b601081565b7f000000000000000000000000000000000000000000000000000000000000000081565b61186661185f611cc4565b8383612522565b5050565b600b5481565b611878611cc4565b73ffffffffffffffffffffffffffffffffffffffff166118966117be565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613ac3565b60405180910390fd5b6000600954036118fe57426009819055505b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6276a70081565b60075481565b6000600861194361161a565b14611977576276a7006009544261195a9190613d80565b6119649190613db4565b6276a7006119729190613d80565b61197a565b60005b905090565b611987611cc4565b73ffffffffffffffffffffffffffffffffffffffff166119a56117be565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290613ac3565b60405180910390fd5b8060078190555050565b600d60019054906101000a900460ff1681565b600c5481565b600a5481565b600881565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ac5611cc4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611b0b5750611b0a85611b05611cc4565b611a29565b5b611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190613fc4565b60405180910390fd5b611b57858585858561268e565b5050505050565b611b66611cc4565b73ffffffffffffffffffffffffffffffffffffffff16611b846117be565b73ffffffffffffffffffffffffffffffffffffffff1614611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190613ac3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090614056565b60405180910390fd5b611c528161245c565b50565b601b81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029081611cdb9190614218565b5050565b600d60019054906101000a900460ff16611d25576040517f6f1b45cf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d41826000836040518060200160405280600081525061290f565b5050565b8151835114611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d809061435c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def906143ee565b60405180910390fd5b6000611e02611cc4565b9050611e12818787878787612aa4565b60005b8451811015611fc3576000858281518110611e3357611e32613edb565b5b602002602001015190506000858381518110611e5257611e51613edb565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea90614480565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa89190613b72565b9250508190555050505080611fbc90613f0a565b9050611e15565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161203a9291906144a0565b60405180910390a4612050818787878787612aac565b505050505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639dc29fac33846040518363ffffffff1660e01b81526004016120b59291906144d7565b600060405180830381600087803b1580156120cf57600080fd5b505af11580156120e3573d6000803e3d6000fd5b5050505060006120f283612c83565b6120fd576010612100565b601b5b905061211e336000836040518060200160405280600081525061290f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340c10f19336002866121689190613b72565b6040518363ffffffff1660e01b81526004016121859291906144d7565b600060405180830381600087803b15801561219f57600080fd5b505af11580156121b3573d6000803e3d6000fd5b5050505080915050919050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639dc29fac33866040518363ffffffff1660e01b815260040161221d9291906144d7565b600060405180830381600087803b15801561223757600080fd5b505af115801561224b573d6000803e3d6000fd5b50505050600061225a85612c83565b612265576005612268565b60095b905060008160018561227a9190613b72565b6122849190613c34565b90506122a2336000836040518060200160405280600081525061290f565b600885101561235c577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340c10f19336002876122f59190613c34565b60028a6123029190613b72565b61230c9190613b72565b6040518363ffffffff1660e01b81526004016123299291906144d7565b600060405180830381600087803b15801561234357600080fd5b505af1158015612357573d6000803e3d6000fd5b505050505b80925050509392505050565b804710156123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a29061454c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516123d19061459d565b60006040518083038185875af1925050503d806000811461240e576040519150601f19603f3d011682016040523d82523d6000602084013e612413565b606091505b5050905080612457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244e90614624565b60405180910390fd5b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612587906146b6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161268191906130c1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f4906143ee565b60405180910390fd5b6000612707611cc4565b905061272781878761271888612c9b565b61272188612c9b565b87612aa4565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b590614480565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128739190613b72565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516128f09291906146d6565b60405180910390a4612906828888888888612d15565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614771565b60405180910390fd5b6000612988611cc4565b90506129a98160008761299a88612c9b565b6129a388612c9b565b87612aa4565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a089190613b72565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612a869291906146d6565b60405180910390a4612a9d81600087878787612d15565b5050505050565b505050505050565b612acb8473ffffffffffffffffffffffffffffffffffffffff16612eec565b15612c7b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612b119594939291906147e6565b6020604051808303816000875af1925050508015612b4d57506040513d601f19601f82011682018060405250810190612b4a9190614863565b60015b612bf257612b5961489d565b806308c379a003612bb55750612b6d6148bf565b80612b785750612bb7565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bac91906132f3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be9906149c1565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7090614a53565b60405180910390fd5b505b505050505050565b600080600283612c939190613db4565b149050919050565b60606000600167ffffffffffffffff811115612cba57612cb96130f7565b5b604051908082528060200260200182016040528015612ce85781602001602082028036833780820191505090505b5090508281600081518110612d0057612cff613edb565b5b60200260200101818152505080915050919050565b612d348473ffffffffffffffffffffffffffffffffffffffff16612eec565b15612ee4578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612d7a959493929190614a73565b6020604051808303816000875af1925050508015612db657506040513d601f19601f82011682018060405250810190612db39190614863565b60015b612e5b57612dc261489d565b806308c379a003612e1e5750612dd66148bf565b80612de15750612e20565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1591906132f3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e52906149c1565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed990614a53565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f4e82612f23565b9050919050565b612f5e81612f43565b8114612f6957600080fd5b50565b600081359050612f7b81612f55565b92915050565b6000819050919050565b612f9481612f81565b8114612f9f57600080fd5b50565b600081359050612fb181612f8b565b92915050565b60008060408385031215612fce57612fcd612f19565b5b6000612fdc85828601612f6c565b9250506020612fed85828601612fa2565b9150509250929050565b61300081612f81565b82525050565b600060208201905061301b6000830184612ff7565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61305681613021565b811461306157600080fd5b50565b6000813590506130738161304d565b92915050565b60006020828403121561308f5761308e612f19565b5b600061309d84828501613064565b91505092915050565b60008115159050919050565b6130bb816130a6565b82525050565b60006020820190506130d660008301846130b2565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61312f826130e6565b810181811067ffffffffffffffff8211171561314e5761314d6130f7565b5b80604052505050565b6000613161612f0f565b905061316d8282613126565b919050565b600067ffffffffffffffff82111561318d5761318c6130f7565b5b613196826130e6565b9050602081019050919050565b82818337600083830152505050565b60006131c56131c084613172565b613157565b9050828152602081018484840111156131e1576131e06130e1565b5b6131ec8482856131a3565b509392505050565b600082601f830112613209576132086130dc565b5b81356132198482602086016131b2565b91505092915050565b60006020828403121561323857613237612f19565b5b600082013567ffffffffffffffff81111561325657613255612f1e565b5b613262848285016131f4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132a557808201518184015260208101905061328a565b838111156132b4576000848401525b50505050565b60006132c58261326b565b6132cf8185613276565b93506132df818560208601613287565b6132e8816130e6565b840191505092915050565b6000602082019050818103600083015261330d81846132ba565b905092915050565b60006020828403121561332b5761332a612f19565b5b600061333984828501612fa2565b91505092915050565b600067ffffffffffffffff82111561335d5761335c6130f7565b5b602082029050602081019050919050565b600080fd5b600061338661338184613342565b613157565b905080838252602082019050602084028301858111156133a9576133a861336e565b5b835b818110156133d257806133be8882612fa2565b8452602084019350506020810190506133ab565b5050509392505050565b600082601f8301126133f1576133f06130dc565b5b8135613401848260208601613373565b91505092915050565b600067ffffffffffffffff821115613425576134246130f7565b5b61342e826130e6565b9050602081019050919050565b600061344e6134498461340a565b613157565b90508281526020810184848401111561346a576134696130e1565b5b6134758482856131a3565b509392505050565b600082601f830112613492576134916130dc565b5b81356134a284826020860161343b565b91505092915050565b600080600080600060a086880312156134c7576134c6612f19565b5b60006134d588828901612f6c565b95505060206134e688828901612f6c565b945050604086013567ffffffffffffffff81111561350757613506612f1e565b5b613513888289016133dc565b935050606086013567ffffffffffffffff81111561353457613533612f1e565b5b613540888289016133dc565b925050608086013567ffffffffffffffff81111561356157613560612f1e565b5b61356d8882890161347d565b9150509295509295909350565b6000602082840312156135905761358f612f19565b5b600061359e84828501612f6c565b91505092915050565b600067ffffffffffffffff8211156135c2576135c16130f7565b5b602082029050602081019050919050565b60006135e66135e1846135a7565b613157565b905080838252602082019050602084028301858111156136095761360861336e565b5b835b81811015613632578061361e8882612f6c565b84526020840193505060208101905061360b565b5050509392505050565b600082601f830112613651576136506130dc565b5b81356136618482602086016135d3565b91505092915050565b6000806040838503121561368157613680612f19565b5b600083013567ffffffffffffffff81111561369f5761369e612f1e565b5b6136ab8582860161363c565b925050602083013567ffffffffffffffff8111156136cc576136cb612f1e565b5b6136d8858286016133dc565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61371781612f81565b82525050565b6000613729838361370e565b60208301905092915050565b6000602082019050919050565b600061374d826136e2565b61375781856136ed565b9350613762836136fe565b8060005b8381101561379357815161377a888261371d565b975061378583613735565b925050600181019050613766565b5085935050505092915050565b600060208201905081810360008301526137ba8184613742565b905092915050565b6000819050919050565b60006137e76137e26137dd84612f23565b6137c2565b612f23565b9050919050565b60006137f9826137cc565b9050919050565b600061380b826137ee565b9050919050565b61381b81613800565b82525050565b60006020820190506138366000830184613812565b92915050565b61384581612f43565b82525050565b6000602082019050613860600083018461383c565b92915050565b6000613871826137ee565b9050919050565b61388181613866565b82525050565b600060208201905061389c6000830184613878565b92915050565b6138ab816130a6565b81146138b657600080fd5b50565b6000813590506138c8816138a2565b92915050565b600080604083850312156138e5576138e4612f19565b5b60006138f385828601612f6c565b9250506020613904858286016138b9565b9150509250929050565b6000806040838503121561392557613924612f19565b5b600061393385828601612f6c565b925050602061394485828601612f6c565b9150509250929050565b600080600080600060a0868803121561396a57613969612f19565b5b600061397888828901612f6c565b955050602061398988828901612f6c565b945050604061399a88828901612fa2565b93505060606139ab88828901612fa2565b925050608086013567ffffffffffffffff8111156139cc576139cb612f1e565b5b6139d88882890161347d565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613a41602b83613276565b9150613a4c826139e5565b604082019050919050565b60006020820190508181036000830152613a7081613a34565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613aad602083613276565b9150613ab882613a77565b602082019050919050565b60006020820190508181036000830152613adc81613aa0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b2a57607f821691505b602082108103613b3d57613b3c613ae3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b7d82612f81565b9150613b8883612f81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bbd57613bbc613b43565b5b828201905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613bfe601f83613276565b9150613c0982613bc8565b602082019050919050565b60006020820190508181036000830152613c2d81613bf1565b9050919050565b6000613c3f82612f81565b9150613c4a83612f81565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c8357613c82613b43565b5b828202905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613cea603283613276565b9150613cf582613c8e565b604082019050919050565b60006020820190508181036000830152613d1981613cdd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d5a82612f81565b9150613d6583612f81565b925082613d7557613d74613d20565b5b828204905092915050565b6000613d8b82612f81565b9150613d9683612f81565b925082821015613da957613da8613b43565b5b828203905092915050565b6000613dbf82612f81565b9150613dca83612f81565b925082613dda57613dd9613d20565b5b828206905092915050565b6000819050919050565b6000613e0a613e05613e0084613de5565b6137c2565b612f81565b9050919050565b613e1a81613def565b82525050565b6000604082019050613e35600083018561383c565b613e426020830184613e11565b9392505050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613ea5602983613276565b9150613eb082613e49565b604082019050919050565b60006020820190508181036000830152613ed481613e98565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613f1582612f81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f4757613f46613b43565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613fae602983613276565b9150613fb982613f52565b604082019050919050565b60006020820190508181036000830152613fdd81613fa1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614040602683613276565b915061404b82613fe4565b604082019050919050565b6000602082019050818103600083015261406f81614033565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026140d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261409b565b6140e2868361409b565b95508019841693508086168417925050509392505050565b600061411561411061410b84612f81565b6137c2565b612f81565b9050919050565b6000819050919050565b61412f836140fa565b61414361413b8261411c565b8484546140a8565b825550505050565b600090565b61415861414b565b614163818484614126565b505050565b5b818110156141875761417c600082614150565b600181019050614169565b5050565b601f8211156141cc5761419d81614076565b6141a68461408b565b810160208510156141b5578190505b6141c96141c18561408b565b830182614168565b50505b505050565b600082821c905092915050565b60006141ef600019846008026141d1565b1980831691505092915050565b600061420883836141de565b9150826002028217905092915050565b6142218261326b565b67ffffffffffffffff81111561423a576142396130f7565b5b6142448254613b12565b61424f82828561418b565b600060209050601f8311600181146142825760008415614270578287015190505b61427a85826141fc565b8655506142e2565b601f19841661429086614076565b60005b828110156142b857848901518255600182019150602085019450602081019050614293565b868310156142d557848901516142d1601f8916826141de565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614346602883613276565b9150614351826142ea565b604082019050919050565b6000602082019050818103600083015261437581614339565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006143d8602583613276565b91506143e38261437c565b604082019050919050565b60006020820190508181036000830152614407816143cb565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061446a602a83613276565b91506144758261440e565b604082019050919050565b600060208201905081810360008301526144998161445d565b9050919050565b600060408201905081810360008301526144ba8185613742565b905081810360208301526144ce8184613742565b90509392505050565b60006040820190506144ec600083018561383c565b6144f96020830184612ff7565b9392505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614536601d83613276565b915061454182614500565b602082019050919050565b6000602082019050818103600083015261456581614529565b9050919050565b600081905092915050565b50565b600061458760008361456c565b915061459282614577565b600082019050919050565b60006145a88261457a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061460e603a83613276565b9150614619826145b2565b604082019050919050565b6000602082019050818103600083015261463d81614601565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006146a0602983613276565b91506146ab82614644565b604082019050919050565b600060208201905081810360008301526146cf81614693565b9050919050565b60006040820190506146eb6000830185612ff7565b6146f86020830184612ff7565b9392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061475b602183613276565b9150614766826146ff565b604082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147b882614791565b6147c2818561479c565b93506147d2818560208601613287565b6147db816130e6565b840191505092915050565b600060a0820190506147fb600083018861383c565b614808602083018761383c565b818103604083015261481a8186613742565b9050818103606083015261482e8185613742565b9050818103608083015261484281846147ad565b90509695505050505050565b60008151905061485d8161304d565b92915050565b60006020828403121561487957614878612f19565b5b60006148878482850161484e565b91505092915050565b60008160e01c9050919050565b600060033d11156148bc5760046000803e6148b9600051614890565b90505b90565b600060443d1061494c576148d1612f0f565b60043d036004823e80513d602482011167ffffffffffffffff821117156148f957505061494c565b808201805167ffffffffffffffff811115614917575050505061494c565b80602083010160043d03850181111561493457505050505061494c565b61494382602001850186613126565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006149ab603483613276565b91506149b68261494f565b604082019050919050565b600060208201905081810360008301526149da8161499e565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614a3d602883613276565b9150614a48826149e1565b604082019050919050565b60006020820190508181036000830152614a6c81614a30565b9050919050565b600060a082019050614a88600083018861383c565b614a95602083018761383c565b614aa26040830186612ff7565b614aaf6060830185612ff7565b8181036080830152614ac181846147ad565b9050969550505050505056fea2646970667358221220dad72a61d9fdd4dcc8a495bfc2a63b338a5115a7f8b240dbd691535451abfb3364736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000008483153802fa9877029690312846afb2e9baa6300000000000000000000000082d24e9daa36d9194f99c37a698c88feb4fb632e000000000000000000000000000000000000000000000000000000000000000b697066733a2f2f7b69647d000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061027c5760003560e01c80637bddd65b1161014f578063a7d5eb4e116100c1578063d9e4289d1161007a578063d9e4289d14610917578063e5a5e67414610942578063e985e9c51461096d578063f242432a146109aa578063f2fde38b146109d3578063fa129986146109fc5761027c565b8063a7d5eb4e14610817578063a945bf8014610842578063c5b2aba51461086d578063c627525514610898578063d1239730146108c1578063d54ad2a1146108ec5761027c565b8063979c71b711610113578063979c71b71461072b5780639e2fd4ba14610756578063a18567bc14610781578063a22cb465146107ac578063a4f4f8af146107d5578063a7242e8c146108005761027c565b80637bddd65b1461065857806383af79e71461068157806386a2e377146106aa5780638da5cb5b146106d557806395d89b41146107005761027c565b80632eb2c2d6116101f35780634e1273f4116101ac5780634e1273f41461056c57806354d78f56146105a95780635e84d723146105c0578063639814e0146105eb578063715018a6146106165780637313ee5a1461062d5761027c565b80632eb2c2d61461047f578063379607f5146104a85780633ccfd60b146104d15780633cd7b152146104e857806341de890e146105255780634d9197b7146105415761027c565b806315f5d8a01161024557806315f5d8a01461038c57806318160ddd146103b7578063260d965c146103e257806327235fd81461040d5780632866ed21146104385780632db11544146104635761027c565b8062fdd58e1461028157806301ffc9a7146102be57806302fe5305146102fb57806306fdde03146103245780630e89341c1461034f575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a39190612fb7565b610a27565b6040516102b59190613006565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613079565b610aef565b6040516102f291906130c1565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613222565b610bd1565b005b34801561033057600080fd5b50610339610c59565b60405161034691906132f3565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613315565b610c96565b60405161038391906132f3565b60405180910390f35b34801561039857600080fd5b506103a1610d2a565b6040516103ae9190613006565b60405180910390f35b3480156103c357600080fd5b506103cc610d30565b6040516103d99190613006565b60405180910390f35b3480156103ee57600080fd5b506103f7610d54565b6040516104049190613006565b60405180910390f35b34801561041957600080fd5b50610422610d59565b60405161042f9190613006565b60405180910390f35b34801561044457600080fd5b5061044d610d5e565b60405161045a91906130c1565b60405180910390f35b61047d60048036038101906104789190613315565b610d71565b005b34801561048b57600080fd5b506104a660048036038101906104a191906134ab565b610f41565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190613315565b610fe2565b005b3480156104dd57600080fd5b506104e661111e565b005b3480156104f457600080fd5b5061050f600480360381019061050a919061357a565b6111ad565b60405161051c9190613006565b60405180910390f35b61053f600480360381019061053a9190613315565b6111c5565b005b34801561054d57600080fd5b506105566113c0565b6040516105639190613006565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061366a565b6113c5565b6040516105a091906137a0565b60405180910390f35b3480156105b557600080fd5b506105be6114de565b005b3480156105cc57600080fd5b506105d5611586565b6040516105e29190613006565b60405180910390f35b3480156105f757600080fd5b5061060061158c565b60405161060d9190613006565b60405180910390f35b34801561062257600080fd5b5061062b611592565b005b34801561063957600080fd5b5061064261161a565b60405161064f9190613006565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190613315565b61168e565b005b34801561068d57600080fd5b506106a860048036038101906106a39190613315565b611714565b005b3480156106b657600080fd5b506106bf61179a565b6040516106cc9190613821565b60405180910390f35b3480156106e157600080fd5b506106ea6117be565b6040516106f7919061384b565b60405180910390f35b34801561070c57600080fd5b506107156117e8565b60405161072291906132f3565b60405180910390f35b34801561073757600080fd5b50610740611825565b60405161074d9190613006565b60405180910390f35b34801561076257600080fd5b5061076b61182b565b6040516107789190613006565b60405180910390f35b34801561078d57600080fd5b50610796611830565b6040516107a39190613887565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906138ce565b611854565b005b3480156107e157600080fd5b506107ea61186a565b6040516107f79190613006565b60405180910390f35b34801561080c57600080fd5b50610815611870565b005b34801561082357600080fd5b5061082c61192a565b6040516108399190613006565b60405180910390f35b34801561084e57600080fd5b50610857611931565b6040516108649190613006565b60405180910390f35b34801561087957600080fd5b50610882611937565b60405161088f9190613006565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613315565b61197f565b005b3480156108cd57600080fd5b506108d6611a05565b6040516108e391906130c1565b60405180910390f35b3480156108f857600080fd5b50610901611a18565b60405161090e9190613006565b60405180910390f35b34801561092357600080fd5b5061092c611a1e565b6040516109399190613006565b60405180910390f35b34801561094e57600080fd5b50610957611a24565b6040516109649190613006565b60405180910390f35b34801561097957600080fd5b50610994600480360381019061098f919061390e565b611a29565b6040516109a191906130c1565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc919061394e565b611abd565b005b3480156109df57600080fd5b506109fa60048036038101906109f5919061357a565b611b5e565b005b348015610a0857600080fd5b50610a11611c55565b604051610a1e9190613006565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90613a57565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bba57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bca5750610bc982611c5a565b5b9050919050565b610bd9611cc4565b73ffffffffffffffffffffffffffffffffffffffff16610bf76117be565b73ffffffffffffffffffffffffffffffffffffffff1614610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490613ac3565b60405180910390fd5b610c5681611ccc565b50565b60606040518060400160405280601481526020017f54686520576f6c66204775696c6420546f6b656e000000000000000000000000815250905090565b606060028054610ca590613b12565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd190613b12565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b50505050509050919050565b60065481565b6000600a54600b54600c54610d459190613b72565b610d4f9190613b72565b905090565b600381565b600981565b600d60009054906101000a900460ff1681565b600260045403610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90613c14565b60405180910390fd5b600260048190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e0d9190613b72565b9250508190555080600b6000828254610e269190613b72565b92505081905550600854600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610ea8576040517ffd8c11d500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600554600b541115610ee6576040517feb01c68600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075481610ef49190613c34565b3414610f2c576040517f0895064800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f363382611cdf565b600160048190555050565b610f49611cc4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f8f5750610f8e85610f89611cc4565b611a29565b5b610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590613d00565b60405180910390fd5b610fdb8585858585611d45565b5050505050565b600260045403611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613c14565b60405180910390fd5b6002600481905550600d60009054906101000a900460ff16611075576040517fb09ade1500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006002826110849190613d4f565b9050600061109061161a565b9050808211156110cc576040517f9d166d2d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082116110e2576110dd83612058565b6110f9565b6110f8838284846110f39190613d80565b6121c0565b5b600c600082825461110a9190613b72565b925050819055505050600160048190555050565b611126611cc4565b73ffffffffffffffffffffffffffffffffffffffff166111446117be565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613ac3565b60405180910390fd5b6111ab6111a5611cc4565b47612368565b565b600e6020528060005260406000206000915090505481565b60026004540361120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613c14565b60405180910390fd5b6002600481905550600654816112209190613c34565b3414611258576040517f0895064800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103611292576040517fbf771af400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006003826112a19190613db4565b905060008082146112b35760016112b6565b60005b60ff166003846112c69190613d4f565b6112d09190613b72565b905081600560008282546112e49190613b72565b9250508190555060005b8181101561138f577f00000000000000000000000008483153802fa9877029690312846afb2e9baa6373ffffffffffffffffffffffffffffffffffffffff16639dc29fac3360026040518363ffffffff1660e01b8152600401611352929190613e20565b600060405180830381600087803b15801561136c57600080fd5b505af1158015611380573d6000803e3d6000fd5b505050508060010190506112ee565b5061139a3384611cdf565b82600a60008282546113ac9190613b72565b925050819055505050600160048190555050565b600581565b6060815183511461140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290613ebb565b60405180910390fd5b6000835167ffffffffffffffff811115611428576114276130f7565b5b6040519080825280602002602001820160405280156114565781602001602082028036833780820191505090505b50905060005b84518110156114d3576114a385828151811061147b5761147a613edb565b5b602002602001015185838151811061149657611495613edb565b5b6020026020010151610a27565b8282815181106114b6576114b5613edb565b5b602002602001018181525050806114cc90613f0a565b905061145c565b508091505092915050565b6114e6611cc4565b73ffffffffffffffffffffffffffffffffffffffff166115046117be565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613ac3565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b60055481565b60085481565b61159a611cc4565b73ffffffffffffffffffffffffffffffffffffffff166115b86117be565b73ffffffffffffffffffffffffffffffffffffffff161461160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613ac3565b60405180910390fd5b611618600061245c565b565b60008060095403611657576040517fcd5e98ea00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006276a7006009544261166b9190613d80565b6116759190613d4f565b9050600881116116855780611688565b60085b91505090565b611696611cc4565b73ffffffffffffffffffffffffffffffffffffffff166116b46117be565b73ffffffffffffffffffffffffffffffffffffffff161461170a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170190613ac3565b60405180910390fd5b8060088190555050565b61171c611cc4565b73ffffffffffffffffffffffffffffffffffffffff1661173a6117be565b73ffffffffffffffffffffffffffffffffffffffff1614611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613ac3565b60405180910390fd5b8060068190555050565b7f00000000000000000000000082d24e9daa36d9194f99c37a698c88feb4fb632e81565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f5457470000000000000000000000000000000000000000000000000000000000815250905090565b60095481565b601081565b7f00000000000000000000000008483153802fa9877029690312846afb2e9baa6381565b61186661185f611cc4565b8383612522565b5050565b600b5481565b611878611cc4565b73ffffffffffffffffffffffffffffffffffffffff166118966117be565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613ac3565b60405180910390fd5b6000600954036118fe57426009819055505b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6276a70081565b60075481565b6000600861194361161a565b14611977576276a7006009544261195a9190613d80565b6119649190613db4565b6276a7006119729190613d80565b61197a565b60005b905090565b611987611cc4565b73ffffffffffffffffffffffffffffffffffffffff166119a56117be565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290613ac3565b60405180910390fd5b8060078190555050565b600d60019054906101000a900460ff1681565b600c5481565b600a5481565b600881565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ac5611cc4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611b0b5750611b0a85611b05611cc4565b611a29565b5b611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190613fc4565b60405180910390fd5b611b57858585858561268e565b5050505050565b611b66611cc4565b73ffffffffffffffffffffffffffffffffffffffff16611b846117be565b73ffffffffffffffffffffffffffffffffffffffff1614611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190613ac3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090614056565b60405180910390fd5b611c528161245c565b50565b601b81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029081611cdb9190614218565b5050565b600d60019054906101000a900460ff16611d25576040517f6f1b45cf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d41826000836040518060200160405280600081525061290f565b5050565b8151835114611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d809061435c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def906143ee565b60405180910390fd5b6000611e02611cc4565b9050611e12818787878787612aa4565b60005b8451811015611fc3576000858281518110611e3357611e32613edb565b5b602002602001015190506000858381518110611e5257611e51613edb565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea90614480565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa89190613b72565b9250508190555050505080611fbc90613f0a565b9050611e15565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161203a9291906144a0565b60405180910390a4612050818787878787612aac565b505050505050565b60007f00000000000000000000000008483153802fa9877029690312846afb2e9baa6373ffffffffffffffffffffffffffffffffffffffff16639dc29fac33846040518363ffffffff1660e01b81526004016120b59291906144d7565b600060405180830381600087803b1580156120cf57600080fd5b505af11580156120e3573d6000803e3d6000fd5b5050505060006120f283612c83565b6120fd576010612100565b601b5b905061211e336000836040518060200160405280600081525061290f565b7f00000000000000000000000082d24e9daa36d9194f99c37a698c88feb4fb632e73ffffffffffffffffffffffffffffffffffffffff166340c10f19336002866121689190613b72565b6040518363ffffffff1660e01b81526004016121859291906144d7565b600060405180830381600087803b15801561219f57600080fd5b505af11580156121b3573d6000803e3d6000fd5b5050505080915050919050565b60007f00000000000000000000000082d24e9daa36d9194f99c37a698c88feb4fb632e73ffffffffffffffffffffffffffffffffffffffff16639dc29fac33866040518363ffffffff1660e01b815260040161221d9291906144d7565b600060405180830381600087803b15801561223757600080fd5b505af115801561224b573d6000803e3d6000fd5b50505050600061225a85612c83565b612265576005612268565b60095b905060008160018561227a9190613b72565b6122849190613c34565b90506122a2336000836040518060200160405280600081525061290f565b600885101561235c577f00000000000000000000000082d24e9daa36d9194f99c37a698c88feb4fb632e73ffffffffffffffffffffffffffffffffffffffff166340c10f19336002876122f59190613c34565b60028a6123029190613b72565b61230c9190613b72565b6040518363ffffffff1660e01b81526004016123299291906144d7565b600060405180830381600087803b15801561234357600080fd5b505af1158015612357573d6000803e3d6000fd5b505050505b80925050509392505050565b804710156123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a29061454c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516123d19061459d565b60006040518083038185875af1925050503d806000811461240e576040519150601f19603f3d011682016040523d82523d6000602084013e612413565b606091505b5050905080612457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244e90614624565b60405180910390fd5b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612587906146b6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161268191906130c1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f4906143ee565b60405180910390fd5b6000612707611cc4565b905061272781878761271888612c9b565b61272188612c9b565b87612aa4565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b590614480565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128739190613b72565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516128f09291906146d6565b60405180910390a4612906828888888888612d15565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614771565b60405180910390fd5b6000612988611cc4565b90506129a98160008761299a88612c9b565b6129a388612c9b565b87612aa4565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a089190613b72565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612a869291906146d6565b60405180910390a4612a9d81600087878787612d15565b5050505050565b505050505050565b612acb8473ffffffffffffffffffffffffffffffffffffffff16612eec565b15612c7b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612b119594939291906147e6565b6020604051808303816000875af1925050508015612b4d57506040513d601f19601f82011682018060405250810190612b4a9190614863565b60015b612bf257612b5961489d565b806308c379a003612bb55750612b6d6148bf565b80612b785750612bb7565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bac91906132f3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be9906149c1565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7090614a53565b60405180910390fd5b505b505050505050565b600080600283612c939190613db4565b149050919050565b60606000600167ffffffffffffffff811115612cba57612cb96130f7565b5b604051908082528060200260200182016040528015612ce85781602001602082028036833780820191505090505b5090508281600081518110612d0057612cff613edb565b5b60200260200101818152505080915050919050565b612d348473ffffffffffffffffffffffffffffffffffffffff16612eec565b15612ee4578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612d7a959493929190614a73565b6020604051808303816000875af1925050508015612db657506040513d601f19601f82011682018060405250810190612db39190614863565b60015b612e5b57612dc261489d565b806308c379a003612e1e5750612dd66148bf565b80612de15750612e20565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1591906132f3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e52906149c1565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed990614a53565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f4e82612f23565b9050919050565b612f5e81612f43565b8114612f6957600080fd5b50565b600081359050612f7b81612f55565b92915050565b6000819050919050565b612f9481612f81565b8114612f9f57600080fd5b50565b600081359050612fb181612f8b565b92915050565b60008060408385031215612fce57612fcd612f19565b5b6000612fdc85828601612f6c565b9250506020612fed85828601612fa2565b9150509250929050565b61300081612f81565b82525050565b600060208201905061301b6000830184612ff7565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61305681613021565b811461306157600080fd5b50565b6000813590506130738161304d565b92915050565b60006020828403121561308f5761308e612f19565b5b600061309d84828501613064565b91505092915050565b60008115159050919050565b6130bb816130a6565b82525050565b60006020820190506130d660008301846130b2565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61312f826130e6565b810181811067ffffffffffffffff8211171561314e5761314d6130f7565b5b80604052505050565b6000613161612f0f565b905061316d8282613126565b919050565b600067ffffffffffffffff82111561318d5761318c6130f7565b5b613196826130e6565b9050602081019050919050565b82818337600083830152505050565b60006131c56131c084613172565b613157565b9050828152602081018484840111156131e1576131e06130e1565b5b6131ec8482856131a3565b509392505050565b600082601f830112613209576132086130dc565b5b81356132198482602086016131b2565b91505092915050565b60006020828403121561323857613237612f19565b5b600082013567ffffffffffffffff81111561325657613255612f1e565b5b613262848285016131f4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132a557808201518184015260208101905061328a565b838111156132b4576000848401525b50505050565b60006132c58261326b565b6132cf8185613276565b93506132df818560208601613287565b6132e8816130e6565b840191505092915050565b6000602082019050818103600083015261330d81846132ba565b905092915050565b60006020828403121561332b5761332a612f19565b5b600061333984828501612fa2565b91505092915050565b600067ffffffffffffffff82111561335d5761335c6130f7565b5b602082029050602081019050919050565b600080fd5b600061338661338184613342565b613157565b905080838252602082019050602084028301858111156133a9576133a861336e565b5b835b818110156133d257806133be8882612fa2565b8452602084019350506020810190506133ab565b5050509392505050565b600082601f8301126133f1576133f06130dc565b5b8135613401848260208601613373565b91505092915050565b600067ffffffffffffffff821115613425576134246130f7565b5b61342e826130e6565b9050602081019050919050565b600061344e6134498461340a565b613157565b90508281526020810184848401111561346a576134696130e1565b5b6134758482856131a3565b509392505050565b600082601f830112613492576134916130dc565b5b81356134a284826020860161343b565b91505092915050565b600080600080600060a086880312156134c7576134c6612f19565b5b60006134d588828901612f6c565b95505060206134e688828901612f6c565b945050604086013567ffffffffffffffff81111561350757613506612f1e565b5b613513888289016133dc565b935050606086013567ffffffffffffffff81111561353457613533612f1e565b5b613540888289016133dc565b925050608086013567ffffffffffffffff81111561356157613560612f1e565b5b61356d8882890161347d565b9150509295509295909350565b6000602082840312156135905761358f612f19565b5b600061359e84828501612f6c565b91505092915050565b600067ffffffffffffffff8211156135c2576135c16130f7565b5b602082029050602081019050919050565b60006135e66135e1846135a7565b613157565b905080838252602082019050602084028301858111156136095761360861336e565b5b835b81811015613632578061361e8882612f6c565b84526020840193505060208101905061360b565b5050509392505050565b600082601f830112613651576136506130dc565b5b81356136618482602086016135d3565b91505092915050565b6000806040838503121561368157613680612f19565b5b600083013567ffffffffffffffff81111561369f5761369e612f1e565b5b6136ab8582860161363c565b925050602083013567ffffffffffffffff8111156136cc576136cb612f1e565b5b6136d8858286016133dc565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61371781612f81565b82525050565b6000613729838361370e565b60208301905092915050565b6000602082019050919050565b600061374d826136e2565b61375781856136ed565b9350613762836136fe565b8060005b8381101561379357815161377a888261371d565b975061378583613735565b925050600181019050613766565b5085935050505092915050565b600060208201905081810360008301526137ba8184613742565b905092915050565b6000819050919050565b60006137e76137e26137dd84612f23565b6137c2565b612f23565b9050919050565b60006137f9826137cc565b9050919050565b600061380b826137ee565b9050919050565b61381b81613800565b82525050565b60006020820190506138366000830184613812565b92915050565b61384581612f43565b82525050565b6000602082019050613860600083018461383c565b92915050565b6000613871826137ee565b9050919050565b61388181613866565b82525050565b600060208201905061389c6000830184613878565b92915050565b6138ab816130a6565b81146138b657600080fd5b50565b6000813590506138c8816138a2565b92915050565b600080604083850312156138e5576138e4612f19565b5b60006138f385828601612f6c565b9250506020613904858286016138b9565b9150509250929050565b6000806040838503121561392557613924612f19565b5b600061393385828601612f6c565b925050602061394485828601612f6c565b9150509250929050565b600080600080600060a0868803121561396a57613969612f19565b5b600061397888828901612f6c565b955050602061398988828901612f6c565b945050604061399a88828901612fa2565b93505060606139ab88828901612fa2565b925050608086013567ffffffffffffffff8111156139cc576139cb612f1e565b5b6139d88882890161347d565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613a41602b83613276565b9150613a4c826139e5565b604082019050919050565b60006020820190508181036000830152613a7081613a34565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613aad602083613276565b9150613ab882613a77565b602082019050919050565b60006020820190508181036000830152613adc81613aa0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b2a57607f821691505b602082108103613b3d57613b3c613ae3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b7d82612f81565b9150613b8883612f81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bbd57613bbc613b43565b5b828201905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613bfe601f83613276565b9150613c0982613bc8565b602082019050919050565b60006020820190508181036000830152613c2d81613bf1565b9050919050565b6000613c3f82612f81565b9150613c4a83612f81565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c8357613c82613b43565b5b828202905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613cea603283613276565b9150613cf582613c8e565b604082019050919050565b60006020820190508181036000830152613d1981613cdd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d5a82612f81565b9150613d6583612f81565b925082613d7557613d74613d20565b5b828204905092915050565b6000613d8b82612f81565b9150613d9683612f81565b925082821015613da957613da8613b43565b5b828203905092915050565b6000613dbf82612f81565b9150613dca83612f81565b925082613dda57613dd9613d20565b5b828206905092915050565b6000819050919050565b6000613e0a613e05613e0084613de5565b6137c2565b612f81565b9050919050565b613e1a81613def565b82525050565b6000604082019050613e35600083018561383c565b613e426020830184613e11565b9392505050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613ea5602983613276565b9150613eb082613e49565b604082019050919050565b60006020820190508181036000830152613ed481613e98565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613f1582612f81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f4757613f46613b43565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613fae602983613276565b9150613fb982613f52565b604082019050919050565b60006020820190508181036000830152613fdd81613fa1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614040602683613276565b915061404b82613fe4565b604082019050919050565b6000602082019050818103600083015261406f81614033565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026140d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261409b565b6140e2868361409b565b95508019841693508086168417925050509392505050565b600061411561411061410b84612f81565b6137c2565b612f81565b9050919050565b6000819050919050565b61412f836140fa565b61414361413b8261411c565b8484546140a8565b825550505050565b600090565b61415861414b565b614163818484614126565b505050565b5b818110156141875761417c600082614150565b600181019050614169565b5050565b601f8211156141cc5761419d81614076565b6141a68461408b565b810160208510156141b5578190505b6141c96141c18561408b565b830182614168565b50505b505050565b600082821c905092915050565b60006141ef600019846008026141d1565b1980831691505092915050565b600061420883836141de565b9150826002028217905092915050565b6142218261326b565b67ffffffffffffffff81111561423a576142396130f7565b5b6142448254613b12565b61424f82828561418b565b600060209050601f8311600181146142825760008415614270578287015190505b61427a85826141fc565b8655506142e2565b601f19841661429086614076565b60005b828110156142b857848901518255600182019150602085019450602081019050614293565b868310156142d557848901516142d1601f8916826141de565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614346602883613276565b9150614351826142ea565b604082019050919050565b6000602082019050818103600083015261437581614339565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006143d8602583613276565b91506143e38261437c565b604082019050919050565b60006020820190508181036000830152614407816143cb565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061446a602a83613276565b91506144758261440e565b604082019050919050565b600060208201905081810360008301526144998161445d565b9050919050565b600060408201905081810360008301526144ba8185613742565b905081810360208301526144ce8184613742565b90509392505050565b60006040820190506144ec600083018561383c565b6144f96020830184612ff7565b9392505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614536601d83613276565b915061454182614500565b602082019050919050565b6000602082019050818103600083015261456581614529565b9050919050565b600081905092915050565b50565b600061458760008361456c565b915061459282614577565b600082019050919050565b60006145a88261457a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061460e603a83613276565b9150614619826145b2565b604082019050919050565b6000602082019050818103600083015261463d81614601565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006146a0602983613276565b91506146ab82614644565b604082019050919050565b600060208201905081810360008301526146cf81614693565b9050919050565b60006040820190506146eb6000830185612ff7565b6146f86020830184612ff7565b9392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061475b602183613276565b9150614766826146ff565b604082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147b882614791565b6147c2818561479c565b93506147d2818560208601613287565b6147db816130e6565b840191505092915050565b600060a0820190506147fb600083018861383c565b614808602083018761383c565b818103604083015261481a8186613742565b9050818103606083015261482e8185613742565b9050818103608083015261484281846147ad565b90509695505050505050565b60008151905061485d8161304d565b92915050565b60006020828403121561487957614878612f19565b5b60006148878482850161484e565b91505092915050565b60008160e01c9050919050565b600060033d11156148bc5760046000803e6148b9600051614890565b90505b90565b600060443d1061494c576148d1612f0f565b60043d036004823e80513d602482011167ffffffffffffffff821117156148f957505061494c565b808201805167ffffffffffffffff811115614917575050505061494c565b80602083010160043d03850181111561493457505050505061494c565b61494382602001850186613126565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006149ab603483613276565b91506149b68261494f565b604082019050919050565b600060208201905081810360008301526149da8161499e565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614a3d602883613276565b9150614a48826149e1565b604082019050919050565b60006020820190508181036000830152614a6c81614a30565b9050919050565b600060a082019050614a88600083018861383c565b614a95602083018761383c565b614aa26040830186612ff7565b614aaf6060830185612ff7565b8181036080830152614ac181846147ad565b9050969550505050505056fea2646970667358221220dad72a61d9fdd4dcc8a495bfc2a63b338a5115a7f8b240dbd691535451abfb3364736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000008483153802fa9877029690312846afb2e9baa6300000000000000000000000082d24e9daa36d9194f99c37a698c88feb4fb632e000000000000000000000000000000000000000000000000000000000000000b697066733a2f2f7b69647d000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string): ipfs://{id}
Arg [1] : _mintPass (address): 0x08483153802fA9877029690312846aFb2e9baa63
Arg [2] : _vestingMintPass (address): 0x82d24e9DAA36d9194f99c37A698c88FEB4FB632e
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000008483153802fa9877029690312846afb2e9baa63
Arg [2] : 00000000000000000000000082d24e9daa36d9194f99c37a698c88feb4fb632e
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 697066733a2f2f7b69647d000000000000000000000000000000000000000000
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.