ERC-1155
Overview
Max Total Supply
5,485 Z1
Holders
20
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Serum
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./library/SafeMath.sol"; import "./interfaces/RAYC.sol"; contract Serum is ERC1155, Ownable, IERC1155Receiver { using Strings for uint256; using SafeMath for uint256; string public name = "Z1 Serum"; string public symbol = "Z1"; address public raycAddress; mapping(uint256 => bool) public claimed; mapping(uint256 => address) private ownerships; uint256 public claimStart = 1667163600; // 9pm UTC (5pm EST) Oct 30 uint256 public claimEnd = 1668373200; // 9pm UTC (5pm EST) Nov 13 uint256 public totalSupply; uint256 public burned; address public zombiesContractAddress; bool private burnDone; uint256 private constant maxSupply = 10_000; uint256 private constant Z1_SERUM = 0; string public baseUri; function setBaseUri(string calldata _baseUri) public onlyOwner { baseUri = _baseUri; } constructor( address _raycAddress ) ERC1155(string(abi.encodePacked(baseUri, "{id}", ".json"))) { raycAddress = _raycAddress; } function claim(uint256[] calldata ids) public { require(!burnDone, "No claims after burn"); require(tx.origin == msg.sender, "EOAs only"); require(ids.length < 250, "Too many addresses"); require(block.timestamp > claimStart, "Patience!"); require(block.timestamp < claimEnd, "Too late!"); checkApepesOwned(); for (uint256 i = 0; i < ids.length; i++) { require( ownerships[ids[i]] == msg.sender, "Can't claim it if you don't own it" ); require(claimed[ids[i]] != true, "Already claimed"); claimed[ids[i]] = true; } _mint(msg.sender, Z1_SERUM, ids.length, abi.encodePacked("")); totalSupply += ids.length; } function burnRemaining() public onlyOwner { require(!burnDone, "Already burned."); uint256 remaining = maxSupply - totalSupply; burned = remaining; _mint( address(this), Z1_SERUM, remaining, abi.encodePacked("burn,baby,burn") ); _burn(address(this), Z1_SERUM, remaining); burnDone = true; } function burn(address _address, uint256 _amount) public { _burn(_address, Z1_SERUM, _amount); } function setClaimStart(uint256 _claimStart) public onlyOwner { claimStart = _claimStart; } function setClaimEnd(uint256 _claimEnd) public onlyOwner { claimEnd = _claimEnd; } function checkApepesOwned() private { IRAYC rayc = IRAYC(raycAddress); uint256[] memory walletOfSender = rayc.walletOfOwner(msg.sender); for (uint256 i = 0; i < walletOfSender.length; i++) { ownerships[walletOfSender[i]] = msg.sender; } } function uri(uint256 _id) public view override returns (string memory) { require(_id == Z1_SERUM, "Type not recognized"); return string(abi.encodePacked(baseUri, Z1_SERUM.toString(), ".json")); } function setZombiesContract(address _address) public onlyOwner { zombiesContractAddress = _address; } function onERC1155Received( address, address, uint256, uint256, bytes calldata ) external pure returns (bytes4) { return IERC1155Receiver.onERC1155Received.selector; } function onERC1155BatchReceived( address, address, uint256[] calldata, uint256[] calldata, bytes calldata ) external pure returns (bytes4) { return IERC1155Receiver.onERC1155BatchReceived.selector; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface IRAYC { function walletOfOwner(address _owner) external view returns (uint256[] memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath#mul: OVERFLOW"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath#div: DIVISION_BY_ZERO"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath#sub: UNDERFLOW"); uint256 c = a - b; return c; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath#add: OVERFLOW"); return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath#mod: DIVISION_BY_ZERO"); return a % b; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @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, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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 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); }
// 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 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.5.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 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/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
{ "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","name":"_raycAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnRemaining","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raycAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimEnd","type":"uint256"}],"name":"setClaimEnd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimStart","type":"uint256"}],"name":"setClaimStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setZombiesContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zombiesContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600881526020017f5a3120536572756d000000000000000000000000000000000000000000000000815250600490816200004a9190620004cf565b506040518060400160405280600281526020017f5a3100000000000000000000000000000000000000000000000000000000000081525060059081620000919190620004cf565b5063635ee5d06009556363715ad0600a55348015620000af57600080fd5b506040516200535c3803806200535c8339818101604052810190620000d5919062000620565b600e604051602001620000e991906200078c565b60405160208183030381529060405262000109816200017260201b60201c565b506200012a6200011e6200018760201b60201c565b6200018f60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620007bf565b8060029081620001839190620004cf565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d757607f821691505b602082108103620002ed57620002ec6200028f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000318565b62000363868362000318565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003b0620003aa620003a4846200037b565b62000385565b6200037b565b9050919050565b6000819050919050565b620003cc836200038f565b620003e4620003db82620003b7565b84845462000325565b825550505050565b600090565b620003fb620003ec565b62000408818484620003c1565b505050565b5b81811015620004305762000424600082620003f1565b6001810190506200040e565b5050565b601f8211156200047f576200044981620002f3565b620004548462000308565b8101602085101562000464578190505b6200047c620004738562000308565b8301826200040d565b50505b505050565b600082821c905092915050565b6000620004a46000198460080262000484565b1980831691505092915050565b6000620004bf838362000491565b9150826002028217905092915050565b620004da8262000255565b67ffffffffffffffff811115620004f657620004f562000260565b5b620005028254620002be565b6200050f82828562000434565b600060209050601f83116001811462000547576000841562000532578287015190505b6200053e8582620004b1565b865550620005ae565b601f1984166200055786620002f3565b60005b8281101562000581578489015182556001820191506020850194506020810190506200055a565b86831015620005a157848901516200059d601f89168262000491565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005e882620005bb565b9050919050565b620005fa81620005db565b81146200060657600080fd5b50565b6000815190506200061a81620005ef565b92915050565b600060208284031215620006395762000638620005b6565b5b6000620006498482850162000609565b91505092915050565b600081905092915050565b600081546200066c81620002be565b62000678818662000652565b94506001821660008114620006965760018114620006ac57620006e3565b60ff1983168652811515820286019350620006e3565b620006b785620002f3565b60005b83811015620006db57815481890152600182019150602081019050620006ba565b838801955050505b50505092915050565b7f7b69647d00000000000000000000000000000000000000000000000000000000600082015250565b60006200072460048362000652565b91506200073182620006ec565b600482019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006200077460058362000652565b915062000781826200073c565b600582019050919050565b60006200079a82846200065d565b9150620007a78262000715565b9150620007b48262000765565b915081905092915050565b614b8d80620007cf6000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c806395d89b4111610104578063cdbbd078116100a2578063f04d688f11610071578063f04d688f14610530578063f23a6e611461054e578063f242432a1461057e578063f2fde38b1461059a576101d9565b8063cdbbd078146104a8578063d6a78004146104c6578063dbe7e3bd146104d0578063e985e9c514610500576101d9565b8063a0bcfc7f116100de578063a0bcfc7f14610424578063a22cb46514610440578063b0aa1e041461045c578063bc197c8114610478576101d9565b806395d89b41146103cc5780639abc8320146103ea5780639dc29fac14610408576101d9565b80633b0243ee1161017c5780636ba4c1381161014b5780636ba4c1381461036a578063715018a61461038657806373f42561146103905780638da5cb5b146103ae576101d9565b80633b0243ee146102e25780633ccfa92f146103005780634a1c86b71461031e5780634e1273f41461033a576101d9565b806306fdde03116101b857806306fdde031461025a5780630e89341c1461027857806318160ddd146102a85780632eb2c2d6146102c6576101d9565b8062fdd58e146101de57806301ffc9a71461020e57806305d9f16b1461023e575b600080fd5b6101f860048036038101906101f39190612a00565b6105b6565b6040516102059190612a4f565b60405180910390f35b61022860048036038101906102239190612ac2565b61067e565b6040516102359190612b0a565b60405180910390f35b61025860048036038101906102539190612b25565b610760565b005b610262610820565b60405161026f9190612be2565b60405180910390f35b610292600480360381019061028d9190612c04565b6108ae565b60405161029f9190612be2565b60405180910390f35b6102b0610926565b6040516102bd9190612a4f565b60405180910390f35b6102e060048036038101906102db9190612e2e565b61092c565b005b6102ea6109cd565b6040516102f79190612f0c565b60405180910390f35b6103086109f3565b6040516103159190612a4f565b60405180910390f35b61033860048036038101906103339190612c04565b6109f9565b005b610354600480360381019061034f9190612fea565b610a7f565b6040516103619190613120565b60405180910390f35b610384600480360381019061037f919061319d565b610b98565b005b61038e610f1a565b005b610398610fa2565b6040516103a59190612a4f565b60405180910390f35b6103b6610fa8565b6040516103c39190612f0c565b60405180910390f35b6103d4610fd2565b6040516103e19190612be2565b60405180910390f35b6103f2611060565b6040516103ff9190612be2565b60405180910390f35b610422600480360381019061041d9190612a00565b6110ee565b005b61043e60048036038101906104399190613240565b6110fe565b005b61045a600480360381019061045591906132b9565b611190565b005b61047660048036038101906104719190612c04565b6111a6565b005b610492600480360381019061048d919061334f565b61122c565b60405161049f919061343a565b60405180910390f35b6104b0611244565b6040516104bd9190612f0c565b60405180910390f35b6104ce61126a565b005b6104ea60048036038101906104e59190612c04565b6113a5565b6040516104f79190612b0a565b60405180910390f35b61051a60048036038101906105159190613455565b6113c5565b6040516105279190612b0a565b60405180910390f35b610538611459565b6040516105459190612a4f565b60405180910390f35b61056860048036038101906105639190613495565b61145f565b604051610575919061343a565b60405180910390f35b6105986004803603810190610593919061352f565b611475565b005b6105b460048036038101906105af9190612b25565b611516565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d90613638565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075957506107588261160d565b5b9050919050565b610768611677565b73ffffffffffffffffffffffffffffffffffffffff16610786610fa8565b73ffffffffffffffffffffffffffffffffffffffff16146107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d3906136a4565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6004805461082d906136f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610859906136f3565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b505050505081565b6060600082146108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90613770565b60405180910390fd5b600e6108ff600061167f565b6040516020016109109291906138b0565b6040516020818303038152906040529050919050565b600b5481565b610934611677565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061097a575061097985610974611677565b6113c5565b5b6109b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b090613951565b60405180910390fd5b6109c685858585856117df565b5050505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b610a01611677565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610fa8565b73ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c906136a4565b60405180910390fd5b80600a8190555050565b60608151835114610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc906139e3565b60405180910390fd5b6000835167ffffffffffffffff811115610ae257610ae1612c36565b5b604051908082528060200260200182016040528015610b105781602001602082028036833780820191505090505b50905060005b8451811015610b8d57610b5d858281518110610b3557610b34613a03565b5b6020026020010151858381518110610b5057610b4f613a03565b5b60200260200101516105b6565b828281518110610b7057610b6f613a03565b5b60200260200101818152505080610b8690613a61565b9050610b16565b508091505092915050565b600d60149054906101000a900460ff1615610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613af5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613b61565b60405180910390fd5b60fa8282905010610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390613bcd565b60405180910390fd5b6009544211610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790613c39565b60405180910390fd5b600a544210610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613ca5565b60405180910390fd5b610d2c611b00565b60005b82829050811015610ecc573373ffffffffffffffffffffffffffffffffffffffff1660086000858585818110610d6857610d67613a03565b5b90506020020135815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90613d37565b60405180910390fd5b6001151560076000858585818110610e0f57610e0e613a03565b5b90506020020135815260200190815260200160002060009054906101000a900460ff16151503610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90613da3565b60405180910390fd5b600160076000858585818110610e8d57610e8c613a03565b5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ec490613a61565b915050610d2f565b50610efa33600084849050604051602001610ee690613de9565b604051602081830303815290604052611c3a565b81819050600b6000828254610f0f9190613dfe565b925050819055505050565b610f22611677565b73ffffffffffffffffffffffffffffffffffffffff16610f40610fa8565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906136a4565b60405180910390fd5b610fa06000611dea565b565b600c5481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610fdf906136f3565b80601f016020809104026020016040519081016040528092919081815260200182805461100b906136f3565b80156110585780601f1061102d57610100808354040283529160200191611058565b820191906000526020600020905b81548152906001019060200180831161103b57829003601f168201915b505050505081565b600e805461106d906136f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611099906136f3565b80156110e65780601f106110bb576101008083540402835291602001916110e6565b820191906000526020600020905b8154815290600101906020018083116110c957829003601f168201915b505050505081565b6110fa82600083611eb0565b5050565b611106611677565b73ffffffffffffffffffffffffffffffffffffffff16611124610fa8565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611171906136a4565b60405180910390fd5b8181600e918261118b929190613fd4565b505050565b6111a261119b611677565b83836120f6565b5050565b6111ae611677565b73ffffffffffffffffffffffffffffffffffffffff166111cc610fa8565b73ffffffffffffffffffffffffffffffffffffffff1614611222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611219906136a4565b60405180910390fd5b8060098190555050565b600063bc197c8160e01b905098975050505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611272611677565b73ffffffffffffffffffffffffffffffffffffffff16611290610fa8565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd906136a4565b60405180910390fd5b600d60149054906101000a900460ff1615611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d906140f0565b60405180910390fd5b6000600b546127106113489190614110565b905080600c8190555061137b3060008360405160200161136790614190565b604051602081830303815290604052611c3a565b61138730600083611eb0565b6001600d60146101000a81548160ff02191690831515021790555050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60095481565b600063f23a6e6160e01b90509695505050505050565b61147d611677565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806114c357506114c2856114bd611677565b6113c5565b5b611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990613951565b60405180910390fd5b61150f8585858585612262565b5050505050565b61151e611677565b73ffffffffffffffffffffffffffffffffffffffff1661153c610fa8565b73ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611589906136a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614217565b60405180910390fd5b61160a81611dea565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6060600082036116c6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506117da565b600082905060005b600082146116f85780806116e190613a61565b915050600a826116f19190614266565b91506116ce565b60008167ffffffffffffffff81111561171457611713612c36565b5b6040519080825280601f01601f1916602001820160405280156117465781602001600182028036833780820191505090505b5090505b600085146117d35760018261175f9190614110565b9150600a8561176e9190614297565b603061177a9190613dfe565b60f81b8183815181106117905761178f613a03565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856117cc9190614266565b945061174a565b8093505050505b919050565b8151835114611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a9061433a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611892576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611889906143cc565b60405180910390fd5b600061189c611677565b90506118ac8187878787876124fd565b60005b8451811015611a5d5760008582815181106118cd576118cc613a03565b5b6020026020010151905060008583815181106118ec576118eb613a03565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561198d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119849061445e565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a429190613dfe565b9250508190555050505080611a5690613a61565b90506118af565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ad492919061447e565b60405180910390a4611aea818787878787612505565b611af881878787878761250d565b505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1663438b6300336040518263ffffffff1660e01b8152600401611b629190612f0c565b600060405180830381865afa158015611b7f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611ba89190614561565b905060005b8151811015611c35573360086000848481518110611bce57611bcd613a03565b5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080611c2d90613a61565b915050611bad565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca09061461c565b60405180910390fd5b6000611cb3611677565b90506000611cc0856126e4565b90506000611ccd856126e4565b9050611cde836000898585896124fd565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d3d9190613dfe565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611dbb92919061463c565b60405180910390a4611dd283600089858589612505565b611de18360008989898961275e565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f16906146d7565b60405180910390fd5b6000611f29611677565b90506000611f36846126e4565b90506000611f43846126e4565b9050611f63838760008585604051806020016040528060008152506124fd565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff190614769565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516120c792919061463c565b60405180910390a46120ed84886000868660405180602001604052806000815250612505565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b906147fb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122559190612b0a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c8906143cc565b60405180910390fd5b60006122db611677565b905060006122e8856126e4565b905060006122f5856126e4565b90506123058389898585896124fd565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561239c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123939061445e565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124519190613dfe565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516124ce92919061463c565b60405180910390a46124e4848a8a86868a612505565b6124f2848a8a8a8a8a61275e565b505050505050505050565b505050505050565b505050505050565b61252c8473ffffffffffffffffffffffffffffffffffffffff16612935565b156126dc578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612572959493929190614870565b6020604051808303816000875af19250505080156125ae57506040513d601f19601f820116820180604052508101906125ab91906148ed565b60015b612653576125ba614927565b806308c379a00361261657506125ce614949565b806125d95750612618565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260d9190612be2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264a90614a4b565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190614add565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561270357612702612c36565b5b6040519080825280602002602001820160405280156127315781602001602082028036833780820191505090505b509050828160008151811061274957612748613a03565b5b60200260200101818152505080915050919050565b61277d8473ffffffffffffffffffffffffffffffffffffffff16612935565b1561292d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016127c3959493929190614afd565b6020604051808303816000875af19250505080156127ff57506040513d601f19601f820116820180604052508101906127fc91906148ed565b60015b6128a45761280b614927565b806308c379a003612867575061281f614949565b8061282a5750612869565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285e9190612be2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289b90614a4b565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461292b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292290614add565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129978261296c565b9050919050565b6129a78161298c565b81146129b257600080fd5b50565b6000813590506129c48161299e565b92915050565b6000819050919050565b6129dd816129ca565b81146129e857600080fd5b50565b6000813590506129fa816129d4565b92915050565b60008060408385031215612a1757612a16612962565b5b6000612a25858286016129b5565b9250506020612a36858286016129eb565b9150509250929050565b612a49816129ca565b82525050565b6000602082019050612a646000830184612a40565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a9f81612a6a565b8114612aaa57600080fd5b50565b600081359050612abc81612a96565b92915050565b600060208284031215612ad857612ad7612962565b5b6000612ae684828501612aad565b91505092915050565b60008115159050919050565b612b0481612aef565b82525050565b6000602082019050612b1f6000830184612afb565b92915050565b600060208284031215612b3b57612b3a612962565b5b6000612b49848285016129b5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b8c578082015181840152602081019050612b71565b60008484015250505050565b6000601f19601f8301169050919050565b6000612bb482612b52565b612bbe8185612b5d565b9350612bce818560208601612b6e565b612bd781612b98565b840191505092915050565b60006020820190508181036000830152612bfc8184612ba9565b905092915050565b600060208284031215612c1a57612c19612962565b5b6000612c28848285016129eb565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c6e82612b98565b810181811067ffffffffffffffff82111715612c8d57612c8c612c36565b5b80604052505050565b6000612ca0612958565b9050612cac8282612c65565b919050565b600067ffffffffffffffff821115612ccc57612ccb612c36565b5b602082029050602081019050919050565b600080fd5b6000612cf5612cf084612cb1565b612c96565b90508083825260208201905060208402830185811115612d1857612d17612cdd565b5b835b81811015612d415780612d2d88826129eb565b845260208401935050602081019050612d1a565b5050509392505050565b600082601f830112612d6057612d5f612c31565b5b8135612d70848260208601612ce2565b91505092915050565b600080fd5b600067ffffffffffffffff821115612d9957612d98612c36565b5b612da282612b98565b9050602081019050919050565b82818337600083830152505050565b6000612dd1612dcc84612d7e565b612c96565b905082815260208101848484011115612ded57612dec612d79565b5b612df8848285612daf565b509392505050565b600082601f830112612e1557612e14612c31565b5b8135612e25848260208601612dbe565b91505092915050565b600080600080600060a08688031215612e4a57612e49612962565b5b6000612e58888289016129b5565b9550506020612e69888289016129b5565b945050604086013567ffffffffffffffff811115612e8a57612e89612967565b5b612e9688828901612d4b565b935050606086013567ffffffffffffffff811115612eb757612eb6612967565b5b612ec388828901612d4b565b925050608086013567ffffffffffffffff811115612ee457612ee3612967565b5b612ef088828901612e00565b9150509295509295909350565b612f068161298c565b82525050565b6000602082019050612f216000830184612efd565b92915050565b600067ffffffffffffffff821115612f4257612f41612c36565b5b602082029050602081019050919050565b6000612f66612f6184612f27565b612c96565b90508083825260208201905060208402830185811115612f8957612f88612cdd565b5b835b81811015612fb25780612f9e88826129b5565b845260208401935050602081019050612f8b565b5050509392505050565b600082601f830112612fd157612fd0612c31565b5b8135612fe1848260208601612f53565b91505092915050565b6000806040838503121561300157613000612962565b5b600083013567ffffffffffffffff81111561301f5761301e612967565b5b61302b85828601612fbc565b925050602083013567ffffffffffffffff81111561304c5761304b612967565b5b61305885828601612d4b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613097816129ca565b82525050565b60006130a9838361308e565b60208301905092915050565b6000602082019050919050565b60006130cd82613062565b6130d7818561306d565b93506130e28361307e565b8060005b838110156131135781516130fa888261309d565b9750613105836130b5565b9250506001810190506130e6565b5085935050505092915050565b6000602082019050818103600083015261313a81846130c2565b905092915050565b600080fd5b60008083601f84011261315d5761315c612c31565b5b8235905067ffffffffffffffff81111561317a57613179613142565b5b60208301915083602082028301111561319657613195612cdd565b5b9250929050565b600080602083850312156131b4576131b3612962565b5b600083013567ffffffffffffffff8111156131d2576131d1612967565b5b6131de85828601613147565b92509250509250929050565b60008083601f840112613200576131ff612c31565b5b8235905067ffffffffffffffff81111561321d5761321c613142565b5b60208301915083600182028301111561323957613238612cdd565b5b9250929050565b6000806020838503121561325757613256612962565b5b600083013567ffffffffffffffff81111561327557613274612967565b5b613281858286016131ea565b92509250509250929050565b61329681612aef565b81146132a157600080fd5b50565b6000813590506132b38161328d565b92915050565b600080604083850312156132d0576132cf612962565b5b60006132de858286016129b5565b92505060206132ef858286016132a4565b9150509250929050565b60008083601f84011261330f5761330e612c31565b5b8235905067ffffffffffffffff81111561332c5761332b613142565b5b60208301915083600182028301111561334857613347612cdd565b5b9250929050565b60008060008060008060008060a0898b03121561336f5761336e612962565b5b600061337d8b828c016129b5565b985050602061338e8b828c016129b5565b975050604089013567ffffffffffffffff8111156133af576133ae612967565b5b6133bb8b828c01613147565b9650965050606089013567ffffffffffffffff8111156133de576133dd612967565b5b6133ea8b828c01613147565b9450945050608089013567ffffffffffffffff81111561340d5761340c612967565b5b6134198b828c016132f9565b92509250509295985092959890939650565b61343481612a6a565b82525050565b600060208201905061344f600083018461342b565b92915050565b6000806040838503121561346c5761346b612962565b5b600061347a858286016129b5565b925050602061348b858286016129b5565b9150509250929050565b60008060008060008060a087890312156134b2576134b1612962565b5b60006134c089828a016129b5565b96505060206134d189828a016129b5565b95505060406134e289828a016129eb565b94505060606134f389828a016129eb565b935050608087013567ffffffffffffffff81111561351457613513612967565b5b61352089828a016132f9565b92509250509295509295509295565b600080600080600060a0868803121561354b5761354a612962565b5b6000613559888289016129b5565b955050602061356a888289016129b5565b945050604061357b888289016129eb565b935050606061358c888289016129eb565b925050608086013567ffffffffffffffff8111156135ad576135ac612967565b5b6135b988828901612e00565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000613622602a83612b5d565b915061362d826135c6565b604082019050919050565b6000602082019050818103600083015261365181613615565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061368e602083612b5d565b915061369982613658565b602082019050919050565b600060208201905081810360008301526136bd81613681565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061370b57607f821691505b60208210810361371e5761371d6136c4565b5b50919050565b7f54797065206e6f74207265636f676e697a656400000000000000000000000000600082015250565b600061375a601383612b5d565b915061376582613724565b602082019050919050565b600060208201905081810360008301526137898161374d565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546137bd816136f3565b6137c78186613790565b945060018216600081146137e257600181146137f75761382a565b60ff198316865281151582028601935061382a565b6138008561379b565b60005b8381101561382257815481890152600182019150602081019050613803565b838801955050505b50505092915050565b600061383e82612b52565b6138488185613790565b9350613858818560208601612b6e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061389a600583613790565b91506138a582613864565b600582019050919050565b60006138bc82856137b0565b91506138c88284613833565b91506138d38261388d565b91508190509392505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b600061393b602f83612b5d565b9150613946826138df565b604082019050919050565b6000602082019050818103600083015261396a8161392e565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006139cd602983612b5d565b91506139d882613971565b604082019050919050565b600060208201905081810360008301526139fc816139c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a6c826129ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a9e57613a9d613a32565b5b600182019050919050565b7f4e6f20636c61696d73206166746572206275726e000000000000000000000000600082015250565b6000613adf601483612b5d565b9150613aea82613aa9565b602082019050919050565b60006020820190508181036000830152613b0e81613ad2565b9050919050565b7f454f4173206f6e6c790000000000000000000000000000000000000000000000600082015250565b6000613b4b600983612b5d565b9150613b5682613b15565b602082019050919050565b60006020820190508181036000830152613b7a81613b3e565b9050919050565b7f546f6f206d616e79206164647265737365730000000000000000000000000000600082015250565b6000613bb7601283612b5d565b9150613bc282613b81565b602082019050919050565b60006020820190508181036000830152613be681613baa565b9050919050565b7f50617469656e6365210000000000000000000000000000000000000000000000600082015250565b6000613c23600983612b5d565b9150613c2e82613bed565b602082019050919050565b60006020820190508181036000830152613c5281613c16565b9050919050565b7f546f6f206c617465210000000000000000000000000000000000000000000000600082015250565b6000613c8f600983612b5d565b9150613c9a82613c59565b602082019050919050565b60006020820190508181036000830152613cbe81613c82565b9050919050565b7f43616e277420636c61696d20697420696620796f7520646f6e2774206f776e2060008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d21602283612b5d565b9150613d2c82613cc5565b604082019050919050565b60006020820190508181036000830152613d5081613d14565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000613d8d600f83612b5d565b9150613d9882613d57565b602082019050919050565b60006020820190508181036000830152613dbc81613d80565b9050919050565b50565b6000613dd3600083613790565b9150613dde82613dc3565b600082019050919050565b6000613df482613dc6565b9150819050919050565b6000613e09826129ca565b9150613e14836129ca565b9250828201905080821115613e2c57613e2b613a32565b5b92915050565b600082905092915050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613e8a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613e4d565b613e948683613e4d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613ed1613ecc613ec7846129ca565b613eac565b6129ca565b9050919050565b6000819050919050565b613eeb83613eb6565b613eff613ef782613ed8565b848454613e5a565b825550505050565b600090565b613f14613f07565b613f1f818484613ee2565b505050565b5b81811015613f4357613f38600082613f0c565b600181019050613f25565b5050565b601f821115613f8857613f598161379b565b613f6284613e3d565b81016020851015613f71578190505b613f85613f7d85613e3d565b830182613f24565b50505b505050565b600082821c905092915050565b6000613fab60001984600802613f8d565b1980831691505092915050565b6000613fc48383613f9a565b9150826002028217905092915050565b613fde8383613e32565b67ffffffffffffffff811115613ff757613ff6612c36565b5b61400182546136f3565b61400c828285613f47565b6000601f83116001811461403b5760008415614029578287013590505b6140338582613fb8565b86555061409b565b601f1984166140498661379b565b60005b828110156140715784890135825560018201915060208501945060208101905061404c565b8683101561408e578489013561408a601f891682613f9a565b8355505b6001600288020188555050505b50505050505050565b7f416c7265616479206275726e65642e0000000000000000000000000000000000600082015250565b60006140da600f83612b5d565b91506140e5826140a4565b602082019050919050565b60006020820190508181036000830152614109816140cd565b9050919050565b600061411b826129ca565b9150614126836129ca565b925082820390508181111561413e5761413d613a32565b5b92915050565b7f6275726e2c626162792c6275726e000000000000000000000000000000000000600082015250565b600061417a600e83613790565b915061418582614144565b600e82019050919050565b600061419b8261416d565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614201602683612b5d565b915061420c826141a5565b604082019050919050565b60006020820190508181036000830152614230816141f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614271826129ca565b915061427c836129ca565b92508261428c5761428b614237565b5b828204905092915050565b60006142a2826129ca565b91506142ad836129ca565b9250826142bd576142bc614237565b5b828206905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614324602883612b5d565b915061432f826142c8565b604082019050919050565b6000602082019050818103600083015261435381614317565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006143b6602583612b5d565b91506143c18261435a565b604082019050919050565b600060208201905081810360008301526143e5816143a9565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614448602a83612b5d565b9150614453826143ec565b604082019050919050565b600060208201905081810360008301526144778161443b565b9050919050565b6000604082019050818103600083015261449881856130c2565b905081810360208301526144ac81846130c2565b90509392505050565b6000815190506144c4816129d4565b92915050565b60006144dd6144d884612cb1565b612c96565b90508083825260208201905060208402830185811115614500576144ff612cdd565b5b835b81811015614529578061451588826144b5565b845260208401935050602081019050614502565b5050509392505050565b600082601f83011261454857614547612c31565b5b81516145588482602086016144ca565b91505092915050565b60006020828403121561457757614576612962565b5b600082015167ffffffffffffffff81111561459557614594612967565b5b6145a184828501614533565b91505092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614606602183612b5d565b9150614611826145aa565b604082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b60006040820190506146516000830185612a40565b61465e6020830184612a40565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006146c1602383612b5d565b91506146cc82614665565b604082019050919050565b600060208201905081810360008301526146f0816146b4565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614753602483612b5d565b915061475e826146f7565b604082019050919050565b6000602082019050818103600083015261478281614746565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006147e5602983612b5d565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148428261481b565b61484c8185614826565b935061485c818560208601612b6e565b61486581612b98565b840191505092915050565b600060a0820190506148856000830188612efd565b6148926020830187612efd565b81810360408301526148a481866130c2565b905081810360608301526148b881856130c2565b905081810360808301526148cc8184614837565b90509695505050505050565b6000815190506148e781612a96565b92915050565b60006020828403121561490357614902612962565b5b6000614911848285016148d8565b91505092915050565b60008160e01c9050919050565b600060033d11156149465760046000803e61494360005161491a565b90505b90565b600060443d106149d65761495b612958565b60043d036004823e80513d602482011167ffffffffffffffff821117156149835750506149d6565b808201805167ffffffffffffffff8111156149a157505050506149d6565b80602083010160043d0385018111156149be5750505050506149d6565b6149cd82602001850186612c65565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614a35603483612b5d565b9150614a40826149d9565b604082019050919050565b60006020820190508181036000830152614a6481614a28565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614ac7602883612b5d565b9150614ad282614a6b565b604082019050919050565b60006020820190508181036000830152614af681614aba565b9050919050565b600060a082019050614b126000830188612efd565b614b1f6020830187612efd565b614b2c6040830186612a40565b614b396060830185612a40565b8181036080830152614b4b8184614837565b9050969550505050505056fea2646970667358221220519ed6e12219eb0d07f662dc795f7c32dd63748f542238c317642fe966d8bd4664736f6c6343000811003300000000000000000000000031d45de84fde2fb36575085e05754a4932dd5170
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101d95760003560e01c806395d89b4111610104578063cdbbd078116100a2578063f04d688f11610071578063f04d688f14610530578063f23a6e611461054e578063f242432a1461057e578063f2fde38b1461059a576101d9565b8063cdbbd078146104a8578063d6a78004146104c6578063dbe7e3bd146104d0578063e985e9c514610500576101d9565b8063a0bcfc7f116100de578063a0bcfc7f14610424578063a22cb46514610440578063b0aa1e041461045c578063bc197c8114610478576101d9565b806395d89b41146103cc5780639abc8320146103ea5780639dc29fac14610408576101d9565b80633b0243ee1161017c5780636ba4c1381161014b5780636ba4c1381461036a578063715018a61461038657806373f42561146103905780638da5cb5b146103ae576101d9565b80633b0243ee146102e25780633ccfa92f146103005780634a1c86b71461031e5780634e1273f41461033a576101d9565b806306fdde03116101b857806306fdde031461025a5780630e89341c1461027857806318160ddd146102a85780632eb2c2d6146102c6576101d9565b8062fdd58e146101de57806301ffc9a71461020e57806305d9f16b1461023e575b600080fd5b6101f860048036038101906101f39190612a00565b6105b6565b6040516102059190612a4f565b60405180910390f35b61022860048036038101906102239190612ac2565b61067e565b6040516102359190612b0a565b60405180910390f35b61025860048036038101906102539190612b25565b610760565b005b610262610820565b60405161026f9190612be2565b60405180910390f35b610292600480360381019061028d9190612c04565b6108ae565b60405161029f9190612be2565b60405180910390f35b6102b0610926565b6040516102bd9190612a4f565b60405180910390f35b6102e060048036038101906102db9190612e2e565b61092c565b005b6102ea6109cd565b6040516102f79190612f0c565b60405180910390f35b6103086109f3565b6040516103159190612a4f565b60405180910390f35b61033860048036038101906103339190612c04565b6109f9565b005b610354600480360381019061034f9190612fea565b610a7f565b6040516103619190613120565b60405180910390f35b610384600480360381019061037f919061319d565b610b98565b005b61038e610f1a565b005b610398610fa2565b6040516103a59190612a4f565b60405180910390f35b6103b6610fa8565b6040516103c39190612f0c565b60405180910390f35b6103d4610fd2565b6040516103e19190612be2565b60405180910390f35b6103f2611060565b6040516103ff9190612be2565b60405180910390f35b610422600480360381019061041d9190612a00565b6110ee565b005b61043e60048036038101906104399190613240565b6110fe565b005b61045a600480360381019061045591906132b9565b611190565b005b61047660048036038101906104719190612c04565b6111a6565b005b610492600480360381019061048d919061334f565b61122c565b60405161049f919061343a565b60405180910390f35b6104b0611244565b6040516104bd9190612f0c565b60405180910390f35b6104ce61126a565b005b6104ea60048036038101906104e59190612c04565b6113a5565b6040516104f79190612b0a565b60405180910390f35b61051a60048036038101906105159190613455565b6113c5565b6040516105279190612b0a565b60405180910390f35b610538611459565b6040516105459190612a4f565b60405180910390f35b61056860048036038101906105639190613495565b61145f565b604051610575919061343a565b60405180910390f35b6105986004803603810190610593919061352f565b611475565b005b6105b460048036038101906105af9190612b25565b611516565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d90613638565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075957506107588261160d565b5b9050919050565b610768611677565b73ffffffffffffffffffffffffffffffffffffffff16610786610fa8565b73ffffffffffffffffffffffffffffffffffffffff16146107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d3906136a4565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6004805461082d906136f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610859906136f3565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b505050505081565b6060600082146108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90613770565b60405180910390fd5b600e6108ff600061167f565b6040516020016109109291906138b0565b6040516020818303038152906040529050919050565b600b5481565b610934611677565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061097a575061097985610974611677565b6113c5565b5b6109b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b090613951565b60405180910390fd5b6109c685858585856117df565b5050505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b610a01611677565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610fa8565b73ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c906136a4565b60405180910390fd5b80600a8190555050565b60608151835114610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc906139e3565b60405180910390fd5b6000835167ffffffffffffffff811115610ae257610ae1612c36565b5b604051908082528060200260200182016040528015610b105781602001602082028036833780820191505090505b50905060005b8451811015610b8d57610b5d858281518110610b3557610b34613a03565b5b6020026020010151858381518110610b5057610b4f613a03565b5b60200260200101516105b6565b828281518110610b7057610b6f613a03565b5b60200260200101818152505080610b8690613a61565b9050610b16565b508091505092915050565b600d60149054906101000a900460ff1615610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613af5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613b61565b60405180910390fd5b60fa8282905010610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390613bcd565b60405180910390fd5b6009544211610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790613c39565b60405180910390fd5b600a544210610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613ca5565b60405180910390fd5b610d2c611b00565b60005b82829050811015610ecc573373ffffffffffffffffffffffffffffffffffffffff1660086000858585818110610d6857610d67613a03565b5b90506020020135815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90613d37565b60405180910390fd5b6001151560076000858585818110610e0f57610e0e613a03565b5b90506020020135815260200190815260200160002060009054906101000a900460ff16151503610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90613da3565b60405180910390fd5b600160076000858585818110610e8d57610e8c613a03565b5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ec490613a61565b915050610d2f565b50610efa33600084849050604051602001610ee690613de9565b604051602081830303815290604052611c3a565b81819050600b6000828254610f0f9190613dfe565b925050819055505050565b610f22611677565b73ffffffffffffffffffffffffffffffffffffffff16610f40610fa8565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906136a4565b60405180910390fd5b610fa06000611dea565b565b600c5481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610fdf906136f3565b80601f016020809104026020016040519081016040528092919081815260200182805461100b906136f3565b80156110585780601f1061102d57610100808354040283529160200191611058565b820191906000526020600020905b81548152906001019060200180831161103b57829003601f168201915b505050505081565b600e805461106d906136f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611099906136f3565b80156110e65780601f106110bb576101008083540402835291602001916110e6565b820191906000526020600020905b8154815290600101906020018083116110c957829003601f168201915b505050505081565b6110fa82600083611eb0565b5050565b611106611677565b73ffffffffffffffffffffffffffffffffffffffff16611124610fa8565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611171906136a4565b60405180910390fd5b8181600e918261118b929190613fd4565b505050565b6111a261119b611677565b83836120f6565b5050565b6111ae611677565b73ffffffffffffffffffffffffffffffffffffffff166111cc610fa8565b73ffffffffffffffffffffffffffffffffffffffff1614611222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611219906136a4565b60405180910390fd5b8060098190555050565b600063bc197c8160e01b905098975050505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611272611677565b73ffffffffffffffffffffffffffffffffffffffff16611290610fa8565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd906136a4565b60405180910390fd5b600d60149054906101000a900460ff1615611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d906140f0565b60405180910390fd5b6000600b546127106113489190614110565b905080600c8190555061137b3060008360405160200161136790614190565b604051602081830303815290604052611c3a565b61138730600083611eb0565b6001600d60146101000a81548160ff02191690831515021790555050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60095481565b600063f23a6e6160e01b90509695505050505050565b61147d611677565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806114c357506114c2856114bd611677565b6113c5565b5b611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990613951565b60405180910390fd5b61150f8585858585612262565b5050505050565b61151e611677565b73ffffffffffffffffffffffffffffffffffffffff1661153c610fa8565b73ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611589906136a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614217565b60405180910390fd5b61160a81611dea565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6060600082036116c6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506117da565b600082905060005b600082146116f85780806116e190613a61565b915050600a826116f19190614266565b91506116ce565b60008167ffffffffffffffff81111561171457611713612c36565b5b6040519080825280601f01601f1916602001820160405280156117465781602001600182028036833780820191505090505b5090505b600085146117d35760018261175f9190614110565b9150600a8561176e9190614297565b603061177a9190613dfe565b60f81b8183815181106117905761178f613a03565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856117cc9190614266565b945061174a565b8093505050505b919050565b8151835114611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a9061433a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611892576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611889906143cc565b60405180910390fd5b600061189c611677565b90506118ac8187878787876124fd565b60005b8451811015611a5d5760008582815181106118cd576118cc613a03565b5b6020026020010151905060008583815181106118ec576118eb613a03565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561198d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119849061445e565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a429190613dfe565b9250508190555050505080611a5690613a61565b90506118af565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ad492919061447e565b60405180910390a4611aea818787878787612505565b611af881878787878761250d565b505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1663438b6300336040518263ffffffff1660e01b8152600401611b629190612f0c565b600060405180830381865afa158015611b7f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611ba89190614561565b905060005b8151811015611c35573360086000848481518110611bce57611bcd613a03565b5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080611c2d90613a61565b915050611bad565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca09061461c565b60405180910390fd5b6000611cb3611677565b90506000611cc0856126e4565b90506000611ccd856126e4565b9050611cde836000898585896124fd565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d3d9190613dfe565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611dbb92919061463c565b60405180910390a4611dd283600089858589612505565b611de18360008989898961275e565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f16906146d7565b60405180910390fd5b6000611f29611677565b90506000611f36846126e4565b90506000611f43846126e4565b9050611f63838760008585604051806020016040528060008152506124fd565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff190614769565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516120c792919061463c565b60405180910390a46120ed84886000868660405180602001604052806000815250612505565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b906147fb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122559190612b0a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c8906143cc565b60405180910390fd5b60006122db611677565b905060006122e8856126e4565b905060006122f5856126e4565b90506123058389898585896124fd565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561239c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123939061445e565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124519190613dfe565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516124ce92919061463c565b60405180910390a46124e4848a8a86868a612505565b6124f2848a8a8a8a8a61275e565b505050505050505050565b505050505050565b505050505050565b61252c8473ffffffffffffffffffffffffffffffffffffffff16612935565b156126dc578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612572959493929190614870565b6020604051808303816000875af19250505080156125ae57506040513d601f19601f820116820180604052508101906125ab91906148ed565b60015b612653576125ba614927565b806308c379a00361261657506125ce614949565b806125d95750612618565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260d9190612be2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264a90614a4b565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190614add565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561270357612702612c36565b5b6040519080825280602002602001820160405280156127315781602001602082028036833780820191505090505b509050828160008151811061274957612748613a03565b5b60200260200101818152505080915050919050565b61277d8473ffffffffffffffffffffffffffffffffffffffff16612935565b1561292d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016127c3959493929190614afd565b6020604051808303816000875af19250505080156127ff57506040513d601f19601f820116820180604052508101906127fc91906148ed565b60015b6128a45761280b614927565b806308c379a003612867575061281f614949565b8061282a5750612869565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285e9190612be2565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289b90614a4b565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461292b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292290614add565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129978261296c565b9050919050565b6129a78161298c565b81146129b257600080fd5b50565b6000813590506129c48161299e565b92915050565b6000819050919050565b6129dd816129ca565b81146129e857600080fd5b50565b6000813590506129fa816129d4565b92915050565b60008060408385031215612a1757612a16612962565b5b6000612a25858286016129b5565b9250506020612a36858286016129eb565b9150509250929050565b612a49816129ca565b82525050565b6000602082019050612a646000830184612a40565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a9f81612a6a565b8114612aaa57600080fd5b50565b600081359050612abc81612a96565b92915050565b600060208284031215612ad857612ad7612962565b5b6000612ae684828501612aad565b91505092915050565b60008115159050919050565b612b0481612aef565b82525050565b6000602082019050612b1f6000830184612afb565b92915050565b600060208284031215612b3b57612b3a612962565b5b6000612b49848285016129b5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b8c578082015181840152602081019050612b71565b60008484015250505050565b6000601f19601f8301169050919050565b6000612bb482612b52565b612bbe8185612b5d565b9350612bce818560208601612b6e565b612bd781612b98565b840191505092915050565b60006020820190508181036000830152612bfc8184612ba9565b905092915050565b600060208284031215612c1a57612c19612962565b5b6000612c28848285016129eb565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c6e82612b98565b810181811067ffffffffffffffff82111715612c8d57612c8c612c36565b5b80604052505050565b6000612ca0612958565b9050612cac8282612c65565b919050565b600067ffffffffffffffff821115612ccc57612ccb612c36565b5b602082029050602081019050919050565b600080fd5b6000612cf5612cf084612cb1565b612c96565b90508083825260208201905060208402830185811115612d1857612d17612cdd565b5b835b81811015612d415780612d2d88826129eb565b845260208401935050602081019050612d1a565b5050509392505050565b600082601f830112612d6057612d5f612c31565b5b8135612d70848260208601612ce2565b91505092915050565b600080fd5b600067ffffffffffffffff821115612d9957612d98612c36565b5b612da282612b98565b9050602081019050919050565b82818337600083830152505050565b6000612dd1612dcc84612d7e565b612c96565b905082815260208101848484011115612ded57612dec612d79565b5b612df8848285612daf565b509392505050565b600082601f830112612e1557612e14612c31565b5b8135612e25848260208601612dbe565b91505092915050565b600080600080600060a08688031215612e4a57612e49612962565b5b6000612e58888289016129b5565b9550506020612e69888289016129b5565b945050604086013567ffffffffffffffff811115612e8a57612e89612967565b5b612e9688828901612d4b565b935050606086013567ffffffffffffffff811115612eb757612eb6612967565b5b612ec388828901612d4b565b925050608086013567ffffffffffffffff811115612ee457612ee3612967565b5b612ef088828901612e00565b9150509295509295909350565b612f068161298c565b82525050565b6000602082019050612f216000830184612efd565b92915050565b600067ffffffffffffffff821115612f4257612f41612c36565b5b602082029050602081019050919050565b6000612f66612f6184612f27565b612c96565b90508083825260208201905060208402830185811115612f8957612f88612cdd565b5b835b81811015612fb25780612f9e88826129b5565b845260208401935050602081019050612f8b565b5050509392505050565b600082601f830112612fd157612fd0612c31565b5b8135612fe1848260208601612f53565b91505092915050565b6000806040838503121561300157613000612962565b5b600083013567ffffffffffffffff81111561301f5761301e612967565b5b61302b85828601612fbc565b925050602083013567ffffffffffffffff81111561304c5761304b612967565b5b61305885828601612d4b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613097816129ca565b82525050565b60006130a9838361308e565b60208301905092915050565b6000602082019050919050565b60006130cd82613062565b6130d7818561306d565b93506130e28361307e565b8060005b838110156131135781516130fa888261309d565b9750613105836130b5565b9250506001810190506130e6565b5085935050505092915050565b6000602082019050818103600083015261313a81846130c2565b905092915050565b600080fd5b60008083601f84011261315d5761315c612c31565b5b8235905067ffffffffffffffff81111561317a57613179613142565b5b60208301915083602082028301111561319657613195612cdd565b5b9250929050565b600080602083850312156131b4576131b3612962565b5b600083013567ffffffffffffffff8111156131d2576131d1612967565b5b6131de85828601613147565b92509250509250929050565b60008083601f840112613200576131ff612c31565b5b8235905067ffffffffffffffff81111561321d5761321c613142565b5b60208301915083600182028301111561323957613238612cdd565b5b9250929050565b6000806020838503121561325757613256612962565b5b600083013567ffffffffffffffff81111561327557613274612967565b5b613281858286016131ea565b92509250509250929050565b61329681612aef565b81146132a157600080fd5b50565b6000813590506132b38161328d565b92915050565b600080604083850312156132d0576132cf612962565b5b60006132de858286016129b5565b92505060206132ef858286016132a4565b9150509250929050565b60008083601f84011261330f5761330e612c31565b5b8235905067ffffffffffffffff81111561332c5761332b613142565b5b60208301915083600182028301111561334857613347612cdd565b5b9250929050565b60008060008060008060008060a0898b03121561336f5761336e612962565b5b600061337d8b828c016129b5565b985050602061338e8b828c016129b5565b975050604089013567ffffffffffffffff8111156133af576133ae612967565b5b6133bb8b828c01613147565b9650965050606089013567ffffffffffffffff8111156133de576133dd612967565b5b6133ea8b828c01613147565b9450945050608089013567ffffffffffffffff81111561340d5761340c612967565b5b6134198b828c016132f9565b92509250509295985092959890939650565b61343481612a6a565b82525050565b600060208201905061344f600083018461342b565b92915050565b6000806040838503121561346c5761346b612962565b5b600061347a858286016129b5565b925050602061348b858286016129b5565b9150509250929050565b60008060008060008060a087890312156134b2576134b1612962565b5b60006134c089828a016129b5565b96505060206134d189828a016129b5565b95505060406134e289828a016129eb565b94505060606134f389828a016129eb565b935050608087013567ffffffffffffffff81111561351457613513612967565b5b61352089828a016132f9565b92509250509295509295509295565b600080600080600060a0868803121561354b5761354a612962565b5b6000613559888289016129b5565b955050602061356a888289016129b5565b945050604061357b888289016129eb565b935050606061358c888289016129eb565b925050608086013567ffffffffffffffff8111156135ad576135ac612967565b5b6135b988828901612e00565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000613622602a83612b5d565b915061362d826135c6565b604082019050919050565b6000602082019050818103600083015261365181613615565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061368e602083612b5d565b915061369982613658565b602082019050919050565b600060208201905081810360008301526136bd81613681565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061370b57607f821691505b60208210810361371e5761371d6136c4565b5b50919050565b7f54797065206e6f74207265636f676e697a656400000000000000000000000000600082015250565b600061375a601383612b5d565b915061376582613724565b602082019050919050565b600060208201905081810360008301526137898161374d565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546137bd816136f3565b6137c78186613790565b945060018216600081146137e257600181146137f75761382a565b60ff198316865281151582028601935061382a565b6138008561379b565b60005b8381101561382257815481890152600182019150602081019050613803565b838801955050505b50505092915050565b600061383e82612b52565b6138488185613790565b9350613858818560208601612b6e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061389a600583613790565b91506138a582613864565b600582019050919050565b60006138bc82856137b0565b91506138c88284613833565b91506138d38261388d565b91508190509392505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b600061393b602f83612b5d565b9150613946826138df565b604082019050919050565b6000602082019050818103600083015261396a8161392e565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006139cd602983612b5d565b91506139d882613971565b604082019050919050565b600060208201905081810360008301526139fc816139c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a6c826129ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a9e57613a9d613a32565b5b600182019050919050565b7f4e6f20636c61696d73206166746572206275726e000000000000000000000000600082015250565b6000613adf601483612b5d565b9150613aea82613aa9565b602082019050919050565b60006020820190508181036000830152613b0e81613ad2565b9050919050565b7f454f4173206f6e6c790000000000000000000000000000000000000000000000600082015250565b6000613b4b600983612b5d565b9150613b5682613b15565b602082019050919050565b60006020820190508181036000830152613b7a81613b3e565b9050919050565b7f546f6f206d616e79206164647265737365730000000000000000000000000000600082015250565b6000613bb7601283612b5d565b9150613bc282613b81565b602082019050919050565b60006020820190508181036000830152613be681613baa565b9050919050565b7f50617469656e6365210000000000000000000000000000000000000000000000600082015250565b6000613c23600983612b5d565b9150613c2e82613bed565b602082019050919050565b60006020820190508181036000830152613c5281613c16565b9050919050565b7f546f6f206c617465210000000000000000000000000000000000000000000000600082015250565b6000613c8f600983612b5d565b9150613c9a82613c59565b602082019050919050565b60006020820190508181036000830152613cbe81613c82565b9050919050565b7f43616e277420636c61696d20697420696620796f7520646f6e2774206f776e2060008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d21602283612b5d565b9150613d2c82613cc5565b604082019050919050565b60006020820190508181036000830152613d5081613d14565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000613d8d600f83612b5d565b9150613d9882613d57565b602082019050919050565b60006020820190508181036000830152613dbc81613d80565b9050919050565b50565b6000613dd3600083613790565b9150613dde82613dc3565b600082019050919050565b6000613df482613dc6565b9150819050919050565b6000613e09826129ca565b9150613e14836129ca565b9250828201905080821115613e2c57613e2b613a32565b5b92915050565b600082905092915050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613e8a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613e4d565b613e948683613e4d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613ed1613ecc613ec7846129ca565b613eac565b6129ca565b9050919050565b6000819050919050565b613eeb83613eb6565b613eff613ef782613ed8565b848454613e5a565b825550505050565b600090565b613f14613f07565b613f1f818484613ee2565b505050565b5b81811015613f4357613f38600082613f0c565b600181019050613f25565b5050565b601f821115613f8857613f598161379b565b613f6284613e3d565b81016020851015613f71578190505b613f85613f7d85613e3d565b830182613f24565b50505b505050565b600082821c905092915050565b6000613fab60001984600802613f8d565b1980831691505092915050565b6000613fc48383613f9a565b9150826002028217905092915050565b613fde8383613e32565b67ffffffffffffffff811115613ff757613ff6612c36565b5b61400182546136f3565b61400c828285613f47565b6000601f83116001811461403b5760008415614029578287013590505b6140338582613fb8565b86555061409b565b601f1984166140498661379b565b60005b828110156140715784890135825560018201915060208501945060208101905061404c565b8683101561408e578489013561408a601f891682613f9a565b8355505b6001600288020188555050505b50505050505050565b7f416c7265616479206275726e65642e0000000000000000000000000000000000600082015250565b60006140da600f83612b5d565b91506140e5826140a4565b602082019050919050565b60006020820190508181036000830152614109816140cd565b9050919050565b600061411b826129ca565b9150614126836129ca565b925082820390508181111561413e5761413d613a32565b5b92915050565b7f6275726e2c626162792c6275726e000000000000000000000000000000000000600082015250565b600061417a600e83613790565b915061418582614144565b600e82019050919050565b600061419b8261416d565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614201602683612b5d565b915061420c826141a5565b604082019050919050565b60006020820190508181036000830152614230816141f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614271826129ca565b915061427c836129ca565b92508261428c5761428b614237565b5b828204905092915050565b60006142a2826129ca565b91506142ad836129ca565b9250826142bd576142bc614237565b5b828206905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614324602883612b5d565b915061432f826142c8565b604082019050919050565b6000602082019050818103600083015261435381614317565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006143b6602583612b5d565b91506143c18261435a565b604082019050919050565b600060208201905081810360008301526143e5816143a9565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614448602a83612b5d565b9150614453826143ec565b604082019050919050565b600060208201905081810360008301526144778161443b565b9050919050565b6000604082019050818103600083015261449881856130c2565b905081810360208301526144ac81846130c2565b90509392505050565b6000815190506144c4816129d4565b92915050565b60006144dd6144d884612cb1565b612c96565b90508083825260208201905060208402830185811115614500576144ff612cdd565b5b835b81811015614529578061451588826144b5565b845260208401935050602081019050614502565b5050509392505050565b600082601f83011261454857614547612c31565b5b81516145588482602086016144ca565b91505092915050565b60006020828403121561457757614576612962565b5b600082015167ffffffffffffffff81111561459557614594612967565b5b6145a184828501614533565b91505092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614606602183612b5d565b9150614611826145aa565b604082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b60006040820190506146516000830185612a40565b61465e6020830184612a40565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006146c1602383612b5d565b91506146cc82614665565b604082019050919050565b600060208201905081810360008301526146f0816146b4565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614753602483612b5d565b915061475e826146f7565b604082019050919050565b6000602082019050818103600083015261478281614746565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006147e5602983612b5d565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148428261481b565b61484c8185614826565b935061485c818560208601612b6e565b61486581612b98565b840191505092915050565b600060a0820190506148856000830188612efd565b6148926020830187612efd565b81810360408301526148a481866130c2565b905081810360608301526148b881856130c2565b905081810360808301526148cc8184614837565b90509695505050505050565b6000815190506148e781612a96565b92915050565b60006020828403121561490357614902612962565b5b6000614911848285016148d8565b91505092915050565b60008160e01c9050919050565b600060033d11156149465760046000803e61494360005161491a565b90505b90565b600060443d106149d65761495b612958565b60043d036004823e80513d602482011167ffffffffffffffff821117156149835750506149d6565b808201805167ffffffffffffffff8111156149a157505050506149d6565b80602083010160043d0385018111156149be5750505050506149d6565b6149cd82602001850186612c65565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614a35603483612b5d565b9150614a40826149d9565b604082019050919050565b60006020820190508181036000830152614a6481614a28565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614ac7602883612b5d565b9150614ad282614a6b565b604082019050919050565b60006020820190508181036000830152614af681614aba565b9050919050565b600060a082019050614b126000830188612efd565b614b1f6020830187612efd565b614b2c6040830186612a40565b614b396060830185612a40565b8181036080830152614b4b8184614837565b9050969550505050505056fea2646970667358221220519ed6e12219eb0d07f662dc795f7c32dd63748f542238c317642fe966d8bd4664736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000031d45de84fde2fb36575085e05754a4932dd5170
-----Decoded View---------------
Arg [0] : _raycAddress (address): 0x31d45de84fdE2fB36575085e05754a4932DD5170
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000031d45de84fde2fb36575085e05754a4932dd5170
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.