Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 31 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 17929237 | 524 days ago | IN | 0 ETH | 0.00160291 | ||||
Safe Transfer Fr... | 17929236 | 524 days ago | IN | 0 ETH | 0.00175056 | ||||
Safe Transfer Fr... | 17929234 | 524 days ago | IN | 0 ETH | 0.00185184 | ||||
Safe Transfer Fr... | 17929233 | 524 days ago | IN | 0 ETH | 0.00187967 | ||||
Safe Transfer Fr... | 17929232 | 524 days ago | IN | 0 ETH | 0.00188477 | ||||
Safe Transfer Fr... | 17929230 | 524 days ago | IN | 0 ETH | 0.00237559 | ||||
Safe Transfer Fr... | 17924309 | 525 days ago | IN | 0 ETH | 0.00088268 | ||||
Safe Transfer Fr... | 17924308 | 525 days ago | IN | 0 ETH | 0.00097146 | ||||
Safe Transfer Fr... | 17924307 | 525 days ago | IN | 0 ETH | 0.00098652 | ||||
Safe Transfer Fr... | 17924305 | 525 days ago | IN | 0 ETH | 0.00104323 | ||||
Safe Transfer Fr... | 17924304 | 525 days ago | IN | 0 ETH | 0.00107763 | ||||
Safe Transfer Fr... | 17924303 | 525 days ago | IN | 0 ETH | 0.00103851 | ||||
Safe Transfer Fr... | 17924301 | 525 days ago | IN | 0 ETH | 0.00100779 | ||||
Set Approval For... | 17924267 | 525 days ago | IN | 0 ETH | 0.0010292 | ||||
Safe Transfer Fr... | 17924251 | 525 days ago | IN | 0 ETH | 0.00129814 | ||||
Set Approval For... | 16411535 | 737 days ago | IN | 0 ETH | 0.00062471 | ||||
Set Token Data | 16022055 | 792 days ago | IN | 0 ETH | 0.01319056 | ||||
Safe Transfer Fr... | 15797757 | 823 days ago | IN | 0 ETH | 0.00218699 | ||||
Set Approval For... | 15789403 | 824 days ago | IN | 0 ETH | 0.00278269 | ||||
Mint Item | 15785696 | 825 days ago | IN | 0 ETH | 0.00170704 | ||||
Mint Item | 15785696 | 825 days ago | IN | 0 ETH | 0.00170704 | ||||
Mint Item | 15785696 | 825 days ago | IN | 0 ETH | 0.00170704 | ||||
Mint Item | 15785694 | 825 days ago | IN | 0 ETH | 0.00172219 | ||||
Mint Item | 15785694 | 825 days ago | IN | 0 ETH | 0.00172219 | ||||
Mint Item | 15785693 | 825 days ago | IN | 0 ETH | 0.0015505 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DrawByComputer
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//Draw by Computer, Jonathan Chomko, 2022 // Created for the Herbert W. Franke Tribute. Released Oct 21, 2022. // SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev {ERC721} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - token ID and URI autogeneration * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract DrawByComputer is Context, ERC721, Ownable { //withdrawal logic address payable public withdrawalAddress; //Token sale control logic uint256 public maxNumberOfPieces; uint256 public tokenCounter; uint256 public minTokenIdForSale; uint256 public maxTokenIdForSale; //Sale logic bool public standardSaleActive; uint256 public pricePerPiece; //Token Data struct tokenData { uint256[] startPoints; uint256 totalPoints; string[] xAnimationPoints; string[] yAnimationPoints; } mapping (uint256 => tokenData) public tokenDataMap; event Mint(address buyer, uint256 price, uint256 tokenId); constructor( address payable givenWithdrawalAddress ) ERC721("Draw by Computer", "DBC") { withdrawalAddress = givenWithdrawalAddress; tokenCounter = 0; maxTokenIdForSale = 0; minTokenIdForSale = 1; } //Generate svg function tokenURI(uint256 tokenId) override public view returns (string memory){ require(_exists(tokenId) || msg.sender == owner(), "ERC721Metadata: URI query for nonexistent token"); string[20] memory parts; parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet" viewBox="0 0 1000 1000"> <rect width="1000" height="1000" fill="white"></rect>'; uint256 index = 1; for(uint256 i = 0; i < tokenDataMap[tokenId].totalPoints; i ++){ string [10] memory points; points[0] = '<circle cx="'; points[1] = toString(tokenDataMap[tokenId].startPoints[i] ); points[2] = '" cy="'; points[3] = toString(tokenDataMap[tokenId].startPoints[i+1 % tokenDataMap[tokenId].startPoints.length]); points[4] = '" r="50" fill="black">'; points[5] = '<animate calcMode="paced" attributeName="cx" values="'; points[6] = tokenDataMap[tokenId].xAnimationPoints[i]; points[7] = '" dur="60s" repeatCount="indefinite"/> <animate calcMode="paced" attributeName="cy" values="'; points[8] = tokenDataMap[tokenId].yAnimationPoints[i]; points[9] = '" dur="60s" repeatCount="indefinite"/> </circle>'; string memory pointOutput; pointOutput = string(abi.encodePacked(points[0], points[1], points[2], points[3], points[4], points[5], points[6], points[7], points[8], points[9])); parts[index] = pointOutput; index += 1; } parts[index] = '</svg>'; index += 1; string memory output; for(uint256 i = 0; i < index; i ++){ output = string(abi.encodePacked(output, parts[i])); } string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Draw by Computer ', toString(tokenId+1), '", "description": "Geometric primitives drawn by hand on a computer. Jonathan Chomko, 2022", "image": "data:image/svg+xml;base64,',Base64.encode(bytes(output)),'"}')))); output = string(abi.encodePacked('data:application/json;base64,', json)); return output; } function setSaleActive(bool isActive) external onlyOwner { standardSaleActive = isActive; } function setSaleRange(uint256 givenMinTokenIdForSale, uint256 givenMaxTokenIdForSale) external onlyOwner { maxTokenIdForSale = givenMaxTokenIdForSale; minTokenIdForSale = givenMinTokenIdForSale; } function setPrice(uint256 givenPrice) external onlyOwner { pricePerPiece = givenPrice; } //Set data for token svgs and titles function setTokenData(tokenData[] memory givenData )external onlyOwner { for(uint256 i = 0; i < givenData.length; i ++){ tokenDataMap[i] = givenData[i]; } } //Withdrawal function setWithdrawalAddress(address payable givenWithdrawalAddress) external onlyOwner { withdrawalAddress = givenWithdrawalAddress; } function withdrawEth() external onlyOwner { Address.sendValue(withdrawalAddress, address(this).balance); } //Owner info function tokenInfo(uint256 tokenId) external view returns (address) { return (ownerOf(tokenId)); } function getOwners(uint256 start, uint256 end) public view returns (address[] memory){ address[] memory re = new address[](end - start); for (uint256 i = start; i < end; i++) { re[i - start] = ownerOf(i); } return re; } function mintItem(uint256 givenTokenId) public payable returns (uint256) { require(givenTokenId <= maxTokenIdForSale || msg.sender == owner(), "given token value is greater than sale limit"); require(givenTokenId >= minTokenIdForSale || msg.sender == owner(), "given token value is less than sale limit"); require(standardSaleActive || msg.sender == owner(), "sale must be active"); require(msg.value == pricePerPiece, "must send in correct amount"); _safeMint(msg.sender, givenTokenId); tokenCounter += 1; emit Mint(msg.sender, msg.value, givenTokenId); return tokenCounter; } //Helpers function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } } /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"givenWithdrawalAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"getOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNumberOfPieces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenIdForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokenIdForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"givenTokenId","type":"uint256"}],"name":"mintItem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerPiece","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"givenPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"givenMinTokenIdForSale","type":"uint256"},{"internalType":"uint256","name":"givenMaxTokenIdForSale","type":"uint256"}],"name":"setSaleRange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256[]","name":"startPoints","type":"uint256[]"},{"internalType":"uint256","name":"totalPoints","type":"uint256"},{"internalType":"string[]","name":"xAnimationPoints","type":"string[]"},{"internalType":"string[]","name":"yAnimationPoints","type":"string[]"}],"internalType":"struct DrawByComputer.tokenData[]","name":"givenData","type":"tuple[]"}],"name":"setTokenData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"givenWithdrawalAddress","type":"address"}],"name":"setWithdrawalAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"standardSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenDataMap","outputs":[{"internalType":"uint256","name":"totalPoints","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenInfo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620050ab380380620050ab83398181016040528101906200003791906200033f565b6040518060400160405280601081526020017f4472617720627920436f6d7075746572000000000000000000000000000000008152506040518060400160405280600381526020017f44424300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb92919062000225565b508060019080519060200190620000d492919062000225565b505050620000f7620000eb6200015760201b60201c565b6200015f60201b60201c565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006009819055506000600b819055506001600a8190555050620003d6565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023390620003a0565b90600052602060002090601f016020900481019282620002575760008555620002a3565b82601f106200027257805160ff1916838001178555620002a3565b82800160010185558215620002a3579182015b82811115620002a257825182559160200191906001019062000285565b5b509050620002b29190620002b6565b5090565b5b80821115620002d1576000816000905550600101620002b7565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200030782620002da565b9050919050565b6200031981620002fa565b81146200032557600080fd5b50565b60008151905062000339816200030e565b92915050565b600060208284031215620003585762000357620002d5565b5b6000620003688482850162000328565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b957607f821691505b60208210811415620003d057620003cf62000371565b5b50919050565b614cc580620003e66000396000f3fe6080604052600436106101ee5760003560e01c8063841718a61161010d578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610702578063ed13c3281461073f578063f2bcd02214610768578063f2fde38b14610793578063fe3c4657146107bc576101ee565b8063c87b56dd14610634578063cc33c87514610671578063d082e381146106ae578063e2100754146106d9576101ee565b8063a0ef91df116100dc578063a0ef91df1461058e578063a22cb465146105a5578063b88d4fde146105ce578063c47f7cf2146105f7576101ee565b8063841718a6146104e65780638da5cb5b1461050f57806391b7f5ed1461053a57806395d89b4114610563576101ee565b806323b872dd11610185578063575ca2c711610154578063575ca2c71461042a5780636352211e1461045557806370a0823114610492578063715018a6146104cf576101ee565b806323b872dd1461038257806342842e0e146103ab57806347a6fee8146103d457806353d0023d146103ff576101ee565b8063081812fc116101c1578063081812fc146102c3578063095ea7b31461030057806317fb85941461032957806321b8092e14610359576101ee565b806301facb8e146101f357806301ffc9a71461021e578063048220581461025b57806306fdde0314610298575b600080fd5b3480156101ff57600080fd5b506102086107e7565b6040516102159190612dec565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612e73565b6107ed565b6040516102529190612ebb565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f02565b6108cf565b60405161028f9190613032565b60405180910390f35b3480156102a457600080fd5b506102ad6109b6565b6040516102ba91906130ed565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e5919061310f565b610a48565b6040516102f7919061314b565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613192565b610a8e565b005b610343600480360381019061033e919061310f565b610ba6565b6040516103509190612dec565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190613210565b610de5565b005b34801561038e57600080fd5b506103a960048036038101906103a4919061323d565b610e31565b005b3480156103b757600080fd5b506103d260048036038101906103cd919061323d565b610e91565b005b3480156103e057600080fd5b506103e9610eb1565b6040516103f69190612dec565b60405180910390f35b34801561040b57600080fd5b50610414610eb7565b6040516104219190612ebb565b60405180910390f35b34801561043657600080fd5b5061043f610eca565b60405161044c9190612dec565b60405180910390f35b34801561046157600080fd5b5061047c6004803603810190610477919061310f565b610ed0565b604051610489919061314b565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613290565b610f82565b6040516104c69190612dec565b60405180910390f35b3480156104db57600080fd5b506104e461103a565b005b3480156104f257600080fd5b5061050d600480360381019061050891906132e9565b61104e565b005b34801561051b57600080fd5b50610524611073565b604051610531919061314b565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c919061310f565b61109d565b005b34801561056f57600080fd5b506105786110af565b60405161058591906130ed565b60405180910390f35b34801561059a57600080fd5b506105a3611141565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613316565b611177565b005b3480156105da57600080fd5b506105f560048036038101906105f0919061348b565b61118d565b005b34801561060357600080fd5b5061061e6004803603810190610619919061310f565b6111ef565b60405161062b9190612dec565b60405180910390f35b34801561064057600080fd5b5061065b6004803603810190610656919061310f565b61120d565b60405161066891906130ed565b60405180910390f35b34801561067d57600080fd5b506106986004803603810190610693919061310f565b6119bc565b6040516106a5919061314b565b60405180910390f35b3480156106ba57600080fd5b506106c36119ce565b6040516106d09190612dec565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb919061390f565b6119d4565b005b34801561070e57600080fd5b5061072960048036038101906107249190613958565b611a91565b6040516107369190612ebb565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190612f02565b611b25565b005b34801561077457600080fd5b5061077d611b3f565b60405161078a91906139a7565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190613290565b611b65565b005b3480156107c857600080fd5b506107d1611be9565b6040516107de9190612dec565b60405180910390f35b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c857506108c782611bef565b5b9050919050565b6060600083836108df91906139f1565b67ffffffffffffffff8111156108f8576108f7613360565b5b6040519080825280602002602001820160405280156109265781602001602082028036833780820191505090505b50905060008490505b838110156109ab5761094081610ed0565b82868361094d91906139f1565b8151811061095e5761095d613a25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080806109a390613a54565b91505061092f565b508091505092915050565b6060600080546109c590613acc565b80601f01602080910402602001604051908101604052809291908181526020018280546109f190613acc565b8015610a3e5780601f10610a1357610100808354040283529160200191610a3e565b820191906000526020600020905b815481529060010190602001808311610a2157829003601f168201915b5050505050905090565b6000610a5382611c59565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9982610ed0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190613b70565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b29611ca4565b73ffffffffffffffffffffffffffffffffffffffff161480610b585750610b5781610b52611ca4565b611a91565b5b610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90613c02565b60405180910390fd5b610ba18383611cac565b505050565b6000600b5482111580610beb5750610bbc611073565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2190613c94565b60405180910390fd5b600a5482101580610c6d5750610c3e611073565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390613d26565b60405180910390fd5b600c60009054906101000a900460ff1680610cf95750610cca611073565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90613d92565b60405180910390fd5b600d543414610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390613dfe565b60405180910390fd5b610d863383611d65565b600160096000828254610d999190613e1e565b925050819055507f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f333484604051610dd393929190613e74565b60405180910390a16009549050919050565b610ded611d83565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e42610e3c611ca4565b82611e01565b610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890613f1d565b60405180910390fd5b610e8c838383611e96565b505050565b610eac8383836040518060200160405280600081525061118d565b505050565b600a5481565b600c60009054906101000a900460ff1681565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090613f89565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea9061401b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611042611d83565b61104c60006120fd565b565b611056611d83565b80600c60006101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110a5611d83565b80600d8190555050565b6060600180546110be90613acc565b80601f01602080910402602001604051908101604052809291908181526020018280546110ea90613acc565b80156111375780601f1061110c57610100808354040283529160200191611137565b820191906000526020600020905b81548152906001019060200180831161111a57829003601f168201915b5050505050905090565b611149611d83565b611175600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16476121c3565b565b611189611182611ca4565b83836122b7565b5050565b61119e611198611ca4565b83611e01565b6111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490613f1d565b60405180910390fd5b6111e984848484612424565b50505050565b600e6020528060005260406000206000915090508060010154905081565b606061121882612480565b806112555750611226611073565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906140ad565b60405180910390fd5b61129c612bcf565b6040518060c00160405280609c8152602001614af3609c9139816000601481106112c9576112c8613a25565b5b602002018190525060006001905060005b600e60008681526020019081526020016000206001015481101561188757611300612bf7565b6040518060400160405280600c81526020017f3c636972636c652063783d220000000000000000000000000000000000000000815250816000600a811061134a57611349613a25565b5b602002018190525061138d600e6000888152602001908152602001600020600001838154811061137d5761137c613a25565b5b90600052602060002001546124ec565b816001600a81106113a1576113a0613a25565b5b60200201819052506040518060400160405280600681526020017f222063793d220000000000000000000000000000000000000000000000000000815250816002600a81106113f3576113f2613a25565b5b6020020181905250611466600e6000888152602001908152602001600020600001600e600089815260200190815260200160002060000180549050600161143a91906140fc565b846114459190613e1e565b8154811061145657611455613a25565b5b90600052602060002001546124ec565b816003600a811061147a57611479613a25565b5b60200201819052506040518060400160405280601781526020017f2220723d22353022202066696c6c3d22626c61636b223e000000000000000000815250816004600a81106114cc576114cb613a25565b5b6020020181905250604051806060016040528060358152602001614bcf60359139816005600a811061150157611500613a25565b5b6020020181905250600e6000878152602001908152602001600020600201828154811061153157611530613a25565b5b90600052602060002001805461154690613acc565b80601f016020809104026020016040519081016040528092919081815260200182805461157290613acc565b80156115bf5780601f10611594576101008083540402835291602001916115bf565b820191906000526020600020905b8154815290600101906020018083116115a257829003601f168201915b5050505050816006600a81106115d8576115d7613a25565b5b60200201819052506040518060800160405280605c8152602001614c04605c9139816007600a811061160d5761160c613a25565b5b6020020181905250600e6000878152602001908152602001600020600301828154811061163d5761163c613a25565b5b90600052602060002001805461165290613acc565b80601f016020809104026020016040519081016040528092919081815260200182805461167e90613acc565b80156116cb5780601f106116a0576101008083540402835291602001916116cb565b820191906000526020600020905b8154815290600101906020018083116116ae57829003601f168201915b5050505050816008600a81106116e4576116e3613a25565b5b6020020181905250604051806060016040528060308152602001614c6060309139816009600a811061171957611718613a25565b5b60200201819052506060816000600a811061173757611736613a25565b5b6020020151826001600a81106117505761174f613a25565b5b6020020151836002600a811061176957611768613a25565b5b6020020151846003600a811061178257611781613a25565b5b6020020151856004600a811061179b5761179a613a25565b5b6020020151866005600a81106117b4576117b3613a25565b5b6020020151876006600a81106117cd576117cc613a25565b5b6020020151886007600a81106117e6576117e5613a25565b5b6020020151896008600a81106117ff576117fe613a25565b5b60200201518a6009600a811061181857611817613a25565b5b60200201516040516020016118369a99989796959493929190614169565b60405160208183030381529060405290508085856014811061185b5761185a613a25565b5b60200201819052506001846118709190613e1e565b93505050808061187f90613a54565b9150506112da565b506040518060400160405280600681526020017f3c2f7376673e00000000000000000000000000000000000000000000000000008152508282601481106118d1576118d0613a25565b5b60200201819052506001816118e69190613e1e565b9050606060005b82811015611943578184826014811061190957611908613a25565b5b602002015160405160200161191f9291906141f5565b6040516020818303038152906040529150808061193b90613a54565b9150506118ed565b50600061198c61195e6001886119599190613e1e565b6124ec565b6119678461264d565b604051602001611978929190614395565b60405160208183030381529060405261264d565b90508060405160200161199f9190614426565b604051602081830303815290604052915081945050505050919050565b60006119c782610ed0565b9050919050565b60095481565b6119dc611d83565b60005b8151811015611a8d578181815181106119fb576119fa613a25565b5b6020026020010151600e60008381526020019081526020016000206000820151816000019080519060200190611a32929190612c1f565b50602082015181600101556040820151816002019080519060200190611a59929190612c6c565b506060820151816003019080519060200190611a76929190612c6c565b509050508080611a8590613a54565b9150506119df565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b2d611d83565b80600b8190555081600a819055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b6d611d83565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd4906144ba565b60405180910390fd5b611be6816120fd565b50565b60085481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c6281612480565b611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890613f89565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d1f83610ed0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611d7f8282604051806020016040528060008152506127e5565b5050565b611d8b611ca4565b73ffffffffffffffffffffffffffffffffffffffff16611da9611073565b73ffffffffffffffffffffffffffffffffffffffff1614611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df690614526565b60405180910390fd5b565b600080611e0d83610ed0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e4f5750611e4e8185611a91565b5b80611e8d57508373ffffffffffffffffffffffffffffffffffffffff16611e7584610a48565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eb682610ed0565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906145b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f739061464a565b60405180910390fd5b611f87838383612840565b611f92600082611cac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe291906139f1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120399190613e1e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120f8838383612845565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015612206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fd906146b6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161222c90614707565b60006040518083038185875af1925050503d8060008114612269576040519150601f19603f3d011682016040523d82523d6000602084013e61226e565b606091505b50509050806122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a99061478e565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d906147fa565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124179190612ebb565b60405180910390a3505050565b61242f848484611e96565b61243b8484848461284a565b61247a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124719061488c565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415612534576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612648565b600082905060005b6000821461256657808061254f90613a54565b915050600a8261255f91906148ac565b915061253c565b60008167ffffffffffffffff81111561258257612581613360565b5b6040519080825280601f01601f1916602001820160405280156125b45781602001600182028036833780820191505090505b5090505b60008514612641576001826125cd91906139f1565b9150600a856125dc91906140fc565b60306125e89190613e1e565b60f81b8183815181106125fe576125fd613a25565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561263a91906148ac565b94506125b8565b8093505050505b919050565b6060600082519050600081141561267657604051806020016040528060008152509150506127e0565b600060036002836126879190613e1e565b61269191906148ac565b600461269d91906148dd565b905060006020826126ae9190613e1e565b67ffffffffffffffff8111156126c7576126c6613360565b5b6040519080825280601f01601f1916602001820160405280156126f95781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614b8f604091399050600181016020830160005b8681101561279d5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612724565b5060038606600181146127b757600281146127c7576127d2565b613d3d60f01b60028303526127d2565b603d60f81b60018303525b508484525050819450505050505b919050565b6127ef83836129d2565b6127fc600084848461284a565b61283b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128329061488c565b60405180910390fd5b505050565b505050565b505050565b600061286b8473ffffffffffffffffffffffffffffffffffffffff16612bac565b156129c5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612894611ca4565b8786866040518563ffffffff1660e01b81526004016128b6949392919061498c565b6020604051808303816000875af19250505080156128f257506040513d601f19601f820116820180604052508101906128ef91906149ed565b60015b612975573d8060008114612922576040519150601f19603f3d011682016040523d82523d6000602084013e612927565b606091505b5060008151141561296d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129649061488c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ca565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990614a66565b60405180910390fd5b612a4b81612480565b15612a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8290614ad2565b60405180910390fd5b612a9760008383612840565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae79190613e1e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ba860008383612845565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518061028001604052806014905b6060815260200190600190039081612bdf5790505090565b604051806101400160405280600a905b6060815260200190600190039081612c075790505090565b828054828255906000526020600020908101928215612c5b579160200282015b82811115612c5a578251825591602001919060010190612c3f565b5b509050612c689190612ccc565b5090565b828054828255906000526020600020908101928215612cbb579160200282015b82811115612cba578251829080519060200190612caa929190612ce9565b5091602001919060010190612c8c565b5b509050612cc89190612d6f565b5090565b5b80821115612ce5576000816000905550600101612ccd565b5090565b828054612cf590613acc565b90600052602060002090601f016020900481019282612d175760008555612d5e565b82601f10612d3057805160ff1916838001178555612d5e565b82800160010185558215612d5e579182015b82811115612d5d578251825591602001919060010190612d42565b5b509050612d6b9190612ccc565b5090565b5b80821115612d8f5760008181612d869190612d93565b50600101612d70565b5090565b508054612d9f90613acc565b6000825580601f10612db15750612dd0565b601f016020900490600052602060002090810190612dcf9190612ccc565b5b50565b6000819050919050565b612de681612dd3565b82525050565b6000602082019050612e016000830184612ddd565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e5081612e1b565b8114612e5b57600080fd5b50565b600081359050612e6d81612e47565b92915050565b600060208284031215612e8957612e88612e11565b5b6000612e9784828501612e5e565b91505092915050565b60008115159050919050565b612eb581612ea0565b82525050565b6000602082019050612ed06000830184612eac565b92915050565b612edf81612dd3565b8114612eea57600080fd5b50565b600081359050612efc81612ed6565b92915050565b60008060408385031215612f1957612f18612e11565b5b6000612f2785828601612eed565b9250506020612f3885828601612eed565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f9982612f6e565b9050919050565b612fa981612f8e565b82525050565b6000612fbb8383612fa0565b60208301905092915050565b6000602082019050919050565b6000612fdf82612f42565b612fe98185612f4d565b9350612ff483612f5e565b8060005b8381101561302557815161300c8882612faf565b975061301783612fc7565b925050600181019050612ff8565b5085935050505092915050565b6000602082019050818103600083015261304c8184612fd4565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561308e578082015181840152602081019050613073565b8381111561309d576000848401525b50505050565b6000601f19601f8301169050919050565b60006130bf82613054565b6130c9818561305f565b93506130d9818560208601613070565b6130e2816130a3565b840191505092915050565b6000602082019050818103600083015261310781846130b4565b905092915050565b60006020828403121561312557613124612e11565b5b600061313384828501612eed565b91505092915050565b61314581612f8e565b82525050565b6000602082019050613160600083018461313c565b92915050565b61316f81612f8e565b811461317a57600080fd5b50565b60008135905061318c81613166565b92915050565b600080604083850312156131a9576131a8612e11565b5b60006131b78582860161317d565b92505060206131c885828601612eed565b9150509250929050565b60006131dd82612f6e565b9050919050565b6131ed816131d2565b81146131f857600080fd5b50565b60008135905061320a816131e4565b92915050565b60006020828403121561322657613225612e11565b5b6000613234848285016131fb565b91505092915050565b60008060006060848603121561325657613255612e11565b5b60006132648682870161317d565b93505060206132758682870161317d565b925050604061328686828701612eed565b9150509250925092565b6000602082840312156132a6576132a5612e11565b5b60006132b48482850161317d565b91505092915050565b6132c681612ea0565b81146132d157600080fd5b50565b6000813590506132e3816132bd565b92915050565b6000602082840312156132ff576132fe612e11565b5b600061330d848285016132d4565b91505092915050565b6000806040838503121561332d5761332c612e11565b5b600061333b8582860161317d565b925050602061334c858286016132d4565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613398826130a3565b810181811067ffffffffffffffff821117156133b7576133b6613360565b5b80604052505050565b60006133ca612e07565b90506133d6828261338f565b919050565b600067ffffffffffffffff8211156133f6576133f5613360565b5b6133ff826130a3565b9050602081019050919050565b82818337600083830152505050565b600061342e613429846133db565b6133c0565b90508281526020810184848401111561344a5761344961335b565b5b61345584828561340c565b509392505050565b600082601f83011261347257613471613356565b5b813561348284826020860161341b565b91505092915050565b600080600080608085870312156134a5576134a4612e11565b5b60006134b38782880161317d565b94505060206134c48782880161317d565b93505060406134d587828801612eed565b925050606085013567ffffffffffffffff8111156134f6576134f5612e16565b5b6135028782880161345d565b91505092959194509250565b600067ffffffffffffffff82111561352957613528613360565b5b602082029050602081019050919050565b600080fd5b600080fd5b600080fd5b600067ffffffffffffffff82111561356457613563613360565b5b602082029050602081019050919050565b600061358861358384613549565b6133c0565b905080838252602082019050602084028301858111156135ab576135aa61353a565b5b835b818110156135d457806135c08882612eed565b8452602084019350506020810190506135ad565b5050509392505050565b600082601f8301126135f3576135f2613356565b5b8135613603848260208601613575565b91505092915050565b600067ffffffffffffffff82111561362757613626613360565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561365357613652613360565b5b61365c826130a3565b9050602081019050919050565b600061367c61367784613638565b6133c0565b9050828152602081018484840111156136985761369761335b565b5b6136a384828561340c565b509392505050565b600082601f8301126136c0576136bf613356565b5b81356136d0848260208601613669565b91505092915050565b60006136ec6136e78461360c565b6133c0565b9050808382526020820190506020840283018581111561370f5761370e61353a565b5b835b8181101561375657803567ffffffffffffffff81111561373457613733613356565b5b80860161374189826136ab565b85526020850194505050602081019050613711565b5050509392505050565b600082601f83011261377557613774613356565b5b81356137858482602086016136d9565b91505092915050565b6000608082840312156137a4576137a361353f565b5b6137ae60806133c0565b9050600082013567ffffffffffffffff8111156137ce576137cd613544565b5b6137da848285016135de565b60008301525060206137ee84828501612eed565b602083015250604082013567ffffffffffffffff81111561381257613811613544565b5b61381e84828501613760565b604083015250606082013567ffffffffffffffff81111561384257613841613544565b5b61384e84828501613760565b60608301525092915050565b600061386d6138688461350e565b6133c0565b905080838252602082019050602084028301858111156138905761388f61353a565b5b835b818110156138d757803567ffffffffffffffff8111156138b5576138b4613356565b5b8086016138c2898261378e565b85526020850194505050602081019050613892565b5050509392505050565b600082601f8301126138f6576138f5613356565b5b813561390684826020860161385a565b91505092915050565b60006020828403121561392557613924612e11565b5b600082013567ffffffffffffffff81111561394357613942612e16565b5b61394f848285016138e1565b91505092915050565b6000806040838503121561396f5761396e612e11565b5b600061397d8582860161317d565b925050602061398e8582860161317d565b9150509250929050565b6139a1816131d2565b82525050565b60006020820190506139bc6000830184613998565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139fc82612dd3565b9150613a0783612dd3565b925082821015613a1a57613a196139c2565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613a5f82612dd3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9257613a916139c2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ae457607f821691505b60208210811415613af857613af7613a9d565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b5a60218361305f565b9150613b6582613afe565b604082019050919050565b60006020820190508181036000830152613b8981613b4d565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613bec603e8361305f565b9150613bf782613b90565b604082019050919050565b60006020820190508181036000830152613c1b81613bdf565b9050919050565b7f676976656e20746f6b656e2076616c756520697320677265617465722074686160008201527f6e2073616c65206c696d69740000000000000000000000000000000000000000602082015250565b6000613c7e602c8361305f565b9150613c8982613c22565b604082019050919050565b60006020820190508181036000830152613cad81613c71565b9050919050565b7f676976656e20746f6b656e2076616c7565206973206c657373207468616e207360008201527f616c65206c696d69740000000000000000000000000000000000000000000000602082015250565b6000613d1060298361305f565b9150613d1b82613cb4565b604082019050919050565b60006020820190508181036000830152613d3f81613d03565b9050919050565b7f73616c65206d7573742062652061637469766500000000000000000000000000600082015250565b6000613d7c60138361305f565b9150613d8782613d46565b602082019050919050565b60006020820190508181036000830152613dab81613d6f565b9050919050565b7f6d7573742073656e6420696e20636f727265637420616d6f756e740000000000600082015250565b6000613de8601b8361305f565b9150613df382613db2565b602082019050919050565b60006020820190508181036000830152613e1781613ddb565b9050919050565b6000613e2982612dd3565b9150613e3483612dd3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6957613e686139c2565b5b828201905092915050565b6000606082019050613e89600083018661313c565b613e966020830185612ddd565b613ea36040830184612ddd565b949350505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613f07602e8361305f565b9150613f1282613eab565b604082019050919050565b60006020820190508181036000830152613f3681613efa565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613f7360188361305f565b9150613f7e82613f3d565b602082019050919050565b60006020820190508181036000830152613fa281613f66565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061400560298361305f565b915061401082613fa9565b604082019050919050565b6000602082019050818103600083015261403481613ff8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614097602f8361305f565b91506140a28261403b565b604082019050919050565b600060208201905081810360008301526140c68161408a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061410782612dd3565b915061411283612dd3565b925082614122576141216140cd565b5b828206905092915050565b600081905092915050565b600061414382613054565b61414d818561412d565b935061415d818560208601613070565b80840191505092915050565b6000614175828d614138565b9150614181828c614138565b915061418d828b614138565b9150614199828a614138565b91506141a58289614138565b91506141b18288614138565b91506141bd8287614138565b91506141c98286614138565b91506141d58285614138565b91506141e18284614138565b91508190509b9a5050505050505050505050565b60006142018285614138565b915061420d8284614138565b91508190509392505050565b7f7b226e616d65223a20224472617720627920436f6d7075746572200000000000600082015250565b600061424f601b8361412d565b915061425a82614219565b601b82019050919050565b7f222c20226465736372697074696f6e223a202247656f6d65747269632070726960008201527f6d69746976657320647261776e2062792068616e64206f6e206120636f6d707560208201527f7465722e204a6f6e617468616e2043686f6d6b6f2c2032303232222c2022696d60408201527f616765223a2022646174613a696d6167652f7376672b786d6c3b62617365363460608201527f2c00000000000000000000000000000000000000000000000000000000000000608082015250565b600061433360818361412d565b915061433e82614265565b608182019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b600061437f60028361412d565b915061438a82614349565b600282019050919050565b60006143a082614242565b91506143ac8285614138565b91506143b782614326565b91506143c38284614138565b91506143ce82614372565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000614410601d8361412d565b915061441b826143da565b601d82019050919050565b600061443182614403565b915061443d8284614138565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144a460268361305f565b91506144af82614448565b604082019050919050565b600060208201905081810360008301526144d381614497565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061451060208361305f565b915061451b826144da565b602082019050919050565b6000602082019050818103600083015261453f81614503565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006145a260258361305f565b91506145ad82614546565b604082019050919050565b600060208201905081810360008301526145d181614595565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061463460248361305f565b915061463f826145d8565b604082019050919050565b6000602082019050818103600083015261466381614627565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006146a0601d8361305f565b91506146ab8261466a565b602082019050919050565b600060208201905081810360008301526146cf81614693565b9050919050565b600081905092915050565b50565b60006146f16000836146d6565b91506146fc826146e1565b600082019050919050565b6000614712826146e4565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614778603a8361305f565b91506147838261471c565b604082019050919050565b600060208201905081810360008301526147a78161476b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006147e460198361305f565b91506147ef826147ae565b602082019050919050565b60006020820190508181036000830152614813816147d7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061487660328361305f565b91506148818261481a565b604082019050919050565b600060208201905081810360008301526148a581614869565b9050919050565b60006148b782612dd3565b91506148c283612dd3565b9250826148d2576148d16140cd565b5b828204905092915050565b60006148e882612dd3565b91506148f383612dd3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492c5761492b6139c2565b5b828202905092915050565b600081519050919050565b600082825260208201905092915050565b600061495e82614937565b6149688185614942565b9350614978818560208601613070565b614981816130a3565b840191505092915050565b60006080820190506149a1600083018761313c565b6149ae602083018661313c565b6149bb6040830185612ddd565b81810360608301526149cd8184614953565b905095945050505050565b6000815190506149e781612e47565b92915050565b600060208284031215614a0357614a02612e11565b5b6000614a11848285016149d8565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614a5060208361305f565b9150614a5b82614a1a565b602082019050919050565b60006020820190508181036000830152614a7f81614a43565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614abc601c8361305f565b9150614ac782614a86565b602082019050919050565b60006020820190508181036000830152614aeb81614aaf565b905091905056fe3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d6964594d6964206d656574222076696577426f783d2230203020313030302031303030223e2020203c726563742077696474683d223130303022206865696768743d2231303030222066696c6c3d227768697465223e3c2f726563743e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c616e696d6174652063616c634d6f64653d22706163656422206174747269627574654e616d653d226378222076616c7565733d2222206475723d223630732220726570656174436f756e743d22696e646566696e697465222f3e203c616e696d6174652063616c634d6f64653d22706163656422206174747269627574654e616d653d226379222076616c7565733d2222206475723d223630732220726570656174436f756e743d22696e646566696e697465222f3e203c2f636972636c653ea26469706673582212204ff9168b1072f2537b60c48204ee7313a7ef383e6ecb1a7500861baa1fc7498a64736f6c634300080c00330000000000000000000000008490b3dfba40b784e3a16974377c70a139306cfa
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063841718a61161010d578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610702578063ed13c3281461073f578063f2bcd02214610768578063f2fde38b14610793578063fe3c4657146107bc576101ee565b8063c87b56dd14610634578063cc33c87514610671578063d082e381146106ae578063e2100754146106d9576101ee565b8063a0ef91df116100dc578063a0ef91df1461058e578063a22cb465146105a5578063b88d4fde146105ce578063c47f7cf2146105f7576101ee565b8063841718a6146104e65780638da5cb5b1461050f57806391b7f5ed1461053a57806395d89b4114610563576101ee565b806323b872dd11610185578063575ca2c711610154578063575ca2c71461042a5780636352211e1461045557806370a0823114610492578063715018a6146104cf576101ee565b806323b872dd1461038257806342842e0e146103ab57806347a6fee8146103d457806353d0023d146103ff576101ee565b8063081812fc116101c1578063081812fc146102c3578063095ea7b31461030057806317fb85941461032957806321b8092e14610359576101ee565b806301facb8e146101f357806301ffc9a71461021e578063048220581461025b57806306fdde0314610298575b600080fd5b3480156101ff57600080fd5b506102086107e7565b6040516102159190612dec565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612e73565b6107ed565b6040516102529190612ebb565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f02565b6108cf565b60405161028f9190613032565b60405180910390f35b3480156102a457600080fd5b506102ad6109b6565b6040516102ba91906130ed565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e5919061310f565b610a48565b6040516102f7919061314b565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613192565b610a8e565b005b610343600480360381019061033e919061310f565b610ba6565b6040516103509190612dec565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190613210565b610de5565b005b34801561038e57600080fd5b506103a960048036038101906103a4919061323d565b610e31565b005b3480156103b757600080fd5b506103d260048036038101906103cd919061323d565b610e91565b005b3480156103e057600080fd5b506103e9610eb1565b6040516103f69190612dec565b60405180910390f35b34801561040b57600080fd5b50610414610eb7565b6040516104219190612ebb565b60405180910390f35b34801561043657600080fd5b5061043f610eca565b60405161044c9190612dec565b60405180910390f35b34801561046157600080fd5b5061047c6004803603810190610477919061310f565b610ed0565b604051610489919061314b565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613290565b610f82565b6040516104c69190612dec565b60405180910390f35b3480156104db57600080fd5b506104e461103a565b005b3480156104f257600080fd5b5061050d600480360381019061050891906132e9565b61104e565b005b34801561051b57600080fd5b50610524611073565b604051610531919061314b565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c919061310f565b61109d565b005b34801561056f57600080fd5b506105786110af565b60405161058591906130ed565b60405180910390f35b34801561059a57600080fd5b506105a3611141565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613316565b611177565b005b3480156105da57600080fd5b506105f560048036038101906105f0919061348b565b61118d565b005b34801561060357600080fd5b5061061e6004803603810190610619919061310f565b6111ef565b60405161062b9190612dec565b60405180910390f35b34801561064057600080fd5b5061065b6004803603810190610656919061310f565b61120d565b60405161066891906130ed565b60405180910390f35b34801561067d57600080fd5b506106986004803603810190610693919061310f565b6119bc565b6040516106a5919061314b565b60405180910390f35b3480156106ba57600080fd5b506106c36119ce565b6040516106d09190612dec565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb919061390f565b6119d4565b005b34801561070e57600080fd5b5061072960048036038101906107249190613958565b611a91565b6040516107369190612ebb565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190612f02565b611b25565b005b34801561077457600080fd5b5061077d611b3f565b60405161078a91906139a7565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190613290565b611b65565b005b3480156107c857600080fd5b506107d1611be9565b6040516107de9190612dec565b60405180910390f35b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c857506108c782611bef565b5b9050919050565b6060600083836108df91906139f1565b67ffffffffffffffff8111156108f8576108f7613360565b5b6040519080825280602002602001820160405280156109265781602001602082028036833780820191505090505b50905060008490505b838110156109ab5761094081610ed0565b82868361094d91906139f1565b8151811061095e5761095d613a25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080806109a390613a54565b91505061092f565b508091505092915050565b6060600080546109c590613acc565b80601f01602080910402602001604051908101604052809291908181526020018280546109f190613acc565b8015610a3e5780601f10610a1357610100808354040283529160200191610a3e565b820191906000526020600020905b815481529060010190602001808311610a2157829003601f168201915b5050505050905090565b6000610a5382611c59565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9982610ed0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190613b70565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b29611ca4565b73ffffffffffffffffffffffffffffffffffffffff161480610b585750610b5781610b52611ca4565b611a91565b5b610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90613c02565b60405180910390fd5b610ba18383611cac565b505050565b6000600b5482111580610beb5750610bbc611073565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2190613c94565b60405180910390fd5b600a5482101580610c6d5750610c3e611073565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390613d26565b60405180910390fd5b600c60009054906101000a900460ff1680610cf95750610cca611073565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90613d92565b60405180910390fd5b600d543414610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390613dfe565b60405180910390fd5b610d863383611d65565b600160096000828254610d999190613e1e565b925050819055507f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f333484604051610dd393929190613e74565b60405180910390a16009549050919050565b610ded611d83565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e42610e3c611ca4565b82611e01565b610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890613f1d565b60405180910390fd5b610e8c838383611e96565b505050565b610eac8383836040518060200160405280600081525061118d565b505050565b600a5481565b600c60009054906101000a900460ff1681565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090613f89565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea9061401b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611042611d83565b61104c60006120fd565b565b611056611d83565b80600c60006101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110a5611d83565b80600d8190555050565b6060600180546110be90613acc565b80601f01602080910402602001604051908101604052809291908181526020018280546110ea90613acc565b80156111375780601f1061110c57610100808354040283529160200191611137565b820191906000526020600020905b81548152906001019060200180831161111a57829003601f168201915b5050505050905090565b611149611d83565b611175600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16476121c3565b565b611189611182611ca4565b83836122b7565b5050565b61119e611198611ca4565b83611e01565b6111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490613f1d565b60405180910390fd5b6111e984848484612424565b50505050565b600e6020528060005260406000206000915090508060010154905081565b606061121882612480565b806112555750611226611073565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906140ad565b60405180910390fd5b61129c612bcf565b6040518060c00160405280609c8152602001614af3609c9139816000601481106112c9576112c8613a25565b5b602002018190525060006001905060005b600e60008681526020019081526020016000206001015481101561188757611300612bf7565b6040518060400160405280600c81526020017f3c636972636c652063783d220000000000000000000000000000000000000000815250816000600a811061134a57611349613a25565b5b602002018190525061138d600e6000888152602001908152602001600020600001838154811061137d5761137c613a25565b5b90600052602060002001546124ec565b816001600a81106113a1576113a0613a25565b5b60200201819052506040518060400160405280600681526020017f222063793d220000000000000000000000000000000000000000000000000000815250816002600a81106113f3576113f2613a25565b5b6020020181905250611466600e6000888152602001908152602001600020600001600e600089815260200190815260200160002060000180549050600161143a91906140fc565b846114459190613e1e565b8154811061145657611455613a25565b5b90600052602060002001546124ec565b816003600a811061147a57611479613a25565b5b60200201819052506040518060400160405280601781526020017f2220723d22353022202066696c6c3d22626c61636b223e000000000000000000815250816004600a81106114cc576114cb613a25565b5b6020020181905250604051806060016040528060358152602001614bcf60359139816005600a811061150157611500613a25565b5b6020020181905250600e6000878152602001908152602001600020600201828154811061153157611530613a25565b5b90600052602060002001805461154690613acc565b80601f016020809104026020016040519081016040528092919081815260200182805461157290613acc565b80156115bf5780601f10611594576101008083540402835291602001916115bf565b820191906000526020600020905b8154815290600101906020018083116115a257829003601f168201915b5050505050816006600a81106115d8576115d7613a25565b5b60200201819052506040518060800160405280605c8152602001614c04605c9139816007600a811061160d5761160c613a25565b5b6020020181905250600e6000878152602001908152602001600020600301828154811061163d5761163c613a25565b5b90600052602060002001805461165290613acc565b80601f016020809104026020016040519081016040528092919081815260200182805461167e90613acc565b80156116cb5780601f106116a0576101008083540402835291602001916116cb565b820191906000526020600020905b8154815290600101906020018083116116ae57829003601f168201915b5050505050816008600a81106116e4576116e3613a25565b5b6020020181905250604051806060016040528060308152602001614c6060309139816009600a811061171957611718613a25565b5b60200201819052506060816000600a811061173757611736613a25565b5b6020020151826001600a81106117505761174f613a25565b5b6020020151836002600a811061176957611768613a25565b5b6020020151846003600a811061178257611781613a25565b5b6020020151856004600a811061179b5761179a613a25565b5b6020020151866005600a81106117b4576117b3613a25565b5b6020020151876006600a81106117cd576117cc613a25565b5b6020020151886007600a81106117e6576117e5613a25565b5b6020020151896008600a81106117ff576117fe613a25565b5b60200201518a6009600a811061181857611817613a25565b5b60200201516040516020016118369a99989796959493929190614169565b60405160208183030381529060405290508085856014811061185b5761185a613a25565b5b60200201819052506001846118709190613e1e565b93505050808061187f90613a54565b9150506112da565b506040518060400160405280600681526020017f3c2f7376673e00000000000000000000000000000000000000000000000000008152508282601481106118d1576118d0613a25565b5b60200201819052506001816118e69190613e1e565b9050606060005b82811015611943578184826014811061190957611908613a25565b5b602002015160405160200161191f9291906141f5565b6040516020818303038152906040529150808061193b90613a54565b9150506118ed565b50600061198c61195e6001886119599190613e1e565b6124ec565b6119678461264d565b604051602001611978929190614395565b60405160208183030381529060405261264d565b90508060405160200161199f9190614426565b604051602081830303815290604052915081945050505050919050565b60006119c782610ed0565b9050919050565b60095481565b6119dc611d83565b60005b8151811015611a8d578181815181106119fb576119fa613a25565b5b6020026020010151600e60008381526020019081526020016000206000820151816000019080519060200190611a32929190612c1f565b50602082015181600101556040820151816002019080519060200190611a59929190612c6c565b506060820151816003019080519060200190611a76929190612c6c565b509050508080611a8590613a54565b9150506119df565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b2d611d83565b80600b8190555081600a819055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b6d611d83565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd4906144ba565b60405180910390fd5b611be6816120fd565b50565b60085481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c6281612480565b611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890613f89565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d1f83610ed0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611d7f8282604051806020016040528060008152506127e5565b5050565b611d8b611ca4565b73ffffffffffffffffffffffffffffffffffffffff16611da9611073565b73ffffffffffffffffffffffffffffffffffffffff1614611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df690614526565b60405180910390fd5b565b600080611e0d83610ed0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e4f5750611e4e8185611a91565b5b80611e8d57508373ffffffffffffffffffffffffffffffffffffffff16611e7584610a48565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eb682610ed0565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906145b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f739061464a565b60405180910390fd5b611f87838383612840565b611f92600082611cac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe291906139f1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120399190613e1e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120f8838383612845565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015612206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fd906146b6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161222c90614707565b60006040518083038185875af1925050503d8060008114612269576040519150601f19603f3d011682016040523d82523d6000602084013e61226e565b606091505b50509050806122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a99061478e565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d906147fa565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124179190612ebb565b60405180910390a3505050565b61242f848484611e96565b61243b8484848461284a565b61247a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124719061488c565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415612534576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612648565b600082905060005b6000821461256657808061254f90613a54565b915050600a8261255f91906148ac565b915061253c565b60008167ffffffffffffffff81111561258257612581613360565b5b6040519080825280601f01601f1916602001820160405280156125b45781602001600182028036833780820191505090505b5090505b60008514612641576001826125cd91906139f1565b9150600a856125dc91906140fc565b60306125e89190613e1e565b60f81b8183815181106125fe576125fd613a25565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561263a91906148ac565b94506125b8565b8093505050505b919050565b6060600082519050600081141561267657604051806020016040528060008152509150506127e0565b600060036002836126879190613e1e565b61269191906148ac565b600461269d91906148dd565b905060006020826126ae9190613e1e565b67ffffffffffffffff8111156126c7576126c6613360565b5b6040519080825280601f01601f1916602001820160405280156126f95781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614b8f604091399050600181016020830160005b8681101561279d5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612724565b5060038606600181146127b757600281146127c7576127d2565b613d3d60f01b60028303526127d2565b603d60f81b60018303525b508484525050819450505050505b919050565b6127ef83836129d2565b6127fc600084848461284a565b61283b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128329061488c565b60405180910390fd5b505050565b505050565b505050565b600061286b8473ffffffffffffffffffffffffffffffffffffffff16612bac565b156129c5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612894611ca4565b8786866040518563ffffffff1660e01b81526004016128b6949392919061498c565b6020604051808303816000875af19250505080156128f257506040513d601f19601f820116820180604052508101906128ef91906149ed565b60015b612975573d8060008114612922576040519150601f19603f3d011682016040523d82523d6000602084013e612927565b606091505b5060008151141561296d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129649061488c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ca565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990614a66565b60405180910390fd5b612a4b81612480565b15612a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8290614ad2565b60405180910390fd5b612a9760008383612840565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae79190613e1e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ba860008383612845565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518061028001604052806014905b6060815260200190600190039081612bdf5790505090565b604051806101400160405280600a905b6060815260200190600190039081612c075790505090565b828054828255906000526020600020908101928215612c5b579160200282015b82811115612c5a578251825591602001919060010190612c3f565b5b509050612c689190612ccc565b5090565b828054828255906000526020600020908101928215612cbb579160200282015b82811115612cba578251829080519060200190612caa929190612ce9565b5091602001919060010190612c8c565b5b509050612cc89190612d6f565b5090565b5b80821115612ce5576000816000905550600101612ccd565b5090565b828054612cf590613acc565b90600052602060002090601f016020900481019282612d175760008555612d5e565b82601f10612d3057805160ff1916838001178555612d5e565b82800160010185558215612d5e579182015b82811115612d5d578251825591602001919060010190612d42565b5b509050612d6b9190612ccc565b5090565b5b80821115612d8f5760008181612d869190612d93565b50600101612d70565b5090565b508054612d9f90613acc565b6000825580601f10612db15750612dd0565b601f016020900490600052602060002090810190612dcf9190612ccc565b5b50565b6000819050919050565b612de681612dd3565b82525050565b6000602082019050612e016000830184612ddd565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e5081612e1b565b8114612e5b57600080fd5b50565b600081359050612e6d81612e47565b92915050565b600060208284031215612e8957612e88612e11565b5b6000612e9784828501612e5e565b91505092915050565b60008115159050919050565b612eb581612ea0565b82525050565b6000602082019050612ed06000830184612eac565b92915050565b612edf81612dd3565b8114612eea57600080fd5b50565b600081359050612efc81612ed6565b92915050565b60008060408385031215612f1957612f18612e11565b5b6000612f2785828601612eed565b9250506020612f3885828601612eed565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f9982612f6e565b9050919050565b612fa981612f8e565b82525050565b6000612fbb8383612fa0565b60208301905092915050565b6000602082019050919050565b6000612fdf82612f42565b612fe98185612f4d565b9350612ff483612f5e565b8060005b8381101561302557815161300c8882612faf565b975061301783612fc7565b925050600181019050612ff8565b5085935050505092915050565b6000602082019050818103600083015261304c8184612fd4565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561308e578082015181840152602081019050613073565b8381111561309d576000848401525b50505050565b6000601f19601f8301169050919050565b60006130bf82613054565b6130c9818561305f565b93506130d9818560208601613070565b6130e2816130a3565b840191505092915050565b6000602082019050818103600083015261310781846130b4565b905092915050565b60006020828403121561312557613124612e11565b5b600061313384828501612eed565b91505092915050565b61314581612f8e565b82525050565b6000602082019050613160600083018461313c565b92915050565b61316f81612f8e565b811461317a57600080fd5b50565b60008135905061318c81613166565b92915050565b600080604083850312156131a9576131a8612e11565b5b60006131b78582860161317d565b92505060206131c885828601612eed565b9150509250929050565b60006131dd82612f6e565b9050919050565b6131ed816131d2565b81146131f857600080fd5b50565b60008135905061320a816131e4565b92915050565b60006020828403121561322657613225612e11565b5b6000613234848285016131fb565b91505092915050565b60008060006060848603121561325657613255612e11565b5b60006132648682870161317d565b93505060206132758682870161317d565b925050604061328686828701612eed565b9150509250925092565b6000602082840312156132a6576132a5612e11565b5b60006132b48482850161317d565b91505092915050565b6132c681612ea0565b81146132d157600080fd5b50565b6000813590506132e3816132bd565b92915050565b6000602082840312156132ff576132fe612e11565b5b600061330d848285016132d4565b91505092915050565b6000806040838503121561332d5761332c612e11565b5b600061333b8582860161317d565b925050602061334c858286016132d4565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613398826130a3565b810181811067ffffffffffffffff821117156133b7576133b6613360565b5b80604052505050565b60006133ca612e07565b90506133d6828261338f565b919050565b600067ffffffffffffffff8211156133f6576133f5613360565b5b6133ff826130a3565b9050602081019050919050565b82818337600083830152505050565b600061342e613429846133db565b6133c0565b90508281526020810184848401111561344a5761344961335b565b5b61345584828561340c565b509392505050565b600082601f83011261347257613471613356565b5b813561348284826020860161341b565b91505092915050565b600080600080608085870312156134a5576134a4612e11565b5b60006134b38782880161317d565b94505060206134c48782880161317d565b93505060406134d587828801612eed565b925050606085013567ffffffffffffffff8111156134f6576134f5612e16565b5b6135028782880161345d565b91505092959194509250565b600067ffffffffffffffff82111561352957613528613360565b5b602082029050602081019050919050565b600080fd5b600080fd5b600080fd5b600067ffffffffffffffff82111561356457613563613360565b5b602082029050602081019050919050565b600061358861358384613549565b6133c0565b905080838252602082019050602084028301858111156135ab576135aa61353a565b5b835b818110156135d457806135c08882612eed565b8452602084019350506020810190506135ad565b5050509392505050565b600082601f8301126135f3576135f2613356565b5b8135613603848260208601613575565b91505092915050565b600067ffffffffffffffff82111561362757613626613360565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561365357613652613360565b5b61365c826130a3565b9050602081019050919050565b600061367c61367784613638565b6133c0565b9050828152602081018484840111156136985761369761335b565b5b6136a384828561340c565b509392505050565b600082601f8301126136c0576136bf613356565b5b81356136d0848260208601613669565b91505092915050565b60006136ec6136e78461360c565b6133c0565b9050808382526020820190506020840283018581111561370f5761370e61353a565b5b835b8181101561375657803567ffffffffffffffff81111561373457613733613356565b5b80860161374189826136ab565b85526020850194505050602081019050613711565b5050509392505050565b600082601f83011261377557613774613356565b5b81356137858482602086016136d9565b91505092915050565b6000608082840312156137a4576137a361353f565b5b6137ae60806133c0565b9050600082013567ffffffffffffffff8111156137ce576137cd613544565b5b6137da848285016135de565b60008301525060206137ee84828501612eed565b602083015250604082013567ffffffffffffffff81111561381257613811613544565b5b61381e84828501613760565b604083015250606082013567ffffffffffffffff81111561384257613841613544565b5b61384e84828501613760565b60608301525092915050565b600061386d6138688461350e565b6133c0565b905080838252602082019050602084028301858111156138905761388f61353a565b5b835b818110156138d757803567ffffffffffffffff8111156138b5576138b4613356565b5b8086016138c2898261378e565b85526020850194505050602081019050613892565b5050509392505050565b600082601f8301126138f6576138f5613356565b5b813561390684826020860161385a565b91505092915050565b60006020828403121561392557613924612e11565b5b600082013567ffffffffffffffff81111561394357613942612e16565b5b61394f848285016138e1565b91505092915050565b6000806040838503121561396f5761396e612e11565b5b600061397d8582860161317d565b925050602061398e8582860161317d565b9150509250929050565b6139a1816131d2565b82525050565b60006020820190506139bc6000830184613998565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139fc82612dd3565b9150613a0783612dd3565b925082821015613a1a57613a196139c2565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613a5f82612dd3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9257613a916139c2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ae457607f821691505b60208210811415613af857613af7613a9d565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b5a60218361305f565b9150613b6582613afe565b604082019050919050565b60006020820190508181036000830152613b8981613b4d565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613bec603e8361305f565b9150613bf782613b90565b604082019050919050565b60006020820190508181036000830152613c1b81613bdf565b9050919050565b7f676976656e20746f6b656e2076616c756520697320677265617465722074686160008201527f6e2073616c65206c696d69740000000000000000000000000000000000000000602082015250565b6000613c7e602c8361305f565b9150613c8982613c22565b604082019050919050565b60006020820190508181036000830152613cad81613c71565b9050919050565b7f676976656e20746f6b656e2076616c7565206973206c657373207468616e207360008201527f616c65206c696d69740000000000000000000000000000000000000000000000602082015250565b6000613d1060298361305f565b9150613d1b82613cb4565b604082019050919050565b60006020820190508181036000830152613d3f81613d03565b9050919050565b7f73616c65206d7573742062652061637469766500000000000000000000000000600082015250565b6000613d7c60138361305f565b9150613d8782613d46565b602082019050919050565b60006020820190508181036000830152613dab81613d6f565b9050919050565b7f6d7573742073656e6420696e20636f727265637420616d6f756e740000000000600082015250565b6000613de8601b8361305f565b9150613df382613db2565b602082019050919050565b60006020820190508181036000830152613e1781613ddb565b9050919050565b6000613e2982612dd3565b9150613e3483612dd3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6957613e686139c2565b5b828201905092915050565b6000606082019050613e89600083018661313c565b613e966020830185612ddd565b613ea36040830184612ddd565b949350505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613f07602e8361305f565b9150613f1282613eab565b604082019050919050565b60006020820190508181036000830152613f3681613efa565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613f7360188361305f565b9150613f7e82613f3d565b602082019050919050565b60006020820190508181036000830152613fa281613f66565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061400560298361305f565b915061401082613fa9565b604082019050919050565b6000602082019050818103600083015261403481613ff8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614097602f8361305f565b91506140a28261403b565b604082019050919050565b600060208201905081810360008301526140c68161408a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061410782612dd3565b915061411283612dd3565b925082614122576141216140cd565b5b828206905092915050565b600081905092915050565b600061414382613054565b61414d818561412d565b935061415d818560208601613070565b80840191505092915050565b6000614175828d614138565b9150614181828c614138565b915061418d828b614138565b9150614199828a614138565b91506141a58289614138565b91506141b18288614138565b91506141bd8287614138565b91506141c98286614138565b91506141d58285614138565b91506141e18284614138565b91508190509b9a5050505050505050505050565b60006142018285614138565b915061420d8284614138565b91508190509392505050565b7f7b226e616d65223a20224472617720627920436f6d7075746572200000000000600082015250565b600061424f601b8361412d565b915061425a82614219565b601b82019050919050565b7f222c20226465736372697074696f6e223a202247656f6d65747269632070726960008201527f6d69746976657320647261776e2062792068616e64206f6e206120636f6d707560208201527f7465722e204a6f6e617468616e2043686f6d6b6f2c2032303232222c2022696d60408201527f616765223a2022646174613a696d6167652f7376672b786d6c3b62617365363460608201527f2c00000000000000000000000000000000000000000000000000000000000000608082015250565b600061433360818361412d565b915061433e82614265565b608182019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b600061437f60028361412d565b915061438a82614349565b600282019050919050565b60006143a082614242565b91506143ac8285614138565b91506143b782614326565b91506143c38284614138565b91506143ce82614372565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000614410601d8361412d565b915061441b826143da565b601d82019050919050565b600061443182614403565b915061443d8284614138565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144a460268361305f565b91506144af82614448565b604082019050919050565b600060208201905081810360008301526144d381614497565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061451060208361305f565b915061451b826144da565b602082019050919050565b6000602082019050818103600083015261453f81614503565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006145a260258361305f565b91506145ad82614546565b604082019050919050565b600060208201905081810360008301526145d181614595565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061463460248361305f565b915061463f826145d8565b604082019050919050565b6000602082019050818103600083015261466381614627565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006146a0601d8361305f565b91506146ab8261466a565b602082019050919050565b600060208201905081810360008301526146cf81614693565b9050919050565b600081905092915050565b50565b60006146f16000836146d6565b91506146fc826146e1565b600082019050919050565b6000614712826146e4565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614778603a8361305f565b91506147838261471c565b604082019050919050565b600060208201905081810360008301526147a78161476b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006147e460198361305f565b91506147ef826147ae565b602082019050919050565b60006020820190508181036000830152614813816147d7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061487660328361305f565b91506148818261481a565b604082019050919050565b600060208201905081810360008301526148a581614869565b9050919050565b60006148b782612dd3565b91506148c283612dd3565b9250826148d2576148d16140cd565b5b828204905092915050565b60006148e882612dd3565b91506148f383612dd3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492c5761492b6139c2565b5b828202905092915050565b600081519050919050565b600082825260208201905092915050565b600061495e82614937565b6149688185614942565b9350614978818560208601613070565b614981816130a3565b840191505092915050565b60006080820190506149a1600083018761313c565b6149ae602083018661313c565b6149bb6040830185612ddd565b81810360608301526149cd8184614953565b905095945050505050565b6000815190506149e781612e47565b92915050565b600060208284031215614a0357614a02612e11565b5b6000614a11848285016149d8565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614a5060208361305f565b9150614a5b82614a1a565b602082019050919050565b60006020820190508181036000830152614a7f81614a43565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614abc601c8361305f565b9150614ac782614a86565b602082019050919050565b60006020820190508181036000830152614aeb81614aaf565b905091905056fe3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d6964594d6964206d656574222076696577426f783d2230203020313030302031303030223e2020203c726563742077696474683d223130303022206865696768743d2231303030222066696c6c3d227768697465223e3c2f726563743e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c616e696d6174652063616c634d6f64653d22706163656422206174747269627574654e616d653d226378222076616c7565733d2222206475723d223630732220726570656174436f756e743d22696e646566696e697465222f3e203c616e696d6174652063616c634d6f64653d22706163656422206174747269627574654e616d653d226379222076616c7565733d2222206475723d223630732220726570656174436f756e743d22696e646566696e697465222f3e203c2f636972636c653ea26469706673582212204ff9168b1072f2537b60c48204ee7313a7ef383e6ecb1a7500861baa1fc7498a64736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008490b3dfba40b784e3a16974377c70a139306cfa
-----Decoded View---------------
Arg [0] : givenWithdrawalAddress (address): 0x8490b3dFba40B784e3a16974377c70a139306CFA
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008490b3dfba40b784e3a16974377c70a139306cfa
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.