Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
BredStrain
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "./AdminManager.sol"; contract BredStrain is Initializable, ERC721Upgradeable, PausableUpgradeable, ReentrancyGuardUpgradeable, AdminManagerUpgradable { event Breed( uint256 indexed strainId, uint256 indexed seedId, uint32 size, uint32 thc, uint32 terpenes ); using Counters for Counters.Counter; struct CoreTraits { uint32 size; uint32 thc; uint32 terpenes; uint32 deathTime; } Counters.Counter private _idCounter; uint256 public bredSupply; string private _uri; mapping(uint256 => CoreTraits) private _coreTraits; function initialize(string memory uri) public initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained("WEEDGANG.GAME - BRED STRAIN", "WG-BS"); __Pausable_init_unchained(); __ReentrancyGuard_init(); __AdminManager_init(); _uri = uri; } function breedMint( address account, uint256 seedId, CoreTraits memory traits ) external onlyAdmin whenNotPaused { _idCounter.increment(); uint256 id = _idCounter.current(); _coreTraits[id] = traits; _safeMint(account, id); bredSupply++; emit Breed(id, seedId, traits.size, traits.thc, traits.terpenes); } function pause() external onlyAdmin { _pause(); } function unpause() external onlyAdmin { _unpause(); } function setUri(string memory uri) external onlyAdmin { _uri = uri; } function coreTraits(uint256 id) external view returns (CoreTraits memory) { return _coreTraits[id]; } function burn(uint256 id) external onlyAdmin whenNotPaused { _burn(id); bredSupply--; } function _baseURI() internal view override returns (string memory) { return _uri; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees 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. */ 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 Returns the rebuilt hash obtained by traversing a Merklee 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++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable 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. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _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: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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 IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ReentrancyGuardUpgradeable is Initializable { // 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; function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { _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; } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; }
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; // Should not be Initializable contract AdminManagerUpgradable is Initializable { mapping(address => bool) private _admins; function __AdminManager_init() internal onlyInitializing { _admins[msg.sender] = true; } function setAdminPermissions(address account, bool enable) external onlyAdmin { _admins[account] = enable; } modifier onlyAdmin() { require(_admins[msg.sender], "Not an admin"); _; } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { __Context_init_unchained(); } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"uint256","name":"strainId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"seedId","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"size","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"thc","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"terpenes","type":"uint32"}],"name":"Breed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bredSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"seedId","type":"uint256"},{"components":[{"internalType":"uint32","name":"size","type":"uint32"},{"internalType":"uint32","name":"thc","type":"uint32"},{"internalType":"uint32","name":"terpenes","type":"uint32"},{"internalType":"uint32","name":"deathTime","type":"uint32"}],"internalType":"struct BredStrain.CoreTraits","name":"traits","type":"tuple"}],"name":"breedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"coreTraits","outputs":[{"components":[{"internalType":"uint32","name":"size","type":"uint32"},{"internalType":"uint32","name":"thc","type":"uint32"},{"internalType":"uint32","name":"terpenes","type":"uint32"},{"internalType":"uint32","name":"deathTime","type":"uint32"}],"internalType":"struct BredStrain.CoreTraits","name":"","type":"tuple"}],"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":"string","name":"uri","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"setAdminPermissions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50611f3d806100206000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80636352211e116100c3578063a22cb4651161007c578063a22cb465146102a2578063b88d4fde146102b5578063c87b56dd146102c8578063e985e9c5146102db578063f62d188814610317578063fd5d21f81461032a57600080fd5b80636352211e1461024157806370a08231146102545780637c634197146102755780638456cb591461027f57806395d89b41146102875780639b642de11461028f57600080fd5b8063240ff27f11610115578063240ff27f146101e25780633f4ba83a146101f557806342842e0e146101fd57806342966c681461021057806349f75c31146102235780635c975abb1461023657600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba57806323b872dd146101cf575b600080fd5b610165610160366004611b3d565b6103f6565b60405190151581526020015b60405180910390f35b610182610448565b6040516101719190611c6b565b6101a261019d366004611bbb565b6104da565b6040516001600160a01b039091168152602001610171565b6101cd6101c8366004611a67565b610574565b005b6101cd6101dd366004611979565b61068a565b6101cd6101f0366004611a2d565b6106bb565b6101cd610715565b6101cd61020b366004611979565b61074e565b6101cd61021e366004611bbb565b610769565b6101cd610231366004611a90565b6107dd565b60975460ff16610165565b6101a261024f366004611bbb565b610958565b61026761026236600461192d565b6109cf565b604051908152602001610171565b61026761012e5481565b6101cd610a56565b610182610a8d565b6101cd61029d366004611b75565b610a9c565b6101cd6102b0366004611a2d565b610ae3565b6101cd6102c33660046119b4565b610aee565b6101826102d6366004611bbb565b610b26565b6101656102e9366004611947565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b6101cd610325366004611b75565b610c01565b6103b6610338366004611bbb565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815261013060209081526040918290208251608081018452905463ffffffff80821683526401000000008204811693830193909352600160401b8104831693820193909352600160601b90920416606082015290565b6040516101719190815163ffffffff9081168252602080840151821690830152604080840151821690830152606092830151169181019190915260800190565b60006001600160e01b031982166380ac58cd60e01b148061042757506001600160e01b03198216635b5e139f60e01b145b8061044257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606065805461045790611e42565b80601f016020809104026020016040519081016040528092919081815260200182805461048390611e42565b80156104d05780601f106104a5576101008083540402835291602001916104d0565b820191906000526020600020905b8154815290600101906020018083116104b357829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b03166105585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b600061057f82610958565b9050806001600160a01b0316836001600160a01b031614156105ed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161054f565b336001600160a01b0382161480610609575061060981336102e9565b61067b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161054f565b6106858383610d53565b505050565b6106943382610dc1565b6106b05760405162461bcd60e51b815260040161054f90611d20565b610685838383610eb8565b33600090815260fb602052604090205460ff166106ea5760405162461bcd60e51b815260040161054f90611cd0565b6001600160a01b0391909116600090815260fb60205260409020805460ff1916911515919091179055565b33600090815260fb602052604090205460ff166107445760405162461bcd60e51b815260040161054f90611cd0565b61074c611058565b565b61068583838360405180602001604052806000815250610aee565b33600090815260fb602052604090205460ff166107985760405162461bcd60e51b815260040161054f90611cd0565b60975460ff16156107bb5760405162461bcd60e51b815260040161054f90611cf6565b6107c4816110eb565b61012e80549060006107d583611e2b565b919050555050565b33600090815260fb602052604090205460ff1661080c5760405162461bcd60e51b815260040161054f90611cd0565b60975460ff161561082f5760405162461bcd60e51b815260040161054f90611cf6565b61083e61012d80546001019055565b600061084a61012d5490565b60008181526101306020908152604091829020855181549287015193870151606088015163ffffffff908116600160601b0263ffffffff60601b19928216600160401b02929092166fffffffffffffffff0000000000000000199682166401000000000267ffffffffffffffff19909616919093161793909317939093169290921717905590506108db8482611186565b61012e80549060006108ec83611e7d565b9091555050815160208301516040808501519051869385937f9e01f195a29b477b4651f2dce2dd5b1cfbe6bdfcd99bcfdd1447c3f981c8f5f69361094a9363ffffffff93841681529183166020830152909116604082015260600190565b60405180910390a350505050565b6000818152606760205260408120546001600160a01b0316806104425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161054f565b60006001600160a01b038216610a3a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161054f565b506001600160a01b031660009081526068602052604090205490565b33600090815260fb602052604090205460ff16610a855760405162461bcd60e51b815260040161054f90611cd0565b61074c6111a0565b60606066805461045790611e42565b33600090815260fb602052604090205460ff16610acb5760405162461bcd60e51b815260040161054f90611cd0565b8051610adf9061012f9060208401906117ee565b5050565b610adf3383836111f8565b610af83383610dc1565b610b145760405162461bcd60e51b815260040161054f90611d20565b610b20848484846112c7565b50505050565b6000818152606760205260409020546060906001600160a01b0316610ba55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161054f565b6000610baf6112fa565b90506000815111610bcf5760405180602001604052806000815250610bfa565b80610bd98461130a565b604051602001610bea929190611bff565b6040516020818303038152906040525b9392505050565b600054610100900460ff16610c1c5760005460ff1615610c20565b303b155b610c835760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840161054f565b600054610100900460ff16158015610ca5576000805461ffff19166101011790555b610cad611424565b610cb5611424565b610d116040518060400160405280601b81526020017f5745454447414e472e47414d45202d20425245442053545241494e00000000008152506040518060400160405280600581526020016457472d425360d81b81525061144b565b610d19611499565b610d216114cc565b610d296114fb565b8151610d3d9061012f9060208501906117ee565b508015610adf576000805461ff00191690555050565b600081815260696020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d8882610958565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152606760205260408120546001600160a01b0316610e3a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161054f565b6000610e4583610958565b9050806001600160a01b0316846001600160a01b03161480610e805750836001600160a01b0316610e75846104da565b6001600160a01b0316145b80610eb057506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ecb82610958565b6001600160a01b031614610f335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161054f565b6001600160a01b038216610f955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161054f565b610fa0600082610d53565b6001600160a01b0383166000908152606860205260408120805460019290610fc9908490611de8565b90915550506001600160a01b0382166000908152606860205260408120805460019290610ff7908490611dbc565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60975460ff166110a15760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161054f565b6097805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006110f682610958565b9050611103600083610d53565b6001600160a01b038116600090815260686020526040812080546001929061112c908490611de8565b909155505060008281526067602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610adf82826040518060200160405280600081525061153e565b60975460ff16156111c35760405162461bcd60e51b815260040161054f90611cf6565b6097805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110ce3390565b816001600160a01b0316836001600160a01b0316141561125a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161054f565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112d2848484610eb8565b6112de84848484611571565b610b205760405162461bcd60e51b815260040161054f90611c7e565b606061012f805461045790611e42565b60608161132e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611358578061134281611e7d565b91506113519050600a83611dd4565b9150611332565b60008167ffffffffffffffff81111561138157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113ab576020820181803683370190505b5090505b8415610eb0576113c0600183611de8565b91506113cd600a86611e98565b6113d8906030611dbc565b60f81b8183815181106113fb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061141d600a86611dd4565b94506113af565b600054610100900460ff1661074c5760405162461bcd60e51b815260040161054f90611d71565b600054610100900460ff166114725760405162461bcd60e51b815260040161054f90611d71565b81516114859060659060208501906117ee565b5080516106859060669060208401906117ee565b600054610100900460ff166114c05760405162461bcd60e51b815260040161054f90611d71565b6097805460ff19169055565b600054610100900460ff166114f35760405162461bcd60e51b815260040161054f90611d71565b61074c61167e565b600054610100900460ff166115225760405162461bcd60e51b815260040161054f90611d71565b33600090815260fb60205260409020805460ff19166001179055565b61154883836116ac565b6115556000848484611571565b6106855760405162461bcd60e51b815260040161054f90611c7e565b60006001600160a01b0384163b1561167357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115b5903390899088908890600401611c2e565b602060405180830381600087803b1580156115cf57600080fd5b505af19250505080156115ff575060408051601f3d908101601f191682019092526115fc91810190611b59565b60015b611659573d80801561162d576040519150601f19603f3d011682016040523d82523d6000602084013e611632565b606091505b5080516116515760405162461bcd60e51b815260040161054f90611c7e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610eb0565b506001949350505050565b600054610100900460ff166116a55760405162461bcd60e51b815260040161054f90611d71565b600160c955565b6001600160a01b0382166117025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161054f565b6000818152606760205260409020546001600160a01b0316156117675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161054f565b6001600160a01b0382166000908152606860205260408120805460019290611790908490611dbc565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546117fa90611e42565b90600052602060002090601f01602090048101928261181c5760008555611862565b82601f1061183557805160ff1916838001178555611862565b82800160010185558215611862579182015b82811115611862578251825591602001919060010190611847565b5061186e929150611872565b5090565b5b8082111561186e5760008155600101611873565b600067ffffffffffffffff808411156118a2576118a2611ed8565b604051601f8501601f19908116603f011681019082821181831017156118ca576118ca611ed8565b816040528093508581528686860111156118e357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461191457600080fd5b919050565b803563ffffffff8116811461191457600080fd5b60006020828403121561193e578081fd5b610bfa826118fd565b60008060408385031215611959578081fd5b611962836118fd565b9150611970602084016118fd565b90509250929050565b60008060006060848603121561198d578081fd5b611996846118fd565b92506119a4602085016118fd565b9150604084013590509250925092565b600080600080608085870312156119c9578081fd5b6119d2856118fd565b93506119e0602086016118fd565b925060408501359150606085013567ffffffffffffffff811115611a02578182fd5b8501601f81018713611a12578182fd5b611a2187823560208401611887565b91505092959194509250565b60008060408385031215611a3f578182fd5b611a48836118fd565b915060208301358015158114611a5c578182fd5b809150509250929050565b60008060408385031215611a79578182fd5b611a82836118fd565b946020939093013593505050565b600080600083850360c0811215611aa5578384fd5b611aae856118fd565b9350602085013592506080603f1982011215611ac8578182fd5b506040516080810181811067ffffffffffffffff82111715611aec57611aec611ed8565b8060405250611afd60408601611919565b8152611b0b60608601611919565b6020820152611b1c60808601611919565b6040820152611b2d60a08601611919565b6060820152809150509250925092565b600060208284031215611b4e578081fd5b8135610bfa81611eee565b600060208284031215611b6a578081fd5b8151610bfa81611eee565b600060208284031215611b86578081fd5b813567ffffffffffffffff811115611b9c578182fd5b8201601f81018413611bac578182fd5b610eb084823560208401611887565b600060208284031215611bcc578081fd5b5035919050565b60008151808452611beb816020860160208601611dff565b601f01601f19169290920160200192915050565b60008351611c11818460208801611dff565b835190830190611c25818360208801611dff565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c6190830184611bd3565b9695505050505050565b602081526000610bfa6020830184611bd3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600c908201526b2737ba1030b71030b236b4b760a11b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008219821115611dcf57611dcf611eac565b500190565b600082611de357611de3611ec2565b500490565b600082821015611dfa57611dfa611eac565b500390565b60005b83811015611e1a578181015183820152602001611e02565b83811115610b205750506000910152565b600081611e3a57611e3a611eac565b506000190190565b600181811c90821680611e5657607f821691505b60208210811415611e7757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e9157611e91611eac565b5060010190565b600082611ea757611ea7611ec2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611f0457600080fd5b5056fea26469706673582212201824df27d413159c9a987d439e702436c9fedc50421f716d89ae31184abe35b264736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80636352211e116100c3578063a22cb4651161007c578063a22cb465146102a2578063b88d4fde146102b5578063c87b56dd146102c8578063e985e9c5146102db578063f62d188814610317578063fd5d21f81461032a57600080fd5b80636352211e1461024157806370a08231146102545780637c634197146102755780638456cb591461027f57806395d89b41146102875780639b642de11461028f57600080fd5b8063240ff27f11610115578063240ff27f146101e25780633f4ba83a146101f557806342842e0e146101fd57806342966c681461021057806349f75c31146102235780635c975abb1461023657600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba57806323b872dd146101cf575b600080fd5b610165610160366004611b3d565b6103f6565b60405190151581526020015b60405180910390f35b610182610448565b6040516101719190611c6b565b6101a261019d366004611bbb565b6104da565b6040516001600160a01b039091168152602001610171565b6101cd6101c8366004611a67565b610574565b005b6101cd6101dd366004611979565b61068a565b6101cd6101f0366004611a2d565b6106bb565b6101cd610715565b6101cd61020b366004611979565b61074e565b6101cd61021e366004611bbb565b610769565b6101cd610231366004611a90565b6107dd565b60975460ff16610165565b6101a261024f366004611bbb565b610958565b61026761026236600461192d565b6109cf565b604051908152602001610171565b61026761012e5481565b6101cd610a56565b610182610a8d565b6101cd61029d366004611b75565b610a9c565b6101cd6102b0366004611a2d565b610ae3565b6101cd6102c33660046119b4565b610aee565b6101826102d6366004611bbb565b610b26565b6101656102e9366004611947565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b6101cd610325366004611b75565b610c01565b6103b6610338366004611bbb565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815261013060209081526040918290208251608081018452905463ffffffff80821683526401000000008204811693830193909352600160401b8104831693820193909352600160601b90920416606082015290565b6040516101719190815163ffffffff9081168252602080840151821690830152604080840151821690830152606092830151169181019190915260800190565b60006001600160e01b031982166380ac58cd60e01b148061042757506001600160e01b03198216635b5e139f60e01b145b8061044257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606065805461045790611e42565b80601f016020809104026020016040519081016040528092919081815260200182805461048390611e42565b80156104d05780601f106104a5576101008083540402835291602001916104d0565b820191906000526020600020905b8154815290600101906020018083116104b357829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b03166105585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b600061057f82610958565b9050806001600160a01b0316836001600160a01b031614156105ed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161054f565b336001600160a01b0382161480610609575061060981336102e9565b61067b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161054f565b6106858383610d53565b505050565b6106943382610dc1565b6106b05760405162461bcd60e51b815260040161054f90611d20565b610685838383610eb8565b33600090815260fb602052604090205460ff166106ea5760405162461bcd60e51b815260040161054f90611cd0565b6001600160a01b0391909116600090815260fb60205260409020805460ff1916911515919091179055565b33600090815260fb602052604090205460ff166107445760405162461bcd60e51b815260040161054f90611cd0565b61074c611058565b565b61068583838360405180602001604052806000815250610aee565b33600090815260fb602052604090205460ff166107985760405162461bcd60e51b815260040161054f90611cd0565b60975460ff16156107bb5760405162461bcd60e51b815260040161054f90611cf6565b6107c4816110eb565b61012e80549060006107d583611e2b565b919050555050565b33600090815260fb602052604090205460ff1661080c5760405162461bcd60e51b815260040161054f90611cd0565b60975460ff161561082f5760405162461bcd60e51b815260040161054f90611cf6565b61083e61012d80546001019055565b600061084a61012d5490565b60008181526101306020908152604091829020855181549287015193870151606088015163ffffffff908116600160601b0263ffffffff60601b19928216600160401b02929092166fffffffffffffffff0000000000000000199682166401000000000267ffffffffffffffff19909616919093161793909317939093169290921717905590506108db8482611186565b61012e80549060006108ec83611e7d565b9091555050815160208301516040808501519051869385937f9e01f195a29b477b4651f2dce2dd5b1cfbe6bdfcd99bcfdd1447c3f981c8f5f69361094a9363ffffffff93841681529183166020830152909116604082015260600190565b60405180910390a350505050565b6000818152606760205260408120546001600160a01b0316806104425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161054f565b60006001600160a01b038216610a3a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161054f565b506001600160a01b031660009081526068602052604090205490565b33600090815260fb602052604090205460ff16610a855760405162461bcd60e51b815260040161054f90611cd0565b61074c6111a0565b60606066805461045790611e42565b33600090815260fb602052604090205460ff16610acb5760405162461bcd60e51b815260040161054f90611cd0565b8051610adf9061012f9060208401906117ee565b5050565b610adf3383836111f8565b610af83383610dc1565b610b145760405162461bcd60e51b815260040161054f90611d20565b610b20848484846112c7565b50505050565b6000818152606760205260409020546060906001600160a01b0316610ba55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161054f565b6000610baf6112fa565b90506000815111610bcf5760405180602001604052806000815250610bfa565b80610bd98461130a565b604051602001610bea929190611bff565b6040516020818303038152906040525b9392505050565b600054610100900460ff16610c1c5760005460ff1615610c20565b303b155b610c835760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840161054f565b600054610100900460ff16158015610ca5576000805461ffff19166101011790555b610cad611424565b610cb5611424565b610d116040518060400160405280601b81526020017f5745454447414e472e47414d45202d20425245442053545241494e00000000008152506040518060400160405280600581526020016457472d425360d81b81525061144b565b610d19611499565b610d216114cc565b610d296114fb565b8151610d3d9061012f9060208501906117ee565b508015610adf576000805461ff00191690555050565b600081815260696020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d8882610958565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152606760205260408120546001600160a01b0316610e3a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161054f565b6000610e4583610958565b9050806001600160a01b0316846001600160a01b03161480610e805750836001600160a01b0316610e75846104da565b6001600160a01b0316145b80610eb057506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ecb82610958565b6001600160a01b031614610f335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161054f565b6001600160a01b038216610f955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161054f565b610fa0600082610d53565b6001600160a01b0383166000908152606860205260408120805460019290610fc9908490611de8565b90915550506001600160a01b0382166000908152606860205260408120805460019290610ff7908490611dbc565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60975460ff166110a15760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161054f565b6097805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006110f682610958565b9050611103600083610d53565b6001600160a01b038116600090815260686020526040812080546001929061112c908490611de8565b909155505060008281526067602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610adf82826040518060200160405280600081525061153e565b60975460ff16156111c35760405162461bcd60e51b815260040161054f90611cf6565b6097805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110ce3390565b816001600160a01b0316836001600160a01b0316141561125a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161054f565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112d2848484610eb8565b6112de84848484611571565b610b205760405162461bcd60e51b815260040161054f90611c7e565b606061012f805461045790611e42565b60608161132e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611358578061134281611e7d565b91506113519050600a83611dd4565b9150611332565b60008167ffffffffffffffff81111561138157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113ab576020820181803683370190505b5090505b8415610eb0576113c0600183611de8565b91506113cd600a86611e98565b6113d8906030611dbc565b60f81b8183815181106113fb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061141d600a86611dd4565b94506113af565b600054610100900460ff1661074c5760405162461bcd60e51b815260040161054f90611d71565b600054610100900460ff166114725760405162461bcd60e51b815260040161054f90611d71565b81516114859060659060208501906117ee565b5080516106859060669060208401906117ee565b600054610100900460ff166114c05760405162461bcd60e51b815260040161054f90611d71565b6097805460ff19169055565b600054610100900460ff166114f35760405162461bcd60e51b815260040161054f90611d71565b61074c61167e565b600054610100900460ff166115225760405162461bcd60e51b815260040161054f90611d71565b33600090815260fb60205260409020805460ff19166001179055565b61154883836116ac565b6115556000848484611571565b6106855760405162461bcd60e51b815260040161054f90611c7e565b60006001600160a01b0384163b1561167357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115b5903390899088908890600401611c2e565b602060405180830381600087803b1580156115cf57600080fd5b505af19250505080156115ff575060408051601f3d908101601f191682019092526115fc91810190611b59565b60015b611659573d80801561162d576040519150601f19603f3d011682016040523d82523d6000602084013e611632565b606091505b5080516116515760405162461bcd60e51b815260040161054f90611c7e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610eb0565b506001949350505050565b600054610100900460ff166116a55760405162461bcd60e51b815260040161054f90611d71565b600160c955565b6001600160a01b0382166117025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161054f565b6000818152606760205260409020546001600160a01b0316156117675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161054f565b6001600160a01b0382166000908152606860205260408120805460019290611790908490611dbc565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546117fa90611e42565b90600052602060002090601f01602090048101928261181c5760008555611862565b82601f1061183557805160ff1916838001178555611862565b82800160010185558215611862579182015b82811115611862578251825591602001919060010190611847565b5061186e929150611872565b5090565b5b8082111561186e5760008155600101611873565b600067ffffffffffffffff808411156118a2576118a2611ed8565b604051601f8501601f19908116603f011681019082821181831017156118ca576118ca611ed8565b816040528093508581528686860111156118e357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461191457600080fd5b919050565b803563ffffffff8116811461191457600080fd5b60006020828403121561193e578081fd5b610bfa826118fd565b60008060408385031215611959578081fd5b611962836118fd565b9150611970602084016118fd565b90509250929050565b60008060006060848603121561198d578081fd5b611996846118fd565b92506119a4602085016118fd565b9150604084013590509250925092565b600080600080608085870312156119c9578081fd5b6119d2856118fd565b93506119e0602086016118fd565b925060408501359150606085013567ffffffffffffffff811115611a02578182fd5b8501601f81018713611a12578182fd5b611a2187823560208401611887565b91505092959194509250565b60008060408385031215611a3f578182fd5b611a48836118fd565b915060208301358015158114611a5c578182fd5b809150509250929050565b60008060408385031215611a79578182fd5b611a82836118fd565b946020939093013593505050565b600080600083850360c0811215611aa5578384fd5b611aae856118fd565b9350602085013592506080603f1982011215611ac8578182fd5b506040516080810181811067ffffffffffffffff82111715611aec57611aec611ed8565b8060405250611afd60408601611919565b8152611b0b60608601611919565b6020820152611b1c60808601611919565b6040820152611b2d60a08601611919565b6060820152809150509250925092565b600060208284031215611b4e578081fd5b8135610bfa81611eee565b600060208284031215611b6a578081fd5b8151610bfa81611eee565b600060208284031215611b86578081fd5b813567ffffffffffffffff811115611b9c578182fd5b8201601f81018413611bac578182fd5b610eb084823560208401611887565b600060208284031215611bcc578081fd5b5035919050565b60008151808452611beb816020860160208601611dff565b601f01601f19169290920160200192915050565b60008351611c11818460208801611dff565b835190830190611c25818360208801611dff565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c6190830184611bd3565b9695505050505050565b602081526000610bfa6020830184611bd3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600c908201526b2737ba1030b71030b236b4b760a11b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008219821115611dcf57611dcf611eac565b500190565b600082611de357611de3611ec2565b500490565b600082821015611dfa57611dfa611eac565b500390565b60005b83811015611e1a578181015183820152602001611e02565b83811115610b205750506000910152565b600081611e3a57611e3a611eac565b506000190190565b600181811c90821680611e5657607f821691505b60208210811415611e7757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e9157611e91611eac565b5060010190565b600082611ea757611ea7611ec2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611f0457600080fd5b5056fea26469706673582212201824df27d413159c9a987d439e702436c9fedc50421f716d89ae31184abe35b264736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.