More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 9,335 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 24043301 | 4 hrs ago | IN | 0 ETH | 0.00000227 | ||||
| Set Approval For... | 24040062 | 14 hrs ago | IN | 0 ETH | 0.00001702 | ||||
| Set Approval For... | 24037571 | 23 hrs ago | IN | 0 ETH | 0.00009368 | ||||
| Set Approval For... | 24020650 | 3 days ago | IN | 0 ETH | 0.00000346 | ||||
| Set Approval For... | 24019745 | 3 days ago | IN | 0 ETH | 0.00010258 | ||||
| Set Approval For... | 24015307 | 4 days ago | IN | 0 ETH | 0.00006901 | ||||
| Set Approval For... | 24014079 | 4 days ago | IN | 0 ETH | 0.00000538 | ||||
| Set Approval For... | 23998679 | 6 days ago | IN | 0 ETH | 0.00000061 | ||||
| Set Approval For... | 23991541 | 7 days ago | IN | 0 ETH | 0.00000738 | ||||
| Set Approval For... | 23944795 | 13 days ago | IN | 0 ETH | 0.0000019 | ||||
| Safe Transfer Fr... | 23899372 | 20 days ago | IN | 0 ETH | 0.00000397 | ||||
| Set Approval For... | 23763587 | 39 days ago | IN | 0 ETH | 0.00000691 | ||||
| Set Approval For... | 23711096 | 46 days ago | IN | 0 ETH | 0.00001027 | ||||
| Safe Transfer Fr... | 23710652 | 46 days ago | IN | 0 ETH | 0.00001493 | ||||
| Safe Transfer Fr... | 23710650 | 46 days ago | IN | 0 ETH | 0.00002082 | ||||
| Set Approval For... | 23684779 | 50 days ago | IN | 0 ETH | 0.00006472 | ||||
| Set Approval For... | 23677315 | 51 days ago | IN | 0 ETH | 0.00005324 | ||||
| Set Approval For... | 23674236 | 51 days ago | IN | 0 ETH | 0.00002694 | ||||
| Set Approval For... | 23658266 | 54 days ago | IN | 0 ETH | 0.00005035 | ||||
| Set Approval For... | 23657480 | 54 days ago | IN | 0 ETH | 0.00005037 | ||||
| Set Approval For... | 23646593 | 55 days ago | IN | 0 ETH | 0.00000937 | ||||
| Set Approval For... | 23532091 | 71 days ago | IN | 0 ETH | 0.00000679 | ||||
| Safe Transfer Fr... | 23529106 | 72 days ago | IN | 0 ETH | 0.00018109 | ||||
| Set Approval For... | 23528101 | 72 days ago | IN | 0 ETH | 0.0000208 | ||||
| Set Approval For... | 23516636 | 73 days ago | IN | 0 ETH | 0.00000519 |
Latest 8 internal transactions
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
GenArt
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-08-27
*/
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* Gen Art ERC721 Membership Token
*/
/**
* @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);
}
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(
address indexed from,
address indexed to,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(
address indexed owner,
address indexed approved,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(
address indexed owner,
address indexed operator,
bool approved
);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId)
external
view
returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator)
external
view
returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
/**
* @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);
}
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
external
view
returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts may inherit from this and call {_registerInterface} to declare
* their support of an interface.
*/
abstract contract ERC165 is IERC165 {
/*
* bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
*/
bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
/**
* @dev Mapping of interface ids to whether or not it's supported.
*/
mapping(bytes4 => bool) private _supportedInterfaces;
constructor() internal {
// Derived contracts need only register support for their own interfaces,
// we register support for ERC165 itself here
_registerInterface(_INTERFACE_ID_ERC165);
}
/**
* @dev See {IERC165-supportsInterface}.
*
* Time complexity O(1), guaranteed to always use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override
returns (bool)
{
return _supportedInterfaces[interfaceId];
}
/**
* @dev Registers the contract as an implementer of the interface defined by
* `interfaceId`. Support of the actual ERC165 interface is automatic and
* registering its interface id is not required.
*
* See {IERC165-supportsInterface}.
*
* Requirements:
*
* - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
*/
function _registerInterface(bytes4 interfaceId) internal virtual {
require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
_supportedInterfaces[interfaceId] = true;
}
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
if (b > a) return (false, 0);
return (true, a - b);
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
if (b == 0) return (false, 0);
return (true, a / b);
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
if (b == 0) return (false, 0);
return (true, a % b);
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a, "SafeMath: subtraction overflow");
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) return 0;
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
require(b > 0, "SafeMath: division by zero");
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b > 0, "SafeMath: modulo by zero");
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b <= a, errorMessage);
return a - b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryDiv}.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a % b;
}
}
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
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"
);
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) private 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
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping(bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
// When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
// so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
bytes32 lastvalue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastvalue;
// Update the index for the moved value
set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value)
private
view
returns (bool)
{
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index)
private
view
returns (bytes32)
{
require(
set._values.length > index,
"EnumerableSet: index out of bounds"
);
return set._values[index];
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value)
internal
returns (bool)
{
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value)
internal
returns (bool)
{
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value)
internal
view
returns (bool)
{
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index)
internal
view
returns (bytes32)
{
return _at(set._inner, index);
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value)
internal
returns (bool)
{
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value)
internal
returns (bool)
{
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value)
internal
view
returns (bool)
{
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index)
internal
view
returns (address)
{
return address(uint160(uint256(_at(set._inner, index))));
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value)
internal
returns (bool)
{
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value)
internal
view
returns (bool)
{
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index)
internal
view
returns (uint256)
{
return uint256(_at(set._inner, index));
}
}
/**
* @dev Library for managing an enumerable variant of Solidity's
* https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
* type.
*
* Maps have the following properties:
*
* - Entries are added, removed, and checked for existence in constant time
* (O(1)).
* - Entries are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableMap for EnumerableMap.UintToAddressMap;
*
* // Declare a set state variable
* EnumerableMap.UintToAddressMap private myMap;
* }
* ```
*
* As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
* supported.
*/
library EnumerableMap {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Map type with
// bytes32 keys and values.
// The Map implementation uses private functions, and user-facing
// implementations (such as Uint256ToAddressMap) are just wrappers around
// the underlying Map.
// This means that we can only create new EnumerableMaps for types that fit
// in bytes32.
struct MapEntry {
bytes32 _key;
bytes32 _value;
}
struct Map {
// Storage of map keys and values
MapEntry[] _entries;
// Position of the entry defined by a key in the `entries` array, plus 1
// because index 0 means a key is not in the map.
mapping(bytes32 => uint256) _indexes;
}
/**
* @dev Adds a key-value pair to a map, or updates the value for an existing
* key. O(1).
*
* Returns true if the key was added to the map, that is if it was not
* already present.
*/
function _set(
Map storage map,
bytes32 key,
bytes32 value
) private returns (bool) {
// We read and store the key's index to prevent multiple reads from the same storage slot
uint256 keyIndex = map._indexes[key];
if (keyIndex == 0) {
// Equivalent to !contains(map, key)
map._entries.push(MapEntry({_key: key, _value: value}));
// The entry is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
map._indexes[key] = map._entries.length;
return true;
} else {
map._entries[keyIndex - 1]._value = value;
return false;
}
}
/**
* @dev Removes a key-value pair from a map. O(1).
*
* Returns true if the key was removed from the map, that is if it was present.
*/
function _remove(Map storage map, bytes32 key) private returns (bool) {
// We read and store the key's index to prevent multiple reads from the same storage slot
uint256 keyIndex = map._indexes[key];
if (keyIndex != 0) {
// Equivalent to contains(map, key)
// To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
// in the array, and then remove the last entry (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = keyIndex - 1;
uint256 lastIndex = map._entries.length - 1;
// When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
// so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
MapEntry storage lastEntry = map._entries[lastIndex];
// Move the last entry to the index where the entry to delete is
map._entries[toDeleteIndex] = lastEntry;
// Update the index for the moved entry
map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based
// Delete the slot where the moved entry was stored
map._entries.pop();
// Delete the index for the deleted slot
delete map._indexes[key];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the key is in the map. O(1).
*/
function _contains(Map storage map, bytes32 key)
private
view
returns (bool)
{
return map._indexes[key] != 0;
}
/**
* @dev Returns the number of key-value pairs in the map. O(1).
*/
function _length(Map storage map) private view returns (uint256) {
return map._entries.length;
}
/**
* @dev Returns the key-value pair stored at position `index` in the map. O(1).
*
* Note that there are no guarantees on the ordering of entries inside the
* array, and it may change when more entries are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Map storage map, uint256 index)
private
view
returns (bytes32, bytes32)
{
require(
map._entries.length > index,
"EnumerableMap: index out of bounds"
);
MapEntry storage entry = map._entries[index];
return (entry._key, entry._value);
}
/**
* @dev Tries to returns the value associated with `key`. O(1).
* Does not revert if `key` is not in the map.
*/
function _tryGet(Map storage map, bytes32 key)
private
view
returns (bool, bytes32)
{
uint256 keyIndex = map._indexes[key];
if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
}
/**
* @dev Returns the value associated with `key`. O(1).
*
* Requirements:
*
* - `key` must be in the map.
*/
function _get(Map storage map, bytes32 key) private view returns (bytes32) {
uint256 keyIndex = map._indexes[key];
require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
return map._entries[keyIndex - 1]._value; // All indexes are 1-based
}
/**
* @dev Same as {_get}, with a custom error message when `key` is not in the map.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {_tryGet}.
*/
function _get(
Map storage map,
bytes32 key,
string memory errorMessage
) private view returns (bytes32) {
uint256 keyIndex = map._indexes[key];
require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
return map._entries[keyIndex - 1]._value; // All indexes are 1-based
}
// UintToAddressMap
struct UintToAddressMap {
Map _inner;
}
/**
* @dev Adds a key-value pair to a map, or updates the value for an existing
* key. O(1).
*
* Returns true if the key was added to the map, that is if it was not
* already present.
*/
function set(
UintToAddressMap storage map,
uint256 key,
address value
) internal returns (bool) {
return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the key was removed from the map, that is if it was present.
*/
function remove(UintToAddressMap storage map, uint256 key)
internal
returns (bool)
{
return _remove(map._inner, bytes32(key));
}
/**
* @dev Returns true if the key is in the map. O(1).
*/
function contains(UintToAddressMap storage map, uint256 key)
internal
view
returns (bool)
{
return _contains(map._inner, bytes32(key));
}
/**
* @dev Returns the number of elements in the map. O(1).
*/
function length(UintToAddressMap storage map)
internal
view
returns (uint256)
{
return _length(map._inner);
}
/**
* @dev Returns the element stored at position `index` in the set. O(1).
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintToAddressMap storage map, uint256 index)
internal
view
returns (uint256, address)
{
(bytes32 key, bytes32 value) = _at(map._inner, index);
return (uint256(key), address(uint160(uint256(value))));
}
/**
* @dev Tries to returns the value associated with `key`. O(1).
* Does not revert if `key` is not in the map.
*
* _Available since v3.4._
*/
function tryGet(UintToAddressMap storage map, uint256 key)
internal
view
returns (bool, address)
{
(bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
return (success, address(uint160(uint256(value))));
}
/**
* @dev Returns the value associated with `key`. O(1).
*
* Requirements:
*
* - `key` must be in the map.
*/
function get(UintToAddressMap storage map, uint256 key)
internal
view
returns (address)
{
return address(uint160(uint256(_get(map._inner, bytes32(key)))));
}
/**
* @dev Same as {get}, with a custom error message when `key` is not in the map.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryGet}.
*/
function get(
UintToAddressMap storage map,
uint256 key,
string memory errorMessage
) internal view returns (address) {
return
address(
uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))
);
}
}
/*
* @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 GSN 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 payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @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 payable private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() internal {
address payable msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address payable) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address payable newOwner)
public
virtual
onlyOwner
{
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
/**
* @title ERC721 Non-Fungible Token Standard basic implementation
* @dev see https://eips.ethereum.org/EIPS/eip-721
*/
contract GenArt is
Ownable,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable
{
using SafeMath for uint256;
using Address for address;
using EnumerableSet for EnumerableSet.UintSet;
using EnumerableMap for EnumerableMap.UintToAddressMap;
event Mint(address indexed to, uint256 tokenId, bool isGold);
uint256 MAX_MEMBERS = 5000;
uint256 MAX_MEMBERS_GOLD = 100;
uint256 MEMBERSHIP_PRICE = 100000000000000000; // 0.1 ETH
uint256 MEMBERSHIP_GOLD_PRICE = 500000000000000000; // 0.5 ETH
bool private _paused = true;
uint256 _reservedTokens = 20;
uint256 _reservedTokensGold = 5;
// Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
// which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;
string private _uri_standard;
string private _uri_gold;
// Mapping from holder address to their (enumerable) set of owned tokens
mapping(address => EnumerableSet.UintSet) private _holderTokens;
mapping(uint256 => bool) private _goldTokens;
// Enumerable mapping from token ids to their owners
EnumerableMap.UintToAddressMap private _tokenOwners;
EnumerableMap.UintToAddressMap private _goldOwners;
// 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;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
// Base URI
string private _baseURI;
/*
* bytes4(keccak256('balanceOf(address)')) == 0x70a08231
* bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
* bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
* bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
* bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
* bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
* bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
* bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
* bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
*
* => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
* 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
*/
bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;
/*
* bytes4(keccak256('name()')) == 0x06fdde03
* bytes4(keccak256('symbol()')) == 0x95d89b41
* bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
*
* => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
*/
bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;
/*
* bytes4(keccak256('totalSupply()')) == 0x18160ddd
* bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
* bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
*
* => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
*/
bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(
string memory name_,
string memory symbol_,
string memory uri_standard_,
string memory uri_gold_,
uint256 max_members_
) public {
_name = name_;
_symbol = symbol_;
_uri_standard = uri_standard_;
_uri_gold = uri_gold_;
MAX_MEMBERS = max_members_;
// register the supported interfaces to conform to ERC721 via ERC165
_registerInterface(_INTERFACE_ID_ERC721);
_registerInterface(_INTERFACE_ID_ERC721_METADATA);
_registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
}
function mint(address _to) public payable {
require(!_paused, "minting is paused");
require(msg.value >= MEMBERSHIP_PRICE, "wrong amount sent");
uint256 _totalSupplyGold = totalGoldOwners();
uint256 _totalSupply = totalSupply() - _totalSupplyGold;
require(_totalSupply < MAX_MEMBERS, "mint would exceed totalSupply");
uint256 _tokenId = _totalSupply + 1;
_safeMint(_to, _tokenId);
emit Mint(_to, _tokenId, false);
}
function mintMany(address _to, uint256 amount) public payable {
require(!_paused, "minting is paused");
require(msg.value >= (MEMBERSHIP_PRICE * amount), "wrong amount sent");
_mintMany(_to, amount);
}
function mintGold(address _to) public payable {
require(!_paused, "minting is paused");
require(msg.value >= MEMBERSHIP_GOLD_PRICE, "wrong amount sent");
_mintGold(_to);
}
function _mintGold(address _to) internal virtual {
uint256 _totalSupply = totalGoldOwners();
uint256 _tokenId = MAX_MEMBERS + _totalSupply + 1;
require(
_tokenId <= MAX_MEMBERS + MAX_MEMBERS_GOLD,
"mint would exceed totalSupply"
);
_goldOwners.set(_tokenId, _to);
_safeMint(_to, _tokenId);
emit Mint(_to, _tokenId, true);
}
function _mintMany(address _to, uint256 _amount) internal {
require(_to != address(0), "mint to the zero address");
uint256 _totalSupplyGold = totalGoldOwners();
uint256 _totalSupply = totalSupply() - _totalSupplyGold;
require(
(_totalSupply + _amount) <= MAX_MEMBERS,
"mint would exceed totalSupply"
);
for (uint256 i = 0; i < _amount; i++) {
uint256 _tokenId = _totalSupply + 1 + i;
_safeMint(_to, _tokenId);
emit Mint(_to, _tokenId, false);
}
}
function withdraw(uint256 value) public onlyOwner {
address payable _owner = owner();
_owner.transfer(value);
}
function setPaused(bool _isPaused) public onlyOwner {
_paused = _isPaused;
}
function setUriStandard(string memory _uri) public onlyOwner {
_uri_standard = _uri;
}
function setUriGold(string memory _uri) public onlyOwner {
_uri_gold = _uri;
}
function mintReservedGold(address _to) public onlyOwner {
uint256 _totalSupply = totalGoldOwners();
require(
_totalSupply < MAX_MEMBERS_GOLD,
"mint exceeds Gold totalSupply"
);
_mintGold(_to);
_reservedTokensGold = _reservedTokensGold - 1;
}
function mintReserved(address _to, uint256 _amount) public onlyOwner {
require(
_amount <= _reservedTokens,
"reserved token mint exceeds limit"
);
uint256 _totalSupply = totalSupply();
require(
(_totalSupply + _amount) <= MAX_MEMBERS,
"mint exceeds totalSupply"
);
_mintMany(_to, _amount);
_reservedTokens = _reservedTokens - _amount;
}
function totalGoldOwners() public view returns (uint256) {
return _goldOwners.length();
}
function isGoldToken(uint256 _tokenId) public view returns (bool) {
return int256(_tokenId) - int256(MAX_MEMBERS) > 0;
}
function getTokensByOwner(address _owner)
public
view
returns (uint256[] memory)
{
uint256 tokenCount = balanceOf(_owner);
uint256[] memory tokenIds = new uint256[](tokenCount);
for (uint256 i; i < tokenCount; i++) {
tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokenIds;
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
require(owner != address(0), "balance query for the zero address");
return _holderTokens[owner].length();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return _tokenOwners.get(tokenId, "owner query for nonexistent token");
}
/**
* @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), "URI query for nonexistent token");
bool isGold = isGoldToken(tokenId);
if (isGold) {
return _uri_gold;
}
return _uri_standard;
}
/**
* @dev Returns the base URI set via {_setBaseURI}. This will be
* automatically added as a prefix in {tokenURI} to each token's URI, or
* to the token ID if no specific URI is set for that token ID.
*/
function baseURI() public view returns (string memory) {
return _baseURI;
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
public
view
virtual
override
returns (uint256)
{
return _holderTokens[owner].at(index);
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
// _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
return _tokenOwners.length();
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index)
public
view
virtual
override
returns (uint256)
{
(uint256 tokenId, ) = _tokenOwners.at(index);
return tokenId;
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = GenArt.ownerOf(tokenId);
require(to != owner, "approval to current owner");
address sender = _msgSender();
require(
sender == owner || GenArt.isApprovedForAll(owner, sender),
"approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId)
public
view
override
returns (address)
{
require(_exists(tokenId), "approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved)
public
override
{
address sender = _msgSender();
require(operator != sender, "approve to caller");
_operatorApprovals[sender][operator] = approved;
emit ApprovalForAll(sender, operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public override {
//solhint-disable-next-line max-line-length
address sender = _msgSender();
require(
_isApprovedOrOwner(sender, tokenId),
"transfer caller is not owner nor approved"
);
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public override {
address sender = _msgSender();
require(
_isApprovedOrOwner(sender, tokenId),
"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),
"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 _tokenOwners.contains(tokenId);
}
/**
* @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), "operator query for nonexistent token");
address owner = GenArt.ownerOf(tokenId);
return (spender == owner ||
getApproved(tokenId) == spender ||
GenArt.isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
d*
* - `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 {
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"transfer to non ERC721Receiver implementer"
);
_mint(to, tokenId);
}
/**
* @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(!_exists(tokenId), "token already minted");
_holderTokens[to].add(tokenId);
_tokenOwners.set(tokenId, to);
emit Transfer(address(0), to, 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(
GenArt.ownerOf(tokenId) == from,
"transfer of token that is not own"
); // internal owner
require(to != address(0), "transfer to the zero address");
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_holderTokens[from].remove(tokenId);
_holderTokens[to].add(tokenId);
_tokenOwners.set(tokenId, to);
emit Transfer(from, to, tokenId);
}
/**
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function setTokenURI(uint256 tokenId, string memory _tokenURI)
public
onlyOwner
{
require(_exists(tokenId), "URI set of nonexistent token");
_tokenURIs[tokenId] = _tokenURI;
}
/**
* @dev Internal function to set the base URI for all token IDs. It is
* automatically added as a prefix to the value returned in {tokenURI},
* or to the token ID if {tokenURI} is empty.
*/
function setBaseURI(string memory baseURI_) public onlyOwner {
_baseURI = baseURI_;
}
/**
* @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()) {
return true;
}
bytes memory returndata = to.functionCall(
abi.encodeWithSelector(
IERC721Receiver(to).onERC721Received.selector,
_msgSender(),
from,
tokenId,
_data
),
"transfer to non ERC721Receiver implementer"
);
bytes4 retval = abi.decode(returndata, (bytes4));
return (retval == _ERC721_RECEIVED);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(GenArt.ownerOf(tokenId), to, tokenId); // internal owner
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"uri_standard_","type":"string"},{"internalType":"string","name":"uri_gold_","type":"string"},{"internalType":"uint256","name":"max_members_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isGold","type":"bool"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isGoldToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintGold","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintReservedGold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUriGold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUriStandard","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalGoldOwners","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 payable","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052611388600255606460035567016345785d8a00006004556706f05b59d3b200006005556001600660006101000a81548160ff021916908315150217905550601460075560056008553480156200005957600080fd5b5060405162004a6438038062004a64833981810160405260a08110156200007f57600080fd5b8101908080516040519392919084640100000000821115620000a057600080fd5b83820191506020820185811115620000b757600080fd5b8251866001820283011164010000000082111715620000d557600080fd5b8083526020830192505050908051906020019080838360005b838110156200010b578082015181840152602081019050620000ee565b50505050905090810190601f168015620001395780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200015d57600080fd5b838201915060208201858111156200017457600080fd5b82518660018202830111640100000000821117156200019257600080fd5b8083526020830192505050908051906020019080838360005b83811015620001c8578082015181840152602081019050620001ab565b50505050905090810190601f168015620001f65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200021a57600080fd5b838201915060208201858111156200023157600080fd5b82518660018202830111640100000000821117156200024f57600080fd5b8083526020830192505050908051906020019080838360005b838110156200028557808201518184015260208101905062000268565b50505050905090810190601f168015620002b35780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620002d757600080fd5b83820191506020820185811115620002ee57600080fd5b82518660018202830111640100000000821117156200030c57600080fd5b8083526020830192505050908051906020019080838360005b838110156200034257808201518184015260208101905062000325565b50505050905090810190601f168015620003705780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291905050506000620003966200050a60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200044c6301ffc9a760e01b6200051260201b60201c565b8460139080519060200190620004649291906200061b565b5083601490805190602001906200047d9291906200061b565b508260099080519060200190620004969291906200061b565b5081600a9080519060200190620004af9291906200061b565b5080600281905550620004cf6380ac58cd60e01b6200051260201b60201c565b620004e7635b5e139f60e01b6200051260201b60201c565b620004ff63780e9d6360e01b6200051260201b60201c565b5050505050620006d1565b600033905090565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620005af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200065357600085556200069f565b82601f106200066e57805160ff19168380011785556200069f565b828001600101855582156200069f579182015b828111156200069e57825182559160200191906001019062000681565b5b509050620006ae9190620006b2565b5090565b5b80821115620006cd576000816000905550600101620006b3565b5090565b61438380620006e16000396000f3fe6080604052600436106101f95760003560e01c80635e8306561161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde14610e31578063c87b56dd14610f43578063e985e9c514610ff7578063f2fde38b1461107e578063f4ed4d15146110cf576101f9565b806395d89b4114610c51578063a22cb46514610ce1578063a907745514610d3e578063b2900c4814610d69576101f9565b806370a08231116100dc57806370a0823114610b39578063715018a614610b9e5780637de55fe114610bb55780638da5cb5b14610c10576101f9565b80635e830656146109b25780636352211e14610a005780636a62784214610a655780636c0360eb14610aa9576101f9565b80631fb33b061161019057806340398d671161015f57806340398d671461072957806342842e0e146107cf5780634f6ccce71461084a5780635555ecc71461089957806355f804b3146108ea576101f9565b80631fb33b06146105c057806323b872dd146106045780632e1a7d4d1461067f5780632f745c59146106ba576101f9565b8063095ea7b3116101cc578063095ea7b31461042b578063162094c41461048657806316c38b3c1461055857806318160ddd14610595576101f9565b806301ffc9a7146101fe578063047cb0ad1461026e57806306fdde0314610336578063081812fc146103c6575b600080fd5b34801561020a57600080fd5b506102566004803603602081101561022157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611120565b60405180821515815260200191505060405180910390f35b34801561027a57600080fd5b506103346004803603602081101561029157600080fd5b81019080803590602001906401000000008111156102ae57600080fd5b8201836020820111156102c057600080fd5b803590602001918460018302840111640100000000831117156102e257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611188565b005b34801561034257600080fd5b5061034b611251565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038b578082015181840152602081019050610370565b50505050905090810190601f1680156103b85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103d257600080fd5b506103ff600480360360208110156103e957600080fd5b81019080803590602001909291905050506112f3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561043757600080fd5b506104846004803603604081101561044e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061138e565b005b34801561049257600080fd5b50610556600480360360408110156104a957600080fd5b8101908080359060200190929190803590602001906401000000008111156104d057600080fd5b8201836020820111156104e257600080fd5b8035906020019184600183028401116401000000008311171561050457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506114ee565b005b34801561056457600080fd5b506105936004803603602081101561057b57600080fd5b81019080803515159060200190929190505050611644565b005b3480156105a157600080fd5b506105aa611710565b6040518082815260200191505060405180910390f35b610602600480360360208110156105d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611721565b005b34801561061057600080fd5b5061067d6004803603606081101561062757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611828565b005b34801561068b57600080fd5b506106b8600480360360208110156106a257600080fd5b81019080803590602001909291905050506118a4565b005b3480156106c657600080fd5b50610713600480360360408110156106dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119aa565b6040518082815260200191505060405180910390f35b34801561073557600080fd5b506107786004803603602081101561074c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a05565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156107bb5780820151818401526020810190506107a0565b505050509050019250505060405180910390f35b3480156107db57600080fd5b50610848600480360360608110156107f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611aa4565b005b34801561085657600080fd5b506108836004803603602081101561086d57600080fd5b8101908080359060200190929190505050611ac4565b6040518082815260200191505060405180910390f35b3480156108a557600080fd5b506108e8600480360360208110156108bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ae7565b005b3480156108f657600080fd5b506109b06004803603602081101561090d57600080fd5b810190808035906020019064010000000081111561092a57600080fd5b82018360208201111561093c57600080fd5b8035906020019184600183028401116401000000008311171561095e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611c32565b005b6109fe600480360360408110156109c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611cfb565b005b348015610a0c57600080fd5b50610a3960048036036020811015610a2357600080fd5b8101908080359060200190929190505050611e06565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610aa760048036036020811015610a7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e3d565b005b348015610ab557600080fd5b50610abe61203a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610afe578082015181840152602081019050610ae3565b50505050905090810190601f168015610b2b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b4557600080fd5b50610b8860048036036020811015610b5c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120dc565b6040518082815260200191505060405180910390f35b348015610baa57600080fd5b50610bb36121b1565b005b348015610bc157600080fd5b50610c0e60048036036040811015610bd857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061231e565b005b348015610c1c57600080fd5b50610c256124c8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c5d57600080fd5b50610c666124f1565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ca6578082015181840152602081019050610c8b565b50505050905090810190601f168015610cd35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ced57600080fd5b50610d3c60048036036040811015610d0457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612593565b005b348015610d4a57600080fd5b50610d53612741565b6040518082815260200191505060405180910390f35b348015610d7557600080fd5b50610e2f60048036036020811015610d8c57600080fd5b8101908080359060200190640100000000811115610da957600080fd5b820183602082011115610dbb57600080fd5b80359060200191846001830284011164010000000083111715610ddd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612752565b005b348015610e3d57600080fd5b50610f4160048036036080811015610e5457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ebb57600080fd5b820183602082011115610ecd57600080fd5b80359060200191846001830284011164010000000083111715610eef57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061281b565b005b348015610f4f57600080fd5b50610f7c60048036036020811015610f6657600080fd5b8101908080359060200190929190505050612899565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fbc578082015181840152602081019050610fa1565b50505050905090810190601f168015610fe95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561100357600080fd5b506110666004803603604081101561101a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a70565b60405180821515815260200191505060405180910390f35b34801561108a57600080fd5b506110cd600480360360208110156110a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b04565b005b3480156110db57600080fd5b50611108600480360360208110156110f257600080fd5b8101908080359060200190929190505050612cf6565b60405180821515815260200191505060405180910390f35b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b611190612d06565b73ffffffffffffffffffffffffffffffffffffffff166111ae6124c8565b73ffffffffffffffffffffffffffffffffffffffff1614611237576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a908051906020019061124d9291906140c2565b5050565b606060138054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112e95780601f106112be576101008083540402835291602001916112e9565b820191906000526020600020905b8154815290600101906020018083116112cc57829003601f168201915b5050505050905090565b60006112fe82612d0e565b611353576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806141c06024913960400191505060405180910390fd5b6011600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061139982611e06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561143d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f617070726f76616c20746f2063757272656e74206f776e65720000000000000081525060200191505060405180910390fd5b6000611447612d06565b90508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16148061148957506114888282612a70565b5b6114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141906030913960400191505060405180910390fd5b6114e88484612d2b565b50505050565b6114f6612d06565b73ffffffffffffffffffffffffffffffffffffffff166115146124c8565b73ffffffffffffffffffffffffffffffffffffffff161461159d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6115a682612d0e565b611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f55524920736574206f66206e6f6e6578697374656e7420746f6b656e0000000081525060200191505060405180910390fd5b8060156000848152602001908152602001600020908051906020019061163f9291906140c2565b505050565b61164c612d06565b73ffffffffffffffffffffffffffffffffffffffff1661166a6124c8565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b600061171c600d612de4565b905090565b600660009054906101000a900460ff16156117a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b60055434101561181c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b61182581612df9565b50565b6000611832612d06565b905061183e8183612f0c565b611893576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806142be6029913960400191505060405180910390fd5b61189e848484613000565b50505050565b6118ac612d06565b73ffffffffffffffffffffffffffffffffffffffff166118ca6124c8565b73ffffffffffffffffffffffffffffffffffffffff1614611953576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061195d6124c8565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156119a5573d6000803e3d6000fd5b505050565b60006119fd82600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061325590919063ffffffff16565b905092915050565b60606000611a12836120dc565b905060008167ffffffffffffffff81118015611a2d57600080fd5b50604051908082528060200260200182016040528015611a5c5781602001602082028036833780820191505090505b50905060005b82811015611a9957611a7485826119aa565b828281518110611a8057fe5b6020026020010181815250508080600101915050611a62565b508092505050919050565b611abf8383836040518060200160405280600081525061281b565b505050565b600080611adb83600d61326f90919063ffffffff16565b50905080915050919050565b611aef612d06565b73ffffffffffffffffffffffffffffffffffffffff16611b0d6124c8565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ba0612741565b90506003548110611c19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e74206578636565647320476f6c6420746f74616c537570706c7900000081525060200191505060405180910390fd5b611c2282612df9565b6001600854036008819055505050565b611c3a612d06565b73ffffffffffffffffffffffffffffffffffffffff16611c586124c8565b73ffffffffffffffffffffffffffffffffffffffff1614611ce1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060169080519060200190611cf79291906140c2565b5050565b600660009054906101000a900460ff1615611d7e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b8060045402341015611df8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b611e02828261329b565b5050565b6000611e368260405180606001604052806021815260200161430960219139600d61345f9092919063ffffffff16565b9050919050565b600660009054906101000a900460ff1615611ec0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b600454341015611f38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b6000611f42612741565b9050600081611f4f611710565b0390506002548110611fc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b6000600182019050611fdb848261347e565b8373ffffffffffffffffffffffffffffffffffffffff167ff9288aa3c16d157f87dbf24b824f702d4c76887d38e8fd6ef8212ad19a712aee8260006040518083815260200182151581526020019250505060405180910390a250505050565b606060168054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120d25780601f106120a7576101008083540402835291602001916120d2565b820191906000526020600020905b8154815290600101906020018083116120b557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061420a6022913960400191505060405180910390fd5b6121aa600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061349c565b9050919050565b6121b9612d06565b73ffffffffffffffffffffffffffffffffffffffff166121d76124c8565b73ffffffffffffffffffffffffffffffffffffffff1614612260576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612326612d06565b73ffffffffffffffffffffffffffffffffffffffff166123446124c8565b73ffffffffffffffffffffffffffffffffffffffff16146123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600754811115612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061424d6021913960400191505060405180910390fd5b6000612432611710565b905060025482820111156124ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e74206578636565647320746f74616c537570706c79000000000000000081525060200191505060405180910390fd5b6124b8838361329b565b8160075403600781905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060148054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125895780601f1061255e57610100808354040283529160200191612589565b820191906000526020600020905b81548152906001019060200180831161256c57829003601f168201915b5050505050905090565b600061259d612d06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f617070726f766520746f2063616c6c657200000000000000000000000000000081525060200191505060405180910390fd5b81601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318460405180821515815260200191505060405180910390a3505050565b600061274d600f612de4565b905090565b61275a612d06565b73ffffffffffffffffffffffffffffffffffffffff166127786124c8565b73ffffffffffffffffffffffffffffffffffffffff1614612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600990805190602001906128179291906140c2565b5050565b6000612825612d06565b90506128318184612f0c565b612886576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806142be6029913960400191505060405180910390fd5b612892858585856134b1565b5050505050565b60606128a482612d0e565b612916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0081525060200191505060405180910390fd5b600061292183612cf6565b905080156129cc57600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129bf5780601f10612994576101008083540402835291602001916129bf565b820191906000526020600020905b8154815290600101906020018083116129a257829003601f168201915b5050505050915050612a6b565b60098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612a625780601f10612a3757610100808354040283529160200191612a62565b820191906000526020600020905b815481529060010190602001808311612a4557829003601f168201915b50505050509150505b919050565b6000601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b0c612d06565b73ffffffffffffffffffffffffffffffffffffffff16612b2a6124c8565b73ffffffffffffffffffffffffffffffffffffffff1614612bb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806141e46026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002548303139050919050565b600033905090565b6000612d2482600d61352390919063ffffffff16565b9050919050565b816011600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d9e83611e06565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612df28260000161353d565b9050919050565b6000612e03612741565b905060006001826002540101905060035460025401811115612e8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b612ea38184600f61354e9092919063ffffffff16565b50612eae838261347e565b8273ffffffffffffffffffffffffffffffffffffffff167ff9288aa3c16d157f87dbf24b824f702d4c76887d38e8fd6ef8212ad19a712aee8260016040518083815260200182151581526020019250505060405180910390a2505050565b6000612f1782612d0e565b612f6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061432a6024913960400191505060405180910390fd5b6000612f7783611e06565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fe657508373ffffffffffffffffffffffffffffffffffffffff16612fce846112f3565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ff75750612ff68185612a70565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661302082611e06565b73ffffffffffffffffffffffffffffffffffffffff161461308c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061422c6021913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f7472616e7366657220746f20746865207a65726f20616464726573730000000081525060200191505060405180910390fd5b61313a600082612d2b565b61318b81600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061358390919063ffffffff16565b506131dd81600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061359d90919063ffffffff16565b506131f48183600d61354e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061326483600001836135b7565b60001c905092915050565b600080600080613282866000018661363a565b915091508160001c8160001c9350935050509250929050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561333e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e7420746f20746865207a65726f2061646472657373000000000000000081525060200191505060405180910390fd5b6000613348612741565b9050600081613355611710565b03905060025483820111156133d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b60005b8381101561345857600081600184010190506133f1868261347e565b8573ffffffffffffffffffffffffffffffffffffffff167ff9288aa3c16d157f87dbf24b824f702d4c76887d38e8fd6ef8212ad19a712aee8260006040518083815260200182151581526020019250505060405180910390a25080806001019150506133d5565b5050505050565b6000613472846000018460001b846136d3565b60001c90509392505050565b6134988282604051806020016040528060008152506137c9565b5050565b60006134aa8260000161383a565b9050919050565b6134bc848484613000565b6134c88484848461384b565b61351d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614294602a913960400191505060405180910390fd5b50505050565b6000613535836000018360001b613a64565b905092915050565b600081600001805490509050919050565b600061357a846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613a87565b90509392505050565b6000613595836000018360001b613b63565b905092915050565b60006135af836000018360001b613c4b565b905092915050565b600081836000018054905011613618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061416e6022913960400191505060405180910390fd5b82600001828154811061362757fe5b9060005260206000200154905092915050565b6000808284600001805490501161369c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142e76022913960400191505060405180910390fd5b60008460000184815481106136ad57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061379a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561375f578082015181840152602081019050613744565b50505050905090810190601f16801561378c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106137ad57fe5b9060005260206000209060020201600101549150509392505050565b6137d6600084848461384b565b61382b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614294602a913960400191505060405180910390fd5b6138358383613cbb565b505050565b600081600001805490509050919050565b600061386c8473ffffffffffffffffffffffffffffffffffffffff16613e00565b6138795760019050613a5c565b60006139e363150b7a0260e01b61388e612d06565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156139125780820151818401526020810190506138f7565b50505050905090810190601f16801561393f5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280602a8152602001614294602a91398773ffffffffffffffffffffffffffffffffffffffff16613e139092919063ffffffff16565b905060008180602001905160208110156139fc57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808460010160008581526020019081526020016000205490506000811415613b2e57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613b5c565b82856000016001830381548110613b4157fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60008083600101600084815260200190815260200160002054905060008114613c3f5760006001820390506000600186600001805490500390506000866000018281548110613bae57fe5b9060005260206000200154905080876000018481548110613bcb57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480613c0357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613c45565b60009150505b92915050565b6000613c578383613e2b565b613cb0578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613cb5565b600090505b92915050565b613cc481612d0e565b15613d37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f746f6b656e20616c7265616479206d696e74656400000000000000000000000081525060200191505060405180910390fd5b613d8881600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061359d90919063ffffffff16565b50613d9f8183600d61354e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060613e228484600085613e4e565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613ea9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061426e6026913960400191505060405180910390fd5b613eb285613e00565b613f24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613f735780518252602082019150602081019050602083039250613f50565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613fd5576040519150601f19603f3d011682016040523d82523d6000602084013e613fda565b606091505b5091509150613fea828286613ff6565b92505050949350505050565b60608315614006578290506140bb565b6000835111156140195782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614080578082015181840152602081019050614065565b50505050905090810190601f1680156140ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826140f8576000855561413f565b82601f1061411157805160ff191683800117855561413f565b8280016001018555821561413f579182015b8281111561413e578251825591602001919060010190614123565b5b50905061414c9190614150565b5090565b5b80821115614169576000816000905550600101614151565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737362616c616e636520717565727920666f7220746865207a65726f20616464726573737472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e726573657276656420746f6b656e206d696e742065786365656473206c696d6974416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c7472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465727472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64736f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e6f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122005dfd0cb2408ad725e340157c9a2534b6485e7afd9eaac2fc014a3b5732f56bd64736f6c6343000706003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000000747454e2e4152540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024741000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d634e446e7771695571346256687037744233417775547062614431756a3355506b6e5a4a53734d4476536f590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d515278356e467977436f745258514a4e4556685443793432314e776979574b6e31476370705a47526d74436b0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80635e8306561161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde14610e31578063c87b56dd14610f43578063e985e9c514610ff7578063f2fde38b1461107e578063f4ed4d15146110cf576101f9565b806395d89b4114610c51578063a22cb46514610ce1578063a907745514610d3e578063b2900c4814610d69576101f9565b806370a08231116100dc57806370a0823114610b39578063715018a614610b9e5780637de55fe114610bb55780638da5cb5b14610c10576101f9565b80635e830656146109b25780636352211e14610a005780636a62784214610a655780636c0360eb14610aa9576101f9565b80631fb33b061161019057806340398d671161015f57806340398d671461072957806342842e0e146107cf5780634f6ccce71461084a5780635555ecc71461089957806355f804b3146108ea576101f9565b80631fb33b06146105c057806323b872dd146106045780632e1a7d4d1461067f5780632f745c59146106ba576101f9565b8063095ea7b3116101cc578063095ea7b31461042b578063162094c41461048657806316c38b3c1461055857806318160ddd14610595576101f9565b806301ffc9a7146101fe578063047cb0ad1461026e57806306fdde0314610336578063081812fc146103c6575b600080fd5b34801561020a57600080fd5b506102566004803603602081101561022157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611120565b60405180821515815260200191505060405180910390f35b34801561027a57600080fd5b506103346004803603602081101561029157600080fd5b81019080803590602001906401000000008111156102ae57600080fd5b8201836020820111156102c057600080fd5b803590602001918460018302840111640100000000831117156102e257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611188565b005b34801561034257600080fd5b5061034b611251565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038b578082015181840152602081019050610370565b50505050905090810190601f1680156103b85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103d257600080fd5b506103ff600480360360208110156103e957600080fd5b81019080803590602001909291905050506112f3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561043757600080fd5b506104846004803603604081101561044e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061138e565b005b34801561049257600080fd5b50610556600480360360408110156104a957600080fd5b8101908080359060200190929190803590602001906401000000008111156104d057600080fd5b8201836020820111156104e257600080fd5b8035906020019184600183028401116401000000008311171561050457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506114ee565b005b34801561056457600080fd5b506105936004803603602081101561057b57600080fd5b81019080803515159060200190929190505050611644565b005b3480156105a157600080fd5b506105aa611710565b6040518082815260200191505060405180910390f35b610602600480360360208110156105d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611721565b005b34801561061057600080fd5b5061067d6004803603606081101561062757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611828565b005b34801561068b57600080fd5b506106b8600480360360208110156106a257600080fd5b81019080803590602001909291905050506118a4565b005b3480156106c657600080fd5b50610713600480360360408110156106dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119aa565b6040518082815260200191505060405180910390f35b34801561073557600080fd5b506107786004803603602081101561074c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a05565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156107bb5780820151818401526020810190506107a0565b505050509050019250505060405180910390f35b3480156107db57600080fd5b50610848600480360360608110156107f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611aa4565b005b34801561085657600080fd5b506108836004803603602081101561086d57600080fd5b8101908080359060200190929190505050611ac4565b6040518082815260200191505060405180910390f35b3480156108a557600080fd5b506108e8600480360360208110156108bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ae7565b005b3480156108f657600080fd5b506109b06004803603602081101561090d57600080fd5b810190808035906020019064010000000081111561092a57600080fd5b82018360208201111561093c57600080fd5b8035906020019184600183028401116401000000008311171561095e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611c32565b005b6109fe600480360360408110156109c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611cfb565b005b348015610a0c57600080fd5b50610a3960048036036020811015610a2357600080fd5b8101908080359060200190929190505050611e06565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610aa760048036036020811015610a7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e3d565b005b348015610ab557600080fd5b50610abe61203a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610afe578082015181840152602081019050610ae3565b50505050905090810190601f168015610b2b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b4557600080fd5b50610b8860048036036020811015610b5c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120dc565b6040518082815260200191505060405180910390f35b348015610baa57600080fd5b50610bb36121b1565b005b348015610bc157600080fd5b50610c0e60048036036040811015610bd857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061231e565b005b348015610c1c57600080fd5b50610c256124c8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c5d57600080fd5b50610c666124f1565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ca6578082015181840152602081019050610c8b565b50505050905090810190601f168015610cd35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ced57600080fd5b50610d3c60048036036040811015610d0457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612593565b005b348015610d4a57600080fd5b50610d53612741565b6040518082815260200191505060405180910390f35b348015610d7557600080fd5b50610e2f60048036036020811015610d8c57600080fd5b8101908080359060200190640100000000811115610da957600080fd5b820183602082011115610dbb57600080fd5b80359060200191846001830284011164010000000083111715610ddd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612752565b005b348015610e3d57600080fd5b50610f4160048036036080811015610e5457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ebb57600080fd5b820183602082011115610ecd57600080fd5b80359060200191846001830284011164010000000083111715610eef57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061281b565b005b348015610f4f57600080fd5b50610f7c60048036036020811015610f6657600080fd5b8101908080359060200190929190505050612899565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fbc578082015181840152602081019050610fa1565b50505050905090810190601f168015610fe95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561100357600080fd5b506110666004803603604081101561101a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a70565b60405180821515815260200191505060405180910390f35b34801561108a57600080fd5b506110cd600480360360208110156110a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b04565b005b3480156110db57600080fd5b50611108600480360360208110156110f257600080fd5b8101908080359060200190929190505050612cf6565b60405180821515815260200191505060405180910390f35b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b611190612d06565b73ffffffffffffffffffffffffffffffffffffffff166111ae6124c8565b73ffffffffffffffffffffffffffffffffffffffff1614611237576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a908051906020019061124d9291906140c2565b5050565b606060138054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112e95780601f106112be576101008083540402835291602001916112e9565b820191906000526020600020905b8154815290600101906020018083116112cc57829003601f168201915b5050505050905090565b60006112fe82612d0e565b611353576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806141c06024913960400191505060405180910390fd5b6011600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061139982611e06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561143d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f617070726f76616c20746f2063757272656e74206f776e65720000000000000081525060200191505060405180910390fd5b6000611447612d06565b90508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16148061148957506114888282612a70565b5b6114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141906030913960400191505060405180910390fd5b6114e88484612d2b565b50505050565b6114f6612d06565b73ffffffffffffffffffffffffffffffffffffffff166115146124c8565b73ffffffffffffffffffffffffffffffffffffffff161461159d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6115a682612d0e565b611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f55524920736574206f66206e6f6e6578697374656e7420746f6b656e0000000081525060200191505060405180910390fd5b8060156000848152602001908152602001600020908051906020019061163f9291906140c2565b505050565b61164c612d06565b73ffffffffffffffffffffffffffffffffffffffff1661166a6124c8565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b600061171c600d612de4565b905090565b600660009054906101000a900460ff16156117a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b60055434101561181c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b61182581612df9565b50565b6000611832612d06565b905061183e8183612f0c565b611893576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806142be6029913960400191505060405180910390fd5b61189e848484613000565b50505050565b6118ac612d06565b73ffffffffffffffffffffffffffffffffffffffff166118ca6124c8565b73ffffffffffffffffffffffffffffffffffffffff1614611953576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061195d6124c8565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156119a5573d6000803e3d6000fd5b505050565b60006119fd82600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061325590919063ffffffff16565b905092915050565b60606000611a12836120dc565b905060008167ffffffffffffffff81118015611a2d57600080fd5b50604051908082528060200260200182016040528015611a5c5781602001602082028036833780820191505090505b50905060005b82811015611a9957611a7485826119aa565b828281518110611a8057fe5b6020026020010181815250508080600101915050611a62565b508092505050919050565b611abf8383836040518060200160405280600081525061281b565b505050565b600080611adb83600d61326f90919063ffffffff16565b50905080915050919050565b611aef612d06565b73ffffffffffffffffffffffffffffffffffffffff16611b0d6124c8565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ba0612741565b90506003548110611c19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e74206578636565647320476f6c6420746f74616c537570706c7900000081525060200191505060405180910390fd5b611c2282612df9565b6001600854036008819055505050565b611c3a612d06565b73ffffffffffffffffffffffffffffffffffffffff16611c586124c8565b73ffffffffffffffffffffffffffffffffffffffff1614611ce1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060169080519060200190611cf79291906140c2565b5050565b600660009054906101000a900460ff1615611d7e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b8060045402341015611df8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b611e02828261329b565b5050565b6000611e368260405180606001604052806021815260200161430960219139600d61345f9092919063ffffffff16565b9050919050565b600660009054906101000a900460ff1615611ec0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b600454341015611f38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b6000611f42612741565b9050600081611f4f611710565b0390506002548110611fc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b6000600182019050611fdb848261347e565b8373ffffffffffffffffffffffffffffffffffffffff167ff9288aa3c16d157f87dbf24b824f702d4c76887d38e8fd6ef8212ad19a712aee8260006040518083815260200182151581526020019250505060405180910390a250505050565b606060168054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120d25780601f106120a7576101008083540402835291602001916120d2565b820191906000526020600020905b8154815290600101906020018083116120b557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061420a6022913960400191505060405180910390fd5b6121aa600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061349c565b9050919050565b6121b9612d06565b73ffffffffffffffffffffffffffffffffffffffff166121d76124c8565b73ffffffffffffffffffffffffffffffffffffffff1614612260576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612326612d06565b73ffffffffffffffffffffffffffffffffffffffff166123446124c8565b73ffffffffffffffffffffffffffffffffffffffff16146123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600754811115612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061424d6021913960400191505060405180910390fd5b6000612432611710565b905060025482820111156124ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e74206578636565647320746f74616c537570706c79000000000000000081525060200191505060405180910390fd5b6124b8838361329b565b8160075403600781905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060148054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125895780601f1061255e57610100808354040283529160200191612589565b820191906000526020600020905b81548152906001019060200180831161256c57829003601f168201915b5050505050905090565b600061259d612d06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f617070726f766520746f2063616c6c657200000000000000000000000000000081525060200191505060405180910390fd5b81601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318460405180821515815260200191505060405180910390a3505050565b600061274d600f612de4565b905090565b61275a612d06565b73ffffffffffffffffffffffffffffffffffffffff166127786124c8565b73ffffffffffffffffffffffffffffffffffffffff1614612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600990805190602001906128179291906140c2565b5050565b6000612825612d06565b90506128318184612f0c565b612886576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806142be6029913960400191505060405180910390fd5b612892858585856134b1565b5050505050565b60606128a482612d0e565b612916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0081525060200191505060405180910390fd5b600061292183612cf6565b905080156129cc57600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129bf5780601f10612994576101008083540402835291602001916129bf565b820191906000526020600020905b8154815290600101906020018083116129a257829003601f168201915b5050505050915050612a6b565b60098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612a625780601f10612a3757610100808354040283529160200191612a62565b820191906000526020600020905b815481529060010190602001808311612a4557829003601f168201915b50505050509150505b919050565b6000601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b0c612d06565b73ffffffffffffffffffffffffffffffffffffffff16612b2a6124c8565b73ffffffffffffffffffffffffffffffffffffffff1614612bb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806141e46026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002548303139050919050565b600033905090565b6000612d2482600d61352390919063ffffffff16565b9050919050565b816011600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d9e83611e06565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612df28260000161353d565b9050919050565b6000612e03612741565b905060006001826002540101905060035460025401811115612e8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b612ea38184600f61354e9092919063ffffffff16565b50612eae838261347e565b8273ffffffffffffffffffffffffffffffffffffffff167ff9288aa3c16d157f87dbf24b824f702d4c76887d38e8fd6ef8212ad19a712aee8260016040518083815260200182151581526020019250505060405180910390a2505050565b6000612f1782612d0e565b612f6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061432a6024913960400191505060405180910390fd5b6000612f7783611e06565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fe657508373ffffffffffffffffffffffffffffffffffffffff16612fce846112f3565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ff75750612ff68185612a70565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661302082611e06565b73ffffffffffffffffffffffffffffffffffffffff161461308c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061422c6021913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f7472616e7366657220746f20746865207a65726f20616464726573730000000081525060200191505060405180910390fd5b61313a600082612d2b565b61318b81600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061358390919063ffffffff16565b506131dd81600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061359d90919063ffffffff16565b506131f48183600d61354e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061326483600001836135b7565b60001c905092915050565b600080600080613282866000018661363a565b915091508160001c8160001c9350935050509250929050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561333e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e7420746f20746865207a65726f2061646472657373000000000000000081525060200191505060405180910390fd5b6000613348612741565b9050600081613355611710565b03905060025483820111156133d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b60005b8381101561345857600081600184010190506133f1868261347e565b8573ffffffffffffffffffffffffffffffffffffffff167ff9288aa3c16d157f87dbf24b824f702d4c76887d38e8fd6ef8212ad19a712aee8260006040518083815260200182151581526020019250505060405180910390a25080806001019150506133d5565b5050505050565b6000613472846000018460001b846136d3565b60001c90509392505050565b6134988282604051806020016040528060008152506137c9565b5050565b60006134aa8260000161383a565b9050919050565b6134bc848484613000565b6134c88484848461384b565b61351d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614294602a913960400191505060405180910390fd5b50505050565b6000613535836000018360001b613a64565b905092915050565b600081600001805490509050919050565b600061357a846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613a87565b90509392505050565b6000613595836000018360001b613b63565b905092915050565b60006135af836000018360001b613c4b565b905092915050565b600081836000018054905011613618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061416e6022913960400191505060405180910390fd5b82600001828154811061362757fe5b9060005260206000200154905092915050565b6000808284600001805490501161369c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142e76022913960400191505060405180910390fd5b60008460000184815481106136ad57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061379a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561375f578082015181840152602081019050613744565b50505050905090810190601f16801561378c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106137ad57fe5b9060005260206000209060020201600101549150509392505050565b6137d6600084848461384b565b61382b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614294602a913960400191505060405180910390fd5b6138358383613cbb565b505050565b600081600001805490509050919050565b600061386c8473ffffffffffffffffffffffffffffffffffffffff16613e00565b6138795760019050613a5c565b60006139e363150b7a0260e01b61388e612d06565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156139125780820151818401526020810190506138f7565b50505050905090810190601f16801561393f5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280602a8152602001614294602a91398773ffffffffffffffffffffffffffffffffffffffff16613e139092919063ffffffff16565b905060008180602001905160208110156139fc57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808460010160008581526020019081526020016000205490506000811415613b2e57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613b5c565b82856000016001830381548110613b4157fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60008083600101600084815260200190815260200160002054905060008114613c3f5760006001820390506000600186600001805490500390506000866000018281548110613bae57fe5b9060005260206000200154905080876000018481548110613bcb57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480613c0357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613c45565b60009150505b92915050565b6000613c578383613e2b565b613cb0578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613cb5565b600090505b92915050565b613cc481612d0e565b15613d37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f746f6b656e20616c7265616479206d696e74656400000000000000000000000081525060200191505060405180910390fd5b613d8881600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061359d90919063ffffffff16565b50613d9f8183600d61354e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060613e228484600085613e4e565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613ea9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061426e6026913960400191505060405180910390fd5b613eb285613e00565b613f24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613f735780518252602082019150602081019050602083039250613f50565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613fd5576040519150601f19603f3d011682016040523d82523d6000602084013e613fda565b606091505b5091509150613fea828286613ff6565b92505050949350505050565b60608315614006578290506140bb565b6000835111156140195782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614080578082015181840152602081019050614065565b50505050905090810190601f1680156140ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826140f8576000855561413f565b82601f1061411157805160ff191683800117855561413f565b8280016001018555821561413f579182015b8281111561413e578251825591602001919060010190614123565b5b50905061414c9190614150565b5090565b5b80821115614169576000816000905550600101614151565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737362616c616e636520717565727920666f7220746865207a65726f20616464726573737472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e726573657276656420746f6b656e206d696e742065786365656473206c696d6974416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c7472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465727472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64736f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e6f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122005dfd0cb2408ad725e340157c9a2534b6485e7afd9eaac2fc014a3b5732f56bd64736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000000747454e2e4152540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024741000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d634e446e7771695571346256687037744233417775547062614431756a3355506b6e5a4a53734d4476536f590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d515278356e467977436f745258514a4e4556685443793432314e776979574b6e31476370705a47526d74436b0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): GEN.ART
Arg [1] : symbol_ (string): GA
Arg [2] : uri_standard_ (string): https://ipfs.io/ipfs/QmcNDnwqiUq4bVhp7tB3AwuTpbaD1uj3UPknZJSsMDvSoY
Arg [3] : uri_gold_ (string): https://ipfs.io/ipfs/QmQRx5nFywCotRXQJNEVhTCy421NwiyWKn1GcppZGRmtCk
Arg [4] : max_members_ (uint256): 5000
-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 47454e2e41525400000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 4741000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [10] : 68747470733a2f2f697066732e696f2f697066732f516d634e446e7771695571
Arg [11] : 346256687037744233417775547062614431756a3355506b6e5a4a53734d4476
Arg [12] : 536f590000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [14] : 68747470733a2f2f697066732e696f2f697066732f516d515278356e46797743
Arg [15] : 6f745258514a4e4556685443793432314e776979574b6e31476370705a47526d
Arg [16] : 74436b0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
49863:20216:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8857:200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56417:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58498:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60958:246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;60472:420;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67964:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56211:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59908:203;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54845;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61935:394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56069:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59620:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57559:380;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62400:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;60188:222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56517:317;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68415:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54604:233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58270:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54104:492;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59447:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58003:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49103:148;;;;;;;;;;;;;:::i;:::-;;56842:456;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48444:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;58667:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61276:324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57306:103;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56309:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62648:385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58842:362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61671:197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;49406:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57417:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;8857:200;8987:4;9016:20;:33;9037:11;9016:33;;;;;;;;;;;;;;;;;;;;;;;;;;;9009:40;;8857:200;;;:::o;56417:92::-;48683:12;:10;:12::i;:::-;48672:23;;:7;:5;:7::i;:::-;:23;;;48664:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56497:4:::1;56485:9;:16;;;;;;;;;;;;:::i;:::-;;56417:92:::0;:::o;58498:100::-;58552:13;58585:5;58578:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58498:100;:::o;60958:246::-;61062:7;61095:16;61103:7;61095;:16::i;:::-;61087:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61172:15;:24;61188:7;61172:24;;;;;;;;;;;;;;;;;;;;;61165:31;;60958:246;;;:::o;60472:420::-;60545:13;60561:23;60576:7;60561:14;:23::i;:::-;60545:39;;60609:5;60603:11;;:2;:11;;;;60595:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60655:14;60672:12;:10;:12::i;:::-;60655:29;;60727:5;60717:15;;:6;:15;;;:57;;;;60736:38;60760:5;60767:6;60736:23;:38::i;:::-;60717:57;60695:155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60863:21;60872:2;60876:7;60863:8;:21::i;:::-;60472:420;;;;:::o;67964:221::-;48683:12;:10;:12::i;:::-;48672:23;;:7;:5;:7::i;:::-;:23;;;48664:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68086:16:::1;68094:7;68086;:16::i;:::-;68078:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;68168:9;68146:10;:19;68157:7;68146:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;67964:221:::0;;:::o;56211:90::-;48683:12;:10;:12::i;:::-;48672:23;;:7;:5;:7::i;:::-;:23;;;48664:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56284:9:::1;56274:7;;:19;;;;;;;;;;;;;;;;;;56211:90:::0;:::o;59908:203::-;59961:7;60082:21;:12;:19;:21::i;:::-;60075:28;;59908:203;:::o;54845:::-;54911:7;;;;;;;;;;;54910:8;54902:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54972:21;;54959:9;:34;;54951:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55026:14;55036:3;55026:9;:14::i;:::-;54845:203;:::o;61935:394::-;62114:14;62131:12;:10;:12::i;:::-;62114:29;;62176:35;62195:6;62203:7;62176:18;:35::i;:::-;62154:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62293:28;62303:4;62309:2;62313:7;62293:9;:28::i;:::-;61935:394;;;;:::o;56069:134::-;48683:12;:10;:12::i;:::-;48672:23;;:7;:5;:7::i;:::-;:23;;;48664:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56130:22:::1;56155:7;:5;:7::i;:::-;56130:32;;56173:6;:15;;:22;56189:5;56173:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48743:1;56069:134:::0;:::o;59620:212::-;59762:7;59794:30;59818:5;59794:13;:20;59808:5;59794:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;59787:37;;59620:212;;;;:::o;57559:380::-;57649:16;57683:18;57704:17;57714:6;57704:9;:17::i;:::-;57683:38;;57732:25;57774:10;57760:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57732:53;;57801:9;57796:108;57816:10;57812:1;:14;57796:108;;;57862:30;57882:6;57890:1;57862:19;:30::i;:::-;57848:8;57857:1;57848:11;;;;;;;;;;;;;:44;;;;;57828:3;;;;;;;57796:108;;;;57923:8;57916:15;;;;57559:380;;;:::o;62400:177::-;62530:39;62547:4;62553:2;62557:7;62530:39;;;;;;;;;;;;:16;:39::i;:::-;62400:177;;;:::o;60188:222::-;60308:7;60334:15;60355:22;60371:5;60355:12;:15;;:22;;;;:::i;:::-;60333:44;;;60395:7;60388:14;;;60188:222;;;:::o;56517:317::-;48683:12;:10;:12::i;:::-;48672:23;;:7;:5;:7::i;:::-;:23;;;48664:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56584:20:::1;56607:17;:15;:17::i;:::-;56584:40;;56672:16;;56657:12;:31;56635:110;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;56756:14;56766:3;56756:9;:14::i;:::-;56825:1;56803:19;;:23;56781:19;:45;;;;48743:1;56517:317:::0;:::o;68415:99::-;48683:12;:10;:12::i;:::-;48672:23;;:7;:5;:7::i;:::-;:23;;;48664:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68498:8:::1;68487;:19;;;;;;;;;;;;:::i;:::-;;68415:99:::0;:::o;54604:233::-;54686:7;;;;;;;;;;;54685:8;54677:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54767:6;54748:16;;:25;54734:9;:40;;54726:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54807:22;54817:3;54822:6;54807:9;:22::i;:::-;54604:233;;:::o;58270:161::-;58334:7;58361:62;58378:7;58361:62;;;;;;;;;;;;;;;;;:12;:16;;:62;;;;;:::i;:::-;58354:69;;58270:161;;;:::o;54104:492::-;54166:7;;;;;;;;;;;54165:8;54157:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54227:16;;54214:9;:29;;54206:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54276:24;54303:17;:15;:17::i;:::-;54276:44;;54331:20;54370:16;54354:13;:11;:13::i;:::-;:32;54331:55;;54420:11;;54405:12;:26;54397:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54476:16;54510:1;54495:12;:16;54476:35;;54522:24;54532:3;54537:8;54522:9;:24::i;:::-;54567:3;54562:26;;;54572:8;54582:5;54562:26;;;;;;;;;;;;;;;;;;;;;;;;;;54104:492;;;;:::o;59447:89::-;59487:13;59520:8;59513:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59447:89;:::o;58003:205::-;58067:7;58112:1;58095:19;;:5;:19;;;;58087:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58171:29;:13;:20;58185:5;58171:20;;;;;;;;;;;;;;;:27;:29::i;:::-;58164:36;;58003:205;;;:::o;49103:148::-;48683:12;:10;:12::i;:::-;48672:23;;:7;:5;:7::i;:::-;:23;;;48664:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49210:1:::1;49173:40;;49194:6;::::0;::::1;;;;;;;;49173:40;;;;;;;;;;;;49241:1;49224:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;49103:148::o:0;56842:456::-;48683:12;:10;:12::i;:::-;48672:23;;:7;:5;:7::i;:::-;:23;;;48664:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56955:15:::1;;56944:7;:26;;56922:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57042:20;57065:13;:11;:13::i;:::-;57042:36;;57139:11;;57127:7;57112:12;:22;57111:39;;57089:113;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;57213:23;57223:3;57228:7;57213:9;:23::i;:::-;57283:7;57265:15;;:25;57247:15;:43;;;;48743:1;56842:456:::0;;:::o;48444:95::-;48490:15;48525:6;;;;;;;;;;;48518:13;;48444:95;:::o;58667:104::-;58723:13;58756:7;58749:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58667:104;:::o;61276:324::-;61386:14;61403:12;:10;:12::i;:::-;61386:29;;61446:6;61434:18;;:8;:18;;;;61426:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61526:8;61487:18;:26;61506:6;61487:26;;;;;;;;;;;;;;;:36;61514:8;61487:36;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;61573:8;61550:42;;61565:6;61550:42;;;61583:8;61550:42;;;;;;;;;;;;;;;;;;;;61276:324;;;:::o;57306:103::-;57354:7;57381:20;:11;:18;:20::i;:::-;57374:27;;57306:103;:::o;56309:100::-;48683:12;:10;:12::i;:::-;48672:23;;:7;:5;:7::i;:::-;:23;;;48664:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56397:4:::1;56381:13;:20;;;;;;;;;;;;:::i;:::-;;56309:100:::0;:::o;62648:385::-;62807:14;62824:12;:10;:12::i;:::-;62807:29;;62871:35;62890:6;62898:7;62871:18;:35::i;:::-;62849:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62986:39;63000:4;63006:2;63010:7;63019:5;62986:13;:39::i;:::-;62648:385;;;;;:::o;58842:362::-;58960:13;58999:16;59007:7;58999;:16::i;:::-;58991:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59062:11;59076:20;59088:7;59076:11;:20::i;:::-;59062:34;;59113:6;59109:55;;;59143:9;59136:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59109:55;59183:13;59176:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58842:362;;;;:::o;61671:197::-;61796:4;61825:18;:25;61844:5;61825:25;;;;;;;;;;;;;;;:35;61851:8;61825:35;;;;;;;;;;;;;;;;;;;;;;;;;61818:42;;61671:197;;;;:::o;49406:321::-;48683:12;:10;:12::i;:::-;48672:23;;:7;:5;:7::i;:::-;:23;;;48664:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49569:1:::1;49549:22;;:8;:22;;;;49527:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49682:8;49653:38;;49674:6;::::0;::::1;;;;;;;;49653:38;;;;;;;;;;;;49711:8;49702:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;49406:321:::0;:::o;57417:134::-;57477:4;57542:1;57527:11;;57508:8;57501:38;:42;57494:49;;57417:134;;;:::o;47033:106::-;47086:15;47121:10;47114:17;;47033:106;:::o;64572:127::-;64637:4;64661:30;64683:7;64661:12;:21;;:30;;;;:::i;:::-;64654:37;;64572:127;;;:::o;69884:192::-;69986:2;69959:15;:24;69975:7;69959:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;70042:7;70038:2;70004:46;;70013:23;70028:7;70013:14;:23::i;:::-;70004:46;;;;;;;;;;;;69884:192;;:::o;44306:155::-;44402:7;44434:19;44442:3;:10;;44434:7;:19::i;:::-;44427:26;;44306:155;;;:::o;55056:417::-;55116:20;55139:17;:15;:17::i;:::-;55116:40;;55167:16;55215:1;55200:12;55186:11;;:26;:30;55167:49;;55275:16;;55261:11;;:30;55249:8;:42;;55227:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55359:30;55375:8;55385:3;55359:11;:15;;:30;;;;;:::i;:::-;;55400:24;55410:3;55415:8;55400:9;:24::i;:::-;55445:3;55440:25;;;55450:8;55460:4;55440:25;;;;;;;;;;;;;;;;;;;;;;;;;;55056:417;;;:::o;64866:414::-;64995:4;65025:16;65033:7;65025;:16::i;:::-;65017:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65093:13;65109:23;65124:7;65109:14;:23::i;:::-;65093:39;;65162:5;65151:16;;:7;:16;;;:64;;;;65208:7;65184:31;;:20;65196:7;65184:11;:20::i;:::-;:31;;;65151:64;:120;;;;65232:39;65256:5;65263:7;65232:23;:39::i;:::-;65151:120;65143:129;;;64866:414;;;;:::o;67206:602::-;67379:4;67352:31;;:23;67367:7;67352:14;:23::i;:::-;:31;;;67330:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67495:1;67481:16;;:2;:16;;;;67473:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67595:29;67612:1;67616:7;67595:8;:29::i;:::-;67637:35;67664:7;67637:13;:19;67651:4;67637:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;67683:30;67705:7;67683:13;:17;67697:2;67683:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;67726:29;67743:7;67752:2;67726:12;:16;;:29;;;;;:::i;:::-;;67792:7;67788:2;67773:27;;67782:4;67773:27;;;;;;;;;;;;67206:602;;;:::o;35843:169::-;35941:7;35981:22;35985:3;:10;;35997:5;35981:3;:22::i;:::-;35973:31;;35966:38;;35843:169;;;;:::o;44809:268::-;44916:7;44925;44951:11;44964:13;44981:22;44985:3;:10;;44997:5;44981:3;:22::i;:::-;44950:53;;;;45030:3;45022:12;;45060:5;45052:14;;45014:55;;;;;;44809:268;;;;;:::o;55481:580::-;55573:1;55558:17;;:3;:17;;;;55550:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55615:24;55642:17;:15;:17::i;:::-;55615:44;;55670:20;55709:16;55693:13;:11;:13::i;:::-;:32;55670:55;;55786:11;;55774:7;55759:12;:22;55758:39;;55736:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55870:9;55865:189;55889:7;55885:1;:11;55865:189;;;55918:16;55956:1;55952;55937:12;:16;:20;55918:39;;55972:24;55982:3;55987:8;55972:9;:24::i;:::-;56021:3;56016:26;;;56026:8;56036:5;56016:26;;;;;;;;;;;;;;;;;;;;;;;;;;55865:189;55898:3;;;;;;;55865:189;;;;55481:580;;;;:::o;46191:292::-;46332:7;46414:44;46419:3;:10;;46439:3;46431:12;;46445;46414:4;:44::i;:::-;46406:53;;46352:123;;46191:292;;;;;:::o;65623:110::-;65699:26;65709:2;65713:7;65699:26;;;;;;;;;;;;:9;:26::i;:::-;65623:110;;:::o;35375:114::-;35435:7;35462:19;35470:3;:10;;35462:7;:19::i;:::-;35455:26;;35375:114;;;:::o;63915:344::-;64072:28;64082:4;64088:2;64092:7;64072:9;:28::i;:::-;64133:48;64156:4;64162:2;64166:7;64175:5;64133:22;:48::i;:::-;64111:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63915:344;;;;:::o;44035:183::-;44146:4;44175:35;44185:3;:10;;44205:3;44197:12;;44175:9;:35::i;:::-;44168:42;;44035:183;;;;:::o;40651:110::-;40707:7;40734:3;:12;;:19;;;;40727:26;;40651:110;;;:::o;43401:219::-;43524:4;43548:64;43553:3;:10;;43573:3;43565:12;;43603:5;43587:23;;43579:32;;43548:4;:64::i;:::-;43541:71;;43401:219;;;;;:::o;34865:160::-;34953:4;34982:35;34990:3;:10;;35010:5;35002:14;;34982:7;:35::i;:::-;34975:42;;34865:160;;;;:::o;34558:131::-;34625:4;34649:32;34654:3;:10;;34674:5;34666:14;;34649:4;:32::i;:::-;34642:39;;34558:131;;;;:::o;30509:273::-;30603:7;30671:5;30650:3;:11;;:18;;;;:26;30628:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30756:3;:11;;30768:5;30756:18;;;;;;;;;;;;;;;;30749:25;;30509:273;;;;:::o;41126:348::-;41220:7;41229;41298:5;41276:3;:12;;:19;;;;:27;41254:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41378:22;41403:3;:12;;41416:5;41403:19;;;;;;;;;;;;;;;;;;41378:44;;41441:5;:10;;;41453:5;:12;;;41433:33;;;;;41126:348;;;;;:::o;42724:353::-;42852:7;42872:16;42891:3;:12;;:17;42904:3;42891:17;;;;;;;;;;;;42872:36;;42939:1;42927:8;:13;;42942:12;42919:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43009:3;:12;;43033:1;43022:8;:12;43009:26;;;;;;;;;;;;;;;;;;:33;;;43002:40;;;42724:353;;;;;:::o;65960:313::-;66112:54;66143:1;66147:2;66151:7;66160:5;66112:22;:54::i;:::-;66090:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66247:18;66253:2;66257:7;66247:5;:18::i;:::-;65960:313;;;:::o;30046:109::-;30102:7;30129:3;:11;;:18;;;;30122:25;;30046:109;;;:::o;69079:686::-;69234:4;69256:15;:2;:13;;;:15::i;:::-;69251:60;;69295:4;69288:11;;;;69251:60;69321:23;69347:305;69418:45;;;69482:12;:10;:12::i;:::-;69513:4;69536:7;69562:5;69377:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69347:305;;;;;;;;;;;;;;;;;:2;:15;;;;:305;;;;;:::i;:::-;69321:331;;69663:13;69690:10;69679:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69663:48;;50754:10;69740:16;;69730:26;;;:6;:26;;;;69722:35;;;;69079:686;;;;;;;:::o;40399:157::-;40497:4;40547:1;40526:3;:12;;:17;40539:3;40526:17;;;;;;;;;;;;:22;;40519:29;;40399:157;;;;:::o;37841:737::-;37951:4;38067:16;38086:3;:12;;:17;38099:3;38086:17;;;;;;;;;;;;38067:36;;38132:1;38120:8;:13;38116:455;;;38200:3;:12;;38218:36;;;;;;;;38234:3;38218:36;;;;38247:5;38218:36;;;38200:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38413:3;:12;;:19;;;;38393:3;:12;;:17;38406:3;38393:17;;;;;;;;;;;:39;;;;38454:4;38447:11;;;;;38116:455;38527:5;38491:3;:12;;38515:1;38504:8;:12;38491:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38554:5;38547:12;;;37841:737;;;;;;:::o;28156:1557::-;28222:4;28340:18;28361:3;:12;;:19;28374:5;28361:19;;;;;;;;;;;;28340:40;;28411:1;28397:10;:15;28393:1313;;28772:21;28809:1;28796:10;:14;28772:38;;28825:17;28866:1;28845:3;:11;;:18;;;;:22;28825:42;;29112:17;29132:3;:11;;29144:9;29132:22;;;;;;;;;;;;;;;;29112:42;;29278:9;29249:3;:11;;29261:13;29249:26;;;;;;;;;;;;;;;:38;;;;29397:1;29381:13;:17;29355:3;:12;;:23;29368:9;29355:23;;;;;;;;;;;:43;;;;29507:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;29602:3;:12;;:19;29615:5;29602:19;;;;;;;;;;;29595:26;;;29645:4;29638:11;;;;;;;;28393:1313;29689:5;29682:12;;;28156:1557;;;;;:::o;27566:414::-;27629:4;27651:21;27661:3;27666:5;27651:9;:21::i;:::-;27646:327;;27689:3;:11;;27706:5;27689:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27872:3;:11;;:18;;;;27850:3;:12;;:19;27863:5;27850:19;;;;;;;;;;;:40;;;;27912:4;27905:11;;;;27646:327;27956:5;27949:12;;27566:414;;;;;:::o;66609:260::-;66690:16;66698:7;66690;:16::i;:::-;66689:17;66681:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66742:30;66764:7;66742:13;:17;66756:2;66742:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;66783:29;66800:7;66809:2;66783:12;:16;;:29;;;;;:::i;:::-;;66853:7;66849:2;66828:33;;66845:1;66828:33;;;;;;;;;;;;66609:260;;:::o;17986:444::-;18046:4;18254:12;18378:7;18366:20;18358:28;;18421:1;18414:4;:8;18407:15;;;17986:444;;;:::o;21023:229::-;21160:12;21192:52;21214:6;21222:4;21228:1;21231:12;21192:21;:52::i;:::-;21185:59;;21023:229;;;;;:::o;29799:161::-;29899:4;29951:1;29928:3;:12;;:19;29941:5;29928:19;;;;;;;;;;;;:24;;29921:31;;29799:161;;;;:::o;22239:632::-;22409:12;22481:5;22456:21;:30;;22434:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22571:18;22582:6;22571:10;:18::i;:::-;22563:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22697:12;22711:23;22738:6;:11;;22757:5;22778:4;22738:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22696:97;;;;22811:52;22829:7;22838:10;22850:12;22811:17;:52::i;:::-;22804:59;;;;22239:632;;;;;;:::o;25162:777::-;25312:12;25341:7;25337:595;;;25372:10;25365:17;;;;25337:595;25506:1;25486:10;:17;:21;25482:439;;;25749:10;25743:17;25810:15;25797:10;25793:2;25789:19;25782:44;25697:148;25892:12;25885:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25162:777;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://05dfd0cb2408ad725e340157c9a2534b6485e7afd9eaac2fc014a3b5732f56bd
Loading...
Loading
Loading...
Loading
OVERVIEW
GEN.ART is a generative art platform, become a member today to mint drops from amazing artists.Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
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.