More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 24,813 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 59346353 | 18 hrs ago | IN | 0 AVAX | 0.00006016 | ||||
Withdraw | 59346349 | 18 hrs ago | IN | 0 AVAX | 0.00006016 | ||||
Set Approval For... | 58965229 | 8 days ago | IN | 0 AVAX | 0.00011575 | ||||
Set Approval For... | 58355887 | 21 days ago | IN | 0 AVAX | 0.00005838 | ||||
Set Approval For... | 58241950 | 23 days ago | IN | 0 AVAX | 0.00011575 | ||||
Withdraw | 58187529 | 24 days ago | IN | 0 AVAX | 0.00007695 | ||||
Withdraw | 58187478 | 24 days ago | IN | 0 AVAX | 0.00007885 | ||||
Set Approval For... | 58062246 | 27 days ago | IN | 0 AVAX | 0.00016205 | ||||
Set Approval For... | 57928884 | 29 days ago | IN | 0 AVAX | 0.00011575 | ||||
Set Approval For... | 57449659 | 39 days ago | IN | 0 AVAX | 0.00003531 | ||||
Set Approval For... | 57301294 | 42 days ago | IN | 0 AVAX | 0.00002926 | ||||
Set Approval For... | 57301253 | 42 days ago | IN | 0 AVAX | 0.00005131 | ||||
Transfer From | 56590497 | 56 days ago | IN | 0 AVAX | 0.00016444 | ||||
Set Approval For... | 56561083 | 57 days ago | IN | 0 AVAX | 0.00016205 | ||||
Set Approval For... | 56419613 | 60 days ago | IN | 0 AVAX | 0.00006013 | ||||
Set Approval For... | 56375673 | 61 days ago | IN | 0 AVAX | 0.00003648 | ||||
Safe Transfer Fr... | 56106936 | 66 days ago | IN | 0 AVAX | 0.00020592 | ||||
Set Approval For... | 56106284 | 66 days ago | IN | 0 AVAX | 0.00006969 | ||||
Set Approval For... | 55579331 | 77 days ago | IN | 0 AVAX | 0.00007326 | ||||
Set Approval For... | 55135328 | 87 days ago | IN | 0 AVAX | 0.00011557 | ||||
Set Approval For... | 55067835 | 88 days ago | IN | 0 AVAX | 0.00011575 | ||||
Set Approval For... | 54985563 | 90 days ago | IN | 0 AVAX | 0.00004761 | ||||
Set Approval For... | 54985127 | 90 days ago | IN | 0 AVAX | 0.00004761 | ||||
Safe Transfer Fr... | 54825228 | 93 days ago | IN | 0 AVAX | 0.00038637 | ||||
Safe Transfer Fr... | 54825187 | 93 days ago | IN | 0 AVAX | 0.00038637 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
58187529 | 24 days ago | 149 AVAX | ||||
58187478 | 24 days ago | 149 wei | ||||
27239692 | 749 days ago | 0.1 AVAX | ||||
27239624 | 749 days ago | 1 wei | ||||
17492940 | 984 days ago | 3.8 AVAX | ||||
15333454 | 1034 days ago | 9.5 AVAX | ||||
9245439 | 1176 days ago | 4.75 AVAX | ||||
8503691 | 1193 days ago | 3.8 AVAX | ||||
8296978 | 1198 days ago | 2.28 AVAX | ||||
7861296 | 1208 days ago | 6.3555 AVAX | ||||
7627169 | 1214 days ago | 2.375 AVAX | ||||
7349078 | 1220 days ago | 12.236 AVAX | ||||
7277020 | 1222 days ago | 3.42 AVAX | ||||
7222966 | 1223 days ago | 5.7 AVAX | ||||
7174411 | 1224 days ago | 3.8 AVAX | ||||
7085109 | 1226 days ago | 13.3 AVAX | ||||
7022937 | 1228 days ago | 2.85 AVAX | ||||
6858460 | 1231 days ago | 11.4 AVAX | ||||
6670094 | 1236 days ago | 12.255 AVAX | ||||
6655334 | 1236 days ago | 46.55 AVAX | ||||
6655312 | 1236 days ago | 0.95 AVAX | ||||
6629102 | 1237 days ago | 15.2 AVAX | ||||
6599896 | 1238 days ago | 4.75 AVAX | ||||
6430401 | 1242 days ago | 3.6575 AVAX | ||||
6372721 | 1243 days ago | 4.75 AVAX |
Loading...
Loading
Contract Name:
ContractNft
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2021-11-21 */ // SPDX-License-Identifier: MIT pragma solidity ^0.7.6; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @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 Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } /** * @title ERC-721 Non-Fungible Token Standard, optional 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); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; modifier onlyTradablePunk (address from, uint256 tokenId) { require(tokenId < 10000, "Out of tokenId"); require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); _; } struct Offer { bool isForSale; uint256 punkIndex; address seller; uint256 minValue; address onlySellTo; } struct Bid { bool hasBid; uint256 punkIndex; address bidder; uint256 value; } mapping(uint256 => uint256) private assignOrders; mapping (uint256 => Offer) public punksOfferedForSale; mapping (uint256 => Bid) public punkBids; mapping (address => uint256) public pendingWithdrawals; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @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 _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.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 _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _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); _holderTokens[to].add(tokenId); _tokenOwners.set(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); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(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"); // internal owner require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (!to.isContract()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } function _approve(address to, uint256 tokenId) private { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner } /** * @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 { } } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key) return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } } /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } contract ContractNft is ERC721, Ownable { using SafeMath for uint256; using Strings for uint256; mapping(uint256 => uint256) private assignOrders; uint256 public SALE_START_TIMESTAMP = 1628510022; // 1628535570 uint256 public constant MAX_SUPPLY = 10000; uint256 public punksRemainingToAssign = 10000; uint256 public constant MAX_RESERVE = 100; uint256 public reserved = 0; string public constant imageHash = "4e295db0f87e342c73c9e9bb74e40d6e63a6d2cd5c27f1bfdc03b36429a04a94"; constructor(string memory name, string memory symbol, string memory baseURI) ERC721(name, symbol) { _setBaseURI(baseURI); } function reserveNFTs(uint256 amount) onlyOwner public { require(SafeMath.add(totalSupply(), amount) <= MAX_SUPPLY, "Exceeds maximum supply. Please try to mint less Nfts."); require(reserved.add(amount) <= MAX_RESERVE, "Exceeds maximum reserve. Please try to mint less Nfts."); for (uint i = 0; i < amount; i++) { uint mintIndex = totalSupply(); _safeMint(msg.sender, mintIndex); } reserved += amount; } function setSaleTimestamp(uint256 new_SALE_START_TIMESTAMP) onlyOwner public { SALE_START_TIMESTAMP = new_SALE_START_TIMESTAMP; } function getNFTPrice(uint256 amount) public view returns (uint256) { require(totalSupply() < MAX_SUPPLY, "Sale has already ended."); return amount.mul(2 ether); } function _random() internal view returns(uint256) { return uint256( keccak256( abi.encodePacked(block.timestamp + block.difficulty + ((uint256(keccak256(abi.encodePacked(block.coinbase)))) / block.timestamp) + block.gaslimit + ((uint256(keccak256(abi.encodePacked(_msgSender())))) / block.timestamp) + block.number) ) ) / punksRemainingToAssign; } function _fillAssignOrder(uint256 orderA, uint256 orderB) internal returns(uint256) { uint256 temp = orderA; if (assignOrders[orderA] > 0) temp = assignOrders[orderA]; assignOrders[orderA] = orderB; if (assignOrders[orderB] > 0) assignOrders[orderA] = assignOrders[orderB]; assignOrders[orderB] = temp; return assignOrders[orderA]; } function mintNFT(uint256 amount) public payable { // require(block.timestamp >= SALE_START_TIMESTAMP, "Sale has not started yet."); require(totalSupply() < MAX_SUPPLY, "Sale has already ended."); require(amount > 0, "You cannot mint 0 Nfts."); require(amount <= 20, "You cannot mint more than 20 Nfts per once"); require(SafeMath.add(totalSupply(), amount) <= MAX_SUPPLY, "Exceeds maximum supply. Please try to mint less Nfts."); require(getNFTPrice(amount) == msg.value, "Amount of Ether sent is not correct."); (bool success,) = owner().call{value: msg.value}(""); require(success); for (uint i = 0; i < amount; i++) { uint256 randIndex = _random() % punksRemainingToAssign; uint256 punkIndex = _fillAssignOrder(--punksRemainingToAssign, randIndex); _safeMint(msg.sender, punkIndex); } } function buyPunk(uint256 tokenId) payable public { Offer memory offer = punksOfferedForSale[tokenId]; require(tokenId < 10000, "Out of tokenId"); require(offer.isForSale, "No Sale"); require(offer.onlySellTo == address(0) || offer.onlySellTo == _msgSender(), "Unable to sell"); require(msg.value >= offer.minValue, "Insufficient amount"); require(ownerOf(tokenId) == offer.seller, "Not seller"); address seller = offer.seller; // Transfer the NFT _safeTransfer(seller, _msgSender(), tokenId, ""); pendingWithdrawals[seller] += msg.value * 95 / 100; // handle (bool success,) = owner().call{value: msg.value * 5 / 100}(""); require(success); // handle // emit PunkBought(tokenId, msg.value, seller, _msgSender()); } function punkNoLongerForSale(uint256 tokenId) public { _punkNoLongerForSale(_msgSender(), tokenId); } function _punkNoLongerForSale(address from, uint256 tokenId) internal onlyTradablePunk(from, tokenId) { punksOfferedForSale[tokenId] = Offer(false, tokenId, from, 0, address(0)); // emit PunkNoLongerForSale(tokenId); } function offerPunkForSale(uint256 tokenId, uint256 minSalePriceInWei) public onlyTradablePunk(_msgSender(), tokenId) { punksOfferedForSale[tokenId] = Offer(true, tokenId, _msgSender(), minSalePriceInWei, address(0)); // emit PunkOffered(tokenId, minSalePriceInWei, address(0)); } function enterBidForPunk(uint256 tokenId) public payable { require(tokenId < 10000, "Out"); require(ownerOf(tokenId) != _msgSender(), "Invalid"); require(msg.value > punkBids[tokenId].value, "Invalid"); Bid memory existing = punkBids[tokenId]; if (existing.value > 0) { // Refund the failing bid pendingWithdrawals[existing.bidder] += existing.value; } punkBids[tokenId] = Bid(true, tokenId, _msgSender(), msg.value); // emit PunkBidEntered(tokenId, msg.value, _msgSender()); } function acceptBidForPunk(uint256 tokenId, uint256 minPrice) public onlyTradablePunk(_msgSender(), tokenId) { require(punkBids[tokenId].value >= minPrice, "Invalid"); Bid memory bid = punkBids[tokenId]; punkBids[tokenId] = Bid(false, tokenId, address(0), 0); _safeTransfer(_msgSender(), bid.bidder, tokenId, ""); pendingWithdrawals[_msgSender()] += bid.value * 95 / 100; (bool success,) = owner().call{value: bid.value * 5 / 100}(""); require(success); // emit PunkBought(tokenId, bid.value, _msgSender(), bid.bidder); } function withdrawBidForPunk(uint256 tokenId) public { require(tokenId < 10000, "Out"); require(ownerOf(tokenId) != _msgSender(), "Invalid"); require(punkBids[tokenId].bidder == _msgSender(), "Invalid"); punkBids[tokenId] = Bid(false, tokenId, address(0), 0); // Refund the bid money (bool success,) = _msgSender().call{value: punkBids[tokenId].value}(""); require(success); // emit PunkBidWithdrawn(tokenId, punkBids[tokenId].value, _msgSender()); } function withdraw() public { uint256 amount = pendingWithdrawals[_msgSender()]; pendingWithdrawals[_msgSender()] = 0; (bool success,) = _msgSender().call{value: amount}(""); require(success); } function withdraw(uint256 amount) onlyOwner public { msg.sender.transfer(amount); } function changeBaseURI(string memory baseURI) onlyOwner public { _setBaseURI(baseURI); } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(baseURI(), tokenId.toString())); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"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":[],"name":"MAX_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"minPrice","type":"uint256"}],"name":"acceptBidForPunk","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":"buyPunk","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"enterBidForPunk","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imageHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"minSalePriceInWei","type":"uint256"}],"name":"offerPunkForSale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"pendingWithdrawals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"punkBids","outputs":[{"internalType":"bool","name":"hasBid","type":"bool"},{"internalType":"uint256","name":"punkIndex","type":"uint256"},{"internalType":"address","name":"bidder","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"punkNoLongerForSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"punksOfferedForSale","outputs":[{"internalType":"bool","name":"isForSale","type":"bool"},{"internalType":"uint256","name":"punkIndex","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"minValue","type":"uint256"},{"internalType":"address","name":"onlySellTo","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"punksRemainingToAssign","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserveNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"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":"uint256","name":"new_SALE_START_TIMESTAMP","type":"uint256"}],"name":"setSaleTimestamp","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdrawBidForPunk","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052636111174660105561271060115560006012553480156200002457600080fd5b5060405162005c9038038062005c90833981810160405260608110156200004a57600080fd5b81019080805160405193929190846401000000008211156200006b57600080fd5b838201915060208201858111156200008257600080fd5b8251866001820283011164010000000082111715620000a057600080fd5b8083526020830192505050908051906020019080838360005b83811015620000d6578082015181840152602081019050620000b9565b50505050905090810190601f168015620001045780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200012857600080fd5b838201915060208201858111156200013f57600080fd5b82518660018202830111640100000000821117156200015d57600080fd5b8083526020830192505050908051906020019080838360005b838110156200019357808201518184015260208101905062000176565b50505050905090810190601f168015620001c15780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001e557600080fd5b83820191506020820185811115620001fc57600080fd5b82518660018202830111640100000000821117156200021a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200025057808201518184015260208101905062000233565b50505050905090810190601f1680156200027e5780820380516001836020036101000a031916815260200191505b5060405250505082826200029f6301ffc9a760e01b620003e660201b60201c565b81600a9080519060200190620002b792919062000513565b5080600b9080519060200190620002d092919062000513565b50620002e96380ac58cd60e01b620003e660201b60201c565b62000301635b5e139f60e01b620003e660201b60201c565b6200031963780e9d6360e01b620003e660201b60201c565b505060006200032d620004ef60201b60201c565b905080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620003dd81620004f760201b60201c565b505050620005c9565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b80600d90805190602001906200050f92919062000513565b5050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200054b576000855562000597565b82601f106200056657805160ff191683800117855562000597565b8280016001018555821562000597579182015b828111156200059657825182559160200191906001019062000579565b5b509050620005a69190620005aa565b5090565b5b80821115620005c5576000816000905550600101620005ab565b5090565b6156b780620005d96000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c514610f8c578063eff31e9e14611013578063f2fde38b1461103e578063f3f437031461108f578063f6eeff1e146110f4578063fe60d12c1461112f57610246565b8063b88d4fde14610d1b578063bc7df09114610e2d578063c0d6ce6314610e68578063c44193c314610e93578063c87b56dd14610ed857610246565b806392976179116100fd5780639297617914610b79578063946807fd14610bc857806395d89b4114610bf3578063979bc63814610c83578063a22cb46514610cbe57610246565b806370a0823114610a3c5780637a1cbd3f14610aa15780638264fe9814610adc5780638da5cb5b14610b0a5780639264274414610b4b57610246565b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce7146107ec57806351605d801461083b5780636352211e146108cb5780636c0360eb146109305780636e743fa9146109c057610246565b80632f745c59146105f857806332cb6b0c1461066757806339a0c6f9146106925780633ccfd60b1461075a57806342842e0e1461077157610246565b8063095ea7b31161020e578063095ea7b31461047757806318160ddd146104d257806323165b75146104fd57806323b872dd146105425780632e1a7d4d146105bd57610246565b806301ffc9a71461024b57806306fdde03146102bb578063081812fc1461034b578063088f11f3146103b0578063091dbfd214610449575b600080fd5b34801561025757600080fd5b506102a36004803603602081101561026e57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061115a565b60405180821515815260200191505060405180910390f35b3480156102c757600080fd5b506102d06111c1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103105780820151818401526020810190506102f5565b50505050905090810190601f16801561033d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035757600080fd5b506103846004803603602081101561036e57600080fd5b8101908080359060200190929190505050611263565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103bc57600080fd5b506103e9600480360360208110156103d357600080fd5b81019080803590602001909291905050506112fe565b6040518086151581526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019550505050505060405180910390f35b6104756004803603602081101561045f57600080fd5b8101908080359060200190929190505050611381565b005b34801561048357600080fd5b506104d06004803603604081101561049a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611714565b005b3480156104de57600080fd5b506104e7611858565b6040518082815260200191505060405180910390f35b34801561050957600080fd5b506105406004803603604081101561052057600080fd5b810190808035906020019092919080359060200190929190505050611869565b005b34801561054e57600080fd5b506105bb6004803603606081101561056557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c93565b005b3480156105c957600080fd5b506105f6600480360360208110156105e057600080fd5b8101908080359060200190929190505050611d09565b005b34801561060457600080fd5b506106516004803603604081101561061b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e02565b6040518082815260200191505060405180910390f35b34801561067357600080fd5b5061067c611e5d565b6040518082815260200191505060405180910390f35b34801561069e57600080fd5b50610758600480360360208110156106b557600080fd5b81019080803590602001906401000000008111156106d257600080fd5b8201836020820111156106e457600080fd5b8035906020019184600183028401116401000000008311171561070657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e63565b005b34801561076657600080fd5b5061076f611f1e565b005b34801561077d57600080fd5b506107ea6004803603606081101561079457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612033565b005b3480156107f857600080fd5b506108256004803603602081101561080f57600080fd5b8101908080359060200190929190505050612053565b6040518082815260200191505060405180910390f35b34801561084757600080fd5b50610850612076565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610890578082015181840152602081019050610875565b50505050905090810190601f1680156108bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108d757600080fd5b50610904600480360360208110156108ee57600080fd5b8101908080359060200190929190505050612092565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561093c57600080fd5b506109456120c9565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561098557808201518184015260208101905061096a565b50505050905090810190601f1680156109b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109cc57600080fd5b506109f9600480360360208110156109e357600080fd5b810190808035906020019092919050505061216b565b6040518085151581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200194505050505060405180910390f35b348015610a4857600080fd5b50610a8b60048036036020811015610a5f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121c8565b6040518082815260200191505060405180910390f35b348015610aad57600080fd5b50610ada60048036036020811015610ac457600080fd5b810190808035906020019092919050505061229d565b005b610b0860048036036020811015610af257600080fd5b8101908080359060200190929190505050612356565b005b348015610b1657600080fd5b50610b1f612861565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b7760048036036020811015610b6157600080fd5b810190808035906020019092919050505061288b565b005b348015610b8557600080fd5b50610bb260048036036020811015610b9c57600080fd5b8101908080359060200190929190505050612b7b565b6040518082815260200191505060405180910390f35b348015610bd457600080fd5b50610bdd612c1d565b6040518082815260200191505060405180910390f35b348015610bff57600080fd5b50610c08612c23565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c48578082015181840152602081019050610c2d565b50505050905090810190601f168015610c755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c8f57600080fd5b50610cbc60048036036020811015610ca657600080fd5b8101908080359060200190929190505050612cc5565b005b348015610cca57600080fd5b50610d1960048036036040811015610ce157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061302c565b005b348015610d2757600080fd5b50610e2b60048036036080811015610d3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610da557600080fd5b820183602082011115610db757600080fd5b80359060200191846001830284011164010000000083111715610dd957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506131e2565b005b348015610e3957600080fd5b50610e6660048036036020811015610e5057600080fd5b810190808035906020019092919050505061325a565b005b348015610e7457600080fd5b50610e7d613425565b6040518082815260200191505060405180910390f35b348015610e9f57600080fd5b50610ed660048036036040811015610eb657600080fd5b81019080803590602001909291908035906020019092919050505061342b565b005b348015610ee457600080fd5b50610f1160048036036020811015610efb57600080fd5b8101908080359060200190929190505050613673565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f51578082015181840152602081019050610f36565b50505050905090810190601f168015610f7e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f9857600080fd5b50610ffb60048036036040811015610faf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506137a7565b60405180821515815260200191505060405180910390f35b34801561101f57600080fd5b5061102861383b565b6040518082815260200191505060405180910390f35b34801561104a57600080fd5b5061108d6004803603602081101561106157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613840565b005b34801561109b57600080fd5b506110de600480360360208110156110b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613a35565b6040518082815260200191505060405180910390f35b34801561110057600080fd5b5061112d6004803603602081101561111757600080fd5b8101908080359060200190929190505050613a4d565b005b34801561113b57600080fd5b50611144613a61565b6040518082815260200191505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112595780601f1061122e57610100808354040283529160200191611259565b820191906000526020600020905b81548152906001019060200180831161123c57829003601f168201915b5050505050905090565b600061126e82613a67565b6112c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615542602c913960400191505060405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60026020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030154908060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905085565b61271081106113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260038152602001807f4f7574000000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b611400613a84565b73ffffffffffffffffffffffffffffffffffffffff1661141f82612092565b73ffffffffffffffffffffffffffffffffffffffff1614156114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f496e76616c69640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60036000828152602001908152602001600020600301543411611534576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f496e76616c69640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600360008381526020019081526020016000206040518060800160405290816000820160009054906101000a900460ff16151515158152602001600182015481526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481525050905060008160600151111561163e57806060015160046000836040015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b6040518060800160405280600115158152602001838152602001611660613a84565b73ffffffffffffffffffffffffffffffffffffffff168152602001348152506003600084815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301559050505050565b600061171f82612092565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806155f06021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166117c5613a84565b73ffffffffffffffffffffffffffffffffffffffff1614806117f457506117f3816117ee613a84565b6137a7565b5b611849576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806154746038913960400191505060405180910390fd5b6118538383613a8c565b505050565b60006118646006613b45565b905090565b611871613a84565b8261271081106118e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f7574206f6620746f6b656e496400000000000000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1661190982612092565b73ffffffffffffffffffffffffffffffffffffffff1614611975576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155986029913960400191505060405180910390fd5b8260036000868152602001908152602001600020600301541015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f496e76616c69640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600360008681526020019081526020016000206040518060800160405290816000820160009054906101000a900460ff16151515158152602001600182015481526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160038201548152505090506040518060800160405280600015158152602001868152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152506003600087815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060608201518160030155905050611b9b611b80613a84565b82604001518760405180602001604052806000815250613b5a565b6064605f82606001510281611bac57fe5b0460046000611bb9613a84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506000611c0a612861565b73ffffffffffffffffffffffffffffffffffffffff166064600584606001510281611c3157fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611c78576040519150601f19603f3d011682016040523d82523d6000602084013e611c7d565b606091505b5050905080611c8b57600080fd5b505050505050565b611ca4611c9e613a84565b82613bcc565b611cf9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806156116031913960400191505060405180910390fd5b611d04838383613cc0565b505050565b611d11613a84565b73ffffffffffffffffffffffffffffffffffffffff16611d2f612861565b73ffffffffffffffffffffffffffffffffffffffff1614611db8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611dfe573d6000803e3d6000fd5b5050565b6000611e5582600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613f0390919063ffffffff16565b905092915050565b61271081565b611e6b613a84565b73ffffffffffffffffffffffffffffffffffffffff16611e89612861565b73ffffffffffffffffffffffffffffffffffffffff1614611f12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611f1b81613f1d565b50565b600060046000611f2c613a84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060046000611f77613a84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000611fbf613a84565b73ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d806000811461201c576040519150601f19603f3d011682016040523d82523d6000602084013e612021565b606091505b505090508061202f57600080fd5b5050565b61204e838383604051806020016040528060008152506131e2565b505050565b60008061206a836006613f3790919063ffffffff16565b50905080915050919050565b6040518060600160405280604081526020016156426040913981565b60006120c2826040518060600160405280602981526020016154d6602991396006613f639092919063ffffffff16565b9050919050565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121615780601f1061213657610100808354040283529160200191612161565b820191906000526020600020905b81548152906001019060200180831161214457829003601f168201915b5050505050905090565b60036020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030154905084565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806154ac602a913960400191505060405180910390fd5b612296600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613f82565b9050919050565b6122a5613a84565b73ffffffffffffffffffffffffffffffffffffffff166122c3612861565b73ffffffffffffffffffffffffffffffffffffffff161461234c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6000600260008381526020019081526020016000206040518060a00160405290816000820160009054906101000a900460ff16151515158152602001600182015481526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481526020016004820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525050905061271082106124ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f7574206f6620746f6b656e496400000000000000000000000000000000000081525060200191505060405180910390fd5b8060000151612541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f4e6f2053616c650000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16816080015173ffffffffffffffffffffffffffffffffffffffff1614806125b65750612583613a84565b73ffffffffffffffffffffffffffffffffffffffff16816080015173ffffffffffffffffffffffffffffffffffffffff16145b612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f556e61626c6520746f2073656c6c00000000000000000000000000000000000081525060200191505060405180910390fd5b80606001513410156126a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f496e73756666696369656e7420616d6f756e740000000000000000000000000081525060200191505060405180910390fd5b806040015173ffffffffffffffffffffffffffffffffffffffff166126c683612092565b73ffffffffffffffffffffffffffffffffffffffff161461274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f4e6f742073656c6c65720000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60008160400151905061277a81612764613a84565b8560405180602001604052806000815250613b5a565b6064605f34028161278757fe5b04600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060006127de612861565b73ffffffffffffffffffffffffffffffffffffffff166064600534028161280157fe5b0460405180600001905060006040518083038185875af1925050503d8060008114612848576040519150601f19603f3d011682016040523d82523d6000602084013e61284d565b606091505b505090508061285b57600080fd5b50505050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612710612896611858565b10612909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f53616c652068617320616c726561647920656e6465642e00000000000000000081525060200191505060405180910390fd5b6000811161297f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752063616e6e6f74206d696e742030204e6674732e00000000000000000081525060200191505060405180910390fd5b60148111156129d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061556e602a913960400191505060405180910390fd5b6127106129ed6129e7611858565b83613f97565b1115612a44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806153936035913960400191505060405180910390fd5b34612a4e82612b7b565b14612aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153176024913960400191505060405180910390fd5b6000612aae612861565b73ffffffffffffffffffffffffffffffffffffffff163460405180600001905060006040518083038185875af1925050503d8060008114612b0b576040519150601f19603f3d011682016040523d82523d6000602084013e612b10565b606091505b5050905080612b1e57600080fd5b60005b82811015612b76576000601154612b3661401f565b81612b3d57fe5b0690506000612b5b6011600081546001900391905081905583614102565b9050612b6733826141d0565b50508080600101915050612b21565b505050565b6000612710612b88611858565b10612bfb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f53616c652068617320616c726561647920656e6465642e00000000000000000081525060200191505060405180910390fd5b612c16671bc16d674ec80000836141ee90919063ffffffff16565b9050919050565b60105481565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612cbb5780601f10612c9057610100808354040283529160200191612cbb565b820191906000526020600020905b815481529060010190602001808311612c9e57829003601f168201915b5050505050905090565b6127108110612d3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260038152602001807f4f7574000000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b612d44613a84565b73ffffffffffffffffffffffffffffffffffffffff16612d6382612092565b73ffffffffffffffffffffffffffffffffffffffff161415612ded576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f496e76616c69640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b612df5613a84565b73ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ecb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f496e76616c69640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6040518060800160405280600015158152602001828152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152506003600083815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301559050506000612fa2613a84565b73ffffffffffffffffffffffffffffffffffffffff16600360008481526020019081526020016000206003015460405180600001905060006040518083038185875af1925050503d8060008114613015576040519150601f19603f3d011682016040523d82523d6000602084013e61301a565b606091505b505090508061302857600080fd5b5050565b613034613a84565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600960006130e2613a84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661318f613a84565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6131f36131ed613a84565b83613bcc565b613248576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806156116031913960400191505060405180910390fd5b61325484848484613b5a565b50505050565b613262613a84565b73ffffffffffffffffffffffffffffffffffffffff16613280612861565b73ffffffffffffffffffffffffffffffffffffffff1614613309576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61271061331d613317611858565b83613f97565b1115613374576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806153936035913960400191505060405180910390fd5b606461338b82601254613f9790919063ffffffff16565b11156133e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603681526020018061543e6036913960400191505060405180910390fd5b60005b818110156134115760006133f7611858565b905061340333826141d0565b5080806001019150506133e5565b508060126000828254019250508190555050565b60115481565b613433613a84565b8261271081106134ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f7574206f6620746f6b656e496400000000000000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166134cb82612092565b73ffffffffffffffffffffffffffffffffffffffff1614613537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155986029913960400191505060405180910390fd5b6040518060a00160405280600115158152602001858152602001613559613a84565b73ffffffffffffffffffffffffffffffffffffffff168152602001848152602001600073ffffffffffffffffffffffffffffffffffffffff168152506002600086815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506060820151816003015560808201518160040160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505050505050565b606061367e82613a67565b6136d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806155c1602f913960400191505060405180910390fd5b6136db6120c9565b6136e483614274565b6040516020018083805190602001908083835b6020831061371a57805182526020820191506020810190506020830392506136f7565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061376b5780518252602082019150602081019050602083039250613748565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606481565b613848613a84565b73ffffffffffffffffffffffffffffffffffffffff16613866612861565b73ffffffffffffffffffffffffffffffffffffffff16146138ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061536d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60046020528060005260406000206000915090505481565b613a5e613a58613a84565b826143bb565b50565b60125481565b6000613a7d8260066145f690919063ffffffff16565b9050919050565b600033905090565b816008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613aff83612092565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613b5382600001614610565b9050919050565b613b65848484613cc0565b613b7184848484614621565b613bc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061533b6032913960400191505060405180910390fd5b50505050565b6000613bd782613a67565b613c2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615412602c913960400191505060405180910390fd5b6000613c3783612092565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613ca657508373ffffffffffffffffffffffffffffffffffffffff16613c8e84611263565b73ffffffffffffffffffffffffffffffffffffffff16145b80613cb75750613cb681856137a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613ce082612092565b73ffffffffffffffffffffffffffffffffffffffff1614613d4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155986029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153c86024913960400191505060405180910390fd5b613ddd83838361483a565b613de8600082613a8c565b613e3981600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061483f90919063ffffffff16565b50613e8b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061485990919063ffffffff16565b50613ea2818360066148739092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613f1283600001836148a8565b60001c905092915050565b80600d9080519060200190613f33929190615249565b5050565b600080600080613f4a866000018661492b565b915091508160001c8160001c9350935050509250929050565b6000613f76846000018460001b846149c4565b60001c90509392505050565b6000613f9082600001614aba565b9050919050565b600080828401905083811015614015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000601154434261402e613a84565b604051602001808273ffffffffffffffffffffffffffffffffffffffff1660601b81526014019150506040516020818303038152906040528051906020012060001c8161407757fe5b04454241604051602001808273ffffffffffffffffffffffffffffffffffffffff1660601b81526014019150506040516020818303038152906040528051906020012060001c816140c457fe5b0444420101010101604051602001808281526020019150506040516020818303038152906040528051906020012060001c816140fc57fe5b04905090565b6000808390506000600f600086815260200190815260200160002054111561413b57600f60008581526020019081526020016000205490505b82600f6000868152602001908152602001600020819055506000600f600085815260200190815260200160002054111561419b57600f600084815260200190815260200160002054600f6000868152602001908152602001600020819055505b80600f600085815260200190815260200160002081905550600f60008581526020019081526020016000205491505092915050565b6141ea828260405180602001604052806000815250614acb565b5050565b600080831415614201576000905061426e565b600082840290508284828161421257fe5b0414614269576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806155216021913960400191505060405180910390fd5b809150505b92915050565b606060008214156142bc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506143b6565b600082905060005b600082146142e6578080600101915050600a82816142de57fe5b0491506142c4565b60008167ffffffffffffffff811180156142ff57600080fd5b506040519080825280601f01601f1916602001820160405280156143325781602001600182028036833780820191505090505b50905060006001830390508593505b600084146143ae57600a848161435357fe5b0660300160f81b8282806001900393508151811061436d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816143a657fe5b049350614341565b819450505050505b919050565b81816127108110614434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f7574206f6620746f6b656e496400000000000000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1661445482612092565b73ffffffffffffffffffffffffffffffffffffffff16146144c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155986029913960400191505060405180910390fd5b6040518060a001604052806000151581526020018481526020018573ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff168152506002600085815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506060820151816003015560808201518160040160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505050505050565b6000614608836000018360001b614b3c565b905092915050565b600081600001805490509050919050565b60006146428473ffffffffffffffffffffffffffffffffffffffff16614b5f565b61464f5760019050614832565b60006147b963150b7a0260e01b614664613a84565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156146e85780820151818401526020810190506146cd565b50505050905090810190601f1680156147155780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161533b603291398773ffffffffffffffffffffffffffffffffffffffff16614b729092919063ffffffff16565b905060008180602001905160208110156147d257600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b505050565b6000614851836000018360001b614b8a565b905092915050565b600061486b836000018360001b614c72565b905092915050565b600061489f846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614ce2565b90509392505050565b600081836000018054905011614909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806152f56022913960400191505060405180910390fd5b82600001828154811061491857fe5b9060005260206000200154905092915050565b6000808284600001805490501161498d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154ff6022913960400191505060405180910390fd5b600084600001848154811061499e57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614a8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614a50578082015181840152602081019050614a35565b50505050905090810190601f168015614a7d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110614a9e57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b614ad58383614dbe565b614ae26000848484614621565b614b37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061533b6032913960400191505060405180910390fd5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080823b905060008111915050919050565b6060614b818484600085614fb2565b90509392505050565b60008083600101600084815260200190815260200160002054905060008114614c665760006001820390506000600186600001805490500390506000866000018281548110614bd557fe5b9060005260206000200154905080876000018481548110614bf257fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480614c2a57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614c6c565b60009150505b92915050565b6000614c7e838361515a565b614cd7578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614cdc565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415614d8957846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614db7565b82856000016001830381548110614d9c57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614e61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b614e6a81613a67565b15614edd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b614ee96000838361483a565b614f3a81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061485990919063ffffffff16565b50614f51818360066148739092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60608247101561500d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806153ec6026913960400191505060405180910390fd5b61501685614b5f565b615088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106150d757805182526020820191506020810190506020830392506150b4565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615139576040519150601f19603f3d011682016040523d82523d6000602084013e61513e565b606091505b509150915061514e82828661517d565b92505050949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060831561518d57829050615242565b6000835111156151a05782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156152075780820151818401526020810190506151ec565b50505050905090810190601f1680156152345780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261527f57600085556152c6565b82601f1061529857805160ff19168380011785556152c6565b828001600101855582156152c6579182015b828111156152c55782518255916020019190600101906152aa565b5b5090506152d391906152d7565b5090565b5b808211156152f05760008160009055506001016152d8565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416d6f756e74206f662045746865722073656e74206973206e6f7420636f72726563742e4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345786365656473206d6178696d756d20737570706c792e20506c656173652074727920746f206d696e74206c657373204e6674732e4552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e45786365656473206d6178696d756d20726573657276652e20506c656173652074727920746f206d696e74206c657373204e6674732e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e596f752063616e6e6f74206d696e74206d6f7265207468616e203230204e66747320706572206f6e63654552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656434653239356462306638376533343263373363396539626237346534306436653633613664326364356332376631626664633033623336343239613034613934a2646970667358221220906e3571327917a172b6188bee1b9da65b32998b5af26467b6b1d32554ae879c64736f6c63430007060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a415641582050554e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000450554e4b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f6170692e6176617870756e6b732e636f6d2f70756e6b732f
Deployed Bytecode
0x6080604052600436106102465760003560e01c806370a0823111610139578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c514610f8c578063eff31e9e14611013578063f2fde38b1461103e578063f3f437031461108f578063f6eeff1e146110f4578063fe60d12c1461112f57610246565b8063b88d4fde14610d1b578063bc7df09114610e2d578063c0d6ce6314610e68578063c44193c314610e93578063c87b56dd14610ed857610246565b806392976179116100fd5780639297617914610b79578063946807fd14610bc857806395d89b4114610bf3578063979bc63814610c83578063a22cb46514610cbe57610246565b806370a0823114610a3c5780637a1cbd3f14610aa15780638264fe9814610adc5780638da5cb5b14610b0a5780639264274414610b4b57610246565b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce7146107ec57806351605d801461083b5780636352211e146108cb5780636c0360eb146109305780636e743fa9146109c057610246565b80632f745c59146105f857806332cb6b0c1461066757806339a0c6f9146106925780633ccfd60b1461075a57806342842e0e1461077157610246565b8063095ea7b31161020e578063095ea7b31461047757806318160ddd146104d257806323165b75146104fd57806323b872dd146105425780632e1a7d4d146105bd57610246565b806301ffc9a71461024b57806306fdde03146102bb578063081812fc1461034b578063088f11f3146103b0578063091dbfd214610449575b600080fd5b34801561025757600080fd5b506102a36004803603602081101561026e57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061115a565b60405180821515815260200191505060405180910390f35b3480156102c757600080fd5b506102d06111c1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103105780820151818401526020810190506102f5565b50505050905090810190601f16801561033d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035757600080fd5b506103846004803603602081101561036e57600080fd5b8101908080359060200190929190505050611263565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103bc57600080fd5b506103e9600480360360208110156103d357600080fd5b81019080803590602001909291905050506112fe565b6040518086151581526020018581526020018473ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019550505050505060405180910390f35b6104756004803603602081101561045f57600080fd5b8101908080359060200190929190505050611381565b005b34801561048357600080fd5b506104d06004803603604081101561049a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611714565b005b3480156104de57600080fd5b506104e7611858565b6040518082815260200191505060405180910390f35b34801561050957600080fd5b506105406004803603604081101561052057600080fd5b810190808035906020019092919080359060200190929190505050611869565b005b34801561054e57600080fd5b506105bb6004803603606081101561056557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c93565b005b3480156105c957600080fd5b506105f6600480360360208110156105e057600080fd5b8101908080359060200190929190505050611d09565b005b34801561060457600080fd5b506106516004803603604081101561061b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e02565b6040518082815260200191505060405180910390f35b34801561067357600080fd5b5061067c611e5d565b6040518082815260200191505060405180910390f35b34801561069e57600080fd5b50610758600480360360208110156106b557600080fd5b81019080803590602001906401000000008111156106d257600080fd5b8201836020820111156106e457600080fd5b8035906020019184600183028401116401000000008311171561070657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e63565b005b34801561076657600080fd5b5061076f611f1e565b005b34801561077d57600080fd5b506107ea6004803603606081101561079457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612033565b005b3480156107f857600080fd5b506108256004803603602081101561080f57600080fd5b8101908080359060200190929190505050612053565b6040518082815260200191505060405180910390f35b34801561084757600080fd5b50610850612076565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610890578082015181840152602081019050610875565b50505050905090810190601f1680156108bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108d757600080fd5b50610904600480360360208110156108ee57600080fd5b8101908080359060200190929190505050612092565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561093c57600080fd5b506109456120c9565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561098557808201518184015260208101905061096a565b50505050905090810190601f1680156109b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109cc57600080fd5b506109f9600480360360208110156109e357600080fd5b810190808035906020019092919050505061216b565b6040518085151581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200194505050505060405180910390f35b348015610a4857600080fd5b50610a8b60048036036020811015610a5f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121c8565b6040518082815260200191505060405180910390f35b348015610aad57600080fd5b50610ada60048036036020811015610ac457600080fd5b810190808035906020019092919050505061229d565b005b610b0860048036036020811015610af257600080fd5b8101908080359060200190929190505050612356565b005b348015610b1657600080fd5b50610b1f612861565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b7760048036036020811015610b6157600080fd5b810190808035906020019092919050505061288b565b005b348015610b8557600080fd5b50610bb260048036036020811015610b9c57600080fd5b8101908080359060200190929190505050612b7b565b6040518082815260200191505060405180910390f35b348015610bd457600080fd5b50610bdd612c1d565b6040518082815260200191505060405180910390f35b348015610bff57600080fd5b50610c08612c23565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c48578082015181840152602081019050610c2d565b50505050905090810190601f168015610c755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c8f57600080fd5b50610cbc60048036036020811015610ca657600080fd5b8101908080359060200190929190505050612cc5565b005b348015610cca57600080fd5b50610d1960048036036040811015610ce157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061302c565b005b348015610d2757600080fd5b50610e2b60048036036080811015610d3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610da557600080fd5b820183602082011115610db757600080fd5b80359060200191846001830284011164010000000083111715610dd957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506131e2565b005b348015610e3957600080fd5b50610e6660048036036020811015610e5057600080fd5b810190808035906020019092919050505061325a565b005b348015610e7457600080fd5b50610e7d613425565b6040518082815260200191505060405180910390f35b348015610e9f57600080fd5b50610ed660048036036040811015610eb657600080fd5b81019080803590602001909291908035906020019092919050505061342b565b005b348015610ee457600080fd5b50610f1160048036036020811015610efb57600080fd5b8101908080359060200190929190505050613673565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f51578082015181840152602081019050610f36565b50505050905090810190601f168015610f7e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f9857600080fd5b50610ffb60048036036040811015610faf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506137a7565b60405180821515815260200191505060405180910390f35b34801561101f57600080fd5b5061102861383b565b6040518082815260200191505060405180910390f35b34801561104a57600080fd5b5061108d6004803603602081101561106157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613840565b005b34801561109b57600080fd5b506110de600480360360208110156110b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613a35565b6040518082815260200191505060405180910390f35b34801561110057600080fd5b5061112d6004803603602081101561111757600080fd5b8101908080359060200190929190505050613a4d565b005b34801561113b57600080fd5b50611144613a61565b6040518082815260200191505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112595780601f1061122e57610100808354040283529160200191611259565b820191906000526020600020905b81548152906001019060200180831161123c57829003601f168201915b5050505050905090565b600061126e82613a67565b6112c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615542602c913960400191505060405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60026020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030154908060040160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905085565b61271081106113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260038152602001807f4f7574000000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b611400613a84565b73ffffffffffffffffffffffffffffffffffffffff1661141f82612092565b73ffffffffffffffffffffffffffffffffffffffff1614156114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f496e76616c69640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60036000828152602001908152602001600020600301543411611534576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f496e76616c69640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600360008381526020019081526020016000206040518060800160405290816000820160009054906101000a900460ff16151515158152602001600182015481526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481525050905060008160600151111561163e57806060015160046000836040015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b6040518060800160405280600115158152602001838152602001611660613a84565b73ffffffffffffffffffffffffffffffffffffffff168152602001348152506003600084815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301559050505050565b600061171f82612092565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806155f06021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166117c5613a84565b73ffffffffffffffffffffffffffffffffffffffff1614806117f457506117f3816117ee613a84565b6137a7565b5b611849576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806154746038913960400191505060405180910390fd5b6118538383613a8c565b505050565b60006118646006613b45565b905090565b611871613a84565b8261271081106118e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f7574206f6620746f6b656e496400000000000000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1661190982612092565b73ffffffffffffffffffffffffffffffffffffffff1614611975576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155986029913960400191505060405180910390fd5b8260036000868152602001908152602001600020600301541015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f496e76616c69640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600360008681526020019081526020016000206040518060800160405290816000820160009054906101000a900460ff16151515158152602001600182015481526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160038201548152505090506040518060800160405280600015158152602001868152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152506003600087815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060608201518160030155905050611b9b611b80613a84565b82604001518760405180602001604052806000815250613b5a565b6064605f82606001510281611bac57fe5b0460046000611bb9613a84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506000611c0a612861565b73ffffffffffffffffffffffffffffffffffffffff166064600584606001510281611c3157fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611c78576040519150601f19603f3d011682016040523d82523d6000602084013e611c7d565b606091505b5050905080611c8b57600080fd5b505050505050565b611ca4611c9e613a84565b82613bcc565b611cf9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806156116031913960400191505060405180910390fd5b611d04838383613cc0565b505050565b611d11613a84565b73ffffffffffffffffffffffffffffffffffffffff16611d2f612861565b73ffffffffffffffffffffffffffffffffffffffff1614611db8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611dfe573d6000803e3d6000fd5b5050565b6000611e5582600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613f0390919063ffffffff16565b905092915050565b61271081565b611e6b613a84565b73ffffffffffffffffffffffffffffffffffffffff16611e89612861565b73ffffffffffffffffffffffffffffffffffffffff1614611f12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611f1b81613f1d565b50565b600060046000611f2c613a84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060046000611f77613a84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000611fbf613a84565b73ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d806000811461201c576040519150601f19603f3d011682016040523d82523d6000602084013e612021565b606091505b505090508061202f57600080fd5b5050565b61204e838383604051806020016040528060008152506131e2565b505050565b60008061206a836006613f3790919063ffffffff16565b50905080915050919050565b6040518060600160405280604081526020016156426040913981565b60006120c2826040518060600160405280602981526020016154d6602991396006613f639092919063ffffffff16565b9050919050565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121615780601f1061213657610100808354040283529160200191612161565b820191906000526020600020905b81548152906001019060200180831161214457829003601f168201915b5050505050905090565b60036020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030154905084565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806154ac602a913960400191505060405180910390fd5b612296600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613f82565b9050919050565b6122a5613a84565b73ffffffffffffffffffffffffffffffffffffffff166122c3612861565b73ffffffffffffffffffffffffffffffffffffffff161461234c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6000600260008381526020019081526020016000206040518060a00160405290816000820160009054906101000a900460ff16151515158152602001600182015481526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481526020016004820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525050905061271082106124ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f7574206f6620746f6b656e496400000000000000000000000000000000000081525060200191505060405180910390fd5b8060000151612541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f4e6f2053616c650000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16816080015173ffffffffffffffffffffffffffffffffffffffff1614806125b65750612583613a84565b73ffffffffffffffffffffffffffffffffffffffff16816080015173ffffffffffffffffffffffffffffffffffffffff16145b612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f556e61626c6520746f2073656c6c00000000000000000000000000000000000081525060200191505060405180910390fd5b80606001513410156126a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f496e73756666696369656e7420616d6f756e740000000000000000000000000081525060200191505060405180910390fd5b806040015173ffffffffffffffffffffffffffffffffffffffff166126c683612092565b73ffffffffffffffffffffffffffffffffffffffff161461274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f4e6f742073656c6c65720000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60008160400151905061277a81612764613a84565b8560405180602001604052806000815250613b5a565b6064605f34028161278757fe5b04600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060006127de612861565b73ffffffffffffffffffffffffffffffffffffffff166064600534028161280157fe5b0460405180600001905060006040518083038185875af1925050503d8060008114612848576040519150601f19603f3d011682016040523d82523d6000602084013e61284d565b606091505b505090508061285b57600080fd5b50505050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612710612896611858565b10612909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f53616c652068617320616c726561647920656e6465642e00000000000000000081525060200191505060405180910390fd5b6000811161297f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752063616e6e6f74206d696e742030204e6674732e00000000000000000081525060200191505060405180910390fd5b60148111156129d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061556e602a913960400191505060405180910390fd5b6127106129ed6129e7611858565b83613f97565b1115612a44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806153936035913960400191505060405180910390fd5b34612a4e82612b7b565b14612aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153176024913960400191505060405180910390fd5b6000612aae612861565b73ffffffffffffffffffffffffffffffffffffffff163460405180600001905060006040518083038185875af1925050503d8060008114612b0b576040519150601f19603f3d011682016040523d82523d6000602084013e612b10565b606091505b5050905080612b1e57600080fd5b60005b82811015612b76576000601154612b3661401f565b81612b3d57fe5b0690506000612b5b6011600081546001900391905081905583614102565b9050612b6733826141d0565b50508080600101915050612b21565b505050565b6000612710612b88611858565b10612bfb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f53616c652068617320616c726561647920656e6465642e00000000000000000081525060200191505060405180910390fd5b612c16671bc16d674ec80000836141ee90919063ffffffff16565b9050919050565b60105481565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612cbb5780601f10612c9057610100808354040283529160200191612cbb565b820191906000526020600020905b815481529060010190602001808311612c9e57829003601f168201915b5050505050905090565b6127108110612d3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260038152602001807f4f7574000000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b612d44613a84565b73ffffffffffffffffffffffffffffffffffffffff16612d6382612092565b73ffffffffffffffffffffffffffffffffffffffff161415612ded576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f496e76616c69640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b612df5613a84565b73ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ecb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f496e76616c69640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6040518060800160405280600015158152602001828152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152506003600083815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301559050506000612fa2613a84565b73ffffffffffffffffffffffffffffffffffffffff16600360008481526020019081526020016000206003015460405180600001905060006040518083038185875af1925050503d8060008114613015576040519150601f19603f3d011682016040523d82523d6000602084013e61301a565b606091505b505090508061302857600080fd5b5050565b613034613a84565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600960006130e2613a84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661318f613a84565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6131f36131ed613a84565b83613bcc565b613248576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806156116031913960400191505060405180910390fd5b61325484848484613b5a565b50505050565b613262613a84565b73ffffffffffffffffffffffffffffffffffffffff16613280612861565b73ffffffffffffffffffffffffffffffffffffffff1614613309576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61271061331d613317611858565b83613f97565b1115613374576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806153936035913960400191505060405180910390fd5b606461338b82601254613f9790919063ffffffff16565b11156133e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603681526020018061543e6036913960400191505060405180910390fd5b60005b818110156134115760006133f7611858565b905061340333826141d0565b5080806001019150506133e5565b508060126000828254019250508190555050565b60115481565b613433613a84565b8261271081106134ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f7574206f6620746f6b656e496400000000000000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166134cb82612092565b73ffffffffffffffffffffffffffffffffffffffff1614613537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155986029913960400191505060405180910390fd5b6040518060a00160405280600115158152602001858152602001613559613a84565b73ffffffffffffffffffffffffffffffffffffffff168152602001848152602001600073ffffffffffffffffffffffffffffffffffffffff168152506002600086815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506060820151816003015560808201518160040160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505050505050565b606061367e82613a67565b6136d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806155c1602f913960400191505060405180910390fd5b6136db6120c9565b6136e483614274565b6040516020018083805190602001908083835b6020831061371a57805182526020820191506020810190506020830392506136f7565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061376b5780518252602082019150602081019050602083039250613748565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606481565b613848613a84565b73ffffffffffffffffffffffffffffffffffffffff16613866612861565b73ffffffffffffffffffffffffffffffffffffffff16146138ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061536d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60046020528060005260406000206000915090505481565b613a5e613a58613a84565b826143bb565b50565b60125481565b6000613a7d8260066145f690919063ffffffff16565b9050919050565b600033905090565b816008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613aff83612092565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613b5382600001614610565b9050919050565b613b65848484613cc0565b613b7184848484614621565b613bc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061533b6032913960400191505060405180910390fd5b50505050565b6000613bd782613a67565b613c2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615412602c913960400191505060405180910390fd5b6000613c3783612092565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613ca657508373ffffffffffffffffffffffffffffffffffffffff16613c8e84611263565b73ffffffffffffffffffffffffffffffffffffffff16145b80613cb75750613cb681856137a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613ce082612092565b73ffffffffffffffffffffffffffffffffffffffff1614613d4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155986029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153c86024913960400191505060405180910390fd5b613ddd83838361483a565b613de8600082613a8c565b613e3981600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061483f90919063ffffffff16565b50613e8b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061485990919063ffffffff16565b50613ea2818360066148739092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613f1283600001836148a8565b60001c905092915050565b80600d9080519060200190613f33929190615249565b5050565b600080600080613f4a866000018661492b565b915091508160001c8160001c9350935050509250929050565b6000613f76846000018460001b846149c4565b60001c90509392505050565b6000613f9082600001614aba565b9050919050565b600080828401905083811015614015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000601154434261402e613a84565b604051602001808273ffffffffffffffffffffffffffffffffffffffff1660601b81526014019150506040516020818303038152906040528051906020012060001c8161407757fe5b04454241604051602001808273ffffffffffffffffffffffffffffffffffffffff1660601b81526014019150506040516020818303038152906040528051906020012060001c816140c457fe5b0444420101010101604051602001808281526020019150506040516020818303038152906040528051906020012060001c816140fc57fe5b04905090565b6000808390506000600f600086815260200190815260200160002054111561413b57600f60008581526020019081526020016000205490505b82600f6000868152602001908152602001600020819055506000600f600085815260200190815260200160002054111561419b57600f600084815260200190815260200160002054600f6000868152602001908152602001600020819055505b80600f600085815260200190815260200160002081905550600f60008581526020019081526020016000205491505092915050565b6141ea828260405180602001604052806000815250614acb565b5050565b600080831415614201576000905061426e565b600082840290508284828161421257fe5b0414614269576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806155216021913960400191505060405180910390fd5b809150505b92915050565b606060008214156142bc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506143b6565b600082905060005b600082146142e6578080600101915050600a82816142de57fe5b0491506142c4565b60008167ffffffffffffffff811180156142ff57600080fd5b506040519080825280601f01601f1916602001820160405280156143325781602001600182028036833780820191505090505b50905060006001830390508593505b600084146143ae57600a848161435357fe5b0660300160f81b8282806001900393508151811061436d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816143a657fe5b049350614341565b819450505050505b919050565b81816127108110614434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f7574206f6620746f6b656e496400000000000000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1661445482612092565b73ffffffffffffffffffffffffffffffffffffffff16146144c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155986029913960400191505060405180910390fd5b6040518060a001604052806000151581526020018481526020018573ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff168152506002600085815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506060820151816003015560808201518160040160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505050505050565b6000614608836000018360001b614b3c565b905092915050565b600081600001805490509050919050565b60006146428473ffffffffffffffffffffffffffffffffffffffff16614b5f565b61464f5760019050614832565b60006147b963150b7a0260e01b614664613a84565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156146e85780820151818401526020810190506146cd565b50505050905090810190601f1680156147155780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161533b603291398773ffffffffffffffffffffffffffffffffffffffff16614b729092919063ffffffff16565b905060008180602001905160208110156147d257600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b505050565b6000614851836000018360001b614b8a565b905092915050565b600061486b836000018360001b614c72565b905092915050565b600061489f846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614ce2565b90509392505050565b600081836000018054905011614909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806152f56022913960400191505060405180910390fd5b82600001828154811061491857fe5b9060005260206000200154905092915050565b6000808284600001805490501161498d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154ff6022913960400191505060405180910390fd5b600084600001848154811061499e57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614a8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614a50578082015181840152602081019050614a35565b50505050905090810190601f168015614a7d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110614a9e57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b614ad58383614dbe565b614ae26000848484614621565b614b37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061533b6032913960400191505060405180910390fd5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080823b905060008111915050919050565b6060614b818484600085614fb2565b90509392505050565b60008083600101600084815260200190815260200160002054905060008114614c665760006001820390506000600186600001805490500390506000866000018281548110614bd557fe5b9060005260206000200154905080876000018481548110614bf257fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480614c2a57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614c6c565b60009150505b92915050565b6000614c7e838361515a565b614cd7578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614cdc565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415614d8957846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614db7565b82856000016001830381548110614d9c57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614e61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b614e6a81613a67565b15614edd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b614ee96000838361483a565b614f3a81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061485990919063ffffffff16565b50614f51818360066148739092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60608247101561500d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806153ec6026913960400191505060405180910390fd5b61501685614b5f565b615088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106150d757805182526020820191506020810190506020830392506150b4565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615139576040519150601f19603f3d011682016040523d82523d6000602084013e61513e565b606091505b509150915061514e82828661517d565b92505050949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060831561518d57829050615242565b6000835111156151a05782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156152075780820151818401526020810190506151ec565b50505050905090810190601f1680156152345780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261527f57600085556152c6565b82601f1061529857805160ff19168380011785556152c6565b828001600101855582156152c6579182015b828111156152c55782518255916020019190600101906152aa565b5b5090506152d391906152d7565b5090565b5b808211156152f05760008160009055506001016152d8565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416d6f756e74206f662045746865722073656e74206973206e6f7420636f72726563742e4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345786365656473206d6178696d756d20737570706c792e20506c656173652074727920746f206d696e74206c657373204e6674732e4552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e45786365656473206d6178696d756d20726573657276652e20506c656173652074727920746f206d696e74206c657373204e6674732e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e596f752063616e6e6f74206d696e74206d6f7265207468616e203230204e66747320706572206f6e63654552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656434653239356462306638376533343263373363396539626237346534306436653633613664326364356332376631626664633033623336343239613034613934a2646970667358221220906e3571327917a172b6188bee1b9da65b32998b5af26467b6b1d32554ae879c64736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a415641582050554e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000450554e4b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f6170692e6176617870756e6b732e636f6d2f70756e6b732f
-----Decoded View---------------
Arg [0] : name (string): AVAX PUNKS
Arg [1] : symbol (string): PUNK
Arg [2] : baseURI (string): https://api.avaxpunks.com/punks/
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 415641582050554e4b5300000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 50554e4b00000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [8] : 68747470733a2f2f6170692e6176617870756e6b732e636f6d2f70756e6b732f
Deployed Bytecode Sourcemap
65044:7276:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3833:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23001:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25787:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19084:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69864:580;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25317:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24795:211;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;70452:611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26677:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71853:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24557:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;65288:42;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;71958:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71611:234;;;;;;;;;;;;;:::i;:::-;;27053:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25083:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;65475:101;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22757:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24376:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19144:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22474:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66218:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68320:854;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1471:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;67385:927;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66369:187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;65217:48;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23170:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71071:526;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26080:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27275:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65730:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65337:45;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69554:302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72067:250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26446:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;65391:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1926:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19191:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69182:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65439:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3833:150;3918:4;3942:20;:33;3963:11;3942:33;;;;;;;;;;;;;;;;;;;;;;;;;;;3935:40;;3833:150;;;:::o;23001:100::-;23055:13;23088:5;23081:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23001:100;:::o;25787:221::-;25863:7;25891:16;25899:7;25891;:16::i;:::-;25883:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25976:15;:24;25992:7;25976:24;;;;;;;;;;;;;;;;;;;;;25969:31;;25787:221;;;:::o;19084:53::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69864:580::-;69950:5;69940:7;:15;69932:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70002:12;:10;:12::i;:::-;69982:32;;:16;69990:7;69982;:16::i;:::-;:32;;;;69974:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70057:8;:17;70066:7;70057:17;;;;;;;;;;;:23;;;70045:9;:35;70037:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70103:19;70125:8;:17;70134:7;70125:17;;;;;;;;;;;70103:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70174:1;70157:8;:14;;;:18;70153:143;;;70270:8;:14;;;70231:18;:35;70250:8;:15;;;70231:35;;;;;;;;;;;;;;;;:53;;;;;;;;;;;70153:143;70326:43;;;;;;;;70330:4;70326:43;;;;;;70336:7;70326:43;;;;70345:12;:10;:12::i;:::-;70326:43;;;;;;70359:9;70326:43;;;70306:8;:17;70315:7;70306:17;;;;;;;;;;;:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69864:580;;:::o;25317:404::-;25398:13;25414:23;25429:7;25414:14;:23::i;:::-;25398:39;;25462:5;25456:11;;:2;:11;;;;25448:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25542:5;25526:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;25551:44;25575:5;25582:12;:10;:12::i;:::-;25551:23;:44::i;:::-;25526:69;25518:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25692:21;25701:2;25705:7;25692:8;:21::i;:::-;25317:404;;;:::o;24795:211::-;24856:7;24977:21;:12;:19;:21::i;:::-;24970:28;;24795:211;:::o;70452:611::-;70537:12;:10;:12::i;:::-;70551:7;18596:5;18586:7;:15;18578:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18659:4;18639:24;;:16;18647:7;18639;:16::i;:::-;:24;;;18631:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70606:8:::1;70579;:17;70588:7;70579:17;;;;;;;;;;;:23;;;:35;;70571:55;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;70637:14;70654:8;:17;70663:7;70654:17;;;;;;;;;;;70637:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;70704;;;;;;;;70708:5;70704:34;;;;;;70715:7;70704:34;;;;70732:1;70704:34;;;;;;70736:1;70704:34;;::::0;70684:8:::1;:17;70693:7;70684:17;;;;;;;;;;;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70749:52;70763:12;:10;:12::i;:::-;70777:3;:10;;;70789:7;70749:52;;;;;;;;;;;::::0;:13:::1;:52::i;:::-;70867:3;70862:2;70850:3;:9;;;:14;:20;;;;;;70814:18;:32;70833:12;:10;:12::i;:::-;70814:32;;;;;;;;;;;;;;;;:56;;;;;;;;;;;70882:12;70899:7;:5;:7::i;:::-;:12;;70935:3;70931:1;70919:3;:9;;;:13;:19;;;;;;70899:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70881:62;;;70962:7;70954:16;;;::::0;::::1;;18720:1;;70452:611:::0;;;;:::o;26677:305::-;26838:41;26857:12;:10;:12::i;:::-;26871:7;26838:18;:41::i;:::-;26830:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26946:28;26956:4;26962:2;26966:7;26946:9;:28::i;:::-;26677:305;;;:::o;71853:97::-;1702:12;:10;:12::i;:::-;1691:23;;:7;:5;:7::i;:::-;:23;;;1683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71915:10:::1;:19;;:27;71935:6;71915:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71853:97:::0;:::o;24557:162::-;24654:7;24681:30;24705:5;24681:13;:20;24695:5;24681:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;24674:37;;24557:162;;;;:::o;65288:42::-;65325:5;65288:42;:::o;71958:101::-;1702:12;:10;:12::i;:::-;1691:23;;:7;:5;:7::i;:::-;:23;;;1683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72031:20:::1;72043:7;72031:11;:20::i;:::-;71958:101:::0;:::o;71611:234::-;71649:14;71666:18;:32;71685:12;:10;:12::i;:::-;71666:32;;;;;;;;;;;;;;;;71649:49;;71744:1;71709:18;:32;71728:12;:10;:12::i;:::-;71709:32;;;;;;;;;;;;;;;:36;;;;71757:12;71774;:10;:12::i;:::-;:17;;71799:6;71774:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71756:54;;;71829:7;71821:16;;;;;;71611:234;;:::o;27053:151::-;27157:39;27174:4;27180:2;27184:7;27157:39;;;;;;;;;;;;:16;:39::i;:::-;27053:151;;;:::o;25083:172::-;25158:7;25179:15;25200:22;25216:5;25200:12;:15;;:22;;;;:::i;:::-;25178:44;;;25240:7;25233:14;;;25083:172;;;:::o;65475:101::-;;;;;;;;;;;;;;;;;;;:::o;22757:177::-;22829:7;22856:70;22873:7;22856:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;22849:77;;22757:177;;;:::o;24376:97::-;24424:13;24457:8;24450:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24376:97;:::o;19144:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22474:221::-;22546:7;22591:1;22574:19;;:5;:19;;;;22566:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22658:29;:13;:20;22672:5;22658:20;;;;;;;;;;;;;;;:27;:29::i;:::-;22651:36;;22474:221;;;:::o;66218:143::-;1702:12;:10;:12::i;:::-;1691:23;;:7;:5;:7::i;:::-;:23;;;1683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66329:24:::1;66306:20;:47;;;;66218:143:::0;:::o;68320:854::-;68380:18;68401:19;:28;68421:7;68401:28;;;;;;;;;;;68380:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68458:5;68448:7;:15;68440:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68501:5;:15;;;68493:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68575:1;68547:30;;:5;:16;;;:30;;;:66;;;;68601:12;:10;:12::i;:::-;68581:32;;:5;:16;;;:32;;;68547:66;68539:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68664:5;:14;;;68651:9;:27;;68643:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68741:5;:12;;;68721:32;;:16;68729:7;68721;:16::i;:::-;:32;;;68713:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68779:14;68796:5;:12;;;68779:29;;68848:48;68862:6;68870:12;:10;:12::i;:::-;68884:7;68848:48;;;;;;;;;;;;:13;:48::i;:::-;68954:3;68949:2;68937:9;:14;:20;;;;;;68907:18;:26;68926:6;68907:26;;;;;;;;;;;;;;;;:50;;;;;;;;;;;68988:12;69005:7;:5;:7::i;:::-;:12;;69041:3;69037:1;69025:9;:13;:19;;;;;;69005:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68987:62;;;69068:7;69060:16;;;;;;68320:854;;;;:::o;1471:87::-;1517:7;1544:6;;;;;;;;;;;1537:13;;1471:87;:::o;67385:927::-;65325:5;67543:13;:11;:13::i;:::-;:26;67535:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67625:1;67616:6;:10;67608:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67683:2;67673:6;:12;;67665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65325:5;67751:35;67764:13;:11;:13::i;:::-;67779:6;67751:12;:35::i;:::-;:49;;67743:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67900:9;67877:19;67889:6;67877:11;:19::i;:::-;:32;67869:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67964:12;67981:7;:5;:7::i;:::-;:12;;68001:9;67981:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67963:52;;;68034:7;68026:16;;;;;;68060:6;68055:250;68076:6;68072:1;:10;68055:250;;;68104:17;68136:22;;68124:9;:7;:9::i;:::-;:34;;;;;;68104:54;;68173:17;68193:53;68212:22;;68210:24;;;;;;;;;;;68236:9;68193:16;:53::i;:::-;68173:73;;68261:32;68271:10;68283:9;68261;:32::i;:::-;68055:250;;68084:3;;;;;;;68055:250;;;;67385:927;;:::o;66369:187::-;66427:7;65325:5;66455:13;:11;:13::i;:::-;:26;66447:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66529:19;66540:7;66529:6;:10;;:19;;;;:::i;:::-;66522:26;;66369:187;;;:::o;65217:48::-;;;;:::o;23170:104::-;23226:13;23259:7;23252:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23170:104;:::o;71071:526::-;71152:5;71142:7;:15;71134:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71204:12;:10;:12::i;:::-;71184:32;;:16;71192:7;71184;:16::i;:::-;:32;;;;71176:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71275:12;:10;:12::i;:::-;71247:40;;:8;:17;71256:7;71247:17;;;;;;;;;;;:24;;;;;;;;;;;;:40;;;71239:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71330:34;;;;;;;;71334:5;71330:34;;;;;;71341:7;71330:34;;;;71358:1;71330:34;;;;;;71362:1;71330:34;;;71310:8;:17;71319:7;71310:17;;;;;;;;;;;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71409:12;71426;:10;:12::i;:::-;:17;;71451:8;:17;71460:7;71451:17;;;;;;;;;;;:23;;;71426:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71408:71;;;71498:7;71490:16;;;;;;71071:526;;:::o;26080:295::-;26195:12;:10;:12::i;:::-;26183:24;;:8;:24;;;;26175:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26295:8;26250:18;:32;26269:12;:10;:12::i;:::-;26250:32;;;;;;;;;;;;;;;:42;26283:8;26250:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26348:8;26319:48;;26334:12;:10;:12::i;:::-;26319:48;;;26358:8;26319:48;;;;;;;;;;;;;;;;;;;;26080:295;;:::o;27275:285::-;27407:41;27426:12;:10;:12::i;:::-;27440:7;27407:18;:41::i;:::-;27399:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27513:39;27527:4;27533:2;27537:7;27546:5;27513:13;:39::i;:::-;27275:285;;;;:::o;65730:480::-;1702:12;:10;:12::i;:::-;1691:23;;:7;:5;:7::i;:::-;:23;;;1683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65325:5:::1;65803:35;65816:13;:11;:13::i;:::-;65831:6;65803:12;:35::i;:::-;:49;;65795:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65429:3;65929:20;65942:6;65929:8;;:12;;:20;;;;:::i;:::-;:35;;65921:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66041:6;66036:138;66057:6;66053:1;:10;66036:138;;;66085:14;66102:13;:11;:13::i;:::-;66085:30;;66130:32;66140:10;66152:9;66130;:32::i;:::-;66036:138;66065:3;;;;;;;66036:138;;;;66196:6;66184:8;;:18;;;;;;;;;;;65730:480:::0;:::o;65337:45::-;;;;:::o;69554:302::-;69648:12;:10;:12::i;:::-;69662:7;18596:5;18586:7;:15;18578:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18659:4;18639:24;;:16;18647:7;18639;:16::i;:::-;:24;;;18631:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69713:65:::1;;;;;;;;69719:4;69713:65;;;;;;69725:7;69713:65;;;;69734:12;:10;:12::i;:::-;69713:65;;;;;;69748:17;69713:65;;;;69775:1;69713:65;;;;::::0;69682:19:::1;:28;69702:7;69682:28;;;;;;;;;;;:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69554:302:::0;;;;:::o;72067:250::-;72132:13;72166:16;72174:7;72166;:16::i;:::-;72158:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72278:9;:7;:9::i;:::-;72289:18;:7;:16;:18::i;:::-;72261:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72247:62;;72067:250;;;:::o;26446:164::-;26543:4;26567:18;:25;26586:5;26567:25;;;;;;;;;;;;;;;:35;26593:8;26567:35;;;;;;;;;;;;;;;;;;;;;;;;;26560:42;;26446:164;;;;:::o;65391:41::-;65429:3;65391:41;:::o;1926:244::-;1702:12;:10;:12::i;:::-;1691:23;;:7;:5;:7::i;:::-;:23;;;1683:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2035:1:::1;2015:22;;:8;:22;;;;2007:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2125:8;2096:38;;2117:6;;;;;;;;;;;2096:38;;;;;;;;;;;;2154:8;2145:6;;:17;;;;;;;;;;;;;;;;;;1926:244:::0;:::o;19191:54::-;;;;;;;;;;;;;;;;;:::o;69182:115::-;69246:43;69267:12;:10;:12::i;:::-;69281:7;69246:20;:43::i;:::-;69182:115;:::o;65439:27::-;;;;:::o;29027:127::-;29092:4;29116:30;29138:7;29116:12;:21;;:30;;;;:::i;:::-;29109:37;;29027:127;;;:::o;605:106::-;658:15;693:10;686:17;;605:106;:::o;34934:183::-;35027:2;35000:15;:24;35016:7;35000:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35083:7;35079:2;35045:46;;35054:23;35069:7;35054:14;:23::i;:::-;35045:46;;;;;;;;;;;;34934:183;;:::o;52555:123::-;52624:7;52651:19;52659:3;:10;;52651:7;:19::i;:::-;52644:26;;52555:123;;;:::o;28442:272::-;28556:28;28566:4;28572:2;28576:7;28556:9;:28::i;:::-;28603:48;28626:4;28632:2;28636:7;28645:5;28603:22;:48::i;:::-;28595:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28442:272;;;;:::o;29321:355::-;29414:4;29439:16;29447:7;29439;:16::i;:::-;29431:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29515:13;29531:23;29546:7;29531:14;:23::i;:::-;29515:39;;29584:5;29573:16;;:7;:16;;;:51;;;;29617:7;29593:31;;:20;29605:7;29593:11;:20::i;:::-;:31;;;29573:51;:94;;;;29628:39;29652:5;29659:7;29628:23;:39::i;:::-;29573:94;29565:103;;;29321:355;;;;:::o;32457:599::-;32582:4;32555:31;;:23;32570:7;32555:14;:23::i;:::-;:31;;;32547:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32683:1;32669:16;;:2;:16;;;;32661:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32739:39;32760:4;32766:2;32770:7;32739:20;:39::i;:::-;32843:29;32860:1;32864:7;32843:8;:29::i;:::-;32885:35;32912:7;32885:13;:19;32899:4;32885:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;32931:30;32953:7;32931:13;:17;32945:2;32931:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;32974:29;32991:7;33000:2;32974:12;:16;;:29;;;;;:::i;:::-;;33040:7;33036:2;33021:27;;33030:4;33021:27;;;;;;;;;;;;32457:599;;;:::o;63996:137::-;64067:7;64102:22;64106:3;:10;;64118:5;64102:3;:22::i;:::-;64094:31;;64087:38;;63996:137;;;;:::o;33657:100::-;33741:8;33730;:19;;;;;;;;;;;;:::i;:::-;;33657:100;:::o;53017:236::-;53097:7;53106;53127:11;53140:13;53157:22;53161:3;:10;;53173:5;53157:3;:22::i;:::-;53126:53;;;;53206:3;53198:12;;53236:5;53228:14;;53190:55;;;;;;53017:236;;;;;:::o;54303:213::-;54410:7;54461:44;54466:3;:10;;54486:3;54478:12;;54492;54461:4;:44::i;:::-;54453:53;;54430:78;;54303:213;;;;;:::o;63538:114::-;63598:7;63625:19;63633:3;:10;;63625:7;:19::i;:::-;63618:26;;63538:114;;;:::o;7302:179::-;7360:7;7380:9;7396:1;7392;:5;7380:17;;7421:1;7416;:6;;7408:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7472:1;7465:8;;;7302:179;;;;:::o;66564:413::-;66605:7;66947:22;;66905:12;66886:15;66867:12;:10;:12::i;:::-;66850:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66840:41;;;;;;66832:50;;66831:70;;;;;;66813:14;66794:15;66773:14;66756:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66746:43;;;;;;66738:52;;66737:72;;;;;;66717:16;66699:15;:34;:111;:128;:203;:218;66682:236;;;;;;;;;;;;;;;;;;;;;;;;;66654:279;;;;;;66632:312;;:337;;;;;;66625:344;;66564:413;:::o;66985:392::-;67060:7;67080:12;67095:6;67080:21;;67139:1;67116:12;:20;67129:6;67116:20;;;;;;;;;;;;:24;67112:57;;;67149:12;:20;67162:6;67149:20;;;;;;;;;;;;67142:27;;67112:57;67203:6;67180:12;:20;67193:6;67180:20;;;;;;;;;;;:29;;;;67247:1;67224:12;:20;67237:6;67224:20;;;;;;;;;;;;:24;67220:73;;;67273:12;:20;67286:6;67273:20;;;;;;;;;;;;67250:12;:20;67263:6;67250:20;;;;;;;;;;;:43;;;;67220:73;67327:4;67304:12;:20;67317:6;67304:20;;;;;;;;;;;:27;;;;67349:12;:20;67362:6;67349:20;;;;;;;;;;;;67342:27;;;66985:392;;;;:::o;30019:110::-;30095:26;30105:2;30109:7;30095:26;;;;;;;;;;;;:9;:26::i;:::-;30019:110;;:::o;8181:220::-;8239:7;8268:1;8263;:6;8259:20;;;8278:1;8271:8;;;;8259:20;8290:9;8306:1;8302;:5;8290:17;;8335:1;8330;8326;:5;;;;;;:10;8318:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8392:1;8385:8;;;8181:220;;;;;:::o;64291:746::-;64347:13;64577:1;64568:5;:10;64564:53;;;64595:10;;;;;;;;;;;;;;;;;;;;;64564:53;64627:12;64642:5;64627:20;;64658:14;64683:78;64698:1;64690:4;:9;64683:78;;64716:8;;;;;;;64747:2;64739:10;;;;;;;;;64683:78;;;64771:19;64803:6;64793:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64771:39;;64821:13;64846:1;64837:6;:10;64821:26;;64865:5;64858:12;;64881:117;64896:1;64888:4;:9;64881:117;;64957:2;64950:4;:9;;;;;;64945:2;:14;64932:29;;64914:6;64921:7;;;;;;;64914:15;;;;;;;;;;;:47;;;;;;;;;;;64984:2;64976:10;;;;;;;;;64881:117;;;65022:6;65008:21;;;;;;64291:746;;;;:::o;69305:241::-;69392:4;69398:7;18596:5;18586:7;:15;18578:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18659:4;18639:24;;:16;18647:7;18639;:16::i;:::-;:24;;;18631:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69449:42:::1;;;;;;;;69455:5;69449:42;;;;;;69462:7;69449:42;;;;69471:4;69449:42;;;;;;69477:1;69449:42;;;;69488:1;69449:42;;;;::::0;69418:19:::1;:28;69438:7;69418:28;;;;;;;;;;;:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69305:241:::0;;;;:::o;52316:151::-;52400:4;52424:35;52434:3;:10;;52454:3;52446:12;;52424:9;:35::i;:::-;52417:42;;52316:151;;;;:::o;49134:110::-;49190:7;49217:3;:12;;:19;;;;49210:26;;49134:110;;;:::o;34322:604::-;34443:4;34470:15;:2;:13;;;:15::i;:::-;34465:60;;34509:4;34502:11;;;;34465:60;34535:23;34561:252;34614:45;;;34674:12;:10;:12::i;:::-;34701:4;34720:7;34742:5;34577:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34561:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;34535:278;;34824:13;34851:10;34840:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34824:48;;19471:10;34901:16;;34891:26;;;:6;:26;;;;34883:35;;;;34322:604;;;;;;;:::o;35730:93::-;;;;:::o;63083:137::-;63153:4;63177:35;63185:3;:10;;63205:5;63197:14;;63177:7;:35::i;:::-;63170:42;;63083:137;;;;:::o;62776:131::-;62843:4;62867:32;62872:3;:10;;62892:5;62884:14;;62867:4;:32::i;:::-;62860:39;;62776:131;;;;:::o;51739:185::-;51828:4;51852:64;51857:3;:10;;51877:3;51869:12;;51907:5;51891:23;;51883:32;;51852:4;:64::i;:::-;51845:71;;51739:185;;;;;:::o;59034:204::-;59101:7;59150:5;59129:3;:11;;:18;;;;:26;59121:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59212:3;:11;;59224:5;59212:18;;;;;;;;;;;;;;;;59205:25;;59034:204;;;;:::o;49599:279::-;49666:7;49675;49725:5;49703:3;:12;;:19;;;;:27;49695:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49782:22;49807:3;:12;;49820:5;49807:19;;;;;;;;;;;;;;;;;;49782:44;;49845:5;:10;;;49857:5;:12;;;49837:33;;;;;49599:279;;;;;:::o;51096:319::-;51190:7;51210:16;51229:3;:12;;:17;51242:3;51229:17;;;;;;;;;;;;51210:36;;51277:1;51265:8;:13;;51280:12;51257:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51347:3;:12;;51371:1;51360:8;:12;51347:26;;;;;;;;;;;;;;;;;;:33;;;51340:40;;;51096:319;;;;;:::o;58581:109::-;58637:7;58664:3;:11;;:18;;;;58657:25;;58581:109;;;:::o;30356:250::-;30452:18;30458:2;30462:7;30452:5;:18::i;:::-;30489:54;30520:1;30524:2;30528:7;30537:5;30489:22;:54::i;:::-;30481:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30356:250;;;:::o;48914:125::-;48985:4;49030:1;49009:3;:12;;:17;49022:3;49009:17;;;;;;;;;;;;:22;;49002:29;;48914:125;;;;:::o;37330:422::-;37390:4;37598:12;37709:7;37697:20;37689:28;;37743:1;37736:4;:8;37729:15;;;37330:422;;;:::o;40248:195::-;40351:12;40383:52;40405:6;40413:4;40419:1;40422:12;40383:21;:52::i;:::-;40376:59;;40248:195;;;;;:::o;56736:1544::-;56802:4;56920:18;56941:3;:12;;:19;56954:5;56941:19;;;;;;;;;;;;56920:40;;56991:1;56977:10;:15;56973:1300;;57339:21;57376:1;57363:10;:14;57339:38;;57392:17;57433:1;57412:3;:11;;:18;;;;:22;57392:42;;57679:17;57699:3;:11;;57711:9;57699:22;;;;;;;;;;;;;;;;57679:42;;57845:9;57816:3;:11;;57828:13;57816:26;;;;;;;;;;;;;;;:38;;;;57964:1;57948:13;:17;57922:3;:12;;:23;57935:9;57922:23;;;;;;;;;;;:43;;;;58074:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;58169:3;:12;;:19;58182:5;58169:19;;;;;;;;;;;58162:26;;;58212:4;58205:11;;;;;;;;56973:1300;58256:5;58249:12;;;56736:1544;;;;;:::o;56146:414::-;56209:4;56231:21;56241:3;56246:5;56231:9;:21::i;:::-;56226:327;;56269:3;:11;;56286:5;56269:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56452:3;:11;;:18;;;;56430:3;:12;;:19;56443:5;56430:19;;;;;;;;;;;:40;;;;56492:4;56485:11;;;;56226:327;56536:5;56529:12;;56146:414;;;;;:::o;46414:692::-;46490:4;46606:16;46625:3;:12;;:17;46638:3;46625:17;;;;;;;;;;;;46606:36;;46671:1;46659:8;:13;46655:444;;;46726:3;:12;;46744:38;;;;;;;;46761:3;46744:38;;;;46774:5;46744:38;;;46726:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46941:3;:12;;:19;;;;46921:3;:12;;:17;46934:3;46921:17;;;;;;;;;;;:39;;;;46982:4;46975:11;;;;;46655:444;47055:5;47019:3;:12;;47043:1;47032:8;:12;47019:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;47082:5;47075:12;;;46414:692;;;;;;:::o;30942:404::-;31036:1;31022:16;;:2;:16;;;;31014:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31095:16;31103:7;31095;:16::i;:::-;31094:17;31086:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31157:45;31186:1;31190:2;31194:7;31157:20;:45::i;:::-;31215:30;31237:7;31215:13;:17;31229:2;31215:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;31258:29;31275:7;31284:2;31258:12;:16;;:29;;;;;:::i;:::-;;31330:7;31326:2;31305:33;;31322:1;31305:33;;;;;;;;;;;;30942:404;;:::o;41300:530::-;41427:12;41485:5;41460:21;:30;;41452:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41552:18;41563:6;41552:10;:18::i;:::-;41544:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41678:12;41692:23;41719:6;:11;;41739:5;41747:4;41719:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41677:75;;;;41770:52;41788:7;41797:10;41809:12;41770:17;:52::i;:::-;41763:59;;;;41300:530;;;;;;:::o;58366:129::-;58439:4;58486:1;58463:3;:12;;:19;58476:5;58463:19;;;;;;;;;;;;:24;;58456:31;;58366:129;;;;:::o;43840:742::-;43955:12;43984:7;43980:595;;;44015:10;44008:17;;;;43980:595;44149:1;44129:10;:17;:21;44125:439;;;44392:10;44386:17;44453:15;44440:10;44436:2;44432:19;44425:44;44340:148;44535:12;44528:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43840:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://906e3571327917a172b6188bee1b9da65b32998b5af26467b6b1d32554ae879c
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.