Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0xebf949da200e6bb97e8a49b5620c99a0c57e6885dce2e120e49cf6946daecf34 | Presale Mint | 34204048 | 163 days 17 hrs ago | 0xc03c79ce39fbae587a97cdcaa581d482818f97ce | IN | 0xdb28bb9d2fa65070bbf393c1fe24416ae45cb521 | 0 MATIC | 0.004263897013 | |
0xbd1d01f2675807e8f38b464f610c12f81a29d48c4c454198fb2b7adf474d4ada | Toggle Presale | 34204040 | 163 days 17 hrs ago | 0xf2d96b56e60fa074714c04cb13ab15574152414e | IN | 0xdb28bb9d2fa65070bbf393c1fe24416ae45cb521 | 0 MATIC | 0.001476159302 | |
0xd5cc2d187dbcecac1018a236e2b4134c650692b283679a4c1db1756d0e3079ff | 0x60646011 | 34203880 | 163 days 17 hrs ago | 0xf2d96b56e60fa074714c04cb13ab15574152414e | IN | Create: NFT | 0 MATIC | 0.099894660196 |
[ Download CSV Export ]
Contract Source Code Verified (Exact Match)
Contract Name:
NFT
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-10-11 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // 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; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @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)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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"); } } } // File: @openzeppelin/contracts/finance/PaymentSplitter.sol // OpenZeppelin Contracts (last updated v4.7.0) (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; /** * @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. The distribution of shares is set at the * time of contract deployment and can't be updated thereafter. * * `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 Getter for the amount of payee's releasable Ether. */ function releasable(address account) public view returns (uint256) { uint256 totalReceived = address(this).balance + totalReleased(); return _pendingPayment(account, totalReceived, released(account)); } /** * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an * IERC20 contract. */ function releasable(IERC20 token, address account) public view returns (uint256) { uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); return _pendingPayment(account, totalReceived, released(token, account)); } /** * @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 payment = releasable(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 payment = releasable(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_); } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/test.sol pragma solidity ^0.8.9; contract NFT is ERC721, Ownable, ReentrancyGuard, PaymentSplitter { using Strings for uint256; using Counters for Counters.Counter; bytes32 public root; address proxyRegistryAddress; uint256 public maxSupply = 100; string public baseURI; string public notRevealedUri = "ipfs://"; string public baseExtension = ".json"; bool public paused = false; bool public revealed = false; bool public presaleM = false; bool public publicM = false; uint256 presaleAmountLimit = 3; mapping(address => uint256) public _presaleClaimed; uint256 _price = 0; // 0.01 ETH Counters.Counter private _tokenIds; uint256[] private _teamShares = [25, 35, 40]; // 3 PEOPLE IN THE TEAM address[] private _team = [ 0x933572D5F83B00A998102b7bf1a99c0f197E685B, // Admin Account gets 25% of the total revenue 0x82de9CE4a49fFeC4C41Cf733126F618eD83a879C, // Test Account gets 35% of the total revenue 0x8a7aC9834e2D4487Da22Dc130C97Ee8fBDc85568 // VIP Account gets 40% of the total revenue ]; constructor(string memory uri, bytes32 merkleroot, address _proxyRegistryAddress) ERC721("NFT", "NFT") PaymentSplitter(_team, _teamShares) // Split the payment based on the teamshares percentages ReentrancyGuard() // A modifier that can prevent reentrancy during certain functions { root = merkleroot; proxyRegistryAddress = _proxyRegistryAddress; setBaseURI(uri); } function setBaseURI(string memory _tokenBaseURI) public onlyOwner { baseURI = _tokenBaseURI; } function _baseURI() internal view override returns (string memory) { return baseURI; } function reveal() public onlyOwner { revealed = true; } function setMerkleRoot(bytes32 merkleroot) onlyOwner public { root = merkleroot; } modifier onlyAccounts () { require(msg.sender == tx.origin, "Not allowed origin"); _; } modifier isValidMerkleProof(bytes32[] calldata _proof) { require(MerkleProof.verify( _proof, root, keccak256(abi.encodePacked(msg.sender)) ) == true, "Not allowed origin"); _; } function togglePause() public onlyOwner { paused = !paused; } function togglePresale() public onlyOwner { presaleM = !presaleM; } function togglePublicSale() public onlyOwner { publicM = !publicM; } function presaleMint(address account, uint256 _amount, bytes32[] calldata _proof) external payable isValidMerkleProof(_proof) onlyAccounts { require(msg.sender == account, "CryptoPunks: Not allowed"); require(presaleM, "CryptoPunks: Presale is OFF"); require(!paused, "CryptoPunks: Contract is paused"); require( _amount <= presaleAmountLimit, "CryptoPunks: You can't mint so much tokens"); require( _presaleClaimed[msg.sender] + _amount <= presaleAmountLimit, "CryptoPunks: You can't mint so much tokens"); uint current = _tokenIds.current(); require( current + _amount <= maxSupply, "CryptoPunks: max supply exceeded" ); require( _price * _amount <= msg.value, "CryptoPunks: Not enough ethers sent" ); _presaleClaimed[msg.sender] += _amount; for (uint i = 0; i < _amount; i++) { mintInternal(); } } function publicSaleMint(uint256 _amount) external payable onlyAccounts { require(publicM, "CryptoPunks: PublicSale is OFF"); require(!paused, "CryptoPunks: Contract is paused"); require(_amount > 0, "CryptoPunks: zero amount"); uint current = _tokenIds.current(); require( current + _amount <= maxSupply, "CryptoPunks: Max supply exceeded" ); require( _price * _amount <= msg.value, "CryptoPunks: Not enough ethers sent" ); for (uint i = 0; i < _amount; i++) { mintInternal(); } } function mintInternal() internal nonReentrant { _tokenIds.increment(); uint256 tokenId = _tokenIds.current(); _safeMint(msg.sender, tokenId); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function totalSupply() public view returns (uint) { return _tokenIds.current(); } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } } /** @title An OpenSea delegate proxy contract which we include for whitelisting. @author OpenSea */ contract OwnableDelegateProxy {} /** @title An OpenSea proxy registry contract which we include for whitelisting. @author OpenSea */ contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"bytes32","name":"merkleroot","type":"bytes32"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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"},{"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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_presaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"presaleM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleroot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
606460115560c06040526007608090815266697066733a2f2f60c81b60a0526013906200002d9082620007f2565b50604080518082019091526005815264173539b7b760d91b6020820152601490620000599082620007f2565b506015805463ffffffff19169055600360168190556000601855604080516060810182526019815260236020820152602891810191909152620000a091601a919062000689565b506040805160608101825273933572d5f83b00a998102b7bf1a99c0f197e685b81527382de9ce4a49ffec4c41cf733126f618ed83a879c6020820152738a7ac9834e2d4487da22dc130c97ee8fbdc85568918101919091526200010890601b906003620006de565b503480156200011657600080fd5b50604051620039a5380380620039a58339810160408190526200013991620008db565b601b8054806020026020016040519081016040528092919081815260200182805480156200019157602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000172575b5050505050601a805480602002602001604051908101604052809291908181526020018280548015620001e457602002820191906000526020600020905b815481526020019060010190808311620001cf575b50505050506040518060400160405280600381526020016213919560ea1b8152506040518060400160405280600381526020016213919560ea1b8152508160009081620002329190620007f2565b506001620002418282620007f2565b5050506200025e62000258620003cb60201b60201c565b620003cf565b60016007558051825114620002d55760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003285760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620002cc565b60005b825181101562000394576200037f8382815181106200034e576200034e620009cc565b60200260200101518383815181106200036b576200036b620009cc565b60200260200101516200042160201b60201c565b806200038b81620009f8565b9150506200032b565b505050600f829055601080546001600160a01b0319166001600160a01b038316179055620003c2836200060f565b50505062000a30565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200048e5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620002cc565b60008111620004e05760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620002cc565b6001600160a01b0382166000908152600a6020526040902054156200055c5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620002cc565b600c8054600181019091557fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0384169081179091556000908152600a60205260409020819055600854620005c690829062000a14565b600855604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b620006196200062b565b6012620006278282620007f2565b5050565b6006546001600160a01b03163314620006875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002cc565b565b828054828255906000526020600020908101928215620006cc579160200282015b82811115620006cc578251829060ff16905591602001919060010190620006aa565b50620006da92915062000736565b5090565b828054828255906000526020600020908101928215620006cc579160200282015b82811115620006cc57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006ff565b5b80821115620006da576000815560010162000737565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200077857607f821691505b6020821081036200079957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007ed57600081815260208120601f850160051c81016020861015620007c85750805b601f850160051c820191505b81811015620007e957828155600101620007d4565b5050505b505050565b81516001600160401b038111156200080e576200080e6200074d565b62000826816200081f845462000763565b846200079f565b602080601f8311600181146200085e5760008415620008455750858301515b600019600386901b1c1916600185901b178555620007e9565b600085815260208120601f198616915b828110156200088f578886015182559484019460019091019084016200086e565b5085821015620008ae5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80516001600160a01b0381168114620008d657600080fd5b919050565b600080600060608486031215620008f157600080fd5b83516001600160401b03808211156200090957600080fd5b818601915086601f8301126200091e57600080fd5b8151818111156200093357620009336200074d565b604051601f8201601f19908116603f011681019083821181831017156200095e576200095e6200074d565b816040528281526020935089848487010111156200097b57600080fd5b600091505b828210156200099f578482018401518183018501529083019062000980565b60008484830101528097505050508086015193505050620009c360408501620008be565b90509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820162000a0d5762000a0d620009e2565b5060010190565b8082018082111562000a2a5762000a2a620009e2565b92915050565b612f658062000a406000396000f3fe6080604052600436106102975760003560e01c80638da5cb5b1161015a578063c6682862116100c1578063e222c7f91161007a578063e222c7f91461083f578063e33b7de314610854578063e985e9c514610869578063ebf0c71714610889578063f2c4ce1e1461089f578063f2fde38b146108bf57600080fd5b8063c668286214610768578063c87b56dd1461077d578063ce7c2ac21461079d578063d5abeb01146107d3578063d79779b2146107e9578063da3ef23f1461081f57600080fd5b8063a45063c011610113578063a45063c0146106ca578063a475b5dd146106eb578063b3ab66b014610700578063b88d4fde14610713578063c45ac05014610733578063c4ae31681461075357600080fd5b80638da5cb5b1461060e578063954dc3e31461062c57806395d89b411461063f5780639852595c14610654578063a22cb4651461068a578063a3f8eace146106aa57600080fd5b806342842e0e116101fe5780636c0360eb116101b75780636c0360eb1461055757806370a082311461056c578063715018a61461058c5780637cb64759146105a15780638b83209b146105c15780638cc4de19146105e157600080fd5b806342842e0e1461049e57806348b75044146104be57806351830227146104de57806355f804b3146104fd5780635c975abb1461051d5780636352211e1461053757600080fd5b806318160ddd1161025057806318160ddd146103cb57806319165587146103ee57806323b872dd1461040e578063343937431461042e5780633a98ef3914610443578063406072a91461045857600080fd5b806301ffc9a7146102e557806306fdde031461031a578063081812fc1461033c578063081c8c4414610374578063095ea7b3146103895780631798d58b146103ab57600080fd5b366102e0577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102f157600080fd5b50610305610300366004612646565b6108df565b60405190151581526020015b60405180910390f35b34801561032657600080fd5b5061032f610931565b60405161031191906126b3565b34801561034857600080fd5b5061035c6103573660046126c6565b6109c3565b6040516001600160a01b039091168152602001610311565b34801561038057600080fd5b5061032f6109ea565b34801561039557600080fd5b506103a96103a43660046126f4565b610a78565b005b3480156103b757600080fd5b506015546103059062010000900460ff1681565b3480156103d757600080fd5b506103e0610b92565b604051908152602001610311565b3480156103fa57600080fd5b506103a9610409366004612720565b610ba2565b34801561041a57600080fd5b506103a961042936600461273d565b610c9b565b34801561043a57600080fd5b506103a9610ccc565b34801561044f57600080fd5b506008546103e0565b34801561046457600080fd5b506103e061047336600461277e565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b3480156104aa57600080fd5b506103a96104b936600461273d565b610cf3565b3480156104ca57600080fd5b506103a96104d936600461277e565b610d0e565b3480156104ea57600080fd5b5060155461030590610100900460ff1681565b34801561050957600080fd5b506103a9610518366004612843565b610e31565b34801561052957600080fd5b506015546103059060ff1681565b34801561054357600080fd5b5061035c6105523660046126c6565b610e49565b34801561056357600080fd5b5061032f610ea9565b34801561057857600080fd5b506103e0610587366004612720565b610eb6565b34801561059857600080fd5b506103a9610f3c565b3480156105ad57600080fd5b506103a96105bc3660046126c6565b610f50565b3480156105cd57600080fd5b5061035c6105dc3660046126c6565b610f5d565b3480156105ed57600080fd5b506103e06105fc366004612720565b60176020526000908152604090205481565b34801561061a57600080fd5b506006546001600160a01b031661035c565b6103a961063a36600461288c565b610f8d565b34801561064b57600080fd5b5061032f61128f565b34801561066057600080fd5b506103e061066f366004612720565b6001600160a01b03166000908152600b602052604090205490565b34801561069657600080fd5b506103a96106a5366004612926565b61129e565b3480156106b657600080fd5b506103e06106c5366004612720565b6112a9565b3480156106d657600080fd5b50601554610305906301000000900460ff1681565b3480156106f757600080fd5b506103a96112f1565b6103a961070e3660046126c6565b61130a565b34801561071f57600080fd5b506103a961072e366004612954565b6114e0565b34801561073f57600080fd5b506103e061074e36600461277e565b611518565b34801561075f57600080fd5b506103a96115e3565b34801561077457600080fd5b5061032f6115ff565b34801561078957600080fd5b5061032f6107983660046126c6565b61160c565b3480156107a957600080fd5b506103e06107b8366004612720565b6001600160a01b03166000908152600a602052604090205490565b3480156107df57600080fd5b506103e060115481565b3480156107f557600080fd5b506103e0610804366004612720565b6001600160a01b03166000908152600d602052604090205490565b34801561082b57600080fd5b506103a961083a366004612843565b61178f565b34801561084b57600080fd5b506103a96117a3565b34801561086057600080fd5b506009546103e0565b34801561087557600080fd5b5061030561088436600461277e565b6117cc565b34801561089557600080fd5b506103e0600f5481565b3480156108ab57600080fd5b506103a96108ba366004612843565b611888565b3480156108cb57600080fd5b506103a96108da366004612720565b61189c565b60006001600160e01b031982166380ac58cd60e01b148061091057506001600160e01b03198216635b5e139f60e01b145b8061092b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610940906129d4565b80601f016020809104026020016040519081016040528092919081815260200182805461096c906129d4565b80156109b95780601f1061098e576101008083540402835291602001916109b9565b820191906000526020600020905b81548152906001019060200180831161099c57829003601f168201915b5050505050905090565b60006109ce82611915565b506000908152600460205260409020546001600160a01b031690565b601380546109f7906129d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a23906129d4565b8015610a705780601f10610a4557610100808354040283529160200191610a70565b820191906000526020600020905b815481529060010190602001808311610a5357829003601f168201915b505050505081565b6000610a8382610e49565b9050806001600160a01b0316836001600160a01b031603610af55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610b115750610b1181336117cc565b610b835760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610aec565b610b8d8383611974565b505050565b6000610b9d60195490565b905090565b6001600160a01b0381166000908152600a6020526040902054610bd75760405162461bcd60e51b8152600401610aec90612a0e565b6000610be2826112a9565b905080600003610c045760405162461bcd60e51b8152600401610aec90612a54565b6001600160a01b0382166000908152600b602052604081208054839290610c2c908490612ab5565b925050819055508060096000828254610c459190612ab5565b90915550610c55905082826119e2565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b610ca53382611afb565b610cc15760405162461bcd60e51b8152600401610aec90612ac8565b610b8d838383611b59565b610cd4611cf5565b6015805462ff0000198116620100009182900460ff1615909102179055565b610b8d838383604051806020016040528060008152506114e0565b6001600160a01b0381166000908152600a6020526040902054610d435760405162461bcd60e51b8152600401610aec90612a0e565b6000610d4f8383611518565b905080600003610d715760405162461bcd60e51b8152600401610aec90612a54565b6001600160a01b038084166000908152600e6020908152604080832093861683529290529081208054839290610da8908490612ab5565b90915550506001600160a01b0383166000908152600d602052604081208054839290610dd5908490612ab5565b90915550610de69050838383611d4f565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b610e39611cf5565b6012610e458282612b64565b5050565b6000818152600260205260408120546001600160a01b03168061092b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610aec565b601280546109f7906129d4565b60006001600160a01b038216610f205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610aec565b506001600160a01b031660009081526003602052604090205490565b610f44611cf5565b610f4e6000611da1565b565b610f58611cf5565b600f55565b6000600c8281548110610f7257610f72612c24565b6000918252602090912001546001600160a01b031692915050565b818161100482828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611df3565b15156001146110255760405162461bcd60e51b8152600401610aec90612c3a565b3332146110445760405162461bcd60e51b8152600401610aec90612c3a565b336001600160a01b0387161461109c5760405162461bcd60e51b815260206004820152601860248201527f43727970746f50756e6b733a204e6f7420616c6c6f77656400000000000000006044820152606401610aec565b60155462010000900460ff166110f45760405162461bcd60e51b815260206004820152601b60248201527f43727970746f50756e6b733a2050726573616c65206973204f464600000000006044820152606401610aec565b60155460ff16156111475760405162461bcd60e51b815260206004820152601f60248201527f43727970746f50756e6b733a20436f6e747261637420697320706175736564006044820152606401610aec565b6016548511156111695760405162461bcd60e51b8152600401610aec90612c66565b60165433600090815260176020526040902054611187908790612ab5565b11156111a55760405162461bcd60e51b8152600401610aec90612c66565b60006111b060195490565b6011549091506111c08783612ab5565b111561120e5760405162461bcd60e51b815260206004820181905260248201527f43727970746f50756e6b733a206d617820737570706c792065786365656465646044820152606401610aec565b348660185461121d9190612cb0565b111561123b5760405162461bcd60e51b8152600401610aec90612cc7565b336000908152601760205260408120805488929061125a908490612ab5565b90915550600090505b8681101561128557611273611e09565b8061127d81612d0a565b915050611263565b5050505050505050565b606060018054610940906129d4565b610e45338383611e8d565b6000806112b560095490565b6112bf9047612ab5565b90506112ea83826112e5866001600160a01b03166000908152600b602052604090205490565b611f5b565b9392505050565b6112f9611cf5565b6015805461ff001916610100179055565b3332146113295760405162461bcd60e51b8152600401610aec90612c3a565b6015546301000000900460ff166113825760405162461bcd60e51b815260206004820152601e60248201527f43727970746f50756e6b733a205075626c696353616c65206973204f464600006044820152606401610aec565b60155460ff16156113d55760405162461bcd60e51b815260206004820152601f60248201527f43727970746f50756e6b733a20436f6e747261637420697320706175736564006044820152606401610aec565b600081116114255760405162461bcd60e51b815260206004820152601860248201527f43727970746f50756e6b733a207a65726f20616d6f756e7400000000000000006044820152606401610aec565b600061143060195490565b6011549091506114408383612ab5565b111561148e5760405162461bcd60e51b815260206004820181905260248201527f43727970746f50756e6b733a204d617820737570706c792065786365656465646044820152606401610aec565b348260185461149d9190612cb0565b11156114bb5760405162461bcd60e51b8152600401610aec90612cc7565b60005b82811015610b8d576114ce611e09565b806114d881612d0a565b9150506114be565b6114ea3383611afb565b6115065760405162461bcd60e51b8152600401610aec90612ac8565b61151284848484611f99565b50505050565b6001600160a01b0382166000908152600d602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611577573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159b9190612d23565b6115a59190612ab5565b6001600160a01b038086166000908152600e60209081526040808320938816835292905220549091506115db9084908390611f5b565b949350505050565b6115eb611cf5565b6015805460ff19811660ff90911615179055565b601480546109f7906129d4565b6000818152600260205260409020546060906001600160a01b031661168b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610aec565b601554610100900460ff16151560000361173157601380546116ac906129d4565b80601f01602080910402602001604051908101604052809291908181526020018280546116d8906129d4565b80156117255780601f106116fa57610100808354040283529160200191611725565b820191906000526020600020905b81548152906001019060200180831161170857829003601f168201915b50505050509050919050565b600061173b611fcc565b9050600081511161175b57604051806020016040528060008152506112ea565b8061176584611fdb565b601460405160200161177993929190612d3c565b6040516020818303038152906040529392505050565b611797611cf5565b6014610e458282612b64565b6117ab611cf5565b6015805463ff00000019811663010000009182900460ff1615909102179055565b60105460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa15801561181e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118429190612ddc565b6001600160a01b03160361185a57600191505061092b565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff166115db565b611890611cf5565b6013610e458282612b64565b6118a4611cf5565b6001600160a01b0381166119095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aec565b61191281611da1565b50565b6000818152600260205260409020546001600160a01b03166119125760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610aec565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119a982610e49565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611a325760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610aec565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a7f576040519150601f19603f3d011682016040523d82523d6000602084013e611a84565b606091505b5050905080610b8d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610aec565b600080611b0783610e49565b9050806001600160a01b0316846001600160a01b03161480611b2e5750611b2e81856117cc565b806115db5750836001600160a01b0316611b47846109c3565b6001600160a01b031614949350505050565b826001600160a01b0316611b6c82610e49565b6001600160a01b031614611bd05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610aec565b6001600160a01b038216611c325760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610aec565b611c3d600082611974565b6001600160a01b0383166000908152600360205260408120805460019290611c66908490612df9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c94908490612ab5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b03163314610f4e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aec565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b8d9084906120dc565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611e0085846121ae565b14949350505050565b600260075403611e5b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aec565b6002600755611e6e601980546001019055565b6000611e7960195490565b9050611e8533826121fb565b506001600755565b816001600160a01b0316836001600160a01b031603611eee5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610aec565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6008546001600160a01b0384166000908152600a602052604081205490918391611f859086612cb0565b611f8f9190612e22565b6115db9190612df9565b611fa4848484611b59565b611fb084848484612215565b6115125760405162461bcd60e51b8152600401610aec90612e36565b606060128054610940906129d4565b6060816000036120025750506040805180820190915260018152600360fc1b602082015290565b8160005b811561202c578061201681612d0a565b91506120259050600a83612e22565b9150612006565b60008167ffffffffffffffff811115612047576120476127b7565b6040519080825280601f01601f191660200182016040528015612071576020820181803683370190505b5090505b84156115db57612086600183612df9565b9150612093600a86612e88565b61209e906030612ab5565b60f81b8183815181106120b3576120b3612c24565b60200101906001600160f81b031916908160001a9053506120d5600a86612e22565b9450612075565b6000612131826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123169092919063ffffffff16565b805190915015610b8d578080602001905181019061214f9190612e9c565b610b8d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610aec565b600081815b84518110156121f3576121df828683815181106121d2576121d2612c24565b6020026020010151612325565b9150806121eb81612d0a565b9150506121b3565b509392505050565b610e45828260405180602001604052806000815250612351565b60006001600160a01b0384163b1561230b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612259903390899088908890600401612eb9565b6020604051808303816000875af1925050508015612294575060408051601f3d908101601f1916820190925261229191810190612ef6565b60015b6122f1573d8080156122c2576040519150601f19603f3d011682016040523d82523d6000602084013e6122c7565b606091505b5080516000036122e95760405162461bcd60e51b8152600401610aec90612e36565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115db565b506001949350505050565b60606115db8484600085612384565b60008183106123415760008281526020849052604090206112ea565b5060009182526020526040902090565b61235b83836124b5565b6123686000848484612215565b610b8d5760405162461bcd60e51b8152600401610aec90612e36565b6060824710156123e55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610aec565b6001600160a01b0385163b61243c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610aec565b600080866001600160a01b031685876040516124589190612f13565b60006040518083038185875af1925050503d8060008114612495576040519150601f19603f3d011682016040523d82523d6000602084013e61249a565b606091505b50915091506124aa8282866125f7565b979650505050505050565b6001600160a01b03821661250b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610aec565b6000818152600260205260409020546001600160a01b0316156125705760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aec565b6001600160a01b0382166000908152600360205260408120805460019290612599908490612ab5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606083156126065750816112ea565b8251156126165782518084602001fd5b8160405162461bcd60e51b8152600401610aec91906126b3565b6001600160e01b03198116811461191257600080fd5b60006020828403121561265857600080fd5b81356112ea81612630565b60005b8381101561267e578181015183820152602001612666565b50506000910152565b6000815180845261269f816020860160208601612663565b601f01601f19169290920160200192915050565b6020815260006112ea6020830184612687565b6000602082840312156126d857600080fd5b5035919050565b6001600160a01b038116811461191257600080fd5b6000806040838503121561270757600080fd5b8235612712816126df565b946020939093013593505050565b60006020828403121561273257600080fd5b81356112ea816126df565b60008060006060848603121561275257600080fd5b833561275d816126df565b9250602084013561276d816126df565b929592945050506040919091013590565b6000806040838503121561279157600080fd5b823561279c816126df565b915060208301356127ac816126df565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156127e8576127e86127b7565b604051601f8501601f19908116603f01168101908282118183101715612810576128106127b7565b8160405280935085815286868601111561282957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561285557600080fd5b813567ffffffffffffffff81111561286c57600080fd5b8201601f8101841361287d57600080fd5b6115db848235602084016127cd565b600080600080606085870312156128a257600080fd5b84356128ad816126df565b935060208501359250604085013567ffffffffffffffff808211156128d157600080fd5b818701915087601f8301126128e557600080fd5b8135818111156128f457600080fd5b8860208260051b850101111561290957600080fd5b95989497505060200194505050565b801515811461191257600080fd5b6000806040838503121561293957600080fd5b8235612944816126df565b915060208301356127ac81612918565b6000806000806080858703121561296a57600080fd5b8435612975816126df565b93506020850135612985816126df565b925060408501359150606085013567ffffffffffffffff8111156129a857600080fd5b8501601f810187136129b957600080fd5b6129c8878235602084016127cd565b91505092959194509250565b600181811c908216806129e857607f821691505b602082108103612a0857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561092b5761092b612a9f565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b601f821115610b8d57600081815260208120601f850160051c81016020861015612b3d5750805b601f850160051c820191505b81811015612b5c57828155600101612b49565b505050505050565b815167ffffffffffffffff811115612b7e57612b7e6127b7565b612b9281612b8c84546129d4565b84612b16565b602080601f831160018114612bc75760008415612baf5750858301515b600019600386901b1c1916600185901b178555612b5c565b600085815260208120601f198616915b82811015612bf657888601518255948401946001909101908401612bd7565b5085821015612c145787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b6020808252601290820152712737ba1030b63637bbb2b21037b934b3b4b760711b604082015260600190565b6020808252602a908201527f43727970746f50756e6b733a20596f752063616e2774206d696e7420736f206d60408201526975636820746f6b656e7360b01b606082015260800190565b808202811582820484141761092b5761092b612a9f565b60208082526023908201527f43727970746f50756e6b733a204e6f7420656e6f756768206574686572732073604082015262195b9d60ea1b606082015260800190565b600060018201612d1c57612d1c612a9f565b5060010190565b600060208284031215612d3557600080fd5b5051919050565b600084516020612d4f8285838a01612663565b855191840191612d628184848a01612663565b8554920191600090612d73816129d4565b60018281168015612d8b5760018114612da057612dcc565b60ff1984168752821515830287019450612dcc565b896000528560002060005b84811015612dc457815489820152908301908701612dab565b505082870194505b50929a9950505050505050505050565b600060208284031215612dee57600080fd5b81516112ea816126df565b8181038181111561092b5761092b612a9f565b634e487b7160e01b600052601260045260246000fd5b600082612e3157612e31612e0c565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612e9757612e97612e0c565b500690565b600060208284031215612eae57600080fd5b81516112ea81612918565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612eec90830184612687565b9695505050505050565b600060208284031215612f0857600080fd5b81516112ea81612630565b60008251612f25818460208701612663565b919091019291505056fea2646970667358221220ce68cef3b8c7fe19027a1f231e5fca62805eb34808beb5466a85782822de939964736f6c634300081100330000000000000000000000000000000000000000000000000000000000000060418d4e3460276faaed333976435628288bad5ea4f3158ff47324c8e9b095be6e000000000000000000000000f2d96b56e60fa074714c04cb13ab15574152414e00000000000000000000000000000000000000000000000000000000000000034e46540000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000060418d4e3460276faaed333976435628288bad5ea4f3158ff47324c8e9b095be6e000000000000000000000000f2d96b56e60fa074714c04cb13ab15574152414e00000000000000000000000000000000000000000000000000000000000000034e46540000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : uri (string): NFT
Arg [1] : merkleroot (bytes32): 0x418d4e3460276faaed333976435628288bad5ea4f3158ff47324c8e9b095be6e
Arg [2] : _proxyRegistryAddress (address): 0xf2d96b56e60fa074714c04cb13ab15574152414e
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 418d4e3460276faaed333976435628288bad5ea4f3158ff47324c8e9b095be6e
Arg [2] : 000000000000000000000000f2d96b56e60fa074714c04cb13ab15574152414e
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 4e46540000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
68911:6377:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40705:40;21449:10;40705:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;40735:9:0;270:2:1;255:18;;248:34;161:18;40705:40:0;;;;;;;68911:6377;;;;;55653:305;;;;;;;;;;-1:-1:-1;55653:305:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;55653:305:0;;;;;;;;56580:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;58093:171::-;;;;;;;;;;-1:-1:-1;58093:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1976:32:1;;;1958:51;;1946:2;1931:18;58093:171:0;1812:203:1;69223:40:0;;;;;;;;;;;;;:::i;57610:417::-;;;;;;;;;;-1:-1:-1;57610:417:0;;;;;:::i;:::-;;:::i;:::-;;69384:28;;;;;;;;;;-1:-1:-1;69384:28:0;;;;;;;;;;;74613:95;;;;;;;;;;;;;:::i;:::-;;;2622:25:1;;;2610:2;2595:18;74613:95:0;2476:177:1;43226:453:0;;;;;;;;;;-1:-1:-1;43226:453:0;;;;;:::i;:::-;;:::i;58793:336::-;;;;;;;;;;-1:-1:-1;58793:336:0;;;;;:::i;:::-;;:::i;71371:81::-;;;;;;;;;;;;;:::i;40836:91::-;;;;;;;;;;-1:-1:-1;40907:12:0;;40836:91;;41965:135;;;;;;;;;;-1:-1:-1;41965:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;42062:21:0;;;42035:7;42062:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;41965:135;59200:185;;;;;;;;;;-1:-1:-1;59200:185:0;;;;;:::i;:::-;;:::i;43947:514::-;;;;;;;;;;-1:-1:-1;43947:514:0;;;;;:::i;:::-;;:::i;69349:28::-;;;;;;;;;;-1:-1:-1;69349:28:0;;;;;;;;;;;70487:108;;;;;;;;;;-1:-1:-1;70487:108:0;;;;;:::i;:::-;;:::i;69316:26::-;;;;;;;;;;-1:-1:-1;69316:26:0;;;;;;;;56291:222;;;;;;;;;;-1:-1:-1;56291:222:0;;;;;:::i;:::-;;:::i;69194:21::-;;;;;;;;;;;;;:::i;56022:207::-;;;;;;;;;;-1:-1:-1;56022:207:0;;;;;:::i;:::-;;:::i;23466:103::-;;;;;;;;;;;;;:::i;70788:114::-;;;;;;;;;;-1:-1:-1;70788:114:0;;;;;:::i;:::-;;:::i;42191:100::-;;;;;;;;;;-1:-1:-1;42191:100:0;;;;;:::i;:::-;;:::i;69492:50::-;;;;;;;;;;-1:-1:-1;69492:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;22818:87;;;;;;;;;;-1:-1:-1;22891:6:0;;-1:-1:-1;;;;;22891:6:0;22818:87;;71552:1121;;;;;;:::i;:::-;;:::i;56749:104::-;;;;;;;;;;;;;:::i;41687:109::-;;;;;;;;;;-1:-1:-1;41687:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;41770:18:0;41743:7;41770:18;;;:9;:18;;;;;;;41687:109;58336:155;;;;;;;;;;-1:-1:-1;58336:155:0;;;;;:::i;:::-;;:::i;42381:225::-;;;;;;;;;;-1:-1:-1;42381:225:0;;;;;:::i;:::-;;:::i;69419:27::-;;;;;;;;;;-1:-1:-1;69419:27:0;;;;;;;;;;;70711:69;;;;;;;;;;;;;:::i;72681:709::-;;;;;;:::i;:::-;;:::i;59456:323::-;;;;;;;;;;-1:-1:-1;59456:323:0;;;;;:::i;:::-;;:::i;42766:260::-;;;;;;;;;;-1:-1:-1;42766:260:0;;;;;:::i;:::-;;:::i;71288:75::-;;;;;;;;;;;;;:::i;69270:37::-;;;;;;;;;;;;;:::i;73583:729::-;;;;;;;;;;-1:-1:-1;73583:729:0;;;;;:::i;:::-;;:::i;41483:105::-;;;;;;;;;;-1:-1:-1;41483:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;41564:16:0;41537:7;41564:16;;;:7;:16;;;;;;;41483:105;69155:30;;;;;;;;;;;;;;;;41273:119;;;;;;;;;;-1:-1:-1;41273:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;41358:26:0;41331:7;41358:26;;;:19;:26;;;;;;;41273:119;74320:151;;;;;;;;;;-1:-1:-1;74320:151:0;;;;;:::i;:::-;;:::i;71460:82::-;;;;;;;;;;;;;:::i;41021:95::-;;;;;;;;;;-1:-1:-1;41094:14:0;;41021:95;;74840:445;;;;;;;;;;-1:-1:-1;74840:445:0;;;;;:::i;:::-;;:::i;69086:19::-;;;;;;;;;;;;;;;;74479:126;;;;;;;;;;-1:-1:-1;74479:126:0;;;;;:::i;:::-;;:::i;23724:201::-;;;;;;;;;;-1:-1:-1;23724:201:0;;;;;:::i;:::-;;:::i;55653:305::-;55755:4;-1:-1:-1;;;;;;55792:40:0;;-1:-1:-1;;;55792:40:0;;:105;;-1:-1:-1;;;;;;;55849:48:0;;-1:-1:-1;;;55849:48:0;55792:105;:158;;;-1:-1:-1;;;;;;;;;;48504:40:0;;;55914:36;55772:178;55653:305;-1:-1:-1;;55653:305:0:o;56580:100::-;56634:13;56667:5;56660:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56580:100;:::o;58093:171::-;58169:7;58189:23;58204:7;58189:14;:23::i;:::-;-1:-1:-1;58232:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;58232:24:0;;58093:171::o;69223:40::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57610:417::-;57691:13;57707:23;57722:7;57707:14;:23::i;:::-;57691:39;;57755:5;-1:-1:-1;;;;;57749:11:0;:2;-1:-1:-1;;;;;57749:11:0;;57741:57;;;;-1:-1:-1;;;57741:57:0;;9009:2:1;57741:57:0;;;8991:21:1;9048:2;9028:18;;;9021:30;9087:34;9067:18;;;9060:62;-1:-1:-1;;;9138:18:1;;;9131:31;9179:19;;57741:57:0;;;;;;;;;21449:10;-1:-1:-1;;;;;57833:21:0;;;;:62;;-1:-1:-1;57858:37:0;57875:5;21449:10;74840:445;:::i;57858:37::-;57811:174;;;;-1:-1:-1;;;57811:174:0;;9411:2:1;57811:174:0;;;9393:21:1;9450:2;9430:18;;;9423:30;9489:34;9469:18;;;9462:62;9560:32;9540:18;;;9533:60;9610:19;;57811:174:0;9209:426:1;57811:174:0;57998:21;58007:2;58011:7;57998:8;:21::i;:::-;57680:347;57610:417;;:::o;74613:95::-;74657:4;74681:19;:9;964:14;;872:114;74681:19;74674:26;;74613:95;:::o;43226:453::-;-1:-1:-1;;;;;43302:16:0;;43321:1;43302:16;;;:7;:16;;;;;;43294:71;;;;-1:-1:-1;;;43294:71:0;;;;;;;:::i;:::-;43378:15;43396:19;43407:7;43396:10;:19::i;:::-;43378:37;;43436:7;43447:1;43436:12;43428:68;;;;-1:-1:-1;;;43428:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43509:18:0;;;;;;:9;:18;;;;;:29;;43531:7;;43509:18;:29;;43531:7;;43509:29;:::i;:::-;;;;;;;;43567:7;43549:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;43587:35:0;;-1:-1:-1;43605:7:0;43614;43587:17;:35::i;:::-;43638:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;43638:33:0;;161:18:1;43638:33:0;;;;;;;43283:396;43226:453;:::o;58793:336::-;58988:41;21449:10;59021:7;58988:18;:41::i;:::-;58980:100;;;;-1:-1:-1;;;58980:100:0;;;;;;;:::i;:::-;59093:28;59103:4;59109:2;59113:7;59093:9;:28::i;71371:81::-;22704:13;:11;:13::i;:::-;71436:8:::1;::::0;;-1:-1:-1;;71424:20:0;::::1;71436:8:::0;;;;::::1;;;71435:9;71424:20:::0;;::::1;;::::0;;71371:81::o;59200:185::-;59338:39;59355:4;59361:2;59365:7;59338:39;;;;;;;;;;;;:16;:39::i;43947:514::-;-1:-1:-1;;;;;44029:16:0;;44048:1;44029:16;;;:7;:16;;;;;;44021:71;;;;-1:-1:-1;;;44021:71:0;;;;;;;:::i;:::-;44105:15;44123:26;44134:5;44141:7;44123:10;:26::i;:::-;44105:44;;44170:7;44181:1;44170:12;44162:68;;;;-1:-1:-1;;;44162:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44243:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;44277:7;;44243:21;:41;;44277:7;;44243:41;:::i;:::-;;;;-1:-1:-1;;;;;;;44295:26:0;;;;;;:19;:26;;;;;:37;;44325:7;;44295:26;:37;;44325:7;;44295:37;:::i;:::-;;;;-1:-1:-1;44345:47:0;;-1:-1:-1;44368:5:0;44375:7;44384;44345:22;:47::i;:::-;44408:45;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;44408:45:0;;;;;161:18:1;44408:45:0;;;;;;;44010:451;43947:514;;:::o;70487:108::-;22704:13;:11;:13::i;:::-;70564:7:::1;:23;70574:13:::0;70564:7;:23:::1;:::i;:::-;;70487:108:::0;:::o;56291:222::-;56363:7;56399:16;;;:7;:16;;;;;;-1:-1:-1;;;;;56399:16:0;;56426:56;;;;-1:-1:-1;;;56426:56:0;;13829:2:1;56426:56:0;;;13811:21:1;13868:2;13848:18;;;13841:30;-1:-1:-1;;;13887:18:1;;;13880:54;13951:18;;56426:56:0;13627:348:1;69194:21:0;;;;;;;:::i;56022:207::-;56094:7;-1:-1:-1;;;;;56122:19:0;;56114:73;;;;-1:-1:-1;;;56114:73:0;;14182:2:1;56114:73:0;;;14164:21:1;14221:2;14201:18;;;14194:30;14260:34;14240:18;;;14233:62;-1:-1:-1;;;14311:18:1;;;14304:39;14360:19;;56114:73:0;13980:405:1;56114:73:0;-1:-1:-1;;;;;;56205:16:0;;;;;:9;:16;;;;;;;56022:207::o;23466:103::-;22704:13;:11;:13::i;:::-;23531:30:::1;23558:1;23531:18;:30::i;:::-;23466:103::o:0;70788:114::-;22704:13;:11;:13::i;:::-;70877:4:::1;:17:::0;70788:114::o;42191:100::-;42242:7;42269;42277:5;42269:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;42269:14:0;;42191:100;-1:-1:-1;;42191:100:0:o;71552:1121::-;71685:6;;71103:127;71136:6;;71103:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;71157:4:0;;71186:28;;-1:-1:-1;;71203:10:0;14671:2:1;14667:15;14663:53;71186:28:0;;;14651:66:1;71157:4:0;;-1:-1:-1;14733:12:1;;;-1:-1:-1;71186:28:0;;;;;;;;;;;;71176:39;;;;;;71103:18;:127::i;:::-;:135;;71234:4;71103:135;71095:166;;;;-1:-1:-1;;;71095:166:0;;;;;;;:::i;:::-;70954:10:::1;70968:9;70954:23;70946:54;;;;-1:-1:-1::0;;;70946:54:0::1;;;;;;;:::i;:::-;71735:10:::2;-1:-1:-1::0;;;;;71735:21:0;::::2;;71727:67;;;::::0;-1:-1:-1;;;71727:67:0;;15305:2:1;71727:67:0::2;::::0;::::2;15287:21:1::0;15344:2;15324:18;;;15317:30;15383:26;15363:18;;;15356:54;15427:18;;71727:67:0::2;15103:348:1::0;71727:67:0::2;71813:8;::::0;;;::::2;;;71805:70;;;::::0;-1:-1:-1;;;71805:70:0;;15658:2:1;71805:70:0::2;::::0;::::2;15640:21:1::0;15697:2;15677:18;;;15670:30;15736:29;15716:18;;;15709:57;15783:18;;71805:70:0::2;15456:351:1::0;71805:70:0::2;71895:6;::::0;::::2;;71894:7;71886:74;;;::::0;-1:-1:-1;;;71886:74:0;;16014:2:1;71886:74:0::2;::::0;::::2;15996:21:1::0;16053:2;16033:18;;;16026:30;16092:33;16072:18;;;16065:61;16143:18;;71886:74:0::2;15812:355:1::0;71886:74:0::2;72004:18;;71993:7;:29;;71971:103;;;;-1:-1:-1::0;;;71971:103:0::2;;;;;;;:::i;:::-;72148:18;::::0;72123:10:::2;72107:27;::::0;;;:15:::2;:27;::::0;;;;;:37:::2;::::0;72137:7;;72107:37:::2;:::i;:::-;:59;;72085:129;;;;-1:-1:-1::0;;;72085:129:0::2;;;;;;;:::i;:::-;72229:12;72244:19;:9;964:14:::0;;872:114;72244:19:::2;72319:9;::::0;72229:34;;-1:-1:-1;72298:17:0::2;72308:7:::0;72229:34;72298:17:::2;:::i;:::-;:30;;72276:112;;;::::0;-1:-1:-1;;;72276:112:0;;16785:2:1;72276:112:0::2;::::0;::::2;16767:21:1::0;;;16804:18;;;16797:30;16863:34;16843:18;;;16836:62;16915:18;;72276:112:0::2;16583:356:1::0;72276:112:0::2;72441:9;72430:7;72421:6;;:16;;;;:::i;:::-;:29;;72399:114;;;;-1:-1:-1::0;;;72399:114:0::2;;;;;;;:::i;:::-;72555:10;72539:27;::::0;;;:15:::2;:27;::::0;;;;:38;;72570:7;;72539:27;:38:::2;::::0;72570:7;;72539:38:::2;:::i;:::-;::::0;;;-1:-1:-1;72595:6:0::2;::::0;-1:-1:-1;72590:76:0::2;72611:7;72607:1;:11;72590:76;;;72640:14;:12;:14::i;:::-;72620:3:::0;::::2;::::0;::::2;:::i;:::-;;;;72590:76;;;;71716:957;71552:1121:::0;;;;;;:::o;56749:104::-;56805:13;56838:7;56831:14;;;;;:::i;58336:155::-;58431:52;21449:10;58464:8;58474;58431:18;:52::i;42381:225::-;42439:7;42459:21;42507:15;41094:14;;;41021:95;42507:15;42483:39;;:21;:39;:::i;:::-;42459:63;;42540:58;42556:7;42565:13;42580:17;42589:7;-1:-1:-1;;;;;41770:18:0;41743:7;41770:18;;;:9;:18;;;;;;;41687:109;42580:17;42540:15;:58::i;:::-;42533:65;42381:225;-1:-1:-1;;;42381:225:0:o;70711:69::-;22704:13;:11;:13::i;:::-;70757:8:::1;:15:::0;;-1:-1:-1;;70757:15:0::1;;;::::0;;70711:69::o;72681:709::-;70954:10;70968:9;70954:23;70946:54;;;;-1:-1:-1;;;70946:54:0;;;;;;;:::i;:::-;72793:7:::1;::::0;;;::::1;;;72785:73;;;::::0;-1:-1:-1;;;72785:73:0;;17863:2:1;72785:73:0::1;::::0;::::1;17845:21:1::0;17902:2;17882:18;;;17875:30;17941:32;17921:18;;;17914:60;17991:18;;72785:73:0::1;17661:354:1::0;72785:73:0::1;72878:6;::::0;::::1;;72877:7;72869:51;;;::::0;-1:-1:-1;;;72869:51:0;;16014:2:1;72869:51:0::1;::::0;::::1;15996:21:1::0;16053:2;16033:18;;;16026:30;16092:33;16072:18;;;16065:61;16143:18;;72869:51:0::1;15812:355:1::0;72869:51:0::1;72949:1;72939:7;:11;72931:48;;;::::0;-1:-1:-1;;;72931:48:0;;18222:2:1;72931:48:0::1;::::0;::::1;18204:21:1::0;18261:2;18241:18;;;18234:30;18300:26;18280:18;;;18273:54;18344:18;;72931:48:0::1;18020:348:1::0;72931:48:0::1;72992:12;73007:19;:9;964:14:::0;;872:114;73007:19:::1;73082:9;::::0;72992:34;;-1:-1:-1;73061:17:0::1;73071:7:::0;72992:34;73061:17:::1;:::i;:::-;:30;;73039:112;;;::::0;-1:-1:-1;;;73039:112:0;;18575:2:1;73039:112:0::1;::::0;::::1;18557:21:1::0;;;18594:18;;;18587:30;18653:34;18633:18;;;18626:62;18705:18;;73039:112:0::1;18373:356:1::0;73039:112:0::1;73204:9;73193:7;73184:6;;:16;;;;:::i;:::-;:29;;73162:114;;;;-1:-1:-1::0;;;73162:114:0::1;;;;;;;:::i;:::-;73312:6;73307:76;73328:7;73324:1;:11;73307:76;;;73357:14;:12;:14::i;:::-;73337:3:::0;::::1;::::0;::::1;:::i;:::-;;;;73307:76;;59456:323:::0;59630:41;21449:10;59663:7;59630:18;:41::i;:::-;59622:100;;;;-1:-1:-1;;;59622:100:0;;;;;;;:::i;:::-;59733:38;59747:4;59753:2;59757:7;59766:4;59733:13;:38::i;:::-;59456:323;;;;:::o;42766:260::-;-1:-1:-1;;;;;41358:26:0;;42838:7;41358:26;;;:19;:26;;;;;;42838:7;;42882:30;;-1:-1:-1;;;42882:30:0;;42906:4;42882:30;;;1958:51:1;-1:-1:-1;;;;;42882:15:0;;;;;1931:18:1;;42882:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;-1:-1:-1;;;;;42062:21:0;;;42035:7;42062:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;42858:77;;-1:-1:-1;42953:65:0;;42969:7;;42858:77;;42540:15;:58::i;42953:65::-;42946:72;42766:260;-1:-1:-1;;;;42766:260:0:o;71288:75::-;22704:13;:11;:13::i;:::-;71349:6:::1;::::0;;-1:-1:-1;;71339:16:0;::::1;71349:6;::::0;;::::1;71348:7;71339:16;::::0;;71288:75::o;69270:37::-;;;;;;;:::i;73583:729::-;61351:4;61375:16;;;:7;:16;;;;;;73701:13;;-1:-1:-1;;;;;61375:16:0;73732:113;;;;-1:-1:-1;;;73732:113:0;;19125:2:1;73732:113:0;;;19107:21:1;19164:2;19144:18;;;19137:30;19203:34;19183:18;;;19176:62;-1:-1:-1;;;19254:18:1;;;19247:45;19309:19;;73732:113:0;18923:411:1;73732:113:0;73860:8;;;;;;;:17;;73872:5;73860:17;73856:71;;73901:14;73894:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73583:729;;;:::o;73856:71::-;73939:28;73970:10;:8;:10::i;:::-;73939:41;;74048:1;74023:14;74017:28;:32;:287;;;;;;;;;;;;;;;;;74141:14;74182:18;:7;:16;:18::i;:::-;74227:13;74098:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73997:307;73583:729;-1:-1:-1;;;73583:729:0:o;74320:151::-;22704:13;:11;:13::i;:::-;74430::::1;:33;74446:17:::0;74430:13;:33:::1;:::i;71460:82::-:0;22704:13;:11;:13::i;:::-;71527:7:::1;::::0;;-1:-1:-1;;71516:18:0;::::1;71527:7:::0;;;;::::1;;;71526:8;71516:18:::0;;::::1;;::::0;;71460:82::o;74840:445::-;75094:20;;75138:28;;-1:-1:-1;;;75138:28:0;;-1:-1:-1;;;;;1976:32:1;;;75138:28:0;;;1958:51:1;74965:4:0;;75094:20;;;75130:49;;;;75094:20;;75138:21;;1931:18:1;;75138:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;75130:49:0;;75126:93;;75203:4;75196:11;;;;;75126:93;-1:-1:-1;;;;;58683:25:0;;;58659:4;58683:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;75238:39;58562:164;74479:126;22704:13;:11;:13::i;:::-;74565:14:::1;:32;74582:15:::0;74565:14;:32:::1;:::i;23724:201::-:0;22704:13;:11;:13::i;:::-;-1:-1:-1;;;;;23813:22:0;::::1;23805:73;;;::::0;-1:-1:-1;;;23805:73:0;;21087:2:1;23805:73:0::1;::::0;::::1;21069:21:1::0;21126:2;21106:18;;;21099:30;21165:34;21145:18;;;21138:62;-1:-1:-1;;;21216:18:1;;;21209:36;21262:19;;23805:73:0::1;20885:402:1::0;23805:73:0::1;23889:28;23908:8;23889:18;:28::i;:::-;23724:201:::0;:::o;66068:135::-;61351:4;61375:16;;;:7;:16;;;;;;-1:-1:-1;;;;;61375:16:0;66142:53;;;;-1:-1:-1;;;66142:53:0;;13829:2:1;66142:53:0;;;13811:21:1;13868:2;13848:18;;;13841:30;-1:-1:-1;;;13887:18:1;;;13880:54;13951:18;;66142:53:0;13627:348:1;65347:174:0;65422:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;65422:29:0;-1:-1:-1;;;;;65422:29:0;;;;;;;;:24;;65476:23;65422:24;65476:14;:23::i;:::-;-1:-1:-1;;;;;65467:46:0;;;;;;;;;;;65347:174;;:::o;26777:317::-;26892:6;26867:21;:31;;26859:73;;;;-1:-1:-1;;;26859:73:0;;21494:2:1;26859:73:0;;;21476:21:1;21533:2;21513:18;;;21506:30;21572:31;21552:18;;;21545:59;21621:18;;26859:73:0;21292:353:1;26859:73:0;26946:12;26964:9;-1:-1:-1;;;;;26964:14:0;26986:6;26964:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26945:52;;;27016:7;27008:78;;;;-1:-1:-1;;;27008:78:0;;22062:2:1;27008:78:0;;;22044:21:1;22101:2;22081:18;;;22074:30;22140:34;22120:18;;;22113:62;22211:28;22191:18;;;22184:56;22257:19;;27008:78:0;21860:422:1;61580:264:0;61673:4;61690:13;61706:23;61721:7;61706:14;:23::i;:::-;61690:39;;61759:5;-1:-1:-1;;;;;61748:16:0;:7;-1:-1:-1;;;;;61748:16:0;;:52;;;;61768:32;61785:5;61792:7;61768:16;:32::i;:::-;61748:87;;;;61828:7;-1:-1:-1;;;;;61804:31:0;:20;61816:7;61804:11;:20::i;:::-;-1:-1:-1;;;;;61804:31:0;;;61580:264;-1:-1:-1;;;;61580:264:0:o;64603:625::-;64762:4;-1:-1:-1;;;;;64735:31:0;:23;64750:7;64735:14;:23::i;:::-;-1:-1:-1;;;;;64735:31:0;;64727:81;;;;-1:-1:-1;;;64727:81:0;;22489:2:1;64727:81:0;;;22471:21:1;22528:2;22508:18;;;22501:30;22567:34;22547:18;;;22540:62;-1:-1:-1;;;22618:18:1;;;22611:35;22663:19;;64727:81:0;22287:401:1;64727:81:0;-1:-1:-1;;;;;64827:16:0;;64819:65;;;;-1:-1:-1;;;64819:65:0;;22895:2:1;64819:65:0;;;22877:21:1;22934:2;22914:18;;;22907:30;22973:34;22953:18;;;22946:62;-1:-1:-1;;;23024:18:1;;;23017:34;23068:19;;64819:65:0;22693:400:1;64819:65:0;65001:29;65018:1;65022:7;65001:8;:29::i;:::-;-1:-1:-1;;;;;65043:15:0;;;;;;:9;:15;;;;;:20;;65062:1;;65043:15;:20;;65062:1;;65043:20;:::i;:::-;;;;-1:-1:-1;;;;;;;65074:13:0;;;;;;:9;:13;;;;;:18;;65091:1;;65074:13;:18;;65091:1;;65074:18;:::i;:::-;;;;-1:-1:-1;;65103:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;65103:21:0;-1:-1:-1;;;;;65103:21:0;;;;;;;;;65142:27;;65103:16;;65142:27;;;;;;;57680:347;57610:417;;:::o;22983:132::-;22891:6;;-1:-1:-1;;;;;22891:6:0;21449:10;23047:23;23039:68;;;;-1:-1:-1;;;23039:68:0;;23433:2:1;23039:68:0;;;23415:21:1;;;23452:18;;;23445:30;23511:34;23491:18;;;23484:62;23563:18;;23039:68:0;23231:356:1;33550:211:0;33694:58;;;-1:-1:-1;;;;;206:32:1;;33694:58:0;;;188:51:1;255:18;;;;248:34;;;33694:58:0;;;;;;;;;;161:18:1;;;;33694:58:0;;;;;;;;-1:-1:-1;;;;;33694:58:0;-1:-1:-1;;;33694:58:0;;;33667:86;;33687:5;;33667:19;:86::i;24085:191::-;24178:6;;;-1:-1:-1;;;;;24195:17:0;;;-1:-1:-1;;;;;;24195:17:0;;;;;;;24228:40;;24178:6;;;24195:17;24178:6;;24228:40;;24159:16;;24228:40;24148:128;24085:191;:::o;2684:190::-;2809:4;2862;2833:25;2846:5;2853:4;2833:12;:25::i;:::-;:33;;2684:190;-1:-1:-1;;;;2684:190:0:o;73398:177::-;17246:1;17844:7;;:19;17836:63;;;;-1:-1:-1;;;17836:63:0;;23794:2:1;17836:63:0;;;23776:21:1;23833:2;23813:18;;;23806:30;23872:33;23852:18;;;23845:61;23923:18;;17836:63:0;23592:355:1;17836:63:0;17246:1;17977:7;:18;73455:21:::1;:9;1083:19:::0;;1101:1;1083:19;;;994:127;73455:21:::1;73489:15;73507:19;:9;964:14:::0;;872:114;73507:19:::1;73489:37;;73537:30;73547:10;73559:7;73537:9;:30::i;:::-;-1:-1:-1::0;17202:1:0;18156:7;:22;73398:177::o;65664:315::-;65819:8;-1:-1:-1;;;;;65810:17:0;:5;-1:-1:-1;;;;;65810:17:0;;65802:55;;;;-1:-1:-1;;;65802:55:0;;24154:2:1;65802:55:0;;;24136:21:1;24193:2;24173:18;;;24166:30;24232:27;24212:18;;;24205:55;24277:18;;65802:55:0;23952:349:1;65802:55:0;-1:-1:-1;;;;;65868:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;65868:46:0;;;;;;;;;;65930:41;;819::1;;;65930::0;;792:18:1;65930:41:0;;;;;;;65664:315;;;:::o;44639:248::-;44849:12;;-1:-1:-1;;;;;44829:16:0;;44785:7;44829:16;;;:7;:16;;;;;;44785:7;;44864:15;;44813:32;;:13;:32;:::i;:::-;44812:49;;;;:::i;:::-;:67;;;;:::i;60660:313::-;60816:28;60826:4;60832:2;60836:7;60816:9;:28::i;:::-;60863:47;60886:4;60892:2;60896:7;60905:4;60863:22;:47::i;:::-;60855:110;;;;-1:-1:-1;;;60855:110:0;;;;;;;:::i;70603:100::-;70655:13;70688:7;70681:14;;;;;:::i;18623:723::-;18679:13;18900:5;18909:1;18900:10;18896:53;;-1:-1:-1;;18927:10:0;;;;;;;;;;;;-1:-1:-1;;;18927:10:0;;;;;18623:723::o;18896:53::-;18974:5;18959:12;19015:78;19022:9;;19015:78;;19048:8;;;;:::i;:::-;;-1:-1:-1;19071:10:0;;-1:-1:-1;19079:2:0;19071:10;;:::i;:::-;;;19015:78;;;19103:19;19135:6;19125:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19125:17:0;;19103:39;;19153:154;19160:10;;19153:154;;19187:11;19197:1;19187:11;;:::i;:::-;;-1:-1:-1;19256:10:0;19264:2;19256:5;:10;:::i;:::-;19243:24;;:2;:24;:::i;:::-;19230:39;;19213:6;19220;19213:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19213:56:0;;;;;;;;-1:-1:-1;19284:11:0;19293:2;19284:11;;:::i;:::-;;;19153:154;;36617:716;37041:23;37067:69;37095:4;37067:69;;;;;;;;;;;;;;;;;37075:5;-1:-1:-1;;;;;37067:27:0;;;:69;;;;;:::i;:::-;37151:17;;37041:95;;-1:-1:-1;37151:21:0;37147:179;;37248:10;37237:30;;;;;;;;;;;;:::i;:::-;37229:85;;;;-1:-1:-1;;;37229:85:0;;25551:2:1;37229:85:0;;;25533:21:1;25590:2;25570:18;;;25563:30;25629:34;25609:18;;;25602:62;-1:-1:-1;;;25680:18:1;;;25673:40;25730:19;;37229:85:0;25349:406:1;3551:296:0;3634:7;3677:4;3634:7;3692:118;3716:5;:12;3712:1;:16;3692:118;;;3765:33;3775:12;3789:5;3795:1;3789:8;;;;;;;;:::i;:::-;;;;;;;3765:9;:33::i;:::-;3750:48;-1:-1:-1;3730:3:0;;;;:::i;:::-;;;;3692:118;;;-1:-1:-1;3827:12:0;3551:296;-1:-1:-1;;;3551:296:0:o;62186:110::-;62262:26;62272:2;62276:7;62262:26;;;;;;;;;;;;:9;:26::i;66767:853::-;66921:4;-1:-1:-1;;;;;66942:13:0;;25811:19;:23;66938:675;;66978:71;;-1:-1:-1;;;66978:71:0;;-1:-1:-1;;;;;66978:36:0;;;;;:71;;21449:10;;67029:4;;67035:7;;67044:4;;66978:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66978:71:0;;;;;;;;-1:-1:-1;;66978:71:0;;;;;;;;;;;;:::i;:::-;;;66974:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67219:6;:13;67236:1;67219:18;67215:328;;67262:60;;-1:-1:-1;;;67262:60:0;;;;;;;:::i;67215:328::-;67493:6;67487:13;67478:6;67474:2;67470:15;67463:38;66974:584;-1:-1:-1;;;;;;67100:51:0;-1:-1:-1;;;67100:51:0;;-1:-1:-1;67093:58:0;;66938:675;-1:-1:-1;67597:4:0;66767:853;;;;;;:::o;28261:229::-;28398:12;28430:52;28452:6;28460:4;28466:1;28469:12;28430:21;:52::i;9758:149::-;9821:7;9852:1;9848;:5;:51;;9983:13;10077:15;;;10113:4;10106:15;;;10160:4;10144:21;;9848:51;;;-1:-1:-1;9983:13:0;10077:15;;;10113:4;10106:15;10160:4;10144:21;;;9758:149::o;62523:319::-;62652:18;62658:2;62662:7;62652:5;:18::i;:::-;62703:53;62734:1;62738:2;62742:7;62751:4;62703:22;:53::i;:::-;62681:153;;;;-1:-1:-1;;;62681:153:0;;;;;;;:::i;29381:510::-;29551:12;29609:5;29584:21;:30;;29576:81;;;;-1:-1:-1;;;29576:81:0;;26710:2:1;29576:81:0;;;26692:21:1;26749:2;26729:18;;;26722:30;26788:34;26768:18;;;26761:62;-1:-1:-1;;;26839:18:1;;;26832:36;26885:19;;29576:81:0;26508:402:1;29576:81:0;-1:-1:-1;;;;;25811:19:0;;;29668:60;;;;-1:-1:-1;;;29668:60:0;;27117:2:1;29668:60:0;;;27099:21:1;27156:2;27136:18;;;27129:30;27195:31;27175:18;;;27168:59;27244:18;;29668:60:0;26915:353:1;29668:60:0;29742:12;29756:23;29783:6;-1:-1:-1;;;;;29783:11:0;29802:5;29809:4;29783:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29741:73;;;;29832:51;29849:7;29858:10;29870:12;29832:16;:51::i;:::-;29825:58;29381:510;-1:-1:-1;;;;;;;29381:510:0:o;63178:439::-;-1:-1:-1;;;;;63258:16:0;;63250:61;;;;-1:-1:-1;;;63250:61:0;;27767:2:1;63250:61:0;;;27749:21:1;;;27786:18;;;27779:30;27845:34;27825:18;;;27818:62;27897:18;;63250:61:0;27565:356:1;63250:61:0;61351:4;61375:16;;;:7;:16;;;;;;-1:-1:-1;;;;;61375:16:0;:30;63322:58;;;;-1:-1:-1;;;63322:58:0;;28128:2:1;63322:58:0;;;28110:21:1;28167:2;28147:18;;;28140:30;28206;28186:18;;;28179:58;28254:18;;63322:58:0;27926:352:1;63322:58:0;-1:-1:-1;;;;;63451:13:0;;;;;;:9;:13;;;;;:18;;63468:1;;63451:13;:18;;63468:1;;63451:18;:::i;:::-;;;;-1:-1:-1;;63480:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;63480:21:0;-1:-1:-1;;;;;63480:21:0;;;;;;;;63519:33;;63480:16;;;63519:33;;63480:16;;63519:33;70564:23:::1;70487:108:::0;:::o;32067:762::-;32217:12;32246:7;32242:580;;;-1:-1:-1;32277:10:0;32270:17;;32242:580;32391:17;;:21;32387:424;;32639:10;32633:17;32700:15;32687:10;32683:2;32679:19;32672:44;32387:424;32782:12;32775:20;;-1:-1:-1;;;32775:20:0;;;;;;;;:::i;293:131:1:-;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:250::-;956:1;966:113;980:6;977:1;974:13;966:113;;;1056:11;;;1050:18;1037:11;;;1030:39;1002:2;995:10;966:113;;;-1:-1:-1;;1113:1:1;1095:16;;1088:27;871:250::o;1126:271::-;1168:3;1206:5;1200:12;1233:6;1228:3;1221:19;1249:76;1318:6;1311:4;1306:3;1302:14;1295:4;1288:5;1284:16;1249:76;:::i;:::-;1379:2;1358:15;-1:-1:-1;;1354:29:1;1345:39;;;;1386:4;1341:50;;1126:271;-1:-1:-1;;1126:271:1:o;1402:220::-;1551:2;1540:9;1533:21;1514:4;1571:45;1612:2;1601:9;1597:18;1589:6;1571:45;:::i;1627:180::-;1686:6;1739:2;1727:9;1718:7;1714:23;1710:32;1707:52;;;1755:1;1752;1745:12;1707:52;-1:-1:-1;1778:23:1;;1627:180;-1:-1:-1;1627:180:1:o;2020:131::-;-1:-1:-1;;;;;2095:31:1;;2085:42;;2075:70;;2141:1;2138;2131:12;2156:315;2224:6;2232;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2340:9;2327:23;2359:31;2384:5;2359:31;:::i;:::-;2409:5;2461:2;2446:18;;;;2433:32;;-1:-1:-1;;;2156:315:1:o;2658:255::-;2725:6;2778:2;2766:9;2757:7;2753:23;2749:32;2746:52;;;2794:1;2791;2784:12;2746:52;2833:9;2820:23;2852:31;2877:5;2852:31;:::i;2918:456::-;2995:6;3003;3011;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3119:9;3106:23;3138:31;3163:5;3138:31;:::i;:::-;3188:5;-1:-1:-1;3245:2:1;3230:18;;3217:32;3258:33;3217:32;3258:33;:::i;:::-;2918:456;;3310:7;;-1:-1:-1;;;3364:2:1;3349:18;;;;3336:32;;2918:456::o;3379:402::-;3461:6;3469;3522:2;3510:9;3501:7;3497:23;3493:32;3490:52;;;3538:1;3535;3528:12;3490:52;3577:9;3564:23;3596:31;3621:5;3596:31;:::i;:::-;3646:5;-1:-1:-1;3703:2:1;3688:18;;3675:32;3716:33;3675:32;3716:33;:::i;:::-;3768:7;3758:17;;;3379:402;;;;;:::o;3786:127::-;3847:10;3842:3;3838:20;3835:1;3828:31;3878:4;3875:1;3868:15;3902:4;3899:1;3892:15;3918:632;3983:5;4013:18;4054:2;4046:6;4043:14;4040:40;;;4060:18;;:::i;:::-;4135:2;4129:9;4103:2;4189:15;;-1:-1:-1;;4185:24:1;;;4211:2;4181:33;4177:42;4165:55;;;4235:18;;;4255:22;;;4232:46;4229:72;;;4281:18;;:::i;:::-;4321:10;4317:2;4310:22;4350:6;4341:15;;4380:6;4372;4365:22;4420:3;4411:6;4406:3;4402:16;4399:25;4396:45;;;4437:1;4434;4427:12;4396:45;4487:6;4482:3;4475:4;4467:6;4463:17;4450:44;4542:1;4535:4;4526:6;4518;4514:19;4510:30;4503:41;;;;3918:632;;;;;:::o;4555:451::-;4624:6;4677:2;4665:9;4656:7;4652:23;4648:32;4645:52;;;4693:1;4690;4683:12;4645:52;4733:9;4720:23;4766:18;4758:6;4755:30;4752:50;;;4798:1;4795;4788:12;4752:50;4821:22;;4874:4;4866:13;;4862:27;-1:-1:-1;4852:55:1;;4903:1;4900;4893:12;4852:55;4926:74;4992:7;4987:2;4974:16;4969:2;4965;4961:11;4926:74;:::i;5448:818::-;5552:6;5560;5568;5576;5629:2;5617:9;5608:7;5604:23;5600:32;5597:52;;;5645:1;5642;5635:12;5597:52;5684:9;5671:23;5703:31;5728:5;5703:31;:::i;:::-;5753:5;-1:-1:-1;5805:2:1;5790:18;;5777:32;;-1:-1:-1;5860:2:1;5845:18;;5832:32;5883:18;5913:14;;;5910:34;;;5940:1;5937;5930:12;5910:34;5978:6;5967:9;5963:22;5953:32;;6023:7;6016:4;6012:2;6008:13;6004:27;5994:55;;6045:1;6042;6035:12;5994:55;6085:2;6072:16;6111:2;6103:6;6100:14;6097:34;;;6127:1;6124;6117:12;6097:34;6180:7;6175:2;6165:6;6162:1;6158:14;6154:2;6150:23;6146:32;6143:45;6140:65;;;6201:1;6198;6191:12;6140:65;5448:818;;;;-1:-1:-1;;6232:2:1;6224:11;;-1:-1:-1;;;5448:818:1:o;6271:118::-;6357:5;6350:13;6343:21;6336:5;6333:32;6323:60;;6379:1;6376;6369:12;6394:382;6459:6;6467;6520:2;6508:9;6499:7;6495:23;6491:32;6488:52;;;6536:1;6533;6526:12;6488:52;6575:9;6562:23;6594:31;6619:5;6594:31;:::i;:::-;6644:5;-1:-1:-1;6701:2:1;6686:18;;6673:32;6714:30;6673:32;6714:30;:::i;6781:795::-;6876:6;6884;6892;6900;6953:3;6941:9;6932:7;6928:23;6924:33;6921:53;;;6970:1;6967;6960:12;6921:53;7009:9;6996:23;7028:31;7053:5;7028:31;:::i;:::-;7078:5;-1:-1:-1;7135:2:1;7120:18;;7107:32;7148:33;7107:32;7148:33;:::i;:::-;7200:7;-1:-1:-1;7254:2:1;7239:18;;7226:32;;-1:-1:-1;7309:2:1;7294:18;;7281:32;7336:18;7325:30;;7322:50;;;7368:1;7365;7358:12;7322:50;7391:22;;7444:4;7436:13;;7432:27;-1:-1:-1;7422:55:1;;7473:1;7470;7463:12;7422:55;7496:74;7562:7;7557:2;7544:16;7539:2;7535;7531:11;7496:74;:::i;:::-;7486:84;;;6781:795;;;;;;;:::o;8422:380::-;8501:1;8497:12;;;;8544;;;8565:61;;8619:4;8611:6;8607:17;8597:27;;8565:61;8672:2;8664:6;8661:14;8641:18;8638:38;8635:161;;8718:10;8713:3;8709:20;8706:1;8699:31;8753:4;8750:1;8743:15;8781:4;8778:1;8771:15;8635:161;;8422:380;;;:::o;9640:402::-;9842:2;9824:21;;;9881:2;9861:18;;;9854:30;9920:34;9915:2;9900:18;;9893:62;-1:-1:-1;;;9986:2:1;9971:18;;9964:36;10032:3;10017:19;;9640:402::o;10047:407::-;10249:2;10231:21;;;10288:2;10268:18;;;10261:30;10327:34;10322:2;10307:18;;10300:62;-1:-1:-1;;;10393:2:1;10378:18;;10371:41;10444:3;10429:19;;10047:407::o;10459:127::-;10520:10;10515:3;10511:20;10508:1;10501:31;10551:4;10548:1;10541:15;10575:4;10572:1;10565:15;10591:125;10656:9;;;10677:10;;;10674:36;;;10690:18;;:::i;11008:410::-;11210:2;11192:21;;;11249:2;11229:18;;;11222:30;11288:34;11283:2;11268:18;;11261:62;-1:-1:-1;;;11354:2:1;11339:18;;11332:44;11408:3;11393:19;;11008:410::o;11549:545::-;11651:2;11646:3;11643:11;11640:448;;;11687:1;11712:5;11708:2;11701:17;11757:4;11753:2;11743:19;11827:2;11815:10;11811:19;11808:1;11804:27;11798:4;11794:38;11863:4;11851:10;11848:20;11845:47;;;-1:-1:-1;11886:4:1;11845:47;11941:2;11936:3;11932:12;11929:1;11925:20;11919:4;11915:31;11905:41;;11996:82;12014:2;12007:5;12004:13;11996:82;;;12059:17;;;12040:1;12029:13;11996:82;;;12000:3;;;11549:545;;;:::o;12270:1352::-;12396:3;12390:10;12423:18;12415:6;12412:30;12409:56;;;12445:18;;:::i;:::-;12474:97;12564:6;12524:38;12556:4;12550:11;12524:38;:::i;:::-;12518:4;12474:97;:::i;:::-;12626:4;;12690:2;12679:14;;12707:1;12702:663;;;;13409:1;13426:6;13423:89;;;-1:-1:-1;13478:19:1;;;13472:26;13423:89;-1:-1:-1;;12227:1:1;12223:11;;;12219:24;12215:29;12205:40;12251:1;12247:11;;;12202:57;13525:81;;12672:944;;12702:663;11496:1;11489:14;;;11533:4;11520:18;;-1:-1:-1;;12738:20:1;;;12856:236;12870:7;12867:1;12864:14;12856:236;;;12959:19;;;12953:26;12938:42;;13051:27;;;;13019:1;13007:14;;;;12886:19;;12856:236;;;12860:3;13120:6;13111:7;13108:19;13105:201;;;13181:19;;;13175:26;-1:-1:-1;;13264:1:1;13260:14;;;13276:3;13256:24;13252:37;13248:42;13233:58;13218:74;;13105:201;-1:-1:-1;;;;;13352:1:1;13336:14;;;13332:22;13319:36;;-1:-1:-1;12270:1352:1:o;14390:127::-;14451:10;14446:3;14442:20;14439:1;14432:31;14482:4;14479:1;14472:15;14506:4;14503:1;14496:15;14756:342;14958:2;14940:21;;;14997:2;14977:18;;;14970:30;-1:-1:-1;;;15031:2:1;15016:18;;15009:48;15089:2;15074:18;;14756:342::o;16172:406::-;16374:2;16356:21;;;16413:2;16393:18;;;16386:30;16452:34;16447:2;16432:18;;16425:62;-1:-1:-1;;;16518:2:1;16503:18;;16496:40;16568:3;16553:19;;16172:406::o;16944:168::-;17017:9;;;17048;;17065:15;;;17059:22;;17045:37;17035:71;;17086:18;;:::i;17117:399::-;17319:2;17301:21;;;17358:2;17338:18;;;17331:30;17397:34;17392:2;17377:18;;17370:62;-1:-1:-1;;;17463:2:1;17448:18;;17441:33;17506:3;17491:19;;17117:399::o;17521:135::-;17560:3;17581:17;;;17578:43;;17601:18;;:::i;:::-;-1:-1:-1;17648:1:1;17637:13;;17521:135::o;18734:184::-;18804:6;18857:2;18845:9;18836:7;18832:23;18828:32;18825:52;;;18873:1;18870;18863:12;18825:52;-1:-1:-1;18896:16:1;;18734:184;-1:-1:-1;18734:184:1:o;19339:1256::-;19563:3;19601:6;19595:13;19627:4;19640:64;19697:6;19692:3;19687:2;19679:6;19675:15;19640:64;:::i;:::-;19767:13;;19726:16;;;;19789:68;19767:13;19726:16;19824:15;;;19789:68;:::i;:::-;19946:13;;19879:20;;;19919:1;;19984:36;19946:13;19984:36;:::i;:::-;20039:1;20056:18;;;20083:141;;;;20238:1;20233:337;;;;20049:521;;20083:141;-1:-1:-1;;20118:24:1;;20104:39;;20195:16;;20188:24;20174:39;;20163:51;;;-1:-1:-1;20083:141:1;;20233:337;20264:6;20261:1;20254:17;20312:2;20309:1;20299:16;20337:1;20351:169;20365:8;20362:1;20359:15;20351:169;;;20447:14;;20432:13;;;20425:37;20490:16;;;;20382:10;;20351:169;;;20355:3;;20551:8;20544:5;20540:20;20533:27;;20049:521;-1:-1:-1;20586:3:1;;19339:1256;-1:-1:-1;;;;;;;;;;19339:1256:1:o;20600:280::-;20699:6;20752:2;20740:9;20731:7;20727:23;20723:32;20720:52;;;20768:1;20765;20758:12;20720:52;20800:9;20794:16;20819:31;20844:5;20819:31;:::i;23098:128::-;23165:9;;;23186:11;;;23183:37;;;23200:18;;:::i;24306:127::-;24367:10;24362:3;24358:20;24355:1;24348:31;24398:4;24395:1;24388:15;24422:4;24419:1;24412:15;24438:120;24478:1;24504;24494:35;;24509:18;;:::i;:::-;-1:-1:-1;24543:9:1;;24438:120::o;24563:414::-;24765:2;24747:21;;;24804:2;24784:18;;;24777:30;24843:34;24838:2;24823:18;;24816:62;-1:-1:-1;;;24909:2:1;24894:18;;24887:48;24967:3;24952:19;;24563:414::o;24982:112::-;25014:1;25040;25030:35;;25045:18;;:::i;:::-;-1:-1:-1;25079:9:1;;24982:112::o;25099:245::-;25166:6;25219:2;25207:9;25198:7;25194:23;25190:32;25187:52;;;25235:1;25232;25225:12;25187:52;25267:9;25261:16;25286:28;25308:5;25286:28;:::i;25760:489::-;-1:-1:-1;;;;;26029:15:1;;;26011:34;;26081:15;;26076:2;26061:18;;26054:43;26128:2;26113:18;;26106:34;;;26176:3;26171:2;26156:18;;26149:31;;;25954:4;;26197:46;;26223:19;;26215:6;26197:46;:::i;:::-;26189:54;25760:489;-1:-1:-1;;;;;;25760:489:1:o;26254:249::-;26323:6;26376:2;26364:9;26355:7;26351:23;26347:32;26344:52;;;26392:1;26389;26382:12;26344:52;26424:9;26418:16;26443:30;26467:5;26443:30;:::i;27273:287::-;27402:3;27440:6;27434:13;27456:66;27515:6;27510:3;27503:4;27495:6;27491:17;27456:66;:::i;:::-;27538:16;;;;;27273:287;-1:-1:-1;;27273:287:1:o
Swarm Source
ipfs://ce68cef3b8c7fe19027a1f231e5fca62805eb34808beb5466a85782822de9399
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.