Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
5,001 TOD
Holders
1,564
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 TODLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheOddDystrict
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.10; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721Enum.sol"; contract TheOddDystrict is ERC721Enum, Ownable, PaymentSplitter, Pausable, ReentrancyGuard { using Strings for uint256; string public baseURI; //sale settings uint256 public cost = 0.05 ether; uint256 public maxSupply = 8000; uint256 public maxMint = 7; bool public presaleActive = false; bool public publicSaleActive = false; //presale settings mapping(address => uint256) public presaleWhitelist; //share settings address[] private addressList = [ 0xa449A4f67d74de0c4a11A8137AfF77838a277437, 0x16365A38095fD3CCBFeA5689105350437153Ce16 ]; uint[] private shareList = [90, 10]; constructor() ERC721P("TheOddDystrict", "TOD") PaymentSplitter(addressList, shareList){ setBaseURI(""); } function _baseURI() internal view virtual returns (string memory) { return baseURI; } // public minting function mint(uint256 _mintAmount) public payable nonReentrant{ uint256 s = totalSupply(); require(publicSaleActive, "Main Sale Not Enabled"); require(_mintAmount > 0, "Cant mint 0" ); require(_mintAmount <= maxMint, "Cant mint more then maxmint" ); require(s + _mintAmount <= maxSupply, "Cant go over supply" ); require(cost * _mintAmount == msg.value, "Wrong amount"); for (uint256 i = 0; i < _mintAmount; ++i) { _safeMint(msg.sender, s + i, ""); } delete s; } // presale minting function mintPresale(uint256 _mintAmount) public payable { uint256 s = totalSupply(); uint256 reserve = presaleWhitelist[msg.sender]; require(_mintAmount > 0, "Cant mint 0" ); require(presaleActive, "Presale Not Enabled"); require(reserve > 0, "No presale left"); require(_mintAmount <= reserve, "Cant mint more than reserved"); require(s + _mintAmount <= maxSupply, "Cant go over supply"); require(cost * _mintAmount == msg.value, "Wrong amount"); presaleWhitelist[msg.sender] = reserve - _mintAmount; delete reserve; for(uint256 i; i < _mintAmount; i++){ _safeMint(msg.sender, s + i, ""); } delete s; } // admin minting function gift(uint[] calldata quantity, address[] calldata recipient) external onlyOwner{ require(quantity.length == recipient.length, "Provide quantities and recipients" ); uint totalQuantity = 0; uint256 s = totalSupply(); for(uint i = 0; i < quantity.length; ++i){ totalQuantity += quantity[i]; } require(s + totalQuantity <= maxSupply, "Cant go over supply"); delete totalQuantity; for(uint i = 0; i < recipient.length; ++i){ for(uint j = 0; j < quantity[i]; ++j){ _safeMint( recipient[i], s++, "" ); } } delete s; } // admin functionality function presaleSet(address[] calldata _addresses, uint256[] calldata _amounts) public onlyOwner { for(uint256 i; i < _addresses.length; i++){ presaleWhitelist[_addresses[i]] = _amounts[i]; } } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : ""; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setMaxMint(uint256 _newmaxMint) public onlyOwner { maxMint = _newmaxMint; } function setMaxSupply(uint256 _newMaxSupply) public onlyOwner { maxSupply = _newMaxSupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setPresaleSaleStatus(bool _status) public onlyOwner { presaleActive = _status; } function setPublicSaleStatus(bool _status) public onlyOwner { publicSaleActive = _status; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } function withdrawSplit() public onlyOwner { for (uint256 sh = 0; sh < addressList.length; sh++) { address payable wallet = payable(addressList[sh]); release(wallet); } } }
// 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 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; import "../token/ERC20/utils/SafeERC20.sol"; import "../utils/Address.sol"; import "../utils/Context.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// 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: GPL-3.0 pragma solidity ^0.8.10; import "./ERC721P.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; abstract contract ERC721Enum is ERC721P, IERC721Enumerable { function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) { require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ){ if( count == index ) return i; else ++count; } } require(false, "ERC721Enum: owner ioob"); } function tokensOfOwner(address owner) public view returns (uint256[] memory) { require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob"); uint256 tokenCount = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(owner, i); } return tokenIds; } function totalSupply() public view virtual override returns (uint256) { return _owners.length; } function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob"); return index; } }
// 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/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.10; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata { using Address for address; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count = 0; uint length = _owners.length; for( uint i = 0; i < length; ++i ){ if( owner == _owners[i] ){ ++count; } } delete length; return count; } function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721P.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721P.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _owners.push(to); emit Transfer(address(0), to, tokenId); } function _burn(uint256 tokenId) internal virtual { address owner = ERC721P.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721P.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721P.ownerOf(tokenId), to, tokenId); } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // 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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"presaleSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPresaleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405266b1a2bc2ec50000601055611f4060115560076012556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff021916908315150217905550604051806040016040528073a449a4f67d74de0c4a11a8137aff77838a27743773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017316365a38095fd3ccbfea5689105350437153ce1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506015906002620000f7929190620007f8565b506040518060400160405280605a60ff168152602001600a60ff1681525060169060026200012792919062000887565b503480156200013557600080fd5b506015805480602002602001604051908101604052809291908181526020018280548015620001ba57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116200016f575b505050505060168054806020026020016040519081016040528092919081815260200182805480156200020d57602002820191906000526020600020905b815481526020019060010190808311620001f8575b50505050506040518060400160405280600e81526020017f5468654f646444797374726963740000000000000000000000000000000000008152506040518060400160405280600381526020017f544f440000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000296929190620008de565b508060019080519060200190620002af929190620008de565b505050620002d2620002c66200041b60201b60201c565b6200042360201b60201c565b805182511462000319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003109062000a15565b60405180910390fd5b600082511162000360576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003579062000a87565b60405180910390fd5b60005b8251811015620003cf57620003b983828151811062000387576200038662000aa9565b5b6020026020010151838381518110620003a557620003a462000aa9565b5b6020026020010151620004e960201b60201c565b8080620003c69062000b11565b91505062000363565b5050506000600d60006101000a81548160ff0219169083151502179055506001600e8190555062000415604051806020016040528060008152506200072360201b60201c565b62000eb8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200055c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005539062000bd5565b60405180910390fd5b60008111620005a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005999062000c47565b60405180910390fd5b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000627576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061e9062000cdf565b60405180910390fd5b600a829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600654620006de919062000d01565b6006819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200071792919062000db4565b60405180910390a15050565b620007336200041b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000759620007ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007a99062000e31565b60405180910390fd5b80600f9080519060200190620007ca929190620008de565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805482825590600052602060002090810192821562000874579160200282015b82811115620008735782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000819565b5b5090506200088391906200096f565b5090565b828054828255906000526020600020908101928215620008cb579160200282015b82811115620008ca578251829060ff16905591602001919060010190620008a8565b5b509050620008da91906200096f565b5090565b828054620008ec9062000e82565b90600052602060002090601f0160209004810192826200091057600085556200095c565b82601f106200092b57805160ff19168380011785556200095c565b828001600101855582156200095c579182015b828111156200095b5782518255916020019190600101906200093e565b5b5090506200096b91906200096f565b5090565b5b808211156200098a57600081600090555060010162000970565b5090565b600082825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b6000620009fd6032836200098e565b915062000a0a826200099f565b604082019050919050565b6000602082019050818103600083015262000a3081620009ee565b9050919050565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b600062000a6f601a836200098e565b915062000a7c8262000a37565b602082019050919050565b6000602082019050818103600083015262000aa28162000a60565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b600062000b1e8262000b07565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b545762000b5362000ad8565b5b600182019050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000bbd602c836200098e565b915062000bca8262000b5f565b604082019050919050565b6000602082019050818103600083015262000bf08162000bae565b9050919050565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b600062000c2f601d836200098e565b915062000c3c8262000bf7565b602082019050919050565b6000602082019050818103600083015262000c628162000c20565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b600062000cc7602b836200098e565b915062000cd48262000c69565b604082019050919050565b6000602082019050818103600083015262000cfa8162000cb8565b9050919050565b600062000d0e8262000b07565b915062000d1b8362000b07565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d535762000d5262000ad8565b5b828201905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d8b8262000d5e565b9050919050565b62000d9d8162000d7e565b82525050565b62000dae8162000b07565b82525050565b600060408201905062000dcb600083018562000d92565b62000dda602083018462000da3565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e196020836200098e565b915062000e268262000de1565b602082019050919050565b6000602082019050818103600083015262000e4c8162000e0a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e9b57607f821691505b6020821081141562000eb25762000eb162000e53565b5b50919050565b615f838062000ec86000396000f3fe6080604052600436106102b25760003560e01c806370a0823111610175578063a50e89ff116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610b01578063eb8835ab14610b3e578063f2fde38b14610b7b578063f759867a14610ba4576102f9565b8063d5abeb0114610a6e578063d79779b214610a99578063e33b7de314610ad6576102f9565b8063a50e89ff14610960578063b423fe6714610977578063b88d4fde146109a0578063bc8893b4146109c9578063c87b56dd146109f4578063ce7c2ac214610a31576102f9565b80638da5cb5b1161012e5780638da5cb5b1461085f57806395d89b411461088a57806396ea3a47146108b55780639852595c146108de578063a0712d681461091b578063a22cb46514610937576102f9565b806370a082311461073d578063715018a61461077a578063732e71ef146107915780637501f741146107ba5780638462151c146107e55780638b83209b14610822576102f9565b8063406072a911610219578063547520fe116101d2578063547520fe1461062f57806355f804b3146106585780635c975abb146106815780636352211e146106ac5780636c0360eb146106e95780636f8b44b014610714576102f9565b8063406072a91461050f57806342842e0e1461054c57806344a0d68a1461057557806348b750441461059e5780634f6ccce7146105c757806353135ca014610604576102f9565b806318160ddd1161026b57806318160ddd14610420578063191655871461044b57806323b872dd146104745780632f745c591461049d5780633a98ef39146104da5780633ccfd60b14610505576102f9565b806301ffc9a7146102fe57806306fdde031461033b578063081812fc14610366578063095ea7b3146103a357806309999795146103cc57806313faede6146103f5576102f9565b366102f9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102e0610bc0565b346040516102ef929190613e2c565b60405180910390a1005b600080fd5b34801561030a57600080fd5b5061032560048036038101906103209190613ec1565b610bc8565b6040516103329190613f09565b60405180910390f35b34801561034757600080fd5b50610350610c42565b60405161035d9190613fbd565b60405180910390f35b34801561037257600080fd5b5061038d6004803603810190610388919061400b565b610cd4565b60405161039a9190614038565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c5919061407f565b610d59565b005b3480156103d857600080fd5b506103f360048036038101906103ee91906140eb565b610e71565b005b34801561040157600080fd5b5061040a610f0a565b6040516104179190614118565b60405180910390f35b34801561042c57600080fd5b50610435610f10565b6040516104429190614118565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d9190614171565b610f1d565b005b34801561048057600080fd5b5061049b6004803603810190610496919061419e565b6110c8565b005b3480156104a957600080fd5b506104c460048036038101906104bf919061407f565b611128565b6040516104d19190614118565b60405180910390f35b3480156104e657600080fd5b506104ef611271565b6040516104fc9190614118565b60405180910390f35b61050d61127b565b005b34801561051b57600080fd5b506105366004803603810190610531919061422f565b611370565b6040516105439190614118565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e919061419e565b6113f7565b005b34801561058157600080fd5b5061059c6004803603810190610597919061400b565b611417565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061422f565b61149d565b005b3480156105d357600080fd5b506105ee60048036038101906105e9919061400b565b611756565b6040516105fb9190614118565b60405180910390f35b34801561061057600080fd5b506106196117a9565b6040516106269190613f09565b60405180910390f35b34801561063b57600080fd5b506106566004803603810190610651919061400b565b6117bc565b005b34801561066457600080fd5b5061067f600480360381019061067a91906143a4565b611842565b005b34801561068d57600080fd5b506106966118d8565b6040516106a39190613f09565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce919061400b565b6118ef565b6040516106e09190614038565b60405180910390f35b3480156106f557600080fd5b506106fe6119ac565b60405161070b9190613fbd565b60405180910390f35b34801561072057600080fd5b5061073b6004803603810190610736919061400b565b611a3a565b005b34801561074957600080fd5b50610764600480360381019061075f91906143ed565b611ac0565b6040516107719190614118565b60405180910390f35b34801561078657600080fd5b5061078f611be6565b005b34801561079d57600080fd5b506107b860048036038101906107b391906144d0565b611c6e565b005b3480156107c657600080fd5b506107cf611d96565b6040516107dc9190614118565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906143ed565b611d9c565b604051610819919061460f565b60405180910390f35b34801561082e57600080fd5b506108496004803603810190610844919061400b565b611e95565b6040516108569190614038565b60405180910390f35b34801561086b57600080fd5b50610874611edd565b6040516108819190614038565b60405180910390f35b34801561089657600080fd5b5061089f611f07565b6040516108ac9190613fbd565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d79190614631565b611f99565b005b3480156108ea57600080fd5b50610905600480360381019061090091906143ed565b6121b4565b6040516109129190614118565b60405180910390f35b6109356004803603810190610930919061400b565b6121fd565b005b34801561094357600080fd5b5061095e600480360381019061095991906146b2565b61241f565b005b34801561096c57600080fd5b506109756125a0565b005b34801561098357600080fd5b5061099e600480360381019061099991906140eb565b61268f565b005b3480156109ac57600080fd5b506109c760048036038101906109c29190614793565b612728565b005b3480156109d557600080fd5b506109de61278a565b6040516109eb9190613f09565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a16919061400b565b61279d565b604051610a289190613fbd565b60405180910390f35b348015610a3d57600080fd5b50610a586004803603810190610a5391906143ed565b612844565b604051610a659190614118565b60405180910390f35b348015610a7a57600080fd5b50610a8361288d565b604051610a909190614118565b60405180910390f35b348015610aa557600080fd5b50610ac06004803603810190610abb9190614816565b612893565b604051610acd9190614118565b60405180910390f35b348015610ae257600080fd5b50610aeb6128dc565b604051610af89190614118565b60405180910390f35b348015610b0d57600080fd5b50610b286004803603810190610b239190614843565b6128e6565b604051610b359190613f09565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906143ed565b61297a565b604051610b729190614118565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d91906143ed565b612992565b005b610bbe6004803603810190610bb9919061400b565b612a8a565b005b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c3b5750610c3a82612d31565b5b9050919050565b606060008054610c51906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7d906148b2565b8015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b5050505050905090565b6000610cdf82612e13565b610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590614956565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d64826118ef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906149e8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df4610bc0565b73ffffffffffffffffffffffffffffffffffffffff161480610e235750610e2281610e1d610bc0565b6128e6565b5b610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5990614a7a565b60405180910390fd5b610e6c8383612e9b565b505050565b610e79610bc0565b73ffffffffffffffffffffffffffffffffffffffff16610e97611edd565b73ffffffffffffffffffffffffffffffffffffffff1614610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490614ae6565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b60105481565b6000600280549050905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690614b78565b60405180910390fd5b6000610fa96128dc565b47610fb49190614bc7565b90506000610fcb8383610fc6866121b4565b612f54565b90506000811415611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890614c8f565b60405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110609190614bc7565b9250508190555080600760008282546110799190614bc7565b9250508190555061108a8382612fc2565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516110bb929190614d0e565b60405180910390a1505050565b6110d96110d3610bc0565b826130b6565b611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90614da9565b60405180910390fd5b611123838383613194565b505050565b600061113383611ac0565b8210611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90614e15565b60405180910390fd5b6000805b600280549050811015611227576002818154811061119957611198614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611216578382141561120957809250505061126b565b8161121390614e64565b91505b8061122090614e64565b9050611178565b506000611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090614e15565b60405180910390fd5b505b92915050565b6000600654905090565b611283610bc0565b73ffffffffffffffffffffffffffffffffffffffff166112a1611edd565b73ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614ae6565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161131d90614ede565b60006040518083038185875af1925050503d806000811461135a576040519150601f19603f3d011682016040523d82523d6000602084013e61135f565b606091505b505090508061136d57600080fd5b50565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61141283838360405180602001604052806000815250612728565b505050565b61141f610bc0565b73ffffffffffffffffffffffffffffffffffffffff1661143d611edd565b73ffffffffffffffffffffffffffffffffffffffff1614611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90614ae6565b60405180910390fd5b8060108190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690614b78565b60405180910390fd5b600061152a83612893565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115639190614038565b602060405180830381865afa158015611580573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a49190614f08565b6115ae9190614bc7565b905060006115c683836115c18787611370565b612f54565b9050600081141561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390614c8f565b60405180910390fd5b80600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116989190614bc7565b9250508190555080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ee9190614bc7565b9250508190555061170084848361334d565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051611748929190613e2c565b60405180910390a250505050565b6000611760610f10565b82106117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890614f81565b60405180910390fd5b819050919050565b601360009054906101000a900460ff1681565b6117c4610bc0565b73ffffffffffffffffffffffffffffffffffffffff166117e2611edd565b73ffffffffffffffffffffffffffffffffffffffff1614611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90614ae6565b60405180910390fd5b8060128190555050565b61184a610bc0565b73ffffffffffffffffffffffffffffffffffffffff16611868611edd565b73ffffffffffffffffffffffffffffffffffffffff16146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590614ae6565b60405180910390fd5b80600f90805190602001906118d4929190613d2f565b5050565b6000600d60009054906101000a900460ff16905090565b6000806002838154811061190657611905614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90615013565b60405180910390fd5b80915050919050565b600f80546119b9906148b2565b80601f01602080910402602001604051908101604052809291908181526020018280546119e5906148b2565b8015611a325780601f10611a0757610100808354040283529160200191611a32565b820191906000526020600020905b815481529060010190602001808311611a1557829003601f168201915b505050505081565b611a42610bc0565b73ffffffffffffffffffffffffffffffffffffffff16611a60611edd565b73ffffffffffffffffffffffffffffffffffffffff1614611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90614ae6565b60405180910390fd5b8060118190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b28906150a5565b60405180910390fd5b600080600280549050905060005b81811015611bd75760028181548110611b5b57611b5a614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611bc65782611bc390614e64565b92505b80611bd090614e64565b9050611b3f565b50600090508192505050919050565b611bee610bc0565b73ffffffffffffffffffffffffffffffffffffffff16611c0c611edd565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5990614ae6565b60405180910390fd5b611c6c60006133d3565b565b611c76610bc0565b73ffffffffffffffffffffffffffffffffffffffff16611c94611edd565b73ffffffffffffffffffffffffffffffffffffffff1614611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190614ae6565b60405180910390fd5b60005b84849050811015611d8f57828282818110611d0b57611d0a614e35565b5b9050602002013560146000878785818110611d2957611d28614e35565b5b9050602002016020810190611d3e91906143ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611d8790614e64565b915050611ced565b5050505050565b60125481565b6060611da782611ac0565b600010611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de090614e15565b60405180910390fd5b6000611df483611ac0565b905060008167ffffffffffffffff811115611e1257611e11614279565b5b604051908082528060200260200182016040528015611e405781602001602082028036833780820191505090505b50905060005b82811015611e8a57611e588582611128565b828281518110611e6b57611e6a614e35565b5b6020026020010181815250508080611e8290614e64565b915050611e46565b508092505050919050565b6000600a8281548110611eab57611eaa614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611f16906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611f42906148b2565b8015611f8f5780601f10611f6457610100808354040283529160200191611f8f565b820191906000526020600020905b815481529060010190602001808311611f7257829003601f168201915b5050505050905090565b611fa1610bc0565b73ffffffffffffffffffffffffffffffffffffffff16611fbf611edd565b73ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90614ae6565b60405180910390fd5b81819050848490501461205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490615137565b60405180910390fd5b600080612068610f10565b905060005b868690508110156120b05786868281811061208b5761208a614e35565b5b905060200201358361209d9190614bc7565b9250806120a990614e64565b905061206d565b5060115482826120c09190614bc7565b1115612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f8906151a3565b60405180910390fd5b6000915060005b848490508110156121a75760005b87878381811061212957612128614e35565b5b905060200201358110156121955761218486868481811061214d5761214c614e35565b5b905060200201602081019061216291906143ed565b848061216d90614e64565b955060405180602001604052806000815250613499565b8061218e90614e64565b9050612116565b50806121a090614e64565b9050612108565b5060009050505050505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6002600e541415612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a9061520f565b60405180910390fd5b6002600e819055506000612255610f10565b9050601360019054906101000a900460ff166122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d9061527b565b60405180910390fd5b600082116122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e0906152e7565b60405180910390fd5b60125482111561232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590615353565b60405180910390fd5b601154828261233d9190614bc7565b111561237e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612375906151a3565b60405180910390fd5b348260105461238d9190615373565b146123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c490615419565b60405180910390fd5b60005b8281101561240e576123fd3382846123e89190614bc7565b60405180602001604052806000815250613499565b8061240790614e64565b90506123d0565b5060009050506001600e8190555050565b612427610bc0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90615485565b60405180910390fd5b80600460006124a2610bc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661254f610bc0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125949190613f09565b60405180910390a35050565b6125a8610bc0565b73ffffffffffffffffffffffffffffffffffffffff166125c6611edd565b73ffffffffffffffffffffffffffffffffffffffff161461261c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261390614ae6565b60405180910390fd5b60005b60158054905081101561268c5760006015828154811061264257612641614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905061267881610f1d565b50808061268490614e64565b91505061261f565b50565b612697610bc0565b73ffffffffffffffffffffffffffffffffffffffff166126b5611edd565b73ffffffffffffffffffffffffffffffffffffffff161461270b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270290614ae6565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b612739612733610bc0565b836130b6565b612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f90614da9565b60405180910390fd5b612784848484846134f4565b50505050565b601360019054906101000a900460ff1681565b60606127a882612e13565b6127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127de90615517565b60405180910390fd5b60006127f1613550565b90506000815111612811576040518060200160405280600081525061283c565b8061281b846135e2565b60405160200161282c929190615573565b6040516020818303038152906040525b915050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60115481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600754905090565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60146020528060005260406000206000915090505481565b61299a610bc0565b73ffffffffffffffffffffffffffffffffffffffff166129b8611edd565b73ffffffffffffffffffffffffffffffffffffffff1614612a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0590614ae6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7590615609565b60405180910390fd5b612a87816133d3565b50565b6000612a94610f10565b90506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008311612b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b14906152e7565b60405180910390fd5b601360009054906101000a900460ff16612b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6390615675565b60405180910390fd5b60008111612baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba6906156e1565b60405180910390fd5b80831115612bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be99061574d565b60405180910390fd5b6011548383612c019190614bc7565b1115612c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c39906151a3565b60405180910390fd5b3483601054612c519190615373565b14612c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8890615419565b60405180910390fd5b8281612c9d919061576d565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000905060005b83811015612d2757612d14338285612cff9190614bc7565b60405180602001604052806000815250613499565b8080612d1f90614e64565b915050612ce7565b5060009150505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dfc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e0c5750612e0b82613743565b5b9050919050565b600060028054905082108015612e945750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612e5057612e4f614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f0e836118ef565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600654600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612fa59190615373565b612faf91906157d0565b612fb9919061576d565b90509392505050565b80471015613005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffc9061584d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161302b90614ede565b60006040518083038185875af1925050503d8060008114613068576040519150601f19603f3d011682016040523d82523d6000602084013e61306d565b606091505b50509050806130b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a8906158df565b60405180910390fd5b505050565b60006130c182612e13565b613100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f790615971565b60405180910390fd5b600061310b836118ef565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061317a57508373ffffffffffffffffffffffffffffffffffffffff1661316284610cd4565b73ffffffffffffffffffffffffffffffffffffffff16145b8061318b575061318a81856128e6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166131b4826118ef565b73ffffffffffffffffffffffffffffffffffffffff161461320a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320190615a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561327a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327190615a95565b60405180910390fd5b6132858383836137ad565b613290600082612e9b565b81600282815481106132a5576132a4614e35565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6133ce8363a9059cbb60e01b848460405160240161336c929190613e2c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506137b2565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134a38383613879565b6134b06000848484613a01565b6134ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e690615b27565b60405180910390fd5b505050565b6134ff848484613194565b61350b84848484613a01565b61354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354190615b27565b60405180910390fd5b50505050565b6060600f805461355f906148b2565b80601f016020809104026020016040519081016040528092919081815260200182805461358b906148b2565b80156135d85780601f106135ad576101008083540402835291602001916135d8565b820191906000526020600020905b8154815290600101906020018083116135bb57829003601f168201915b5050505050905090565b6060600082141561362a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061373e565b600082905060005b6000821461365c57808061364590614e64565b915050600a8261365591906157d0565b9150613632565b60008167ffffffffffffffff81111561367857613677614279565b5b6040519080825280601f01601f1916602001820160405280156136aa5781602001600182028036833780820191505090505b5090505b60008514613737576001826136c3919061576d565b9150600a856136d29190615b47565b60306136de9190614bc7565b60f81b8183815181106136f4576136f3614e35565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561373091906157d0565b94506136ae565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6000613814826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16613b899092919063ffffffff16565b905060008151111561387457808060200190518101906138349190615b8d565b613873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386a90615c2c565b60405180910390fd5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e090615c98565b60405180910390fd5b6138f281612e13565b15613932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392990615d04565b60405180910390fd5b61393e600083836137ad565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000613a228473ffffffffffffffffffffffffffffffffffffffff16613ba1565b15613b7c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a4b610bc0565b8786866040518563ffffffff1660e01b8152600401613a6d9493929190615d79565b6020604051808303816000875af1925050508015613aa957506040513d601f19601f82011682018060405250810190613aa69190615dda565b60015b613b2c573d8060008114613ad9576040519150601f19603f3d011682016040523d82523d6000602084013e613ade565b606091505b50600081511415613b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1b90615b27565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613b81565b600190505b949350505050565b6060613b988484600085613bb4565b90509392505050565b600080823b905060008111915050919050565b606082471015613bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf090615e79565b60405180910390fd5b613c0285613ba1565b613c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3890615ee5565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613c6a9190615f36565b60006040518083038185875af1925050503d8060008114613ca7576040519150601f19603f3d011682016040523d82523d6000602084013e613cac565b606091505b5091509150613cbc828286613cc8565b92505050949350505050565b60608315613cd857829050613d28565b600083511115613ceb5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d1f9190613fbd565b60405180910390fd5b9392505050565b828054613d3b906148b2565b90600052602060002090601f016020900481019282613d5d5760008555613da4565b82601f10613d7657805160ff1916838001178555613da4565b82800160010185558215613da4579182015b82811115613da3578251825591602001919060010190613d88565b5b509050613db19190613db5565b5090565b5b80821115613dce576000816000905550600101613db6565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dfd82613dd2565b9050919050565b613e0d81613df2565b82525050565b6000819050919050565b613e2681613e13565b82525050565b6000604082019050613e416000830185613e04565b613e4e6020830184613e1d565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e9e81613e69565b8114613ea957600080fd5b50565b600081359050613ebb81613e95565b92915050565b600060208284031215613ed757613ed6613e5f565b5b6000613ee584828501613eac565b91505092915050565b60008115159050919050565b613f0381613eee565b82525050565b6000602082019050613f1e6000830184613efa565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f5e578082015181840152602081019050613f43565b83811115613f6d576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f8f82613f24565b613f998185613f2f565b9350613fa9818560208601613f40565b613fb281613f73565b840191505092915050565b60006020820190508181036000830152613fd78184613f84565b905092915050565b613fe881613e13565b8114613ff357600080fd5b50565b60008135905061400581613fdf565b92915050565b60006020828403121561402157614020613e5f565b5b600061402f84828501613ff6565b91505092915050565b600060208201905061404d6000830184613e04565b92915050565b61405c81613df2565b811461406757600080fd5b50565b60008135905061407981614053565b92915050565b6000806040838503121561409657614095613e5f565b5b60006140a48582860161406a565b92505060206140b585828601613ff6565b9150509250929050565b6140c881613eee565b81146140d357600080fd5b50565b6000813590506140e5816140bf565b92915050565b60006020828403121561410157614100613e5f565b5b600061410f848285016140d6565b91505092915050565b600060208201905061412d6000830184613e1d565b92915050565b600061413e82613dd2565b9050919050565b61414e81614133565b811461415957600080fd5b50565b60008135905061416b81614145565b92915050565b60006020828403121561418757614186613e5f565b5b60006141958482850161415c565b91505092915050565b6000806000606084860312156141b7576141b6613e5f565b5b60006141c58682870161406a565b93505060206141d68682870161406a565b92505060406141e786828701613ff6565b9150509250925092565b60006141fc82613df2565b9050919050565b61420c816141f1565b811461421757600080fd5b50565b60008135905061422981614203565b92915050565b6000806040838503121561424657614245613e5f565b5b60006142548582860161421a565b92505060206142658582860161406a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142b182613f73565b810181811067ffffffffffffffff821117156142d0576142cf614279565b5b80604052505050565b60006142e3613e55565b90506142ef82826142a8565b919050565b600067ffffffffffffffff82111561430f5761430e614279565b5b61431882613f73565b9050602081019050919050565b82818337600083830152505050565b6000614347614342846142f4565b6142d9565b90508281526020810184848401111561436357614362614274565b5b61436e848285614325565b509392505050565b600082601f83011261438b5761438a61426f565b5b813561439b848260208601614334565b91505092915050565b6000602082840312156143ba576143b9613e5f565b5b600082013567ffffffffffffffff8111156143d8576143d7613e64565b5b6143e484828501614376565b91505092915050565b60006020828403121561440357614402613e5f565b5b60006144118482850161406a565b91505092915050565b600080fd5b600080fd5b60008083601f84011261443a5761443961426f565b5b8235905067ffffffffffffffff8111156144575761445661441a565b5b6020830191508360208202830111156144735761447261441f565b5b9250929050565b60008083601f8401126144905761448f61426f565b5b8235905067ffffffffffffffff8111156144ad576144ac61441a565b5b6020830191508360208202830111156144c9576144c861441f565b5b9250929050565b600080600080604085870312156144ea576144e9613e5f565b5b600085013567ffffffffffffffff81111561450857614507613e64565b5b61451487828801614424565b9450945050602085013567ffffffffffffffff81111561453757614536613e64565b5b6145438782880161447a565b925092505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61458681613e13565b82525050565b6000614598838361457d565b60208301905092915050565b6000602082019050919050565b60006145bc82614551565b6145c6818561455c565b93506145d18361456d565b8060005b838110156146025781516145e9888261458c565b97506145f4836145a4565b9250506001810190506145d5565b5085935050505092915050565b6000602082019050818103600083015261462981846145b1565b905092915050565b6000806000806040858703121561464b5761464a613e5f565b5b600085013567ffffffffffffffff81111561466957614668613e64565b5b6146758782880161447a565b9450945050602085013567ffffffffffffffff81111561469857614697613e64565b5b6146a487828801614424565b925092505092959194509250565b600080604083850312156146c9576146c8613e5f565b5b60006146d78582860161406a565b92505060206146e8858286016140d6565b9150509250929050565b600067ffffffffffffffff82111561470d5761470c614279565b5b61471682613f73565b9050602081019050919050565b6000614736614731846146f2565b6142d9565b90508281526020810184848401111561475257614751614274565b5b61475d848285614325565b509392505050565b600082601f83011261477a5761477961426f565b5b813561478a848260208601614723565b91505092915050565b600080600080608085870312156147ad576147ac613e5f565b5b60006147bb8782880161406a565b94505060206147cc8782880161406a565b93505060406147dd87828801613ff6565b925050606085013567ffffffffffffffff8111156147fe576147fd613e64565b5b61480a87828801614765565b91505092959194509250565b60006020828403121561482c5761482b613e5f565b5b600061483a8482850161421a565b91505092915050565b6000806040838503121561485a57614859613e5f565b5b60006148688582860161406a565b92505060206148798582860161406a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148ca57607f821691505b602082108114156148de576148dd614883565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614940602c83613f2f565b915061494b826148e4565b604082019050919050565b6000602082019050818103600083015261496f81614933565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006149d2602183613f2f565b91506149dd82614976565b604082019050919050565b60006020820190508181036000830152614a01816149c5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614a64603883613f2f565b9150614a6f82614a08565b604082019050919050565b60006020820190508181036000830152614a9381614a57565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ad0602083613f2f565b9150614adb82614a9a565b602082019050919050565b60006020820190508181036000830152614aff81614ac3565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b6000614b62602683613f2f565b9150614b6d82614b06565b604082019050919050565b60006020820190508181036000830152614b9181614b55565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614bd282613e13565b9150614bdd83613e13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c1257614c11614b98565b5b828201905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000614c79602b83613f2f565b9150614c8482614c1d565b604082019050919050565b60006020820190508181036000830152614ca881614c6c565b9050919050565b6000819050919050565b6000614cd4614ccf614cca84613dd2565b614caf565b613dd2565b9050919050565b6000614ce682614cb9565b9050919050565b6000614cf882614cdb565b9050919050565b614d0881614ced565b82525050565b6000604082019050614d236000830185614cff565b614d306020830184613e1d565b9392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614d93603183613f2f565b9150614d9e82614d37565b604082019050919050565b60006020820190508181036000830152614dc281614d86565b9050919050565b7f455243373231456e756d3a206f776e657220696f6f6200000000000000000000600082015250565b6000614dff601683613f2f565b9150614e0a82614dc9565b602082019050919050565b60006020820190508181036000830152614e2e81614df2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614e6f82613e13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ea257614ea1614b98565b5b600182019050919050565b600081905092915050565b50565b6000614ec8600083614ead565b9150614ed382614eb8565b600082019050919050565b6000614ee982614ebb565b9150819050919050565b600081519050614f0281613fdf565b92915050565b600060208284031215614f1e57614f1d613e5f565b5b6000614f2c84828501614ef3565b91505092915050565b7f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000600082015250565b6000614f6b601783613f2f565b9150614f7682614f35565b602082019050919050565b60006020820190508181036000830152614f9a81614f5e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614ffd602983613f2f565b915061500882614fa1565b604082019050919050565b6000602082019050818103600083015261502c81614ff0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061508f602a83613f2f565b915061509a82615033565b604082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615121602183613f2f565b915061512c826150c5565b604082019050919050565b6000602082019050818103600083015261515081615114565b9050919050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b600061518d601383613f2f565b915061519882615157565b602082019050919050565b600060208201905081810360008301526151bc81615180565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006151f9601f83613f2f565b9150615204826151c3565b602082019050919050565b60006020820190508181036000830152615228816151ec565b9050919050565b7f4d61696e2053616c65204e6f7420456e61626c65640000000000000000000000600082015250565b6000615265601583613f2f565b91506152708261522f565b602082019050919050565b6000602082019050818103600083015261529481615258565b9050919050565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b60006152d1600b83613f2f565b91506152dc8261529b565b602082019050919050565b60006020820190508181036000830152615300816152c4565b9050919050565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b600061533d601b83613f2f565b915061534882615307565b602082019050919050565b6000602082019050818103600083015261536c81615330565b9050919050565b600061537e82613e13565b915061538983613e13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153c2576153c1614b98565b5b828202905092915050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b6000615403600c83613f2f565b915061540e826153cd565b602082019050919050565b60006020820190508181036000830152615432816153f6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061546f601983613f2f565b915061547a82615439565b602082019050919050565b6000602082019050818103600083015261549e81615462565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000615501602183613f2f565b915061550c826154a5565b604082019050919050565b60006020820190508181036000830152615530816154f4565b9050919050565b600081905092915050565b600061554d82613f24565b6155578185615537565b9350615567818560208601613f40565b80840191505092915050565b600061557f8285615542565b915061558b8284615542565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155f3602683613f2f565b91506155fe82615597565b604082019050919050565b60006020820190508181036000830152615622816155e6565b9050919050565b7f50726573616c65204e6f7420456e61626c656400000000000000000000000000600082015250565b600061565f601383613f2f565b915061566a82615629565b602082019050919050565b6000602082019050818103600083015261568e81615652565b9050919050565b7f4e6f2070726573616c65206c6566740000000000000000000000000000000000600082015250565b60006156cb600f83613f2f565b91506156d682615695565b602082019050919050565b600060208201905081810360008301526156fa816156be565b9050919050565b7f43616e74206d696e74206d6f7265207468616e20726573657276656400000000600082015250565b6000615737601c83613f2f565b915061574282615701565b602082019050919050565b600060208201905081810360008301526157668161572a565b9050919050565b600061577882613e13565b915061578383613e13565b92508282101561579657615795614b98565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006157db82613e13565b91506157e683613e13565b9250826157f6576157f56157a1565b5b828204905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000615837601d83613f2f565b915061584282615801565b602082019050919050565b600060208201905081810360008301526158668161582a565b9050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006158c9603a83613f2f565b91506158d48261586d565b604082019050919050565b600060208201905081810360008301526158f8816158bc565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061595b602c83613f2f565b9150615966826158ff565b604082019050919050565b6000602082019050818103600083015261598a8161594e565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006159ed602983613f2f565b91506159f882615991565b604082019050919050565b60006020820190508181036000830152615a1c816159e0565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615a7f602483613f2f565b9150615a8a82615a23565b604082019050919050565b60006020820190508181036000830152615aae81615a72565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615b11603283613f2f565b9150615b1c82615ab5565b604082019050919050565b60006020820190508181036000830152615b4081615b04565b9050919050565b6000615b5282613e13565b9150615b5d83613e13565b925082615b6d57615b6c6157a1565b5b828206905092915050565b600081519050615b87816140bf565b92915050565b600060208284031215615ba357615ba2613e5f565b5b6000615bb184828501615b78565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000615c16602a83613f2f565b9150615c2182615bba565b604082019050919050565b60006020820190508181036000830152615c4581615c09565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615c82602083613f2f565b9150615c8d82615c4c565b602082019050919050565b60006020820190508181036000830152615cb181615c75565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615cee601c83613f2f565b9150615cf982615cb8565b602082019050919050565b60006020820190508181036000830152615d1d81615ce1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615d4b82615d24565b615d558185615d2f565b9350615d65818560208601613f40565b615d6e81613f73565b840191505092915050565b6000608082019050615d8e6000830187613e04565b615d9b6020830186613e04565b615da86040830185613e1d565b8181036060830152615dba8184615d40565b905095945050505050565b600081519050615dd481613e95565b92915050565b600060208284031215615df057615def613e5f565b5b6000615dfe84828501615dc5565b91505092915050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000615e63602683613f2f565b9150615e6e82615e07565b604082019050919050565b60006020820190508181036000830152615e9281615e56565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000615ecf601d83613f2f565b9150615eda82615e99565b602082019050919050565b60006020820190508181036000830152615efe81615ec2565b9050919050565b6000615f1082615d24565b615f1a8185614ead565b9350615f2a818560208601613f40565b80840191505092915050565b6000615f428284615f05565b91508190509291505056fea2646970667358221220bfdc875cf2d99117d1e4f8527284e62d6f7461fe9d59ef23149a5efafe69081464736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106102b25760003560e01c806370a0823111610175578063a50e89ff116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610b01578063eb8835ab14610b3e578063f2fde38b14610b7b578063f759867a14610ba4576102f9565b8063d5abeb0114610a6e578063d79779b214610a99578063e33b7de314610ad6576102f9565b8063a50e89ff14610960578063b423fe6714610977578063b88d4fde146109a0578063bc8893b4146109c9578063c87b56dd146109f4578063ce7c2ac214610a31576102f9565b80638da5cb5b1161012e5780638da5cb5b1461085f57806395d89b411461088a57806396ea3a47146108b55780639852595c146108de578063a0712d681461091b578063a22cb46514610937576102f9565b806370a082311461073d578063715018a61461077a578063732e71ef146107915780637501f741146107ba5780638462151c146107e55780638b83209b14610822576102f9565b8063406072a911610219578063547520fe116101d2578063547520fe1461062f57806355f804b3146106585780635c975abb146106815780636352211e146106ac5780636c0360eb146106e95780636f8b44b014610714576102f9565b8063406072a91461050f57806342842e0e1461054c57806344a0d68a1461057557806348b750441461059e5780634f6ccce7146105c757806353135ca014610604576102f9565b806318160ddd1161026b57806318160ddd14610420578063191655871461044b57806323b872dd146104745780632f745c591461049d5780633a98ef39146104da5780633ccfd60b14610505576102f9565b806301ffc9a7146102fe57806306fdde031461033b578063081812fc14610366578063095ea7b3146103a357806309999795146103cc57806313faede6146103f5576102f9565b366102f9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102e0610bc0565b346040516102ef929190613e2c565b60405180910390a1005b600080fd5b34801561030a57600080fd5b5061032560048036038101906103209190613ec1565b610bc8565b6040516103329190613f09565b60405180910390f35b34801561034757600080fd5b50610350610c42565b60405161035d9190613fbd565b60405180910390f35b34801561037257600080fd5b5061038d6004803603810190610388919061400b565b610cd4565b60405161039a9190614038565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c5919061407f565b610d59565b005b3480156103d857600080fd5b506103f360048036038101906103ee91906140eb565b610e71565b005b34801561040157600080fd5b5061040a610f0a565b6040516104179190614118565b60405180910390f35b34801561042c57600080fd5b50610435610f10565b6040516104429190614118565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d9190614171565b610f1d565b005b34801561048057600080fd5b5061049b6004803603810190610496919061419e565b6110c8565b005b3480156104a957600080fd5b506104c460048036038101906104bf919061407f565b611128565b6040516104d19190614118565b60405180910390f35b3480156104e657600080fd5b506104ef611271565b6040516104fc9190614118565b60405180910390f35b61050d61127b565b005b34801561051b57600080fd5b506105366004803603810190610531919061422f565b611370565b6040516105439190614118565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e919061419e565b6113f7565b005b34801561058157600080fd5b5061059c6004803603810190610597919061400b565b611417565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061422f565b61149d565b005b3480156105d357600080fd5b506105ee60048036038101906105e9919061400b565b611756565b6040516105fb9190614118565b60405180910390f35b34801561061057600080fd5b506106196117a9565b6040516106269190613f09565b60405180910390f35b34801561063b57600080fd5b506106566004803603810190610651919061400b565b6117bc565b005b34801561066457600080fd5b5061067f600480360381019061067a91906143a4565b611842565b005b34801561068d57600080fd5b506106966118d8565b6040516106a39190613f09565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce919061400b565b6118ef565b6040516106e09190614038565b60405180910390f35b3480156106f557600080fd5b506106fe6119ac565b60405161070b9190613fbd565b60405180910390f35b34801561072057600080fd5b5061073b6004803603810190610736919061400b565b611a3a565b005b34801561074957600080fd5b50610764600480360381019061075f91906143ed565b611ac0565b6040516107719190614118565b60405180910390f35b34801561078657600080fd5b5061078f611be6565b005b34801561079d57600080fd5b506107b860048036038101906107b391906144d0565b611c6e565b005b3480156107c657600080fd5b506107cf611d96565b6040516107dc9190614118565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906143ed565b611d9c565b604051610819919061460f565b60405180910390f35b34801561082e57600080fd5b506108496004803603810190610844919061400b565b611e95565b6040516108569190614038565b60405180910390f35b34801561086b57600080fd5b50610874611edd565b6040516108819190614038565b60405180910390f35b34801561089657600080fd5b5061089f611f07565b6040516108ac9190613fbd565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d79190614631565b611f99565b005b3480156108ea57600080fd5b50610905600480360381019061090091906143ed565b6121b4565b6040516109129190614118565b60405180910390f35b6109356004803603810190610930919061400b565b6121fd565b005b34801561094357600080fd5b5061095e600480360381019061095991906146b2565b61241f565b005b34801561096c57600080fd5b506109756125a0565b005b34801561098357600080fd5b5061099e600480360381019061099991906140eb565b61268f565b005b3480156109ac57600080fd5b506109c760048036038101906109c29190614793565b612728565b005b3480156109d557600080fd5b506109de61278a565b6040516109eb9190613f09565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a16919061400b565b61279d565b604051610a289190613fbd565b60405180910390f35b348015610a3d57600080fd5b50610a586004803603810190610a5391906143ed565b612844565b604051610a659190614118565b60405180910390f35b348015610a7a57600080fd5b50610a8361288d565b604051610a909190614118565b60405180910390f35b348015610aa557600080fd5b50610ac06004803603810190610abb9190614816565b612893565b604051610acd9190614118565b60405180910390f35b348015610ae257600080fd5b50610aeb6128dc565b604051610af89190614118565b60405180910390f35b348015610b0d57600080fd5b50610b286004803603810190610b239190614843565b6128e6565b604051610b359190613f09565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906143ed565b61297a565b604051610b729190614118565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d91906143ed565b612992565b005b610bbe6004803603810190610bb9919061400b565b612a8a565b005b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c3b5750610c3a82612d31565b5b9050919050565b606060008054610c51906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7d906148b2565b8015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b5050505050905090565b6000610cdf82612e13565b610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590614956565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d64826118ef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906149e8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df4610bc0565b73ffffffffffffffffffffffffffffffffffffffff161480610e235750610e2281610e1d610bc0565b6128e6565b5b610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5990614a7a565b60405180910390fd5b610e6c8383612e9b565b505050565b610e79610bc0565b73ffffffffffffffffffffffffffffffffffffffff16610e97611edd565b73ffffffffffffffffffffffffffffffffffffffff1614610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490614ae6565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b60105481565b6000600280549050905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690614b78565b60405180910390fd5b6000610fa96128dc565b47610fb49190614bc7565b90506000610fcb8383610fc6866121b4565b612f54565b90506000811415611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890614c8f565b60405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110609190614bc7565b9250508190555080600760008282546110799190614bc7565b9250508190555061108a8382612fc2565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516110bb929190614d0e565b60405180910390a1505050565b6110d96110d3610bc0565b826130b6565b611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90614da9565b60405180910390fd5b611123838383613194565b505050565b600061113383611ac0565b8210611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90614e15565b60405180910390fd5b6000805b600280549050811015611227576002818154811061119957611198614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611216578382141561120957809250505061126b565b8161121390614e64565b91505b8061122090614e64565b9050611178565b506000611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090614e15565b60405180910390fd5b505b92915050565b6000600654905090565b611283610bc0565b73ffffffffffffffffffffffffffffffffffffffff166112a1611edd565b73ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614ae6565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161131d90614ede565b60006040518083038185875af1925050503d806000811461135a576040519150601f19603f3d011682016040523d82523d6000602084013e61135f565b606091505b505090508061136d57600080fd5b50565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61141283838360405180602001604052806000815250612728565b505050565b61141f610bc0565b73ffffffffffffffffffffffffffffffffffffffff1661143d611edd565b73ffffffffffffffffffffffffffffffffffffffff1614611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90614ae6565b60405180910390fd5b8060108190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690614b78565b60405180910390fd5b600061152a83612893565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115639190614038565b602060405180830381865afa158015611580573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a49190614f08565b6115ae9190614bc7565b905060006115c683836115c18787611370565b612f54565b9050600081141561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390614c8f565b60405180910390fd5b80600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116989190614bc7565b9250508190555080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ee9190614bc7565b9250508190555061170084848361334d565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051611748929190613e2c565b60405180910390a250505050565b6000611760610f10565b82106117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890614f81565b60405180910390fd5b819050919050565b601360009054906101000a900460ff1681565b6117c4610bc0565b73ffffffffffffffffffffffffffffffffffffffff166117e2611edd565b73ffffffffffffffffffffffffffffffffffffffff1614611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90614ae6565b60405180910390fd5b8060128190555050565b61184a610bc0565b73ffffffffffffffffffffffffffffffffffffffff16611868611edd565b73ffffffffffffffffffffffffffffffffffffffff16146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590614ae6565b60405180910390fd5b80600f90805190602001906118d4929190613d2f565b5050565b6000600d60009054906101000a900460ff16905090565b6000806002838154811061190657611905614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90615013565b60405180910390fd5b80915050919050565b600f80546119b9906148b2565b80601f01602080910402602001604051908101604052809291908181526020018280546119e5906148b2565b8015611a325780601f10611a0757610100808354040283529160200191611a32565b820191906000526020600020905b815481529060010190602001808311611a1557829003601f168201915b505050505081565b611a42610bc0565b73ffffffffffffffffffffffffffffffffffffffff16611a60611edd565b73ffffffffffffffffffffffffffffffffffffffff1614611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90614ae6565b60405180910390fd5b8060118190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b28906150a5565b60405180910390fd5b600080600280549050905060005b81811015611bd75760028181548110611b5b57611b5a614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611bc65782611bc390614e64565b92505b80611bd090614e64565b9050611b3f565b50600090508192505050919050565b611bee610bc0565b73ffffffffffffffffffffffffffffffffffffffff16611c0c611edd565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5990614ae6565b60405180910390fd5b611c6c60006133d3565b565b611c76610bc0565b73ffffffffffffffffffffffffffffffffffffffff16611c94611edd565b73ffffffffffffffffffffffffffffffffffffffff1614611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190614ae6565b60405180910390fd5b60005b84849050811015611d8f57828282818110611d0b57611d0a614e35565b5b9050602002013560146000878785818110611d2957611d28614e35565b5b9050602002016020810190611d3e91906143ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611d8790614e64565b915050611ced565b5050505050565b60125481565b6060611da782611ac0565b600010611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de090614e15565b60405180910390fd5b6000611df483611ac0565b905060008167ffffffffffffffff811115611e1257611e11614279565b5b604051908082528060200260200182016040528015611e405781602001602082028036833780820191505090505b50905060005b82811015611e8a57611e588582611128565b828281518110611e6b57611e6a614e35565b5b6020026020010181815250508080611e8290614e64565b915050611e46565b508092505050919050565b6000600a8281548110611eab57611eaa614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611f16906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611f42906148b2565b8015611f8f5780601f10611f6457610100808354040283529160200191611f8f565b820191906000526020600020905b815481529060010190602001808311611f7257829003601f168201915b5050505050905090565b611fa1610bc0565b73ffffffffffffffffffffffffffffffffffffffff16611fbf611edd565b73ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90614ae6565b60405180910390fd5b81819050848490501461205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490615137565b60405180910390fd5b600080612068610f10565b905060005b868690508110156120b05786868281811061208b5761208a614e35565b5b905060200201358361209d9190614bc7565b9250806120a990614e64565b905061206d565b5060115482826120c09190614bc7565b1115612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f8906151a3565b60405180910390fd5b6000915060005b848490508110156121a75760005b87878381811061212957612128614e35565b5b905060200201358110156121955761218486868481811061214d5761214c614e35565b5b905060200201602081019061216291906143ed565b848061216d90614e64565b955060405180602001604052806000815250613499565b8061218e90614e64565b9050612116565b50806121a090614e64565b9050612108565b5060009050505050505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6002600e541415612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a9061520f565b60405180910390fd5b6002600e819055506000612255610f10565b9050601360019054906101000a900460ff166122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d9061527b565b60405180910390fd5b600082116122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e0906152e7565b60405180910390fd5b60125482111561232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590615353565b60405180910390fd5b601154828261233d9190614bc7565b111561237e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612375906151a3565b60405180910390fd5b348260105461238d9190615373565b146123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c490615419565b60405180910390fd5b60005b8281101561240e576123fd3382846123e89190614bc7565b60405180602001604052806000815250613499565b8061240790614e64565b90506123d0565b5060009050506001600e8190555050565b612427610bc0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90615485565b60405180910390fd5b80600460006124a2610bc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661254f610bc0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125949190613f09565b60405180910390a35050565b6125a8610bc0565b73ffffffffffffffffffffffffffffffffffffffff166125c6611edd565b73ffffffffffffffffffffffffffffffffffffffff161461261c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261390614ae6565b60405180910390fd5b60005b60158054905081101561268c5760006015828154811061264257612641614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905061267881610f1d565b50808061268490614e64565b91505061261f565b50565b612697610bc0565b73ffffffffffffffffffffffffffffffffffffffff166126b5611edd565b73ffffffffffffffffffffffffffffffffffffffff161461270b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270290614ae6565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b612739612733610bc0565b836130b6565b612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f90614da9565b60405180910390fd5b612784848484846134f4565b50505050565b601360019054906101000a900460ff1681565b60606127a882612e13565b6127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127de90615517565b60405180910390fd5b60006127f1613550565b90506000815111612811576040518060200160405280600081525061283c565b8061281b846135e2565b60405160200161282c929190615573565b6040516020818303038152906040525b915050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60115481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600754905090565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60146020528060005260406000206000915090505481565b61299a610bc0565b73ffffffffffffffffffffffffffffffffffffffff166129b8611edd565b73ffffffffffffffffffffffffffffffffffffffff1614612a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0590614ae6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7590615609565b60405180910390fd5b612a87816133d3565b50565b6000612a94610f10565b90506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008311612b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b14906152e7565b60405180910390fd5b601360009054906101000a900460ff16612b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6390615675565b60405180910390fd5b60008111612baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba6906156e1565b60405180910390fd5b80831115612bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be99061574d565b60405180910390fd5b6011548383612c019190614bc7565b1115612c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c39906151a3565b60405180910390fd5b3483601054612c519190615373565b14612c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8890615419565b60405180910390fd5b8281612c9d919061576d565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000905060005b83811015612d2757612d14338285612cff9190614bc7565b60405180602001604052806000815250613499565b8080612d1f90614e64565b915050612ce7565b5060009150505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dfc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e0c5750612e0b82613743565b5b9050919050565b600060028054905082108015612e945750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612e5057612e4f614e35565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f0e836118ef565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600654600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612fa59190615373565b612faf91906157d0565b612fb9919061576d565b90509392505050565b80471015613005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffc9061584d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161302b90614ede565b60006040518083038185875af1925050503d8060008114613068576040519150601f19603f3d011682016040523d82523d6000602084013e61306d565b606091505b50509050806130b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a8906158df565b60405180910390fd5b505050565b60006130c182612e13565b613100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f790615971565b60405180910390fd5b600061310b836118ef565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061317a57508373ffffffffffffffffffffffffffffffffffffffff1661316284610cd4565b73ffffffffffffffffffffffffffffffffffffffff16145b8061318b575061318a81856128e6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166131b4826118ef565b73ffffffffffffffffffffffffffffffffffffffff161461320a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320190615a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561327a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327190615a95565b60405180910390fd5b6132858383836137ad565b613290600082612e9b565b81600282815481106132a5576132a4614e35565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6133ce8363a9059cbb60e01b848460405160240161336c929190613e2c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506137b2565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134a38383613879565b6134b06000848484613a01565b6134ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e690615b27565b60405180910390fd5b505050565b6134ff848484613194565b61350b84848484613a01565b61354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354190615b27565b60405180910390fd5b50505050565b6060600f805461355f906148b2565b80601f016020809104026020016040519081016040528092919081815260200182805461358b906148b2565b80156135d85780601f106135ad576101008083540402835291602001916135d8565b820191906000526020600020905b8154815290600101906020018083116135bb57829003601f168201915b5050505050905090565b6060600082141561362a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061373e565b600082905060005b6000821461365c57808061364590614e64565b915050600a8261365591906157d0565b9150613632565b60008167ffffffffffffffff81111561367857613677614279565b5b6040519080825280601f01601f1916602001820160405280156136aa5781602001600182028036833780820191505090505b5090505b60008514613737576001826136c3919061576d565b9150600a856136d29190615b47565b60306136de9190614bc7565b60f81b8183815181106136f4576136f3614e35565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561373091906157d0565b94506136ae565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6000613814826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16613b899092919063ffffffff16565b905060008151111561387457808060200190518101906138349190615b8d565b613873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386a90615c2c565b60405180910390fd5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e090615c98565b60405180910390fd5b6138f281612e13565b15613932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392990615d04565b60405180910390fd5b61393e600083836137ad565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000613a228473ffffffffffffffffffffffffffffffffffffffff16613ba1565b15613b7c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a4b610bc0565b8786866040518563ffffffff1660e01b8152600401613a6d9493929190615d79565b6020604051808303816000875af1925050508015613aa957506040513d601f19601f82011682018060405250810190613aa69190615dda565b60015b613b2c573d8060008114613ad9576040519150601f19603f3d011682016040523d82523d6000602084013e613ade565b606091505b50600081511415613b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1b90615b27565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613b81565b600190505b949350505050565b6060613b988484600085613bb4565b90509392505050565b600080823b905060008111915050919050565b606082471015613bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf090615e79565b60405180910390fd5b613c0285613ba1565b613c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3890615ee5565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613c6a9190615f36565b60006040518083038185875af1925050503d8060008114613ca7576040519150601f19603f3d011682016040523d82523d6000602084013e613cac565b606091505b5091509150613cbc828286613cc8565b92505050949350505050565b60608315613cd857829050613d28565b600083511115613ceb5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d1f9190613fbd565b60405180910390fd5b9392505050565b828054613d3b906148b2565b90600052602060002090601f016020900481019282613d5d5760008555613da4565b82601f10613d7657805160ff1916838001178555613da4565b82800160010185558215613da4579182015b82811115613da3578251825591602001919060010190613d88565b5b509050613db19190613db5565b5090565b5b80821115613dce576000816000905550600101613db6565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dfd82613dd2565b9050919050565b613e0d81613df2565b82525050565b6000819050919050565b613e2681613e13565b82525050565b6000604082019050613e416000830185613e04565b613e4e6020830184613e1d565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e9e81613e69565b8114613ea957600080fd5b50565b600081359050613ebb81613e95565b92915050565b600060208284031215613ed757613ed6613e5f565b5b6000613ee584828501613eac565b91505092915050565b60008115159050919050565b613f0381613eee565b82525050565b6000602082019050613f1e6000830184613efa565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f5e578082015181840152602081019050613f43565b83811115613f6d576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f8f82613f24565b613f998185613f2f565b9350613fa9818560208601613f40565b613fb281613f73565b840191505092915050565b60006020820190508181036000830152613fd78184613f84565b905092915050565b613fe881613e13565b8114613ff357600080fd5b50565b60008135905061400581613fdf565b92915050565b60006020828403121561402157614020613e5f565b5b600061402f84828501613ff6565b91505092915050565b600060208201905061404d6000830184613e04565b92915050565b61405c81613df2565b811461406757600080fd5b50565b60008135905061407981614053565b92915050565b6000806040838503121561409657614095613e5f565b5b60006140a48582860161406a565b92505060206140b585828601613ff6565b9150509250929050565b6140c881613eee565b81146140d357600080fd5b50565b6000813590506140e5816140bf565b92915050565b60006020828403121561410157614100613e5f565b5b600061410f848285016140d6565b91505092915050565b600060208201905061412d6000830184613e1d565b92915050565b600061413e82613dd2565b9050919050565b61414e81614133565b811461415957600080fd5b50565b60008135905061416b81614145565b92915050565b60006020828403121561418757614186613e5f565b5b60006141958482850161415c565b91505092915050565b6000806000606084860312156141b7576141b6613e5f565b5b60006141c58682870161406a565b93505060206141d68682870161406a565b92505060406141e786828701613ff6565b9150509250925092565b60006141fc82613df2565b9050919050565b61420c816141f1565b811461421757600080fd5b50565b60008135905061422981614203565b92915050565b6000806040838503121561424657614245613e5f565b5b60006142548582860161421a565b92505060206142658582860161406a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142b182613f73565b810181811067ffffffffffffffff821117156142d0576142cf614279565b5b80604052505050565b60006142e3613e55565b90506142ef82826142a8565b919050565b600067ffffffffffffffff82111561430f5761430e614279565b5b61431882613f73565b9050602081019050919050565b82818337600083830152505050565b6000614347614342846142f4565b6142d9565b90508281526020810184848401111561436357614362614274565b5b61436e848285614325565b509392505050565b600082601f83011261438b5761438a61426f565b5b813561439b848260208601614334565b91505092915050565b6000602082840312156143ba576143b9613e5f565b5b600082013567ffffffffffffffff8111156143d8576143d7613e64565b5b6143e484828501614376565b91505092915050565b60006020828403121561440357614402613e5f565b5b60006144118482850161406a565b91505092915050565b600080fd5b600080fd5b60008083601f84011261443a5761443961426f565b5b8235905067ffffffffffffffff8111156144575761445661441a565b5b6020830191508360208202830111156144735761447261441f565b5b9250929050565b60008083601f8401126144905761448f61426f565b5b8235905067ffffffffffffffff8111156144ad576144ac61441a565b5b6020830191508360208202830111156144c9576144c861441f565b5b9250929050565b600080600080604085870312156144ea576144e9613e5f565b5b600085013567ffffffffffffffff81111561450857614507613e64565b5b61451487828801614424565b9450945050602085013567ffffffffffffffff81111561453757614536613e64565b5b6145438782880161447a565b925092505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61458681613e13565b82525050565b6000614598838361457d565b60208301905092915050565b6000602082019050919050565b60006145bc82614551565b6145c6818561455c565b93506145d18361456d565b8060005b838110156146025781516145e9888261458c565b97506145f4836145a4565b9250506001810190506145d5565b5085935050505092915050565b6000602082019050818103600083015261462981846145b1565b905092915050565b6000806000806040858703121561464b5761464a613e5f565b5b600085013567ffffffffffffffff81111561466957614668613e64565b5b6146758782880161447a565b9450945050602085013567ffffffffffffffff81111561469857614697613e64565b5b6146a487828801614424565b925092505092959194509250565b600080604083850312156146c9576146c8613e5f565b5b60006146d78582860161406a565b92505060206146e8858286016140d6565b9150509250929050565b600067ffffffffffffffff82111561470d5761470c614279565b5b61471682613f73565b9050602081019050919050565b6000614736614731846146f2565b6142d9565b90508281526020810184848401111561475257614751614274565b5b61475d848285614325565b509392505050565b600082601f83011261477a5761477961426f565b5b813561478a848260208601614723565b91505092915050565b600080600080608085870312156147ad576147ac613e5f565b5b60006147bb8782880161406a565b94505060206147cc8782880161406a565b93505060406147dd87828801613ff6565b925050606085013567ffffffffffffffff8111156147fe576147fd613e64565b5b61480a87828801614765565b91505092959194509250565b60006020828403121561482c5761482b613e5f565b5b600061483a8482850161421a565b91505092915050565b6000806040838503121561485a57614859613e5f565b5b60006148688582860161406a565b92505060206148798582860161406a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148ca57607f821691505b602082108114156148de576148dd614883565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614940602c83613f2f565b915061494b826148e4565b604082019050919050565b6000602082019050818103600083015261496f81614933565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006149d2602183613f2f565b91506149dd82614976565b604082019050919050565b60006020820190508181036000830152614a01816149c5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614a64603883613f2f565b9150614a6f82614a08565b604082019050919050565b60006020820190508181036000830152614a9381614a57565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ad0602083613f2f565b9150614adb82614a9a565b602082019050919050565b60006020820190508181036000830152614aff81614ac3565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b6000614b62602683613f2f565b9150614b6d82614b06565b604082019050919050565b60006020820190508181036000830152614b9181614b55565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614bd282613e13565b9150614bdd83613e13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c1257614c11614b98565b5b828201905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000614c79602b83613f2f565b9150614c8482614c1d565b604082019050919050565b60006020820190508181036000830152614ca881614c6c565b9050919050565b6000819050919050565b6000614cd4614ccf614cca84613dd2565b614caf565b613dd2565b9050919050565b6000614ce682614cb9565b9050919050565b6000614cf882614cdb565b9050919050565b614d0881614ced565b82525050565b6000604082019050614d236000830185614cff565b614d306020830184613e1d565b9392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614d93603183613f2f565b9150614d9e82614d37565b604082019050919050565b60006020820190508181036000830152614dc281614d86565b9050919050565b7f455243373231456e756d3a206f776e657220696f6f6200000000000000000000600082015250565b6000614dff601683613f2f565b9150614e0a82614dc9565b602082019050919050565b60006020820190508181036000830152614e2e81614df2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614e6f82613e13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ea257614ea1614b98565b5b600182019050919050565b600081905092915050565b50565b6000614ec8600083614ead565b9150614ed382614eb8565b600082019050919050565b6000614ee982614ebb565b9150819050919050565b600081519050614f0281613fdf565b92915050565b600060208284031215614f1e57614f1d613e5f565b5b6000614f2c84828501614ef3565b91505092915050565b7f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000600082015250565b6000614f6b601783613f2f565b9150614f7682614f35565b602082019050919050565b60006020820190508181036000830152614f9a81614f5e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614ffd602983613f2f565b915061500882614fa1565b604082019050919050565b6000602082019050818103600083015261502c81614ff0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061508f602a83613f2f565b915061509a82615033565b604082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615121602183613f2f565b915061512c826150c5565b604082019050919050565b6000602082019050818103600083015261515081615114565b9050919050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b600061518d601383613f2f565b915061519882615157565b602082019050919050565b600060208201905081810360008301526151bc81615180565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006151f9601f83613f2f565b9150615204826151c3565b602082019050919050565b60006020820190508181036000830152615228816151ec565b9050919050565b7f4d61696e2053616c65204e6f7420456e61626c65640000000000000000000000600082015250565b6000615265601583613f2f565b91506152708261522f565b602082019050919050565b6000602082019050818103600083015261529481615258565b9050919050565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b60006152d1600b83613f2f565b91506152dc8261529b565b602082019050919050565b60006020820190508181036000830152615300816152c4565b9050919050565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b600061533d601b83613f2f565b915061534882615307565b602082019050919050565b6000602082019050818103600083015261536c81615330565b9050919050565b600061537e82613e13565b915061538983613e13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153c2576153c1614b98565b5b828202905092915050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b6000615403600c83613f2f565b915061540e826153cd565b602082019050919050565b60006020820190508181036000830152615432816153f6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061546f601983613f2f565b915061547a82615439565b602082019050919050565b6000602082019050818103600083015261549e81615462565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000615501602183613f2f565b915061550c826154a5565b604082019050919050565b60006020820190508181036000830152615530816154f4565b9050919050565b600081905092915050565b600061554d82613f24565b6155578185615537565b9350615567818560208601613f40565b80840191505092915050565b600061557f8285615542565b915061558b8284615542565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155f3602683613f2f565b91506155fe82615597565b604082019050919050565b60006020820190508181036000830152615622816155e6565b9050919050565b7f50726573616c65204e6f7420456e61626c656400000000000000000000000000600082015250565b600061565f601383613f2f565b915061566a82615629565b602082019050919050565b6000602082019050818103600083015261568e81615652565b9050919050565b7f4e6f2070726573616c65206c6566740000000000000000000000000000000000600082015250565b60006156cb600f83613f2f565b91506156d682615695565b602082019050919050565b600060208201905081810360008301526156fa816156be565b9050919050565b7f43616e74206d696e74206d6f7265207468616e20726573657276656400000000600082015250565b6000615737601c83613f2f565b915061574282615701565b602082019050919050565b600060208201905081810360008301526157668161572a565b9050919050565b600061577882613e13565b915061578383613e13565b92508282101561579657615795614b98565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006157db82613e13565b91506157e683613e13565b9250826157f6576157f56157a1565b5b828204905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000615837601d83613f2f565b915061584282615801565b602082019050919050565b600060208201905081810360008301526158668161582a565b9050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006158c9603a83613f2f565b91506158d48261586d565b604082019050919050565b600060208201905081810360008301526158f8816158bc565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061595b602c83613f2f565b9150615966826158ff565b604082019050919050565b6000602082019050818103600083015261598a8161594e565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006159ed602983613f2f565b91506159f882615991565b604082019050919050565b60006020820190508181036000830152615a1c816159e0565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615a7f602483613f2f565b9150615a8a82615a23565b604082019050919050565b60006020820190508181036000830152615aae81615a72565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615b11603283613f2f565b9150615b1c82615ab5565b604082019050919050565b60006020820190508181036000830152615b4081615b04565b9050919050565b6000615b5282613e13565b9150615b5d83613e13565b925082615b6d57615b6c6157a1565b5b828206905092915050565b600081519050615b87816140bf565b92915050565b600060208284031215615ba357615ba2613e5f565b5b6000615bb184828501615b78565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000615c16602a83613f2f565b9150615c2182615bba565b604082019050919050565b60006020820190508181036000830152615c4581615c09565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615c82602083613f2f565b9150615c8d82615c4c565b602082019050919050565b60006020820190508181036000830152615cb181615c75565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615cee601c83613f2f565b9150615cf982615cb8565b602082019050919050565b60006020820190508181036000830152615d1d81615ce1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615d4b82615d24565b615d558185615d2f565b9350615d65818560208601613f40565b615d6e81613f73565b840191505092915050565b6000608082019050615d8e6000830187613e04565b615d9b6020830186613e04565b615da86040830185613e1d565b8181036060830152615dba8184615d40565b905095945050505050565b600081519050615dd481613e95565b92915050565b600060208284031215615df057615def613e5f565b5b6000615dfe84828501615dc5565b91505092915050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000615e63602683613f2f565b9150615e6e82615e07565b604082019050919050565b60006020820190508181036000830152615e9281615e56565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000615ecf601d83613f2f565b9150615eda82615e99565b602082019050919050565b60006020820190508181036000830152615efe81615ec2565b9050919050565b6000615f1082615d24565b615f1a8185614ead565b9350615f2a818560208601613f40565b80840191505092915050565b6000615f428284615f05565b91508190509291505056fea2646970667358221220bfdc875cf2d99117d1e4f8527284e62d6f7461fe9d59ef23149a5efafe69081464736f6c634300080a0033
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.