Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 207 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 18536560 | 524 days ago | IN | 0 ETH | 0.00131551 | ||||
Transfer From | 15431481 | 962 days ago | IN | 0 ETH | 0.0014365 | ||||
Set Approval For... | 15336386 | 977 days ago | IN | 0 ETH | 0.00032101 | ||||
Set Approval For... | 15251238 | 990 days ago | IN | 0 ETH | 0.00059937 | ||||
Set Approval For... | 15047296 | 1022 days ago | IN | 0 ETH | 0.00184073 | ||||
Set Approval For... | 14240294 | 1152 days ago | IN | 0 ETH | 0.00250292 | ||||
Transfer From | 14120517 | 1170 days ago | IN | 0 ETH | 0.01234935 | ||||
Set Approval For... | 13839292 | 1214 days ago | IN | 0 ETH | 0.00305145 | ||||
Transfer From | 13763405 | 1226 days ago | IN | 0 ETH | 0.00635475 | ||||
Transfer From | 13745845 | 1228 days ago | IN | 0 ETH | 0.00640808 | ||||
Set Approval For... | 13736171 | 1230 days ago | IN | 0 ETH | 0.00728794 | ||||
Transfer From | 13736012 | 1230 days ago | IN | 0 ETH | 0.00859956 | ||||
Transfer From | 13735920 | 1230 days ago | IN | 0 ETH | 0.00646459 | ||||
Set Approval For... | 13735065 | 1230 days ago | IN | 0 ETH | 0.00462614 | ||||
Transfer From | 13559358 | 1258 days ago | IN | 0 ETH | 0.0095855 | ||||
Set Approval For... | 13539405 | 1261 days ago | IN | 0 ETH | 0.00992684 | ||||
Transfer From | 13476195 | 1271 days ago | IN | 0 ETH | 0.00526476 | ||||
Transfer From | 13407064 | 1282 days ago | IN | 0 ETH | 0.00586382 | ||||
Set Approval For... | 13406392 | 1282 days ago | IN | 0 ETH | 0.00519464 | ||||
Set Approval For... | 13369230 | 1288 days ago | IN | 0 ETH | 0.00558567 | ||||
Set Approval For... | 13347801 | 1291 days ago | IN | 0 ETH | 0.00631905 | ||||
Transfer From | 13337901 | 1293 days ago | IN | 0 ETH | 0.0041999 | ||||
Transfer From | 13311045 | 1297 days ago | IN | 0 ETH | 0.00489169 | ||||
Set Approval For... | 13303678 | 1298 days ago | IN | 0 ETH | 0.0032153 | ||||
Set Approval For... | 13302009 | 1298 days ago | IN | 0 ETH | 0.00195431 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
- | 13143603 | 1323 days ago | 9.9 ETH |
Loading...
Loading
Contract Name:
YCSM
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-31 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ 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) { unchecked { 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) { unchecked { 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) { unchecked { // 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) { unchecked { 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) { unchecked { 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) { return a + b; } /** * @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) { 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) { return a * b; } /** * @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. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { 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) { 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) { unchecked { 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. * * 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) { unchecked { 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @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 ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @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); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } contract YCSM is ERC721Enumerable, Ownable { using SafeMath for uint256; bool public mintingActive; uint256 public mintingPrice = 0.05 ether; uint256 public mintingPerTxLimit = 1; uint256 public mintingStartTimestamp; mapping(address => bool) private purchased; address public poe; uint256 public maxSupply = 100; string public baseURI; constructor(uint256 mintingStart, string memory _uri, address poeToken) ERC721("YCSM", "YCSM") { mintingActive = false; mintingStartTimestamp = mintingStart; baseURI = _uri; poe = poeToken; } function hasPurchased(address buyer) public view returns (bool){ return purchased[buyer]; } function mint(uint256 _amount) public payable { require(mintingActive == true, "Minting is currently inactive"); require(mintingStartTimestamp <= block.timestamp, "Sale not started yet"); require(_amount <= mintingPerTxLimit, "Amount exceeded tx limit"); require(totalSupply().add(_amount) <= maxSupply, "This tx woud exceed max supply"); require(msg.value >= mintingPrice.mul(_amount), "Not enough ether sent"); require(IERC20(poe).balanceOf(msg.sender) == 1, "Must Authenticate to mint!"); require(!hasPurchased(msg.sender), "Cannot buy: You've already purchased!"); uint256 tsupply = totalSupply(); for(uint256 i = 0; i < _amount; i++) { _safeMint(msg.sender, tsupply + i); } purchased[msg.sender] = true; } function adminMint(address receiver, uint256 _amount) public onlyOwner { require(totalSupply().add(_amount) <= maxSupply, "This tx would exceed max supply"); uint256 tsupply = totalSupply(); for(uint256 i = 0; i < _amount; i++) { _safeMint(receiver, tsupply + i); } } /** * Set Base URI */ function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } /** * Get the metadata for a given tokenId */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId + 1), ".json")) : ""; } function setMintingPrice(uint256 newMintingPrice) public onlyOwner { mintingPrice = newMintingPrice; } function setMintingActive(bool newMintingState) public onlyOwner { mintingActive = newMintingState; } function setMintingStart(uint256 mintingStart) public onlyOwner { mintingStartTimestamp = mintingStart; } /** * Withdraw all funds from contract (Owner only) */ function withdrawFunds() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"mintingStart","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"poeToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"buyer","type":"address"}],"name":"hasPurchased","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingPerTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poe","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newMintingState","type":"bool"}],"name":"setMintingActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintingPrice","type":"uint256"}],"name":"setMintingPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintingStart","type":"uint256"}],"name":"setMintingStart","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266b1a2bc2ec50000600b556001600c5560646010553480156200002657600080fd5b5060405162004c9438038062004c9483398181016040528101906200004c9190620003af565b6040518060400160405280600481526020017f5943534d000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5943534d000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d09291906200025f565b508060019080519060200190620000e99291906200025f565b5050506200010c620001006200019160201b60201c565b6200019960201b60201c565b6000600a60146101000a81548160ff02191690831515021790555082600d819055508160119080519060200190620001469291906200025f565b5080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000600565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026d90620004f1565b90600052602060002090601f016020900481019282620002915760008555620002dd565b82601f10620002ac57805160ff1916838001178555620002dd565b82800160010185558215620002dd579182015b82811115620002dc578251825591602001919060010190620002bf565b5b509050620002ec9190620002f0565b5090565b5b808211156200030b576000816000905550600101620002f1565b5090565b600062000326620003208462000447565b6200041e565b9050828152602081018484840111156200033f57600080fd5b6200034c848285620004bb565b509392505050565b6000815190506200036581620005cc565b92915050565b600082601f8301126200037d57600080fd5b81516200038f8482602086016200030f565b91505092915050565b600081519050620003a981620005e6565b92915050565b600080600060608486031215620003c557600080fd5b6000620003d58682870162000398565b935050602084015167ffffffffffffffff811115620003f357600080fd5b62000401868287016200036b565b9250506040620004148682870162000354565b9150509250925092565b60006200042a6200043d565b905062000438828262000527565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046557620004646200058c565b5b6200047082620005bb565b9050602081019050919050565b60006200048a8262000491565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620004db578082015181840152602081019050620004be565b83811115620004eb576000848401525b50505050565b600060028204905060018216806200050a57607f821691505b602082108114156200052157620005206200055d565b5b50919050565b6200053282620005bb565b810181811067ffffffffffffffff821117156200055457620005536200058c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005d7816200047d565b8114620005e357600080fd5b50565b620005f181620004b1565b8114620005fd57600080fd5b50565b61468480620006106000396000f3fe6080604052600436106101f95760003560e01c80638417b47f1161010d578063b88d4fde116100a0578063d04ef2851161006f578063d04ef28514610726578063d5abeb011461074f578063e58306f91461077a578063e985e9c5146107a3578063f2fde38b146107e0576101f9565b8063b88d4fde1461066a578063c87b56dd14610693578063ca08d3d1146106d0578063caa83a9c146106fb576101f9565b806395d89b41116100dc57806395d89b41146105cf578063a0712d68146105fa578063a22cb46514610616578063b7877ed41461063f576101f9565b80638417b47f146105155780638da5cb5b1461053e57806390118fb41461056957806390218652146105a6576101f9565b806331f9c9191161019057806355f804b31161015f57806355f804b3146104305780636352211e146104595780636c0360eb1461049657806370a08231146104c1578063715018a6146104fe576101f9565b806331f9c9191461037457806335db70b51461039f57806342842e0e146103ca5780634f6ccce7146103f3576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f757806324600fc3146103205780632f745c5914610337576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906130fe565b610809565b6040516102329190613779565b60405180910390f35b34801561024757600080fd5b50610250610883565b60405161025d9190613794565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613191565b610915565b60405161029a9190613712565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613099565b61099a565b005b3480156102d857600080fd5b506102e1610ab2565b6040516102ee9190613af6565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612f93565b610abf565b005b34801561032c57600080fd5b50610335610b1f565b005b34801561034357600080fd5b5061035e60048036038101906103599190613099565b610bea565b60405161036b9190613af6565b60405180910390f35b34801561038057600080fd5b50610389610c8f565b6040516103969190613779565b60405180910390f35b3480156103ab57600080fd5b506103b4610ca2565b6040516103c19190613af6565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612f93565b610ca8565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190613191565b610cc8565b6040516104279190613af6565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613150565b610d5f565b005b34801561046557600080fd5b50610480600480360381019061047b9190613191565b610df5565b60405161048d9190613712565b60405180910390f35b3480156104a257600080fd5b506104ab610ea7565b6040516104b89190613794565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190612f2e565b610f35565b6040516104f59190613af6565b60405180910390f35b34801561050a57600080fd5b50610513610fed565b005b34801561052157600080fd5b5061053c60048036038101906105379190613191565b611075565b005b34801561054a57600080fd5b506105536110fb565b6040516105609190613712565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190612f2e565b611125565b60405161059d9190613779565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613191565b61117b565b005b3480156105db57600080fd5b506105e4611201565b6040516105f19190613794565b60405180910390f35b610614600480360381019061060f9190613191565b611293565b005b34801561062257600080fd5b5061063d6004803603810190610638919061305d565b6115fa565b005b34801561064b57600080fd5b5061065461177b565b6040516106619190613af6565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612fe2565b611781565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190613191565b6117e3565b6040516106c79190613794565b60405180910390f35b3480156106dc57600080fd5b506106e5611897565b6040516106f29190613af6565b60405180910390f35b34801561070757600080fd5b5061071061189d565b60405161071d9190613712565b60405180910390f35b34801561073257600080fd5b5061074d600480360381019061074891906130d5565b6118c3565b005b34801561075b57600080fd5b5061076461195c565b6040516107719190613af6565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190613099565b611962565b005b3480156107af57600080fd5b506107ca60048036038101906107c59190612f57565b611a81565b6040516107d79190613779565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190612f2e565b611b15565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087c575061087b82611c0d565b5b9050919050565b60606000805461089290613dbb565b80601f01602080910402602001604051908101604052809291908181526020018280546108be90613dbb565b801561090b5780601f106108e05761010080835404028352916020019161090b565b820191906000526020600020905b8154815290600101906020018083116108ee57829003601f168201915b5050505050905090565b600061092082611cef565b61095f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095690613996565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a582610df5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90613a56565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a35611d5b565b73ffffffffffffffffffffffffffffffffffffffff161480610a645750610a6381610a5e611d5b565b611a81565b5b610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90613916565b60405180910390fd5b610aad8383611d63565b505050565b6000600880549050905090565b610ad0610aca611d5b565b82611e1c565b610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690613a76565b60405180910390fd5b610b1a838383611efa565b505050565b610b27611d5b565b73ffffffffffffffffffffffffffffffffffffffff16610b456110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b92906139b6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610be6573d6000803e3d6000fd5b5050565b6000610bf583610f35565b8210610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d906137d6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600a60149054906101000a900460ff1681565b600b5481565b610cc383838360405180602001604052806000815250611781565b505050565b6000610cd2610ab2565b8210610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90613ab6565b60405180910390fd5b60088281548110610d4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d67611d5b565b73ffffffffffffffffffffffffffffffffffffffff16610d856110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906139b6565b60405180910390fd5b8060119080519060200190610df1929190612d3d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613956565b60405180910390fd5b80915050919050565b60118054610eb490613dbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee090613dbb565b8015610f2d5780601f10610f0257610100808354040283529160200191610f2d565b820191906000526020600020905b815481529060010190602001808311610f1057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90613936565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ff5611d5b565b73ffffffffffffffffffffffffffffffffffffffff166110136110fb565b73ffffffffffffffffffffffffffffffffffffffff1614611069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611060906139b6565b60405180910390fd5b6110736000612156565b565b61107d611d5b565b73ffffffffffffffffffffffffffffffffffffffff1661109b6110fb565b73ffffffffffffffffffffffffffffffffffffffff16146110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e8906139b6565b60405180910390fd5b80600b8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611183611d5b565b73ffffffffffffffffffffffffffffffffffffffff166111a16110fb565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906139b6565b60405180910390fd5b80600d8190555050565b60606001805461121090613dbb565b80601f016020809104026020016040519081016040528092919081815260200182805461123c90613dbb565b80156112895780601f1061125e57610100808354040283529160200191611289565b820191906000526020600020905b81548152906001019060200180831161126c57829003601f168201915b5050505050905090565b60011515600a60149054906101000a900460ff161515146112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e0906138f6565b60405180910390fd5b42600d54111561132e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611325906137b6565b60405180910390fd5b600c54811115611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a90613856565b60405180910390fd5b60105461139082611382610ab2565b61221c90919063ffffffff16565b11156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890613a36565b60405180910390fd5b6113e681600b5461223290919063ffffffff16565b341015611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90613ad6565b60405180910390fd5b6001600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016114859190613712565b60206040518083038186803b15801561149d57600080fd5b505afa1580156114b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d591906131ba565b14611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90613a96565b60405180910390fd5b61151e33611125565b1561155e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155590613a16565b60405180910390fd5b6000611568610ab2565b905060005b8281101561159d5761158a3382846115859190613bf0565b612248565b808061159590613e1e565b91505061156d565b506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611602611d5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166790613896565b60405180910390fd5b806005600061167d611d5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661172a611d5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176f9190613779565b60405180910390a35050565b600d5481565b61179261178c611d5b565b83611e1c565b6117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890613a76565b60405180910390fd5b6117dd84848484612266565b50505050565b60606117ee82611cef565b61182d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611824906139f6565b60405180910390fd5b60006011805461183c90613dbb565b9050116118585760405180602001604052806000815250611890565b601161186f60018461186a9190613bf0565b6122c2565b6040516020016118809291906136e3565b6040516020818303038152906040525b9050919050565b600c5481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118cb611d5b565b73ffffffffffffffffffffffffffffffffffffffff166118e96110fb565b73ffffffffffffffffffffffffffffffffffffffff161461193f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611936906139b6565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b60105481565b61196a611d5b565b73ffffffffffffffffffffffffffffffffffffffff166119886110fb565b73ffffffffffffffffffffffffffffffffffffffff16146119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d5906139b6565b60405180910390fd5b6010546119fb826119ed610ab2565b61221c90919063ffffffff16565b1115611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906138b6565b60405180910390fd5b6000611a46610ab2565b905060005b82811015611a7b57611a68848284611a639190613bf0565b612248565b8080611a7390613e1e565b915050611a4b565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b1d611d5b565b73ffffffffffffffffffffffffffffffffffffffff16611b3b6110fb565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b88906139b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613816565b60405180910390fd5b611c0a81612156565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cd857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ce85750611ce78261246f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dd683610df5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e2782611cef565b611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d906138d6565b60405180910390fd5b6000611e7183610df5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ee057508373ffffffffffffffffffffffffffffffffffffffff16611ec884610915565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ef15750611ef08185611a81565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f1a82610df5565b73ffffffffffffffffffffffffffffffffffffffff1614611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f67906139d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790613876565b60405180910390fd5b611feb8383836124d9565b611ff6600082611d63565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120469190613cd1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209d9190613bf0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361222a9190613bf0565b905092915050565b600081836122409190613c77565b905092915050565b6122628282604051806020016040528060008152506125ed565b5050565b612271848484611efa565b61227d84848484612648565b6122bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b3906137f6565b60405180910390fd5b50505050565b6060600082141561230a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061246a565b600082905060005b6000821461233c57808061232590613e1e565b915050600a826123359190613c46565b9150612312565b60008167ffffffffffffffff81111561237e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123b05781602001600182028036833780820191505090505b5090505b60008514612463576001826123c99190613cd1565b9150600a856123d89190613e67565b60306123e49190613bf0565b60f81b818381518110612420577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561245c9190613c46565b94506123b4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124e48383836127df565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561252757612522816127e4565b612566565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461256557612564838261282d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a9576125a48161299a565b6125e8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125e7576125e68282612add565b5b5b505050565b6125f78383612b5c565b6126046000848484612648565b612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a906137f6565b60405180910390fd5b505050565b60006126698473ffffffffffffffffffffffffffffffffffffffff16612d2a565b156127d2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612692611d5b565b8786866040518563ffffffff1660e01b81526004016126b4949392919061372d565b602060405180830381600087803b1580156126ce57600080fd5b505af19250505080156126ff57506040513d601f19601f820116820180604052508101906126fc9190613127565b60015b612782573d806000811461272f576040519150601f19603f3d011682016040523d82523d6000602084013e612734565b606091505b5060008151141561277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906137f6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127d7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161283a84610f35565b6128449190613cd1565b9050600060076000848152602001908152602001600020549050818114612929576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129ae9190613cd1565b9050600060096000848152602001908152602001600020549050600060088381548110612a04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612a4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ac1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ae883610f35565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc390613976565b60405180910390fd5b612bd581611cef565b15612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c90613836565b60405180910390fd5b612c21600083836124d9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c719190613bf0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612d4990613dbb565b90600052602060002090601f016020900481019282612d6b5760008555612db2565b82601f10612d8457805160ff1916838001178555612db2565b82800160010185558215612db2579182015b82811115612db1578251825591602001919060010190612d96565b5b509050612dbf9190612dc3565b5090565b5b80821115612ddc576000816000905550600101612dc4565b5090565b6000612df3612dee84613b36565b613b11565b905082815260208101848484011115612e0b57600080fd5b612e16848285613d79565b509392505050565b6000612e31612e2c84613b67565b613b11565b905082815260208101848484011115612e4957600080fd5b612e54848285613d79565b509392505050565b600081359050612e6b816145f2565b92915050565b600081359050612e8081614609565b92915050565b600081359050612e9581614620565b92915050565b600081519050612eaa81614620565b92915050565b600082601f830112612ec157600080fd5b8135612ed1848260208601612de0565b91505092915050565b600082601f830112612eeb57600080fd5b8135612efb848260208601612e1e565b91505092915050565b600081359050612f1381614637565b92915050565b600081519050612f2881614637565b92915050565b600060208284031215612f4057600080fd5b6000612f4e84828501612e5c565b91505092915050565b60008060408385031215612f6a57600080fd5b6000612f7885828601612e5c565b9250506020612f8985828601612e5c565b9150509250929050565b600080600060608486031215612fa857600080fd5b6000612fb686828701612e5c565b9350506020612fc786828701612e5c565b9250506040612fd886828701612f04565b9150509250925092565b60008060008060808587031215612ff857600080fd5b600061300687828801612e5c565b945050602061301787828801612e5c565b935050604061302887828801612f04565b925050606085013567ffffffffffffffff81111561304557600080fd5b61305187828801612eb0565b91505092959194509250565b6000806040838503121561307057600080fd5b600061307e85828601612e5c565b925050602061308f85828601612e71565b9150509250929050565b600080604083850312156130ac57600080fd5b60006130ba85828601612e5c565b92505060206130cb85828601612f04565b9150509250929050565b6000602082840312156130e757600080fd5b60006130f584828501612e71565b91505092915050565b60006020828403121561311057600080fd5b600061311e84828501612e86565b91505092915050565b60006020828403121561313957600080fd5b600061314784828501612e9b565b91505092915050565b60006020828403121561316257600080fd5b600082013567ffffffffffffffff81111561317c57600080fd5b61318884828501612eda565b91505092915050565b6000602082840312156131a357600080fd5b60006131b184828501612f04565b91505092915050565b6000602082840312156131cc57600080fd5b60006131da84828501612f19565b91505092915050565b6131ec81613d05565b82525050565b6131fb81613d17565b82525050565b600061320c82613bad565b6132168185613bc3565b9350613226818560208601613d88565b61322f81613f54565b840191505092915050565b600061324582613bb8565b61324f8185613bd4565b935061325f818560208601613d88565b61326881613f54565b840191505092915050565b600061327e82613bb8565b6132888185613be5565b9350613298818560208601613d88565b80840191505092915050565b600081546132b181613dbb565b6132bb8186613be5565b945060018216600081146132d657600181146132e75761331a565b60ff1983168652818601935061331a565b6132f085613b98565b60005b83811015613312578154818901526001820191506020810190506132f3565b838801955050505b50505092915050565b6000613330601483613bd4565b915061333b82613f65565b602082019050919050565b6000613353602b83613bd4565b915061335e82613f8e565b604082019050919050565b6000613376603283613bd4565b915061338182613fdd565b604082019050919050565b6000613399602683613bd4565b91506133a48261402c565b604082019050919050565b60006133bc601c83613bd4565b91506133c78261407b565b602082019050919050565b60006133df601883613bd4565b91506133ea826140a4565b602082019050919050565b6000613402602483613bd4565b915061340d826140cd565b604082019050919050565b6000613425601983613bd4565b91506134308261411c565b602082019050919050565b6000613448601f83613bd4565b915061345382614145565b602082019050919050565b600061346b602c83613bd4565b91506134768261416e565b604082019050919050565b600061348e601d83613bd4565b9150613499826141bd565b602082019050919050565b60006134b1603883613bd4565b91506134bc826141e6565b604082019050919050565b60006134d4602a83613bd4565b91506134df82614235565b604082019050919050565b60006134f7602983613bd4565b915061350282614284565b604082019050919050565b600061351a602083613bd4565b9150613525826142d3565b602082019050919050565b600061353d602c83613bd4565b9150613548826142fc565b604082019050919050565b6000613560600583613be5565b915061356b8261434b565b600582019050919050565b6000613583602083613bd4565b915061358e82614374565b602082019050919050565b60006135a6602983613bd4565b91506135b18261439d565b604082019050919050565b60006135c9602f83613bd4565b91506135d4826143ec565b604082019050919050565b60006135ec602583613bd4565b91506135f78261443b565b604082019050919050565b600061360f601e83613bd4565b915061361a8261448a565b602082019050919050565b6000613632602183613bd4565b915061363d826144b3565b604082019050919050565b6000613655603183613bd4565b915061366082614502565b604082019050919050565b6000613678601a83613bd4565b915061368382614551565b602082019050919050565b600061369b602c83613bd4565b91506136a68261457a565b604082019050919050565b60006136be601583613bd4565b91506136c9826145c9565b602082019050919050565b6136dd81613d6f565b82525050565b60006136ef82856132a4565b91506136fb8284613273565b915061370682613553565b91508190509392505050565b600060208201905061372760008301846131e3565b92915050565b600060808201905061374260008301876131e3565b61374f60208301866131e3565b61375c60408301856136d4565b818103606083015261376e8184613201565b905095945050505050565b600060208201905061378e60008301846131f2565b92915050565b600060208201905081810360008301526137ae818461323a565b905092915050565b600060208201905081810360008301526137cf81613323565b9050919050565b600060208201905081810360008301526137ef81613346565b9050919050565b6000602082019050818103600083015261380f81613369565b9050919050565b6000602082019050818103600083015261382f8161338c565b9050919050565b6000602082019050818103600083015261384f816133af565b9050919050565b6000602082019050818103600083015261386f816133d2565b9050919050565b6000602082019050818103600083015261388f816133f5565b9050919050565b600060208201905081810360008301526138af81613418565b9050919050565b600060208201905081810360008301526138cf8161343b565b9050919050565b600060208201905081810360008301526138ef8161345e565b9050919050565b6000602082019050818103600083015261390f81613481565b9050919050565b6000602082019050818103600083015261392f816134a4565b9050919050565b6000602082019050818103600083015261394f816134c7565b9050919050565b6000602082019050818103600083015261396f816134ea565b9050919050565b6000602082019050818103600083015261398f8161350d565b9050919050565b600060208201905081810360008301526139af81613530565b9050919050565b600060208201905081810360008301526139cf81613576565b9050919050565b600060208201905081810360008301526139ef81613599565b9050919050565b60006020820190508181036000830152613a0f816135bc565b9050919050565b60006020820190508181036000830152613a2f816135df565b9050919050565b60006020820190508181036000830152613a4f81613602565b9050919050565b60006020820190508181036000830152613a6f81613625565b9050919050565b60006020820190508181036000830152613a8f81613648565b9050919050565b60006020820190508181036000830152613aaf8161366b565b9050919050565b60006020820190508181036000830152613acf8161368e565b9050919050565b60006020820190508181036000830152613aef816136b1565b9050919050565b6000602082019050613b0b60008301846136d4565b92915050565b6000613b1b613b2c565b9050613b278282613ded565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5157613b50613f25565b5b613b5a82613f54565b9050602081019050919050565b600067ffffffffffffffff821115613b8257613b81613f25565b5b613b8b82613f54565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bfb82613d6f565b9150613c0683613d6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3b57613c3a613e98565b5b828201905092915050565b6000613c5182613d6f565b9150613c5c83613d6f565b925082613c6c57613c6b613ec7565b5b828204905092915050565b6000613c8282613d6f565b9150613c8d83613d6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cc657613cc5613e98565b5b828202905092915050565b6000613cdc82613d6f565b9150613ce783613d6f565b925082821015613cfa57613cf9613e98565b5b828203905092915050565b6000613d1082613d4f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613da6578082015181840152602081019050613d8b565b83811115613db5576000848401525b50505050565b60006002820490506001821680613dd357607f821691505b60208210811415613de757613de6613ef6565b5b50919050565b613df682613f54565b810181811067ffffffffffffffff82111715613e1557613e14613f25565b5b80604052505050565b6000613e2982613d6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e5c57613e5b613e98565b5b600182019050919050565b6000613e7282613d6f565b9150613e7d83613d6f565b925082613e8d57613e8c613ec7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c65206e6f74207374617274656420796574000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f416d6f756e74206578636565646564207478206c696d69740000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320747820776f756c6420657863656564206d617820737570706c7900600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74696e672069732063757272656e746c7920696e616374697665000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e6e6f74206275793a20596f7527766520616c726561647920707572636860008201527f6173656421000000000000000000000000000000000000000000000000000000602082015250565b7f5468697320747820776f756420657863656564206d617820737570706c790000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d7573742041757468656e74696361746520746f206d696e7421000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6145fb81613d05565b811461460657600080fd5b50565b61461281613d17565b811461461d57600080fd5b50565b61462981613d23565b811461463457600080fd5b50565b61464081613d6f565b811461464b57600080fd5b5056fea264697066735822122078755c226ffb209a9cf71c3a85f8469689eee32f8ce085ea933cdab8c62a04ec64736f6c63430008040033000000000000000000000000000000000000000000000000000000006130302000000000000000000000000000000000000000000000000000000000000000600000000000000000000000005945baf9272e0808165adea61b932ec1604fb161000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d65354e6a5367774232754332473631564e363169576d52376d66466b696657517164794251367351643278452f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80638417b47f1161010d578063b88d4fde116100a0578063d04ef2851161006f578063d04ef28514610726578063d5abeb011461074f578063e58306f91461077a578063e985e9c5146107a3578063f2fde38b146107e0576101f9565b8063b88d4fde1461066a578063c87b56dd14610693578063ca08d3d1146106d0578063caa83a9c146106fb576101f9565b806395d89b41116100dc57806395d89b41146105cf578063a0712d68146105fa578063a22cb46514610616578063b7877ed41461063f576101f9565b80638417b47f146105155780638da5cb5b1461053e57806390118fb41461056957806390218652146105a6576101f9565b806331f9c9191161019057806355f804b31161015f57806355f804b3146104305780636352211e146104595780636c0360eb1461049657806370a08231146104c1578063715018a6146104fe576101f9565b806331f9c9191461037457806335db70b51461039f57806342842e0e146103ca5780634f6ccce7146103f3576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f757806324600fc3146103205780632f745c5914610337576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906130fe565b610809565b6040516102329190613779565b60405180910390f35b34801561024757600080fd5b50610250610883565b60405161025d9190613794565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613191565b610915565b60405161029a9190613712565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613099565b61099a565b005b3480156102d857600080fd5b506102e1610ab2565b6040516102ee9190613af6565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612f93565b610abf565b005b34801561032c57600080fd5b50610335610b1f565b005b34801561034357600080fd5b5061035e60048036038101906103599190613099565b610bea565b60405161036b9190613af6565b60405180910390f35b34801561038057600080fd5b50610389610c8f565b6040516103969190613779565b60405180910390f35b3480156103ab57600080fd5b506103b4610ca2565b6040516103c19190613af6565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612f93565b610ca8565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190613191565b610cc8565b6040516104279190613af6565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613150565b610d5f565b005b34801561046557600080fd5b50610480600480360381019061047b9190613191565b610df5565b60405161048d9190613712565b60405180910390f35b3480156104a257600080fd5b506104ab610ea7565b6040516104b89190613794565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190612f2e565b610f35565b6040516104f59190613af6565b60405180910390f35b34801561050a57600080fd5b50610513610fed565b005b34801561052157600080fd5b5061053c60048036038101906105379190613191565b611075565b005b34801561054a57600080fd5b506105536110fb565b6040516105609190613712565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190612f2e565b611125565b60405161059d9190613779565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613191565b61117b565b005b3480156105db57600080fd5b506105e4611201565b6040516105f19190613794565b60405180910390f35b610614600480360381019061060f9190613191565b611293565b005b34801561062257600080fd5b5061063d6004803603810190610638919061305d565b6115fa565b005b34801561064b57600080fd5b5061065461177b565b6040516106619190613af6565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612fe2565b611781565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190613191565b6117e3565b6040516106c79190613794565b60405180910390f35b3480156106dc57600080fd5b506106e5611897565b6040516106f29190613af6565b60405180910390f35b34801561070757600080fd5b5061071061189d565b60405161071d9190613712565b60405180910390f35b34801561073257600080fd5b5061074d600480360381019061074891906130d5565b6118c3565b005b34801561075b57600080fd5b5061076461195c565b6040516107719190613af6565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190613099565b611962565b005b3480156107af57600080fd5b506107ca60048036038101906107c59190612f57565b611a81565b6040516107d79190613779565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190612f2e565b611b15565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087c575061087b82611c0d565b5b9050919050565b60606000805461089290613dbb565b80601f01602080910402602001604051908101604052809291908181526020018280546108be90613dbb565b801561090b5780601f106108e05761010080835404028352916020019161090b565b820191906000526020600020905b8154815290600101906020018083116108ee57829003601f168201915b5050505050905090565b600061092082611cef565b61095f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095690613996565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a582610df5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90613a56565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a35611d5b565b73ffffffffffffffffffffffffffffffffffffffff161480610a645750610a6381610a5e611d5b565b611a81565b5b610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90613916565b60405180910390fd5b610aad8383611d63565b505050565b6000600880549050905090565b610ad0610aca611d5b565b82611e1c565b610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690613a76565b60405180910390fd5b610b1a838383611efa565b505050565b610b27611d5b565b73ffffffffffffffffffffffffffffffffffffffff16610b456110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b92906139b6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610be6573d6000803e3d6000fd5b5050565b6000610bf583610f35565b8210610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d906137d6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600a60149054906101000a900460ff1681565b600b5481565b610cc383838360405180602001604052806000815250611781565b505050565b6000610cd2610ab2565b8210610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90613ab6565b60405180910390fd5b60088281548110610d4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d67611d5b565b73ffffffffffffffffffffffffffffffffffffffff16610d856110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906139b6565b60405180910390fd5b8060119080519060200190610df1929190612d3d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613956565b60405180910390fd5b80915050919050565b60118054610eb490613dbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee090613dbb565b8015610f2d5780601f10610f0257610100808354040283529160200191610f2d565b820191906000526020600020905b815481529060010190602001808311610f1057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90613936565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ff5611d5b565b73ffffffffffffffffffffffffffffffffffffffff166110136110fb565b73ffffffffffffffffffffffffffffffffffffffff1614611069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611060906139b6565b60405180910390fd5b6110736000612156565b565b61107d611d5b565b73ffffffffffffffffffffffffffffffffffffffff1661109b6110fb565b73ffffffffffffffffffffffffffffffffffffffff16146110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e8906139b6565b60405180910390fd5b80600b8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611183611d5b565b73ffffffffffffffffffffffffffffffffffffffff166111a16110fb565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906139b6565b60405180910390fd5b80600d8190555050565b60606001805461121090613dbb565b80601f016020809104026020016040519081016040528092919081815260200182805461123c90613dbb565b80156112895780601f1061125e57610100808354040283529160200191611289565b820191906000526020600020905b81548152906001019060200180831161126c57829003601f168201915b5050505050905090565b60011515600a60149054906101000a900460ff161515146112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e0906138f6565b60405180910390fd5b42600d54111561132e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611325906137b6565b60405180910390fd5b600c54811115611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a90613856565b60405180910390fd5b60105461139082611382610ab2565b61221c90919063ffffffff16565b11156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890613a36565b60405180910390fd5b6113e681600b5461223290919063ffffffff16565b341015611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90613ad6565b60405180910390fd5b6001600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016114859190613712565b60206040518083038186803b15801561149d57600080fd5b505afa1580156114b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d591906131ba565b14611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90613a96565b60405180910390fd5b61151e33611125565b1561155e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155590613a16565b60405180910390fd5b6000611568610ab2565b905060005b8281101561159d5761158a3382846115859190613bf0565b612248565b808061159590613e1e565b91505061156d565b506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611602611d5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166790613896565b60405180910390fd5b806005600061167d611d5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661172a611d5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176f9190613779565b60405180910390a35050565b600d5481565b61179261178c611d5b565b83611e1c565b6117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890613a76565b60405180910390fd5b6117dd84848484612266565b50505050565b60606117ee82611cef565b61182d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611824906139f6565b60405180910390fd5b60006011805461183c90613dbb565b9050116118585760405180602001604052806000815250611890565b601161186f60018461186a9190613bf0565b6122c2565b6040516020016118809291906136e3565b6040516020818303038152906040525b9050919050565b600c5481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118cb611d5b565b73ffffffffffffffffffffffffffffffffffffffff166118e96110fb565b73ffffffffffffffffffffffffffffffffffffffff161461193f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611936906139b6565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b60105481565b61196a611d5b565b73ffffffffffffffffffffffffffffffffffffffff166119886110fb565b73ffffffffffffffffffffffffffffffffffffffff16146119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d5906139b6565b60405180910390fd5b6010546119fb826119ed610ab2565b61221c90919063ffffffff16565b1115611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906138b6565b60405180910390fd5b6000611a46610ab2565b905060005b82811015611a7b57611a68848284611a639190613bf0565b612248565b8080611a7390613e1e565b915050611a4b565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b1d611d5b565b73ffffffffffffffffffffffffffffffffffffffff16611b3b6110fb565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b88906139b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613816565b60405180910390fd5b611c0a81612156565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cd857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ce85750611ce78261246f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dd683610df5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e2782611cef565b611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d906138d6565b60405180910390fd5b6000611e7183610df5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ee057508373ffffffffffffffffffffffffffffffffffffffff16611ec884610915565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ef15750611ef08185611a81565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f1a82610df5565b73ffffffffffffffffffffffffffffffffffffffff1614611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f67906139d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790613876565b60405180910390fd5b611feb8383836124d9565b611ff6600082611d63565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120469190613cd1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209d9190613bf0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361222a9190613bf0565b905092915050565b600081836122409190613c77565b905092915050565b6122628282604051806020016040528060008152506125ed565b5050565b612271848484611efa565b61227d84848484612648565b6122bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b3906137f6565b60405180910390fd5b50505050565b6060600082141561230a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061246a565b600082905060005b6000821461233c57808061232590613e1e565b915050600a826123359190613c46565b9150612312565b60008167ffffffffffffffff81111561237e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123b05781602001600182028036833780820191505090505b5090505b60008514612463576001826123c99190613cd1565b9150600a856123d89190613e67565b60306123e49190613bf0565b60f81b818381518110612420577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561245c9190613c46565b94506123b4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124e48383836127df565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561252757612522816127e4565b612566565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461256557612564838261282d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a9576125a48161299a565b6125e8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125e7576125e68282612add565b5b5b505050565b6125f78383612b5c565b6126046000848484612648565b612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a906137f6565b60405180910390fd5b505050565b60006126698473ffffffffffffffffffffffffffffffffffffffff16612d2a565b156127d2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612692611d5b565b8786866040518563ffffffff1660e01b81526004016126b4949392919061372d565b602060405180830381600087803b1580156126ce57600080fd5b505af19250505080156126ff57506040513d601f19601f820116820180604052508101906126fc9190613127565b60015b612782573d806000811461272f576040519150601f19603f3d011682016040523d82523d6000602084013e612734565b606091505b5060008151141561277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906137f6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127d7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161283a84610f35565b6128449190613cd1565b9050600060076000848152602001908152602001600020549050818114612929576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129ae9190613cd1565b9050600060096000848152602001908152602001600020549050600060088381548110612a04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612a4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ac1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ae883610f35565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc390613976565b60405180910390fd5b612bd581611cef565b15612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c90613836565b60405180910390fd5b612c21600083836124d9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c719190613bf0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612d4990613dbb565b90600052602060002090601f016020900481019282612d6b5760008555612db2565b82601f10612d8457805160ff1916838001178555612db2565b82800160010185558215612db2579182015b82811115612db1578251825591602001919060010190612d96565b5b509050612dbf9190612dc3565b5090565b5b80821115612ddc576000816000905550600101612dc4565b5090565b6000612df3612dee84613b36565b613b11565b905082815260208101848484011115612e0b57600080fd5b612e16848285613d79565b509392505050565b6000612e31612e2c84613b67565b613b11565b905082815260208101848484011115612e4957600080fd5b612e54848285613d79565b509392505050565b600081359050612e6b816145f2565b92915050565b600081359050612e8081614609565b92915050565b600081359050612e9581614620565b92915050565b600081519050612eaa81614620565b92915050565b600082601f830112612ec157600080fd5b8135612ed1848260208601612de0565b91505092915050565b600082601f830112612eeb57600080fd5b8135612efb848260208601612e1e565b91505092915050565b600081359050612f1381614637565b92915050565b600081519050612f2881614637565b92915050565b600060208284031215612f4057600080fd5b6000612f4e84828501612e5c565b91505092915050565b60008060408385031215612f6a57600080fd5b6000612f7885828601612e5c565b9250506020612f8985828601612e5c565b9150509250929050565b600080600060608486031215612fa857600080fd5b6000612fb686828701612e5c565b9350506020612fc786828701612e5c565b9250506040612fd886828701612f04565b9150509250925092565b60008060008060808587031215612ff857600080fd5b600061300687828801612e5c565b945050602061301787828801612e5c565b935050604061302887828801612f04565b925050606085013567ffffffffffffffff81111561304557600080fd5b61305187828801612eb0565b91505092959194509250565b6000806040838503121561307057600080fd5b600061307e85828601612e5c565b925050602061308f85828601612e71565b9150509250929050565b600080604083850312156130ac57600080fd5b60006130ba85828601612e5c565b92505060206130cb85828601612f04565b9150509250929050565b6000602082840312156130e757600080fd5b60006130f584828501612e71565b91505092915050565b60006020828403121561311057600080fd5b600061311e84828501612e86565b91505092915050565b60006020828403121561313957600080fd5b600061314784828501612e9b565b91505092915050565b60006020828403121561316257600080fd5b600082013567ffffffffffffffff81111561317c57600080fd5b61318884828501612eda565b91505092915050565b6000602082840312156131a357600080fd5b60006131b184828501612f04565b91505092915050565b6000602082840312156131cc57600080fd5b60006131da84828501612f19565b91505092915050565b6131ec81613d05565b82525050565b6131fb81613d17565b82525050565b600061320c82613bad565b6132168185613bc3565b9350613226818560208601613d88565b61322f81613f54565b840191505092915050565b600061324582613bb8565b61324f8185613bd4565b935061325f818560208601613d88565b61326881613f54565b840191505092915050565b600061327e82613bb8565b6132888185613be5565b9350613298818560208601613d88565b80840191505092915050565b600081546132b181613dbb565b6132bb8186613be5565b945060018216600081146132d657600181146132e75761331a565b60ff1983168652818601935061331a565b6132f085613b98565b60005b83811015613312578154818901526001820191506020810190506132f3565b838801955050505b50505092915050565b6000613330601483613bd4565b915061333b82613f65565b602082019050919050565b6000613353602b83613bd4565b915061335e82613f8e565b604082019050919050565b6000613376603283613bd4565b915061338182613fdd565b604082019050919050565b6000613399602683613bd4565b91506133a48261402c565b604082019050919050565b60006133bc601c83613bd4565b91506133c78261407b565b602082019050919050565b60006133df601883613bd4565b91506133ea826140a4565b602082019050919050565b6000613402602483613bd4565b915061340d826140cd565b604082019050919050565b6000613425601983613bd4565b91506134308261411c565b602082019050919050565b6000613448601f83613bd4565b915061345382614145565b602082019050919050565b600061346b602c83613bd4565b91506134768261416e565b604082019050919050565b600061348e601d83613bd4565b9150613499826141bd565b602082019050919050565b60006134b1603883613bd4565b91506134bc826141e6565b604082019050919050565b60006134d4602a83613bd4565b91506134df82614235565b604082019050919050565b60006134f7602983613bd4565b915061350282614284565b604082019050919050565b600061351a602083613bd4565b9150613525826142d3565b602082019050919050565b600061353d602c83613bd4565b9150613548826142fc565b604082019050919050565b6000613560600583613be5565b915061356b8261434b565b600582019050919050565b6000613583602083613bd4565b915061358e82614374565b602082019050919050565b60006135a6602983613bd4565b91506135b18261439d565b604082019050919050565b60006135c9602f83613bd4565b91506135d4826143ec565b604082019050919050565b60006135ec602583613bd4565b91506135f78261443b565b604082019050919050565b600061360f601e83613bd4565b915061361a8261448a565b602082019050919050565b6000613632602183613bd4565b915061363d826144b3565b604082019050919050565b6000613655603183613bd4565b915061366082614502565b604082019050919050565b6000613678601a83613bd4565b915061368382614551565b602082019050919050565b600061369b602c83613bd4565b91506136a68261457a565b604082019050919050565b60006136be601583613bd4565b91506136c9826145c9565b602082019050919050565b6136dd81613d6f565b82525050565b60006136ef82856132a4565b91506136fb8284613273565b915061370682613553565b91508190509392505050565b600060208201905061372760008301846131e3565b92915050565b600060808201905061374260008301876131e3565b61374f60208301866131e3565b61375c60408301856136d4565b818103606083015261376e8184613201565b905095945050505050565b600060208201905061378e60008301846131f2565b92915050565b600060208201905081810360008301526137ae818461323a565b905092915050565b600060208201905081810360008301526137cf81613323565b9050919050565b600060208201905081810360008301526137ef81613346565b9050919050565b6000602082019050818103600083015261380f81613369565b9050919050565b6000602082019050818103600083015261382f8161338c565b9050919050565b6000602082019050818103600083015261384f816133af565b9050919050565b6000602082019050818103600083015261386f816133d2565b9050919050565b6000602082019050818103600083015261388f816133f5565b9050919050565b600060208201905081810360008301526138af81613418565b9050919050565b600060208201905081810360008301526138cf8161343b565b9050919050565b600060208201905081810360008301526138ef8161345e565b9050919050565b6000602082019050818103600083015261390f81613481565b9050919050565b6000602082019050818103600083015261392f816134a4565b9050919050565b6000602082019050818103600083015261394f816134c7565b9050919050565b6000602082019050818103600083015261396f816134ea565b9050919050565b6000602082019050818103600083015261398f8161350d565b9050919050565b600060208201905081810360008301526139af81613530565b9050919050565b600060208201905081810360008301526139cf81613576565b9050919050565b600060208201905081810360008301526139ef81613599565b9050919050565b60006020820190508181036000830152613a0f816135bc565b9050919050565b60006020820190508181036000830152613a2f816135df565b9050919050565b60006020820190508181036000830152613a4f81613602565b9050919050565b60006020820190508181036000830152613a6f81613625565b9050919050565b60006020820190508181036000830152613a8f81613648565b9050919050565b60006020820190508181036000830152613aaf8161366b565b9050919050565b60006020820190508181036000830152613acf8161368e565b9050919050565b60006020820190508181036000830152613aef816136b1565b9050919050565b6000602082019050613b0b60008301846136d4565b92915050565b6000613b1b613b2c565b9050613b278282613ded565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5157613b50613f25565b5b613b5a82613f54565b9050602081019050919050565b600067ffffffffffffffff821115613b8257613b81613f25565b5b613b8b82613f54565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bfb82613d6f565b9150613c0683613d6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3b57613c3a613e98565b5b828201905092915050565b6000613c5182613d6f565b9150613c5c83613d6f565b925082613c6c57613c6b613ec7565b5b828204905092915050565b6000613c8282613d6f565b9150613c8d83613d6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cc657613cc5613e98565b5b828202905092915050565b6000613cdc82613d6f565b9150613ce783613d6f565b925082821015613cfa57613cf9613e98565b5b828203905092915050565b6000613d1082613d4f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613da6578082015181840152602081019050613d8b565b83811115613db5576000848401525b50505050565b60006002820490506001821680613dd357607f821691505b60208210811415613de757613de6613ef6565b5b50919050565b613df682613f54565b810181811067ffffffffffffffff82111715613e1557613e14613f25565b5b80604052505050565b6000613e2982613d6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e5c57613e5b613e98565b5b600182019050919050565b6000613e7282613d6f565b9150613e7d83613d6f565b925082613e8d57613e8c613ec7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c65206e6f74207374617274656420796574000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f416d6f756e74206578636565646564207478206c696d69740000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320747820776f756c6420657863656564206d617820737570706c7900600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74696e672069732063757272656e746c7920696e616374697665000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e6e6f74206275793a20596f7527766520616c726561647920707572636860008201527f6173656421000000000000000000000000000000000000000000000000000000602082015250565b7f5468697320747820776f756420657863656564206d617820737570706c790000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d7573742041757468656e74696361746520746f206d696e7421000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6145fb81613d05565b811461460657600080fd5b50565b61461281613d17565b811461461d57600080fd5b50565b61462981613d23565b811461463457600080fd5b50565b61464081613d6f565b811461464b57600080fd5b5056fea264697066735822122078755c226ffb209a9cf71c3a85f8469689eee32f8ce085ea933cdab8c62a04ec64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000006130302000000000000000000000000000000000000000000000000000000000000000600000000000000000000000005945baf9272e0808165adea61b932ec1604fb161000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d65354e6a5367774232754332473631564e363169576d52376d66466b696657517164794251367351643278452f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : mintingStart (uint256): 1630548000
Arg [1] : _uri (string): https://ipfs.io/ipfs/Qme5NjSgwB2uC2G61VN61iWmR7mfFkifWQqdyBQ6sQd2xE/
Arg [2] : poeToken (address): 0x5945bAF9272e0808165aDea61b932eC1604FB161
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000061303020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000005945baf9272e0808165adea61b932ec1604fb161
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [4] : 68747470733a2f2f697066732e696f2f697066732f516d65354e6a5367774232
Arg [5] : 754332473631564e363169576d52376d66466b69665751716479425136735164
Arg [6] : 3278452f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
51515:3162:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45367:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32497:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34056:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33579:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46007:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34946:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54523:145;;;;;;;;;;;;;:::i;:::-;;45675:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51610:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51642:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35356:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46197:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53541:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32191:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51898:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31921:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2383:94;;;;;;;;;;;;;:::i;:::-;;54065:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1732:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52182:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54320:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32666:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52297:840;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34349:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51732:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35612:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53718:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51689:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51824:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54193:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51855:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53149:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34715:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2632:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45367:224;45469:4;45508:35;45493:50;;;:11;:50;;;;:90;;;;45547:36;45571:11;45547:23;:36::i;:::-;45493:90;45486:97;;45367:224;;;:::o;32497:100::-;32551:13;32584:5;32577:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32497:100;:::o;34056:221::-;34132:7;34160:16;34168:7;34160;:16::i;:::-;34152:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34245:15;:24;34261:7;34245:24;;;;;;;;;;;;;;;;;;;;;34238:31;;34056:221;;;:::o;33579:411::-;33660:13;33676:23;33691:7;33676:14;:23::i;:::-;33660:39;;33724:5;33718:11;;:2;:11;;;;33710:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33818:5;33802:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33827:37;33844:5;33851:12;:10;:12::i;:::-;33827:16;:37::i;:::-;33802:62;33780:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;33961:21;33970:2;33974:7;33961:8;:21::i;:::-;33579:411;;;:::o;46007:113::-;46068:7;46095:10;:17;;;;46088:24;;46007:113;:::o;34946:339::-;35141:41;35160:12;:10;:12::i;:::-;35174:7;35141:18;:41::i;:::-;35133:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;35249:28;35259:4;35265:2;35269:7;35249:9;:28::i;:::-;34946:339;;;:::o;54523:145::-;1963:12;:10;:12::i;:::-;1952:23;;:7;:5;:7::i;:::-;:23;;;1944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54576:12:::1;54591:21;54576:36;;54631:10;54623:28;;:37;54652:7;54623:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2023:1;54523:145::o:0;45675:256::-;45772:7;45808:23;45825:5;45808:16;:23::i;:::-;45800:5;:31;45792:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;45897:12;:19;45910:5;45897:19;;;;;;;;;;;;;;;:26;45917:5;45897:26;;;;;;;;;;;;45890:33;;45675:256;;;;:::o;51610:25::-;;;;;;;;;;;;;:::o;51642:40::-;;;;:::o;35356:185::-;35494:39;35511:4;35517:2;35521:7;35494:39;;;;;;;;;;;;:16;:39::i;:::-;35356:185;;;:::o;46197:233::-;46272:7;46308:30;:28;:30::i;:::-;46300:5;:38;46292:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;46405:10;46416:5;46405:17;;;;;;;;;;;;;;;;;;;;;;;;46398:24;;46197:233;;;:::o;53541:102::-;1963:12;:10;:12::i;:::-;1952:23;;:7;:5;:7::i;:::-;:23;;;1944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53625:10:::1;53615:7;:20;;;;;;;;;;;;:::i;:::-;;53541:102:::0;:::o;32191:239::-;32263:7;32283:13;32299:7;:16;32307:7;32299:16;;;;;;;;;;;;;;;;;;;;;32283:32;;32351:1;32334:19;;:5;:19;;;;32326:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32417:5;32410:12;;;32191:239;;;:::o;51898:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31921:208::-;31993:7;32038:1;32021:19;;:5;:19;;;;32013:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;32105:9;:16;32115:5;32105:16;;;;;;;;;;;;;;;;32098:23;;31921:208;;;:::o;2383:94::-;1963:12;:10;:12::i;:::-;1952:23;;:7;:5;:7::i;:::-;:23;;;1944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2448:21:::1;2466:1;2448:9;:21::i;:::-;2383:94::o:0;54065:116::-;1963:12;:10;:12::i;:::-;1952:23;;:7;:5;:7::i;:::-;:23;;;1944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54158:15:::1;54143:12;:30;;;;54065:116:::0;:::o;1732:87::-;1778:7;1805:6;;;;;;;;;;;1798:13;;1732:87;:::o;52182:105::-;52240:4;52263:9;:16;52273:5;52263:16;;;;;;;;;;;;;;;;;;;;;;;;;52256:23;;52182:105;;;:::o;54320:119::-;1963:12;:10;:12::i;:::-;1952:23;;:7;:5;:7::i;:::-;:23;;;1944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54419:12:::1;54395:21;:36;;;;54320:119:::0;:::o;32666:104::-;32722:13;32755:7;32748:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32666:104;:::o;52297:840::-;52379:4;52362:21;;:13;;;;;;;;;;;:21;;;52354:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52461:15;52436:21;;:40;;52428:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;52531:17;;52520:7;:28;;52512:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;52626:9;;52596:26;52614:7;52596:13;:11;:13::i;:::-;:17;;:26;;;;:::i;:::-;:39;;52588:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;52702:25;52719:7;52702:12;;:16;;:25;;;;:::i;:::-;52689:9;:38;;52681:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;52810:1;52779:3;;;;;;;;;;;52772:21;;;52794:10;52772:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;52764:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;52862:24;52875:10;52862:12;:24::i;:::-;52861:25;52853:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;52941:15;52959:13;:11;:13::i;:::-;52941:31;;52987:9;52983:98;53006:7;53002:1;:11;52983:98;;;53035:34;53045:10;53067:1;53057:7;:11;;;;:::i;:::-;53035:9;:34::i;:::-;53015:3;;;;;:::i;:::-;;;;52983:98;;;;53115:4;53091:9;:21;53101:10;53091:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;52297:840;;:::o;34349:295::-;34464:12;:10;:12::i;:::-;34452:24;;:8;:24;;;;34444:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34564:8;34519:18;:32;34538:12;:10;:12::i;:::-;34519:32;;;;;;;;;;;;;;;:42;34552:8;34519:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34617:8;34588:48;;34603:12;:10;:12::i;:::-;34588:48;;;34627:8;34588:48;;;;;;:::i;:::-;;;;;;;;34349:295;;:::o;51732:36::-;;;;:::o;35612:328::-;35787:41;35806:12;:10;:12::i;:::-;35820:7;35787:18;:41::i;:::-;35779:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;35893:39;35907:4;35913:2;35917:7;35926:5;35893:13;:39::i;:::-;35612:328;;;;:::o;53718:335::-;53791:13;53825:16;53833:7;53825;:16::i;:::-;53817:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53937:1;53919:7;53913:21;;;;;:::i;:::-;;;:25;:132;;;;;;;;;;;;;;;;;53978:7;53987:29;54014:1;54004:7;:11;;;;:::i;:::-;53987:16;:29::i;:::-;53961:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53913:132;53906:139;;53718:335;;;:::o;51689:36::-;;;;:::o;51824:18::-;;;;;;;;;;;;;:::o;54193:115::-;1963:12;:10;:12::i;:::-;1952:23;;:7;:5;:7::i;:::-;:23;;;1944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54285:15:::1;54269:13;;:31;;;;;;;;;;;;;;;;;;54193:115:::0;:::o;51855:30::-;;;;:::o;53149:341::-;1963:12;:10;:12::i;:::-;1952:23;;:7;:5;:7::i;:::-;:23;;;1944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53269:9:::1;;53239:26;53257:7;53239:13;:11;:13::i;:::-;:17;;:26;;;;:::i;:::-;:39;;53231:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;53335:15;53353:13;:11;:13::i;:::-;53335:31;;53381:9;53377:96;53400:7;53396:1;:11;53377:96;;;53429:32;53439:8;53459:1;53449:7;:11;;;;:::i;:::-;53429:9;:32::i;:::-;53409:3;;;;;:::i;:::-;;;;53377:96;;;;2023:1;53149:341:::0;;:::o;34715:164::-;34812:4;34836:18;:25;34855:5;34836:25;;;;;;;;;;;;;;;:35;34862:8;34836:35;;;;;;;;;;;;;;;;;;;;;;;;;34829:42;;34715:164;;;;:::o;2632:192::-;1963:12;:10;:12::i;:::-;1952:23;;:7;:5;:7::i;:::-;:23;;;1944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2741:1:::1;2721:22;;:8;:22;;;;2713:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2797:19;2807:8;2797:9;:19::i;:::-;2632:192:::0;:::o;31552:305::-;31654:4;31706:25;31691:40;;;:11;:40;;;;:105;;;;31763:33;31748:48;;;:11;:48;;;;31691:105;:158;;;;31813:36;31837:11;31813:23;:36::i;:::-;31691:158;31671:178;;31552:305;;;:::o;37450:127::-;37515:4;37567:1;37539:30;;:7;:16;37547:7;37539:16;;;;;;;;;;;;;;;;;;;;;:30;;;;37532:37;;37450:127;;;:::o;604:98::-;657:7;684:10;677:17;;604:98;:::o;41432:174::-;41534:2;41507:15;:24;41523:7;41507:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41590:7;41586:2;41552:46;;41561:23;41576:7;41561:14;:23::i;:::-;41552:46;;;;;;;;;;;;41432:174;;:::o;37744:348::-;37837:4;37862:16;37870:7;37862;:16::i;:::-;37854:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37938:13;37954:23;37969:7;37954:14;:23::i;:::-;37938:39;;38007:5;37996:16;;:7;:16;;;:51;;;;38040:7;38016:31;;:20;38028:7;38016:11;:20::i;:::-;:31;;;37996:51;:87;;;;38051:32;38068:5;38075:7;38051:16;:32::i;:::-;37996:87;37988:96;;;37744:348;;;;:::o;40736:578::-;40895:4;40868:31;;:23;40883:7;40868:14;:23::i;:::-;:31;;;40860:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40978:1;40964:16;;:2;:16;;;;40956:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41034:39;41055:4;41061:2;41065:7;41034:20;:39::i;:::-;41138:29;41155:1;41159:7;41138:8;:29::i;:::-;41199:1;41180:9;:15;41190:4;41180:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;41228:1;41211:9;:13;41221:2;41211:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41259:2;41240:7;:16;41248:7;41240:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41298:7;41294:2;41279:27;;41288:4;41279:27;;;;;;;;;;;;40736:578;;;:::o;2832:173::-;2888:16;2907:6;;;;;;;;;;;2888:25;;2933:8;2924:6;;:17;;;;;;;;;;;;;;;;;;2988:8;2957:40;;2978:8;2957:40;;;;;;;;;;;;2832:173;;:::o;5558:98::-;5616:7;5647:1;5643;:5;;;;:::i;:::-;5636:12;;5558:98;;;;:::o;6296:::-;6354:7;6385:1;6381;:5;;;;:::i;:::-;6374:12;;6296:98;;;;:::o;38434:110::-;38510:26;38520:2;38524:7;38510:26;;;;;;;;;;;;:9;:26::i;:::-;38434:110;;:::o;36822:315::-;36979:28;36989:4;36995:2;36999:7;36979:9;:28::i;:::-;37026:48;37049:4;37055:2;37059:7;37068:5;37026:22;:48::i;:::-;37018:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;36822:315;;;;:::o;24908:723::-;24964:13;25194:1;25185:5;:10;25181:53;;;25212:10;;;;;;;;;;;;;;;;;;;;;25181:53;25244:12;25259:5;25244:20;;25275:14;25300:78;25315:1;25307:4;:9;25300:78;;25333:8;;;;;:::i;:::-;;;;25364:2;25356:10;;;;;:::i;:::-;;;25300:78;;;25388:19;25420:6;25410:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25388:39;;25438:154;25454:1;25445:5;:10;25438:154;;25482:1;25472:11;;;;;:::i;:::-;;;25549:2;25541:5;:10;;;;:::i;:::-;25528:2;:24;;;;:::i;:::-;25515:39;;25498:6;25505;25498:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;25578:2;25569:11;;;;;:::i;:::-;;;25438:154;;;25616:6;25602:21;;;;;24908:723;;;;:::o;30159:157::-;30244:4;30283:25;30268:40;;;:11;:40;;;;30261:47;;30159:157;;;:::o;47043:589::-;47187:45;47214:4;47220:2;47224:7;47187:26;:45::i;:::-;47265:1;47249:18;;:4;:18;;;47245:187;;;47284:40;47316:7;47284:31;:40::i;:::-;47245:187;;;47354:2;47346:10;;:4;:10;;;47342:90;;47373:47;47406:4;47412:7;47373:32;:47::i;:::-;47342:90;47245:187;47460:1;47446:16;;:2;:16;;;47442:183;;;47479:45;47516:7;47479:36;:45::i;:::-;47442:183;;;47552:4;47546:10;;:2;:10;;;47542:83;;47573:40;47601:2;47605:7;47573:27;:40::i;:::-;47542:83;47442:183;47043:589;;;:::o;38771:321::-;38901:18;38907:2;38911:7;38901:5;:18::i;:::-;38952:54;38983:1;38987:2;38991:7;39000:5;38952:22;:54::i;:::-;38930:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;38771:321;;;:::o;42171:799::-;42326:4;42347:15;:2;:13;;;:15::i;:::-;42343:620;;;42399:2;42383:36;;;42420:12;:10;:12::i;:::-;42434:4;42440:7;42449:5;42383:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42379:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42642:1;42625:6;:13;:18;42621:272;;;42668:60;;;;;;;;;;:::i;:::-;;;;;;;;42621:272;42843:6;42837:13;42828:6;42824:2;42820:15;42813:38;42379:529;42516:41;;;42506:51;;;:6;:51;;;;42499:58;;;;;42343:620;42947:4;42940:11;;42171:799;;;;;;;:::o;43542:126::-;;;;:::o;48355:164::-;48459:10;:17;;;;48432:15;:24;48448:7;48432:24;;;;;;;;;;;:44;;;;48487:10;48503:7;48487:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48355:164;:::o;49146:988::-;49412:22;49462:1;49437:22;49454:4;49437:16;:22::i;:::-;:26;;;;:::i;:::-;49412:51;;49474:18;49495:17;:26;49513:7;49495:26;;;;;;;;;;;;49474:47;;49642:14;49628:10;:28;49624:328;;49673:19;49695:12;:18;49708:4;49695:18;;;;;;;;;;;;;;;:34;49714:14;49695:34;;;;;;;;;;;;49673:56;;49779:11;49746:12;:18;49759:4;49746:18;;;;;;;;;;;;;;;:30;49765:10;49746:30;;;;;;;;;;;:44;;;;49896:10;49863:17;:30;49881:11;49863:30;;;;;;;;;;;:43;;;;49624:328;;50048:17;:26;50066:7;50048:26;;;;;;;;;;;50041:33;;;50092:12;:18;50105:4;50092:18;;;;;;;;;;;;;;;:34;50111:14;50092:34;;;;;;;;;;;50085:41;;;49146:988;;;;:::o;50429:1079::-;50682:22;50727:1;50707:10;:17;;;;:21;;;;:::i;:::-;50682:46;;50739:18;50760:15;:24;50776:7;50760:24;;;;;;;;;;;;50739:45;;51111:19;51133:10;51144:14;51133:26;;;;;;;;;;;;;;;;;;;;;;;;51111:48;;51197:11;51172:10;51183;51172:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;51308:10;51277:15;:28;51293:11;51277:28;;;;;;;;;;;:41;;;;51449:15;:24;51465:7;51449:24;;;;;;;;;;;51442:31;;;51484:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50429:1079;;;;:::o;47933:221::-;48018:14;48035:20;48052:2;48035:16;:20::i;:::-;48018:37;;48093:7;48066:12;:16;48079:2;48066:16;;;;;;;;;;;;;;;:24;48083:6;48066:24;;;;;;;;;;;:34;;;;48140:6;48111:17;:26;48129:7;48111:26;;;;;;;;;;;:35;;;;47933:221;;;:::o;39428:382::-;39522:1;39508:16;;:2;:16;;;;39500:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39581:16;39589:7;39581;:16::i;:::-;39580:17;39572:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39643:45;39672:1;39676:2;39680:7;39643:20;:45::i;:::-;39718:1;39701:9;:13;39711:2;39701:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39749:2;39730:7;:16;39738:7;39730:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39794:7;39790:2;39769:33;;39786:1;39769:33;;;;;;;;;;;;39428:382;;:::o;17349:387::-;17409:4;17617:12;17684:7;17672:20;17664:28;;17727:1;17720:4;:8;17713:15;;;17349:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:143::-;2066:5;2097:6;2091:13;2082:22;;2113:33;2140:5;2113:33;:::i;:::-;2072:80;;;;:::o;2158:262::-;2217:6;2266:2;2254:9;2245:7;2241:23;2237:32;2234:2;;;2282:1;2279;2272:12;2234:2;2325:1;2350:53;2395:7;2386:6;2375:9;2371:22;2350:53;:::i;:::-;2340:63;;2296:117;2224:196;;;;:::o;2426:407::-;2494:6;2502;2551:2;2539:9;2530:7;2526:23;2522:32;2519:2;;;2567:1;2564;2557:12;2519:2;2610:1;2635:53;2680:7;2671:6;2660:9;2656:22;2635:53;:::i;:::-;2625:63;;2581:117;2737:2;2763:53;2808:7;2799:6;2788:9;2784:22;2763:53;:::i;:::-;2753:63;;2708:118;2509:324;;;;;:::o;2839:552::-;2916:6;2924;2932;2981:2;2969:9;2960:7;2956:23;2952:32;2949:2;;;2997:1;2994;2987:12;2949:2;3040:1;3065:53;3110:7;3101:6;3090:9;3086:22;3065:53;:::i;:::-;3055:63;;3011:117;3167:2;3193:53;3238:7;3229:6;3218:9;3214:22;3193:53;:::i;:::-;3183:63;;3138:118;3295:2;3321:53;3366:7;3357:6;3346:9;3342:22;3321:53;:::i;:::-;3311:63;;3266:118;2939:452;;;;;:::o;3397:809::-;3492:6;3500;3508;3516;3565:3;3553:9;3544:7;3540:23;3536:33;3533:2;;;3582:1;3579;3572:12;3533:2;3625:1;3650:53;3695:7;3686:6;3675:9;3671:22;3650:53;:::i;:::-;3640:63;;3596:117;3752:2;3778:53;3823:7;3814:6;3803:9;3799:22;3778:53;:::i;:::-;3768:63;;3723:118;3880:2;3906:53;3951:7;3942:6;3931:9;3927:22;3906:53;:::i;:::-;3896:63;;3851:118;4036:2;4025:9;4021:18;4008:32;4067:18;4059:6;4056:30;4053:2;;;4099:1;4096;4089:12;4053:2;4127:62;4181:7;4172:6;4161:9;4157:22;4127:62;:::i;:::-;4117:72;;3979:220;3523:683;;;;;;;:::o;4212:401::-;4277:6;4285;4334:2;4322:9;4313:7;4309:23;4305:32;4302:2;;;4350:1;4347;4340:12;4302:2;4393:1;4418:53;4463:7;4454:6;4443:9;4439:22;4418:53;:::i;:::-;4408:63;;4364:117;4520:2;4546:50;4588:7;4579:6;4568:9;4564:22;4546:50;:::i;:::-;4536:60;;4491:115;4292:321;;;;;:::o;4619:407::-;4687:6;4695;4744:2;4732:9;4723:7;4719:23;4715:32;4712:2;;;4760:1;4757;4750:12;4712:2;4803:1;4828:53;4873:7;4864:6;4853:9;4849:22;4828:53;:::i;:::-;4818:63;;4774:117;4930:2;4956:53;5001:7;4992:6;4981:9;4977:22;4956:53;:::i;:::-;4946:63;;4901:118;4702:324;;;;;:::o;5032:256::-;5088:6;5137:2;5125:9;5116:7;5112:23;5108:32;5105:2;;;5153:1;5150;5143:12;5105:2;5196:1;5221:50;5263:7;5254:6;5243:9;5239:22;5221:50;:::i;:::-;5211:60;;5167:114;5095:193;;;;:::o;5294:260::-;5352:6;5401:2;5389:9;5380:7;5376:23;5372:32;5369:2;;;5417:1;5414;5407:12;5369:2;5460:1;5485:52;5529:7;5520:6;5509:9;5505:22;5485:52;:::i;:::-;5475:62;;5431:116;5359:195;;;;:::o;5560:282::-;5629:6;5678:2;5666:9;5657:7;5653:23;5649:32;5646:2;;;5694:1;5691;5684:12;5646:2;5737:1;5762:63;5817:7;5808:6;5797:9;5793:22;5762:63;:::i;:::-;5752:73;;5708:127;5636:206;;;;:::o;5848:375::-;5917:6;5966:2;5954:9;5945:7;5941:23;5937:32;5934:2;;;5982:1;5979;5972:12;5934:2;6053:1;6042:9;6038:17;6025:31;6083:18;6075:6;6072:30;6069:2;;;6115:1;6112;6105:12;6069:2;6143:63;6198:7;6189:6;6178:9;6174:22;6143:63;:::i;:::-;6133:73;;5996:220;5924:299;;;;:::o;6229:262::-;6288:6;6337:2;6325:9;6316:7;6312:23;6308:32;6305:2;;;6353:1;6350;6343:12;6305:2;6396:1;6421:53;6466:7;6457:6;6446:9;6442:22;6421:53;:::i;:::-;6411:63;;6367:117;6295:196;;;;:::o;6497:284::-;6567:6;6616:2;6604:9;6595:7;6591:23;6587:32;6584:2;;;6632:1;6629;6622:12;6584:2;6675:1;6700:64;6756:7;6747:6;6736:9;6732:22;6700:64;:::i;:::-;6690:74;;6646:128;6574:207;;;;:::o;6787:118::-;6874:24;6892:5;6874:24;:::i;:::-;6869:3;6862:37;6852:53;;:::o;6911:109::-;6992:21;7007:5;6992:21;:::i;:::-;6987:3;6980:34;6970:50;;:::o;7026:360::-;7112:3;7140:38;7172:5;7140:38;:::i;:::-;7194:70;7257:6;7252:3;7194:70;:::i;:::-;7187:77;;7273:52;7318:6;7313:3;7306:4;7299:5;7295:16;7273:52;:::i;:::-;7350:29;7372:6;7350:29;:::i;:::-;7345:3;7341:39;7334:46;;7116:270;;;;;:::o;7392:364::-;7480:3;7508:39;7541:5;7508:39;:::i;:::-;7563:71;7627:6;7622:3;7563:71;:::i;:::-;7556:78;;7643:52;7688:6;7683:3;7676:4;7669:5;7665:16;7643:52;:::i;:::-;7720:29;7742:6;7720:29;:::i;:::-;7715:3;7711:39;7704:46;;7484:272;;;;;:::o;7762:377::-;7868:3;7896:39;7929:5;7896:39;:::i;:::-;7951:89;8033:6;8028:3;7951:89;:::i;:::-;7944:96;;8049:52;8094:6;8089:3;8082:4;8075:5;8071:16;8049:52;:::i;:::-;8126:6;8121:3;8117:16;8110:23;;7872:267;;;;;:::o;8169:845::-;8272:3;8309:5;8303:12;8338:36;8364:9;8338:36;:::i;:::-;8390:89;8472:6;8467:3;8390:89;:::i;:::-;8383:96;;8510:1;8499:9;8495:17;8526:1;8521:137;;;;8672:1;8667:341;;;;8488:520;;8521:137;8605:4;8601:9;8590;8586:25;8581:3;8574:38;8641:6;8636:3;8632:16;8625:23;;8521:137;;8667:341;8734:38;8766:5;8734:38;:::i;:::-;8794:1;8808:154;8822:6;8819:1;8816:13;8808:154;;;8896:7;8890:14;8886:1;8881:3;8877:11;8870:35;8946:1;8937:7;8933:15;8922:26;;8844:4;8841:1;8837:12;8832:17;;8808:154;;;8991:6;8986:3;8982:16;8975:23;;8674:334;;8488:520;;8276:738;;;;;;:::o;9020:366::-;9162:3;9183:67;9247:2;9242:3;9183:67;:::i;:::-;9176:74;;9259:93;9348:3;9259:93;:::i;:::-;9377:2;9372:3;9368:12;9361:19;;9166:220;;;:::o;9392:366::-;9534:3;9555:67;9619:2;9614:3;9555:67;:::i;:::-;9548:74;;9631:93;9720:3;9631:93;:::i;:::-;9749:2;9744:3;9740:12;9733:19;;9538:220;;;:::o;9764:366::-;9906:3;9927:67;9991:2;9986:3;9927:67;:::i;:::-;9920:74;;10003:93;10092:3;10003:93;:::i;:::-;10121:2;10116:3;10112:12;10105:19;;9910:220;;;:::o;10136:366::-;10278:3;10299:67;10363:2;10358:3;10299:67;:::i;:::-;10292:74;;10375:93;10464:3;10375:93;:::i;:::-;10493:2;10488:3;10484:12;10477:19;;10282:220;;;:::o;10508:366::-;10650:3;10671:67;10735:2;10730:3;10671:67;:::i;:::-;10664:74;;10747:93;10836:3;10747:93;:::i;:::-;10865:2;10860:3;10856:12;10849:19;;10654:220;;;:::o;10880:366::-;11022:3;11043:67;11107:2;11102:3;11043:67;:::i;:::-;11036:74;;11119:93;11208:3;11119:93;:::i;:::-;11237:2;11232:3;11228:12;11221:19;;11026:220;;;:::o;11252:366::-;11394:3;11415:67;11479:2;11474:3;11415:67;:::i;:::-;11408:74;;11491:93;11580:3;11491:93;:::i;:::-;11609:2;11604:3;11600:12;11593:19;;11398:220;;;:::o;11624:366::-;11766:3;11787:67;11851:2;11846:3;11787:67;:::i;:::-;11780:74;;11863:93;11952:3;11863:93;:::i;:::-;11981:2;11976:3;11972:12;11965:19;;11770:220;;;:::o;11996:366::-;12138:3;12159:67;12223:2;12218:3;12159:67;:::i;:::-;12152:74;;12235:93;12324:3;12235:93;:::i;:::-;12353:2;12348:3;12344:12;12337:19;;12142:220;;;:::o;12368:366::-;12510:3;12531:67;12595:2;12590:3;12531:67;:::i;:::-;12524:74;;12607:93;12696:3;12607:93;:::i;:::-;12725:2;12720:3;12716:12;12709:19;;12514:220;;;:::o;12740:366::-;12882:3;12903:67;12967:2;12962:3;12903:67;:::i;:::-;12896:74;;12979:93;13068:3;12979:93;:::i;:::-;13097:2;13092:3;13088:12;13081:19;;12886:220;;;:::o;13112:366::-;13254:3;13275:67;13339:2;13334:3;13275:67;:::i;:::-;13268:74;;13351:93;13440:3;13351:93;:::i;:::-;13469:2;13464:3;13460:12;13453:19;;13258:220;;;:::o;13484:366::-;13626:3;13647:67;13711:2;13706:3;13647:67;:::i;:::-;13640:74;;13723:93;13812:3;13723:93;:::i;:::-;13841:2;13836:3;13832:12;13825:19;;13630:220;;;:::o;13856:366::-;13998:3;14019:67;14083:2;14078:3;14019:67;:::i;:::-;14012:74;;14095:93;14184:3;14095:93;:::i;:::-;14213:2;14208:3;14204:12;14197:19;;14002:220;;;:::o;14228:366::-;14370:3;14391:67;14455:2;14450:3;14391:67;:::i;:::-;14384:74;;14467:93;14556:3;14467:93;:::i;:::-;14585:2;14580:3;14576:12;14569:19;;14374:220;;;:::o;14600:366::-;14742:3;14763:67;14827:2;14822:3;14763:67;:::i;:::-;14756:74;;14839:93;14928:3;14839:93;:::i;:::-;14957:2;14952:3;14948:12;14941:19;;14746:220;;;:::o;14972:400::-;15132:3;15153:84;15235:1;15230:3;15153:84;:::i;:::-;15146:91;;15246:93;15335:3;15246:93;:::i;:::-;15364:1;15359:3;15355:11;15348:18;;15136:236;;;:::o;15378:366::-;15520:3;15541:67;15605:2;15600:3;15541:67;:::i;:::-;15534:74;;15617:93;15706:3;15617:93;:::i;:::-;15735:2;15730:3;15726:12;15719:19;;15524:220;;;:::o;15750:366::-;15892:3;15913:67;15977:2;15972:3;15913:67;:::i;:::-;15906:74;;15989:93;16078:3;15989:93;:::i;:::-;16107:2;16102:3;16098:12;16091:19;;15896:220;;;:::o;16122:366::-;16264:3;16285:67;16349:2;16344:3;16285:67;:::i;:::-;16278:74;;16361:93;16450:3;16361:93;:::i;:::-;16479:2;16474:3;16470:12;16463:19;;16268:220;;;:::o;16494:366::-;16636:3;16657:67;16721:2;16716:3;16657:67;:::i;:::-;16650:74;;16733:93;16822:3;16733:93;:::i;:::-;16851:2;16846:3;16842:12;16835:19;;16640:220;;;:::o;16866:366::-;17008:3;17029:67;17093:2;17088:3;17029:67;:::i;:::-;17022:74;;17105:93;17194:3;17105:93;:::i;:::-;17223:2;17218:3;17214:12;17207:19;;17012:220;;;:::o;17238:366::-;17380:3;17401:67;17465:2;17460:3;17401:67;:::i;:::-;17394:74;;17477:93;17566:3;17477:93;:::i;:::-;17595:2;17590:3;17586:12;17579:19;;17384:220;;;:::o;17610:366::-;17752:3;17773:67;17837:2;17832:3;17773:67;:::i;:::-;17766:74;;17849:93;17938:3;17849:93;:::i;:::-;17967:2;17962:3;17958:12;17951:19;;17756:220;;;:::o;17982:366::-;18124:3;18145:67;18209:2;18204:3;18145:67;:::i;:::-;18138:74;;18221:93;18310:3;18221:93;:::i;:::-;18339:2;18334:3;18330:12;18323:19;;18128:220;;;:::o;18354:366::-;18496:3;18517:67;18581:2;18576:3;18517:67;:::i;:::-;18510:74;;18593:93;18682:3;18593:93;:::i;:::-;18711:2;18706:3;18702:12;18695:19;;18500:220;;;:::o;18726:366::-;18868:3;18889:67;18953:2;18948:3;18889:67;:::i;:::-;18882:74;;18965:93;19054:3;18965:93;:::i;:::-;19083:2;19078:3;19074:12;19067:19;;18872:220;;;:::o;19098:118::-;19185:24;19203:5;19185:24;:::i;:::-;19180:3;19173:37;19163:53;;:::o;19222:695::-;19500:3;19522:92;19610:3;19601:6;19522:92;:::i;:::-;19515:99;;19631:95;19722:3;19713:6;19631:95;:::i;:::-;19624:102;;19743:148;19887:3;19743:148;:::i;:::-;19736:155;;19908:3;19901:10;;19504:413;;;;;:::o;19923:222::-;20016:4;20054:2;20043:9;20039:18;20031:26;;20067:71;20135:1;20124:9;20120:17;20111:6;20067:71;:::i;:::-;20021:124;;;;:::o;20151:640::-;20346:4;20384:3;20373:9;20369:19;20361:27;;20398:71;20466:1;20455:9;20451:17;20442:6;20398:71;:::i;:::-;20479:72;20547:2;20536:9;20532:18;20523:6;20479:72;:::i;:::-;20561;20629:2;20618:9;20614:18;20605:6;20561:72;:::i;:::-;20680:9;20674:4;20670:20;20665:2;20654:9;20650:18;20643:48;20708:76;20779:4;20770:6;20708:76;:::i;:::-;20700:84;;20351:440;;;;;;;:::o;20797:210::-;20884:4;20922:2;20911:9;20907:18;20899:26;;20935:65;20997:1;20986:9;20982:17;20973:6;20935:65;:::i;:::-;20889:118;;;;:::o;21013:313::-;21126:4;21164:2;21153:9;21149:18;21141:26;;21213:9;21207:4;21203:20;21199:1;21188:9;21184:17;21177:47;21241:78;21314:4;21305:6;21241:78;:::i;:::-;21233:86;;21131:195;;;;:::o;21332:419::-;21498:4;21536:2;21525:9;21521:18;21513:26;;21585:9;21579:4;21575:20;21571:1;21560:9;21556:17;21549:47;21613:131;21739:4;21613:131;:::i;:::-;21605:139;;21503:248;;;:::o;21757:419::-;21923:4;21961:2;21950:9;21946:18;21938:26;;22010:9;22004:4;22000:20;21996:1;21985:9;21981:17;21974:47;22038:131;22164:4;22038:131;:::i;:::-;22030:139;;21928:248;;;:::o;22182:419::-;22348:4;22386:2;22375:9;22371:18;22363:26;;22435:9;22429:4;22425:20;22421:1;22410:9;22406:17;22399:47;22463:131;22589:4;22463:131;:::i;:::-;22455:139;;22353:248;;;:::o;22607:419::-;22773:4;22811:2;22800:9;22796:18;22788:26;;22860:9;22854:4;22850:20;22846:1;22835:9;22831:17;22824:47;22888:131;23014:4;22888:131;:::i;:::-;22880:139;;22778:248;;;:::o;23032:419::-;23198:4;23236:2;23225:9;23221:18;23213:26;;23285:9;23279:4;23275:20;23271:1;23260:9;23256:17;23249:47;23313:131;23439:4;23313:131;:::i;:::-;23305:139;;23203:248;;;:::o;23457:419::-;23623:4;23661:2;23650:9;23646:18;23638:26;;23710:9;23704:4;23700:20;23696:1;23685:9;23681:17;23674:47;23738:131;23864:4;23738:131;:::i;:::-;23730:139;;23628:248;;;:::o;23882:419::-;24048:4;24086:2;24075:9;24071:18;24063:26;;24135:9;24129:4;24125:20;24121:1;24110:9;24106:17;24099:47;24163:131;24289:4;24163:131;:::i;:::-;24155:139;;24053:248;;;:::o;24307:419::-;24473:4;24511:2;24500:9;24496:18;24488:26;;24560:9;24554:4;24550:20;24546:1;24535:9;24531:17;24524:47;24588:131;24714:4;24588:131;:::i;:::-;24580:139;;24478:248;;;:::o;24732:419::-;24898:4;24936:2;24925:9;24921:18;24913:26;;24985:9;24979:4;24975:20;24971:1;24960:9;24956:17;24949:47;25013:131;25139:4;25013:131;:::i;:::-;25005:139;;24903:248;;;:::o;25157:419::-;25323:4;25361:2;25350:9;25346:18;25338:26;;25410:9;25404:4;25400:20;25396:1;25385:9;25381:17;25374:47;25438:131;25564:4;25438:131;:::i;:::-;25430:139;;25328:248;;;:::o;25582:419::-;25748:4;25786:2;25775:9;25771:18;25763:26;;25835:9;25829:4;25825:20;25821:1;25810:9;25806:17;25799:47;25863:131;25989:4;25863:131;:::i;:::-;25855:139;;25753:248;;;:::o;26007:419::-;26173:4;26211:2;26200:9;26196:18;26188:26;;26260:9;26254:4;26250:20;26246:1;26235:9;26231:17;26224:47;26288:131;26414:4;26288:131;:::i;:::-;26280:139;;26178:248;;;:::o;26432:419::-;26598:4;26636:2;26625:9;26621:18;26613:26;;26685:9;26679:4;26675:20;26671:1;26660:9;26656:17;26649:47;26713:131;26839:4;26713:131;:::i;:::-;26705:139;;26603:248;;;:::o;26857:419::-;27023:4;27061:2;27050:9;27046:18;27038:26;;27110:9;27104:4;27100:20;27096:1;27085:9;27081:17;27074:47;27138:131;27264:4;27138:131;:::i;:::-;27130:139;;27028:248;;;:::o;27282:419::-;27448:4;27486:2;27475:9;27471:18;27463:26;;27535:9;27529:4;27525:20;27521:1;27510:9;27506:17;27499:47;27563:131;27689:4;27563:131;:::i;:::-;27555:139;;27453:248;;;:::o;27707:419::-;27873:4;27911:2;27900:9;27896:18;27888:26;;27960:9;27954:4;27950:20;27946:1;27935:9;27931:17;27924:47;27988:131;28114:4;27988:131;:::i;:::-;27980:139;;27878:248;;;:::o;28132:419::-;28298:4;28336:2;28325:9;28321:18;28313:26;;28385:9;28379:4;28375:20;28371:1;28360:9;28356:17;28349:47;28413:131;28539:4;28413:131;:::i;:::-;28405:139;;28303:248;;;:::o;28557:419::-;28723:4;28761:2;28750:9;28746:18;28738:26;;28810:9;28804:4;28800:20;28796:1;28785:9;28781:17;28774:47;28838:131;28964:4;28838:131;:::i;:::-;28830:139;;28728:248;;;:::o;28982:419::-;29148:4;29186:2;29175:9;29171:18;29163:26;;29235:9;29229:4;29225:20;29221:1;29210:9;29206:17;29199:47;29263:131;29389:4;29263:131;:::i;:::-;29255:139;;29153:248;;;:::o;29407:419::-;29573:4;29611:2;29600:9;29596:18;29588:26;;29660:9;29654:4;29650:20;29646:1;29635:9;29631:17;29624:47;29688:131;29814:4;29688:131;:::i;:::-;29680:139;;29578:248;;;:::o;29832:419::-;29998:4;30036:2;30025:9;30021:18;30013:26;;30085:9;30079:4;30075:20;30071:1;30060:9;30056:17;30049:47;30113:131;30239:4;30113:131;:::i;:::-;30105:139;;30003:248;;;:::o;30257:419::-;30423:4;30461:2;30450:9;30446:18;30438:26;;30510:9;30504:4;30500:20;30496:1;30485:9;30481:17;30474:47;30538:131;30664:4;30538:131;:::i;:::-;30530:139;;30428:248;;;:::o;30682:419::-;30848:4;30886:2;30875:9;30871:18;30863:26;;30935:9;30929:4;30925:20;30921:1;30910:9;30906:17;30899:47;30963:131;31089:4;30963:131;:::i;:::-;30955:139;;30853:248;;;:::o;31107:419::-;31273:4;31311:2;31300:9;31296:18;31288:26;;31360:9;31354:4;31350:20;31346:1;31335:9;31331:17;31324:47;31388:131;31514:4;31388:131;:::i;:::-;31380:139;;31278:248;;;:::o;31532:419::-;31698:4;31736:2;31725:9;31721:18;31713:26;;31785:9;31779:4;31775:20;31771:1;31760:9;31756:17;31749:47;31813:131;31939:4;31813:131;:::i;:::-;31805:139;;31703:248;;;:::o;31957:419::-;32123:4;32161:2;32150:9;32146:18;32138:26;;32210:9;32204:4;32200:20;32196:1;32185:9;32181:17;32174:47;32238:131;32364:4;32238:131;:::i;:::-;32230:139;;32128:248;;;:::o;32382:222::-;32475:4;32513:2;32502:9;32498:18;32490:26;;32526:71;32594:1;32583:9;32579:17;32570:6;32526:71;:::i;:::-;32480:124;;;;:::o;32610:129::-;32644:6;32671:20;;:::i;:::-;32661:30;;32700:33;32728:4;32720:6;32700:33;:::i;:::-;32651:88;;;:::o;32745:75::-;32778:6;32811:2;32805:9;32795:19;;32785:35;:::o;32826:307::-;32887:4;32977:18;32969:6;32966:30;32963:2;;;32999:18;;:::i;:::-;32963:2;33037:29;33059:6;33037:29;:::i;:::-;33029:37;;33121:4;33115;33111:15;33103:23;;32892:241;;;:::o;33139:308::-;33201:4;33291:18;33283:6;33280:30;33277:2;;;33313:18;;:::i;:::-;33277:2;33351:29;33373:6;33351:29;:::i;:::-;33343:37;;33435:4;33429;33425:15;33417:23;;33206:241;;;:::o;33453:141::-;33502:4;33525:3;33517:11;;33548:3;33545:1;33538:14;33582:4;33579:1;33569:18;33561:26;;33507:87;;;:::o;33600:98::-;33651:6;33685:5;33679:12;33669:22;;33658:40;;;:::o;33704:99::-;33756:6;33790:5;33784:12;33774:22;;33763:40;;;:::o;33809:168::-;33892:11;33926:6;33921:3;33914:19;33966:4;33961:3;33957:14;33942:29;;33904:73;;;;:::o;33983:169::-;34067:11;34101:6;34096:3;34089:19;34141:4;34136:3;34132:14;34117:29;;34079:73;;;;:::o;34158:148::-;34260:11;34297:3;34282:18;;34272:34;;;;:::o;34312:305::-;34352:3;34371:20;34389:1;34371:20;:::i;:::-;34366:25;;34405:20;34423:1;34405:20;:::i;:::-;34400:25;;34559:1;34491:66;34487:74;34484:1;34481:81;34478:2;;;34565:18;;:::i;:::-;34478:2;34609:1;34606;34602:9;34595:16;;34356:261;;;;:::o;34623:185::-;34663:1;34680:20;34698:1;34680:20;:::i;:::-;34675:25;;34714:20;34732:1;34714:20;:::i;:::-;34709:25;;34753:1;34743:2;;34758:18;;:::i;:::-;34743:2;34800:1;34797;34793:9;34788:14;;34665:143;;;;:::o;34814:348::-;34854:7;34877:20;34895:1;34877:20;:::i;:::-;34872:25;;34911:20;34929:1;34911:20;:::i;:::-;34906:25;;35099:1;35031:66;35027:74;35024:1;35021:81;35016:1;35009:9;35002:17;34998:105;34995:2;;;35106:18;;:::i;:::-;34995:2;35154:1;35151;35147:9;35136:20;;34862:300;;;;:::o;35168:191::-;35208:4;35228:20;35246:1;35228:20;:::i;:::-;35223:25;;35262:20;35280:1;35262:20;:::i;:::-;35257:25;;35301:1;35298;35295:8;35292:2;;;35306:18;;:::i;:::-;35292:2;35351:1;35348;35344:9;35336:17;;35213:146;;;;:::o;35365:96::-;35402:7;35431:24;35449:5;35431:24;:::i;:::-;35420:35;;35410:51;;;:::o;35467:90::-;35501:7;35544:5;35537:13;35530:21;35519:32;;35509:48;;;:::o;35563:149::-;35599:7;35639:66;35632:5;35628:78;35617:89;;35607:105;;;:::o;35718:126::-;35755:7;35795:42;35788:5;35784:54;35773:65;;35763:81;;;:::o;35850:77::-;35887:7;35916:5;35905:16;;35895:32;;;:::o;35933:154::-;36017:6;36012:3;36007;35994:30;36079:1;36070:6;36065:3;36061:16;36054:27;35984:103;;;:::o;36093:307::-;36161:1;36171:113;36185:6;36182:1;36179:13;36171:113;;;36270:1;36265:3;36261:11;36255:18;36251:1;36246:3;36242:11;36235:39;36207:2;36204:1;36200:10;36195:15;;36171:113;;;36302:6;36299:1;36296:13;36293:2;;;36382:1;36373:6;36368:3;36364:16;36357:27;36293:2;36142:258;;;;:::o;36406:320::-;36450:6;36487:1;36481:4;36477:12;36467:22;;36534:1;36528:4;36524:12;36555:18;36545:2;;36611:4;36603:6;36599:17;36589:27;;36545:2;36673;36665:6;36662:14;36642:18;36639:38;36636:2;;;36692:18;;:::i;:::-;36636:2;36457:269;;;;:::o;36732:281::-;36815:27;36837:4;36815:27;:::i;:::-;36807:6;36803:40;36945:6;36933:10;36930:22;36909:18;36897:10;36894:34;36891:62;36888:2;;;36956:18;;:::i;:::-;36888:2;36996:10;36992:2;36985:22;36775:238;;;:::o;37019:233::-;37058:3;37081:24;37099:5;37081:24;:::i;:::-;37072:33;;37127:66;37120:5;37117:77;37114:2;;;37197:18;;:::i;:::-;37114:2;37244:1;37237:5;37233:13;37226:20;;37062:190;;;:::o;37258:176::-;37290:1;37307:20;37325:1;37307:20;:::i;:::-;37302:25;;37341:20;37359:1;37341:20;:::i;:::-;37336:25;;37380:1;37370:2;;37385:18;;:::i;:::-;37370:2;37426:1;37423;37419:9;37414:14;;37292:142;;;;:::o;37440:180::-;37488:77;37485:1;37478:88;37585:4;37582:1;37575:15;37609:4;37606:1;37599:15;37626:180;37674:77;37671:1;37664:88;37771:4;37768:1;37761:15;37795:4;37792:1;37785:15;37812:180;37860:77;37857:1;37850:88;37957:4;37954:1;37947:15;37981:4;37978:1;37971:15;37998:180;38046:77;38043:1;38036:88;38143:4;38140:1;38133:15;38167:4;38164:1;38157:15;38184:102;38225:6;38276:2;38272:7;38267:2;38260:5;38256:14;38252:28;38242:38;;38232:54;;;:::o;38292:170::-;38432:22;38428:1;38420:6;38416:14;38409:46;38398:64;:::o;38468:230::-;38608:34;38604:1;38596:6;38592:14;38585:58;38677:13;38672:2;38664:6;38660:15;38653:38;38574:124;:::o;38704:237::-;38844:34;38840:1;38832:6;38828:14;38821:58;38913:20;38908:2;38900:6;38896:15;38889:45;38810:131;:::o;38947:225::-;39087:34;39083:1;39075:6;39071:14;39064:58;39156:8;39151:2;39143:6;39139:15;39132:33;39053:119;:::o;39178:178::-;39318:30;39314:1;39306:6;39302:14;39295:54;39284:72;:::o;39362:174::-;39502:26;39498:1;39490:6;39486:14;39479:50;39468:68;:::o;39542:223::-;39682:34;39678:1;39670:6;39666:14;39659:58;39751:6;39746:2;39738:6;39734:15;39727:31;39648:117;:::o;39771:175::-;39911:27;39907:1;39899:6;39895:14;39888:51;39877:69;:::o;39952:181::-;40092:33;40088:1;40080:6;40076:14;40069:57;40058:75;:::o;40139:231::-;40279:34;40275:1;40267:6;40263:14;40256:58;40348:14;40343:2;40335:6;40331:15;40324:39;40245:125;:::o;40376:179::-;40516:31;40512:1;40504:6;40500:14;40493:55;40482:73;:::o;40561:243::-;40701:34;40697:1;40689:6;40685:14;40678:58;40770:26;40765:2;40757:6;40753:15;40746:51;40667:137;:::o;40810:229::-;40950:34;40946:1;40938:6;40934:14;40927:58;41019:12;41014:2;41006:6;41002:15;40995:37;40916:123;:::o;41045:228::-;41185:34;41181:1;41173:6;41169:14;41162:58;41254:11;41249:2;41241:6;41237:15;41230:36;41151:122;:::o;41279:182::-;41419:34;41415:1;41407:6;41403:14;41396:58;41385:76;:::o;41467:231::-;41607:34;41603:1;41595:6;41591:14;41584:58;41676:14;41671:2;41663:6;41659:15;41652:39;41573:125;:::o;41704:155::-;41844:7;41840:1;41832:6;41828:14;41821:31;41810:49;:::o;41865:182::-;42005:34;42001:1;41993:6;41989:14;41982:58;41971:76;:::o;42053:228::-;42193:34;42189:1;42181:6;42177:14;42170:58;42262:11;42257:2;42249:6;42245:15;42238:36;42159:122;:::o;42287:234::-;42427:34;42423:1;42415:6;42411:14;42404:58;42496:17;42491:2;42483:6;42479:15;42472:42;42393:128;:::o;42527:224::-;42667:34;42663:1;42655:6;42651:14;42644:58;42736:7;42731:2;42723:6;42719:15;42712:32;42633:118;:::o;42757:180::-;42897:32;42893:1;42885:6;42881:14;42874:56;42863:74;:::o;42943:220::-;43083:34;43079:1;43071:6;43067:14;43060:58;43152:3;43147:2;43139:6;43135:15;43128:28;43049:114;:::o;43169:236::-;43309:34;43305:1;43297:6;43293:14;43286:58;43378:19;43373:2;43365:6;43361:15;43354:44;43275:130;:::o;43411:176::-;43551:28;43547:1;43539:6;43535:14;43528:52;43517:70;:::o;43593:231::-;43733:34;43729:1;43721:6;43717:14;43710:58;43802:14;43797:2;43789:6;43785:15;43778:39;43699:125;:::o;43830:171::-;43970:23;43966:1;43958:6;43954:14;43947:47;43936:65;:::o;44007:122::-;44080:24;44098:5;44080:24;:::i;:::-;44073:5;44070:35;44060:2;;44119:1;44116;44109:12;44060:2;44050:79;:::o;44135:116::-;44205:21;44220:5;44205:21;:::i;:::-;44198:5;44195:32;44185:2;;44241:1;44238;44231:12;44185:2;44175:76;:::o;44257:120::-;44329:23;44346:5;44329:23;:::i;:::-;44322:5;44319:34;44309:2;;44367:1;44364;44357:12;44309:2;44299:78;:::o;44383:122::-;44456:24;44474:5;44456:24;:::i;:::-;44449:5;44446:35;44436:2;;44495:1;44492;44485:12;44436:2;44426:79;:::o
Swarm Source
ipfs://78755c226ffb209a9cf71c3a85f8469689eee32f8ce085ea933cdab8c62a04ec
Loading...
Loading
Loading...
Loading
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.