Polygon Sponsored slots available. Book your slot here!
Overview
POL Balance
POL Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
ShapesofFreedom
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-02-12 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity >=0.7.0 <0.9.0; /** .---. .-. .-. .--. ,---. ,---. .---. .---. ,---. ,---.,---. ,---. ,---. ,'|"\ .---. ( .-._)| | | | / /\ \ | .-.\ | .-' ( .-._) / .-. ) | .-' | .-'| .-.\ | .-' | .-' | |\ \ / .-. ) |\ /| (_) \ | `-' |/ /__\ \| |-' )| `-. (_) \ | | |(_)| `-. | `-.| `-'/ | `-. | `-. | | \ \ | | |(_)|(\ / | _ \ \ | .-. || __ || |--' | .-' _ \ \ | | | | | .-' | .-'| ( | .-' | .-' | | \ \| | | | (_)\/ | ( `-' ) | | |)|| | |)|| | | `--.( `-' ) \ `-' / | | | | | |\ \ | `--.| `--. /(|`-' /\ `-' / | \ / | `----' /( (_)|_| (_)/( /( __.' `----' )---' )\| )\| |_| \)\ /( __.'/( __.'(__)`--' )---' | |\/| | (__) (__) (__) (_) (__) (__) (__)(__) (__) (_) '-' '-' */ 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); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/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); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/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; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity >=0.7.0 <0.9.0; contract ShapesofFreedom is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public cost = 0.1 ether; uint256 public maxSupply = 1; uint256 public maxMintAmount = 1; bool public paused = false; bool public revealed = true; string public notRevealedUri; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner() { revealed = true; } function burn(uint256 tokenId) public onlyOwner() { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } function setCost(uint256 _newCost) public onlyOwner() { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() { maxMintAmount = _newmaxMintAmount; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620003a1565b5067016345785d8a0000600d556001600e556001600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000ab57600080fd5b5060405162004e6738038062004e678339818101604052810190620000d19190620004cf565b83838160009080519060200190620000eb929190620003a1565b50806001908051906020019062000104929190620003a1565b505050620001276200011b6200015360201b60201c565b6200015b60201b60201c565b62000138826200022160201b60201c565b6200014981620002cc60201b60201c565b50505050620007c4565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002316200015360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002576200037760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a790620005e4565b60405180910390fd5b80600b9080519060200190620002c8929190620003a1565b5050565b620002dc6200015360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003026200037760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200035b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035290620005e4565b60405180910390fd5b806011908051906020019062000373929190620003a1565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003af90620006ac565b90600052602060002090601f016020900481019282620003d357600085556200041f565b82601f10620003ee57805160ff19168380011785556200041f565b828001600101855582156200041f579182015b828111156200041e57825182559160200191906001019062000401565b5b5090506200042e919062000432565b5090565b5b808211156200044d57600081600090555060010162000433565b5090565b60006200046862000462846200062f565b62000606565b9050828152602081018484840111156200048757620004866200077b565b5b6200049484828562000676565b509392505050565b600082601f830112620004b457620004b362000776565b5b8151620004c684826020860162000451565b91505092915050565b60008060008060808587031215620004ec57620004eb62000785565b5b600085015167ffffffffffffffff8111156200050d576200050c62000780565b5b6200051b878288016200049c565b945050602085015167ffffffffffffffff8111156200053f576200053e62000780565b5b6200054d878288016200049c565b935050604085015167ffffffffffffffff81111562000571576200057062000780565b5b6200057f878288016200049c565b925050606085015167ffffffffffffffff811115620005a357620005a262000780565b5b620005b1878288016200049c565b91505092959194509250565b6000620005cc60208362000665565b9150620005d9826200079b565b602082019050919050565b60006020820190508181036000830152620005ff81620005bd565b9050919050565b60006200061262000625565b9050620006208282620006e2565b919050565b6000604051905090565b600067ffffffffffffffff8211156200064d576200064c62000747565b5b62000658826200078a565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200069657808201518184015260208101905062000679565b83811115620006a6576000848401525b50505050565b60006002820490506001821680620006c557607f821691505b60208210811415620006dc57620006db62000718565b5b50919050565b620006ed826200078a565b810181811067ffffffffffffffff821117156200070f576200070e62000747565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61469380620007d46000396000f3fe60806040526004361061021a5760003560e01c806355f804b311610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107a3578063da3ef23f146107ce578063e985e9c5146107f7578063f2c4ce1e14610834578063f2fde38b1461085d5761021a565b8063a22cb465146106d2578063a475b5dd146106fb578063b88d4fde14610712578063c66828621461073b578063c87b56dd146107665761021a565b8063715018a6116100f2578063715018a6146106205780637f00c7a6146106375780638da5cb5b1461066057806395d89b411461068b578063a0712d68146106b65761021a565b806355f804b3146105525780635c975abb1461057b5780636352211e146105a657806370a08231146105e35761021a565b806323b872dd116101a657806342966c681161017557806342966c681461045b578063438b63001461048457806344a0d68a146104c15780634f6ccce7146104ea57806351830227146105275761021a565b806323b872dd146103c25780632f745c59146103eb5780633ccfd60b1461042857806342842e0e146104325761021a565b8063081c8c44116101ed578063081c8c44146102ed578063095ea7b31461031857806313faede61461034157806318160ddd1461036c578063239c70ae146103975761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906132c8565b610886565b60405161025391906138f7565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e919061329b565b610900565b005b34801561029157600080fd5b5061029a610999565b6040516102a79190613912565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d2919061336b565b610a2b565b6040516102e4919061386e565b60405180910390f35b3480156102f957600080fd5b50610302610ab0565b60405161030f9190613912565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061325b565b610b3e565b005b34801561034d57600080fd5b50610356610c56565b6040516103639190613b94565b60405180910390f35b34801561037857600080fd5b50610381610c5c565b60405161038e9190613b94565b60405180910390f35b3480156103a357600080fd5b506103ac610c69565b6040516103b99190613b94565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190613145565b610c6f565b005b3480156103f757600080fd5b50610412600480360381019061040d919061325b565b610ccf565b60405161041f9190613b94565b60405180910390f35b610430610d74565b005b34801561043e57600080fd5b5061045960048036038101906104549190613145565b610e69565b005b34801561046757600080fd5b50610482600480360381019061047d919061336b565b610e89565b005b34801561049057600080fd5b506104ab60048036038101906104a691906130d8565b610f61565b6040516104b891906138d5565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e3919061336b565b61100f565b005b3480156104f657600080fd5b50610511600480360381019061050c919061336b565b611095565b60405161051e9190613b94565b60405180910390f35b34801561053357600080fd5b5061053c611106565b60405161054991906138f7565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613322565b611119565b005b34801561058757600080fd5b506105906111af565b60405161059d91906138f7565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061336b565b6111c2565b6040516105da919061386e565b60405180910390f35b3480156105ef57600080fd5b5061060a600480360381019061060591906130d8565b611274565b6040516106179190613b94565b60405180910390f35b34801561062c57600080fd5b5061063561132c565b005b34801561064357600080fd5b5061065e6004803603810190610659919061336b565b6113b4565b005b34801561066c57600080fd5b5061067561143a565b604051610682919061386e565b60405180910390f35b34801561069757600080fd5b506106a0611464565b6040516106ad9190613912565b60405180910390f35b6106d060048036038101906106cb919061336b565b6114f6565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061321b565b6115e2565b005b34801561070757600080fd5b50610710611763565b005b34801561071e57600080fd5b5061073960048036038101906107349190613198565b6117fc565b005b34801561074757600080fd5b5061075061185e565b60405161075d9190613912565b60405180910390f35b34801561077257600080fd5b5061078d6004803603810190610788919061336b565b6118ec565b60405161079a9190613912565b60405180910390f35b3480156107af57600080fd5b506107b8611a45565b6040516107c59190613b94565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190613322565b611a4b565b005b34801561080357600080fd5b5061081e60048036038101906108199190613105565b611ae1565b60405161082b91906138f7565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613322565b611b75565b005b34801561086957600080fd5b50610884600480360381019061087f91906130d8565b611c0b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f957506108f882611d03565b5b9050919050565b610908611de5565b73ffffffffffffffffffffffffffffffffffffffff1661092661143a565b73ffffffffffffffffffffffffffffffffffffffff161461097c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097390613ab4565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546109a890613e9d565b80601f01602080910402602001604051908101604052809291908181526020018280546109d490613e9d565b8015610a215780601f106109f657610100808354040283529160200191610a21565b820191906000526020600020905b815481529060010190602001808311610a0457829003601f168201915b5050505050905090565b6000610a3682611ded565b610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90613a94565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610abd90613e9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae990613e9d565b8015610b365780601f10610b0b57610100808354040283529160200191610b36565b820191906000526020600020905b815481529060010190602001808311610b1957829003601f168201915b505050505081565b6000610b49826111c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190613b14565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd9611de5565b73ffffffffffffffffffffffffffffffffffffffff161480610c085750610c0781610c02611de5565b611ae1565b5b610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90613a14565b60405180910390fd5b610c518383611e59565b505050565b600d5481565b6000600880549050905090565b600f5481565b610c80610c7a611de5565b82611f12565b610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690613b34565b60405180910390fd5b610cca838383611ff0565b505050565b6000610cda83611274565b8210610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290613934565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d7c611de5565b73ffffffffffffffffffffffffffffffffffffffff16610d9a61143a565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613ab4565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e1690613859565b60006040518083038185875af1925050503d8060008114610e53576040519150601f19603f3d011682016040523d82523d6000602084013e610e58565b606091505b5050905080610e6657600080fd5b50565b610e84838383604051806020016040528060008152506117fc565b505050565b610e91611de5565b73ffffffffffffffffffffffffffffffffffffffff16610eaf61143a565b73ffffffffffffffffffffffffffffffffffffffff1614610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90613ab4565b60405180910390fd5b610f16610f10611de5565b82611f12565b610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90613b74565b60405180910390fd5b610f5e8161224c565b50565b60606000610f6e83611274565b905060008167ffffffffffffffff811115610f8c57610f8b614065565b5b604051908082528060200260200182016040528015610fba5781602001602082028036833780820191505090505b50905060005b8281101561100457610fd28582610ccf565b828281518110610fe557610fe4614036565b5b6020026020010181815250508080610ffc90613f00565b915050610fc0565b508092505050919050565b611017611de5565b73ffffffffffffffffffffffffffffffffffffffff1661103561143a565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290613ab4565b60405180910390fd5b80600d8190555050565b600061109f610c5c565b82106110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790613b54565b60405180910390fd5b600882815481106110f4576110f3614036565b5b90600052602060002001549050919050565b601060019054906101000a900460ff1681565b611121611de5565b73ffffffffffffffffffffffffffffffffffffffff1661113f61143a565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613ab4565b60405180910390fd5b80600b90805190602001906111ab929190612eec565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290613a54565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90613a34565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611334611de5565b73ffffffffffffffffffffffffffffffffffffffff1661135261143a565b73ffffffffffffffffffffffffffffffffffffffff16146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90613ab4565b60405180910390fd5b6113b2600061235d565b565b6113bc611de5565b73ffffffffffffffffffffffffffffffffffffffff166113da61143a565b73ffffffffffffffffffffffffffffffffffffffff1614611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790613ab4565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461147390613e9d565b80601f016020809104026020016040519081016040528092919081815260200182805461149f90613e9d565b80156114ec5780601f106114c1576101008083540402835291602001916114ec565b820191906000526020600020905b8154815290600101906020018083116114cf57829003601f168201915b5050505050905090565b6000611500610c5c565b9050601060009054906101000a900460ff161561151c57600080fd5b6000821161152957600080fd5b600f5482111561153857600080fd5b600e5482826115479190613cd2565b111561155257600080fd5b61155a61143a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115a75781600d5461159a9190613d59565b3410156115a657600080fd5b5b6000600190505b8281116115dd576115ca3382846115c59190613cd2565b612423565b80806115d590613f00565b9150506115ae565b505050565b6115ea611de5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f906139d4565b60405180910390fd5b8060056000611665611de5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611712611de5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175791906138f7565b60405180910390a35050565b61176b611de5565b73ffffffffffffffffffffffffffffffffffffffff1661178961143a565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613ab4565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b61180d611807611de5565b83611f12565b61184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390613b34565b60405180910390fd5b61185884848484612441565b50505050565b600c805461186b90613e9d565b80601f016020809104026020016040519081016040528092919081815260200182805461189790613e9d565b80156118e45780601f106118b9576101008083540402835291602001916118e4565b820191906000526020600020905b8154815290600101906020018083116118c757829003601f168201915b505050505081565b60606118f782611ded565b611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d90613af4565b60405180910390fd5b60001515601060019054906101000a900460ff16151514156119e4576011805461195f90613e9d565b80601f016020809104026020016040519081016040528092919081815260200182805461198b90613e9d565b80156119d85780601f106119ad576101008083540402835291602001916119d8565b820191906000526020600020905b8154815290600101906020018083116119bb57829003601f168201915b50505050509050611a40565b60006119ee61249d565b90506000815111611a0e5760405180602001604052806000815250611a3c565b80611a188461252f565b600c604051602001611a2c93929190613828565b6040516020818303038152906040525b9150505b919050565b600e5481565b611a53611de5565b73ffffffffffffffffffffffffffffffffffffffff16611a7161143a565b73ffffffffffffffffffffffffffffffffffffffff1614611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613ab4565b60405180910390fd5b80600c9080519060200190611add929190612eec565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b7d611de5565b73ffffffffffffffffffffffffffffffffffffffff16611b9b61143a565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890613ab4565b60405180910390fd5b8060119080519060200190611c07929190612eec565b5050565b611c13611de5565b73ffffffffffffffffffffffffffffffffffffffff16611c3161143a565b73ffffffffffffffffffffffffffffffffffffffff1614611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e90613ab4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613974565b60405180910390fd5b611d008161235d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611dde5750611ddd82612690565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ecc836111c2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f1d82611ded565b611f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f53906139f4565b60405180910390fd5b6000611f67836111c2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fd657508373ffffffffffffffffffffffffffffffffffffffff16611fbe84610a2b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fe75750611fe68185611ae1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612010826111c2565b73ffffffffffffffffffffffffffffffffffffffff1614612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90613ad4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd906139b4565b60405180910390fd5b6120e18383836126fa565b6120ec600082611e59565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213c9190613db3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121939190613cd2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612257826111c2565b9050612265816000846126fa565b612270600083611e59565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c09190613db3565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61243d82826040518060200160405280600081525061280e565b5050565b61244c848484611ff0565b61245884848484612869565b612497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248e90613954565b60405180910390fd5b50505050565b6060600b80546124ac90613e9d565b80601f01602080910402602001604051908101604052809291908181526020018280546124d890613e9d565b80156125255780601f106124fa57610100808354040283529160200191612525565b820191906000526020600020905b81548152906001019060200180831161250857829003601f168201915b5050505050905090565b60606000821415612577576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061268b565b600082905060005b600082146125a957808061259290613f00565b915050600a826125a29190613d28565b915061257f565b60008167ffffffffffffffff8111156125c5576125c4614065565b5b6040519080825280601f01601f1916602001820160405280156125f75781602001600182028036833780820191505090505b5090505b60008514612684576001826126109190613db3565b9150600a8561261f9190613f49565b603061262b9190613cd2565b60f81b81838151811061264157612640614036565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561267d9190613d28565b94506125fb565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612705838383612a00565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127485761274381612a05565b612787565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612786576127858382612a4e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ca576127c581612bbb565b612809565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612808576128078282612c8c565b5b5b505050565b6128188383612d0b565b6128256000848484612869565b612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90613954565b60405180910390fd5b505050565b600061288a8473ffffffffffffffffffffffffffffffffffffffff16612ed9565b156129f3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b3611de5565b8786866040518563ffffffff1660e01b81526004016128d59493929190613889565b602060405180830381600087803b1580156128ef57600080fd5b505af192505050801561292057506040513d601f19601f8201168201806040525081019061291d91906132f5565b60015b6129a3573d8060008114612950576040519150601f19603f3d011682016040523d82523d6000602084013e612955565b606091505b5060008151141561299b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299290613954565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129f8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a5b84611274565b612a659190613db3565b9050600060076000848152602001908152602001600020549050818114612b4a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612bcf9190613db3565b9050600060096000848152602001908152602001600020549050600060088381548110612bff57612bfe614036565b5b906000526020600020015490508060088381548110612c2157612c20614036565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c7057612c6f614007565b5b6001900381819060005260206000200160009055905550505050565b6000612c9783611274565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7290613a74565b60405180910390fd5b612d8481611ded565b15612dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbb90613994565b60405180910390fd5b612dd0600083836126fa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e209190613cd2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612ef890613e9d565b90600052602060002090601f016020900481019282612f1a5760008555612f61565b82601f10612f3357805160ff1916838001178555612f61565b82800160010185558215612f61579182015b82811115612f60578251825591602001919060010190612f45565b5b509050612f6e9190612f72565b5090565b5b80821115612f8b576000816000905550600101612f73565b5090565b6000612fa2612f9d84613bd4565b613baf565b905082815260208101848484011115612fbe57612fbd614099565b5b612fc9848285613e5b565b509392505050565b6000612fe4612fdf84613c05565b613baf565b90508281526020810184848401111561300057612fff614099565b5b61300b848285613e5b565b509392505050565b60008135905061302281614601565b92915050565b60008135905061303781614618565b92915050565b60008135905061304c8161462f565b92915050565b6000815190506130618161462f565b92915050565b600082601f83011261307c5761307b614094565b5b813561308c848260208601612f8f565b91505092915050565b600082601f8301126130aa576130a9614094565b5b81356130ba848260208601612fd1565b91505092915050565b6000813590506130d281614646565b92915050565b6000602082840312156130ee576130ed6140a3565b5b60006130fc84828501613013565b91505092915050565b6000806040838503121561311c5761311b6140a3565b5b600061312a85828601613013565b925050602061313b85828601613013565b9150509250929050565b60008060006060848603121561315e5761315d6140a3565b5b600061316c86828701613013565b935050602061317d86828701613013565b925050604061318e868287016130c3565b9150509250925092565b600080600080608085870312156131b2576131b16140a3565b5b60006131c087828801613013565b94505060206131d187828801613013565b93505060406131e2878288016130c3565b925050606085013567ffffffffffffffff8111156132035761320261409e565b5b61320f87828801613067565b91505092959194509250565b60008060408385031215613232576132316140a3565b5b600061324085828601613013565b925050602061325185828601613028565b9150509250929050565b60008060408385031215613272576132716140a3565b5b600061328085828601613013565b9250506020613291858286016130c3565b9150509250929050565b6000602082840312156132b1576132b06140a3565b5b60006132bf84828501613028565b91505092915050565b6000602082840312156132de576132dd6140a3565b5b60006132ec8482850161303d565b91505092915050565b60006020828403121561330b5761330a6140a3565b5b600061331984828501613052565b91505092915050565b600060208284031215613338576133376140a3565b5b600082013567ffffffffffffffff8111156133565761335561409e565b5b61336284828501613095565b91505092915050565b600060208284031215613381576133806140a3565b5b600061338f848285016130c3565b91505092915050565b60006133a4838361380a565b60208301905092915050565b6133b981613de7565b82525050565b60006133ca82613c5b565b6133d48185613c89565b93506133df83613c36565b8060005b838110156134105781516133f78882613398565b975061340283613c7c565b9250506001810190506133e3565b5085935050505092915050565b61342681613df9565b82525050565b600061343782613c66565b6134418185613c9a565b9350613451818560208601613e6a565b61345a816140a8565b840191505092915050565b600061347082613c71565b61347a8185613cb6565b935061348a818560208601613e6a565b613493816140a8565b840191505092915050565b60006134a982613c71565b6134b38185613cc7565b93506134c3818560208601613e6a565b80840191505092915050565b600081546134dc81613e9d565b6134e68186613cc7565b94506001821660008114613501576001811461351257613545565b60ff19831686528186019350613545565b61351b85613c46565b60005b8381101561353d5781548189015260018201915060208101905061351e565b838801955050505b50505092915050565b600061355b602b83613cb6565b9150613566826140b9565b604082019050919050565b600061357e603283613cb6565b915061358982614108565b604082019050919050565b60006135a1602683613cb6565b91506135ac82614157565b604082019050919050565b60006135c4601c83613cb6565b91506135cf826141a6565b602082019050919050565b60006135e7602483613cb6565b91506135f2826141cf565b604082019050919050565b600061360a601983613cb6565b91506136158261421e565b602082019050919050565b600061362d602c83613cb6565b915061363882614247565b604082019050919050565b6000613650603883613cb6565b915061365b82614296565b604082019050919050565b6000613673602a83613cb6565b915061367e826142e5565b604082019050919050565b6000613696602983613cb6565b91506136a182614334565b604082019050919050565b60006136b9602083613cb6565b91506136c482614383565b602082019050919050565b60006136dc602c83613cb6565b91506136e7826143ac565b604082019050919050565b60006136ff602083613cb6565b915061370a826143fb565b602082019050919050565b6000613722602983613cb6565b915061372d82614424565b604082019050919050565b6000613745602f83613cb6565b915061375082614473565b604082019050919050565b6000613768602183613cb6565b9150613773826144c2565b604082019050919050565b600061378b600083613cab565b915061379682614511565b600082019050919050565b60006137ae603183613cb6565b91506137b982614514565b604082019050919050565b60006137d1602c83613cb6565b91506137dc82614563565b604082019050919050565b60006137f4603083613cb6565b91506137ff826145b2565b604082019050919050565b61381381613e51565b82525050565b61382281613e51565b82525050565b6000613834828661349e565b9150613840828561349e565b915061384c82846134cf565b9150819050949350505050565b60006138648261377e565b9150819050919050565b600060208201905061388360008301846133b0565b92915050565b600060808201905061389e60008301876133b0565b6138ab60208301866133b0565b6138b86040830185613819565b81810360608301526138ca818461342c565b905095945050505050565b600060208201905081810360008301526138ef81846133bf565b905092915050565b600060208201905061390c600083018461341d565b92915050565b6000602082019050818103600083015261392c8184613465565b905092915050565b6000602082019050818103600083015261394d8161354e565b9050919050565b6000602082019050818103600083015261396d81613571565b9050919050565b6000602082019050818103600083015261398d81613594565b9050919050565b600060208201905081810360008301526139ad816135b7565b9050919050565b600060208201905081810360008301526139cd816135da565b9050919050565b600060208201905081810360008301526139ed816135fd565b9050919050565b60006020820190508181036000830152613a0d81613620565b9050919050565b60006020820190508181036000830152613a2d81613643565b9050919050565b60006020820190508181036000830152613a4d81613666565b9050919050565b60006020820190508181036000830152613a6d81613689565b9050919050565b60006020820190508181036000830152613a8d816136ac565b9050919050565b60006020820190508181036000830152613aad816136cf565b9050919050565b60006020820190508181036000830152613acd816136f2565b9050919050565b60006020820190508181036000830152613aed81613715565b9050919050565b60006020820190508181036000830152613b0d81613738565b9050919050565b60006020820190508181036000830152613b2d8161375b565b9050919050565b60006020820190508181036000830152613b4d816137a1565b9050919050565b60006020820190508181036000830152613b6d816137c4565b9050919050565b60006020820190508181036000830152613b8d816137e7565b9050919050565b6000602082019050613ba96000830184613819565b92915050565b6000613bb9613bca565b9050613bc58282613ecf565b919050565b6000604051905090565b600067ffffffffffffffff821115613bef57613bee614065565b5b613bf8826140a8565b9050602081019050919050565b600067ffffffffffffffff821115613c2057613c1f614065565b5b613c29826140a8565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cdd82613e51565b9150613ce883613e51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1d57613d1c613f7a565b5b828201905092915050565b6000613d3382613e51565b9150613d3e83613e51565b925082613d4e57613d4d613fa9565b5b828204905092915050565b6000613d6482613e51565b9150613d6f83613e51565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613da857613da7613f7a565b5b828202905092915050565b6000613dbe82613e51565b9150613dc983613e51565b925082821015613ddc57613ddb613f7a565b5b828203905092915050565b6000613df282613e31565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e88578082015181840152602081019050613e6d565b83811115613e97576000848401525b50505050565b60006002820490506001821680613eb557607f821691505b60208210811415613ec957613ec8613fd8565b5b50919050565b613ed8826140a8565b810181811067ffffffffffffffff82111715613ef757613ef6614065565b5b80604052505050565b6000613f0b82613e51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f3e57613f3d613f7a565b5b600182019050919050565b6000613f5482613e51565b9150613f5f83613e51565b925082613f6f57613f6e613fa9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61460a81613de7565b811461461557600080fd5b50565b61462181613df9565b811461462c57600080fd5b50565b61463881613e05565b811461464357600080fd5b50565b61464f81613e51565b811461465a57600080fd5b5056fea26469706673582212201bec685118ceac8df2a1f832f822c9eeb031818f4cb164d8ba61a1dd7ce3483664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000001353686170657320286f662046726565646f6d29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003536f4600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569616e6d6d616c6135776d617233373275687678686d696f7978617072616c6474346f696c736b6f713766796c6179756f6f6a6a6d2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806355f804b311610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107a3578063da3ef23f146107ce578063e985e9c5146107f7578063f2c4ce1e14610834578063f2fde38b1461085d5761021a565b8063a22cb465146106d2578063a475b5dd146106fb578063b88d4fde14610712578063c66828621461073b578063c87b56dd146107665761021a565b8063715018a6116100f2578063715018a6146106205780637f00c7a6146106375780638da5cb5b1461066057806395d89b411461068b578063a0712d68146106b65761021a565b806355f804b3146105525780635c975abb1461057b5780636352211e146105a657806370a08231146105e35761021a565b806323b872dd116101a657806342966c681161017557806342966c681461045b578063438b63001461048457806344a0d68a146104c15780634f6ccce7146104ea57806351830227146105275761021a565b806323b872dd146103c25780632f745c59146103eb5780633ccfd60b1461042857806342842e0e146104325761021a565b8063081c8c44116101ed578063081c8c44146102ed578063095ea7b31461031857806313faede61461034157806318160ddd1461036c578063239c70ae146103975761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906132c8565b610886565b60405161025391906138f7565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e919061329b565b610900565b005b34801561029157600080fd5b5061029a610999565b6040516102a79190613912565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d2919061336b565b610a2b565b6040516102e4919061386e565b60405180910390f35b3480156102f957600080fd5b50610302610ab0565b60405161030f9190613912565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061325b565b610b3e565b005b34801561034d57600080fd5b50610356610c56565b6040516103639190613b94565b60405180910390f35b34801561037857600080fd5b50610381610c5c565b60405161038e9190613b94565b60405180910390f35b3480156103a357600080fd5b506103ac610c69565b6040516103b99190613b94565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190613145565b610c6f565b005b3480156103f757600080fd5b50610412600480360381019061040d919061325b565b610ccf565b60405161041f9190613b94565b60405180910390f35b610430610d74565b005b34801561043e57600080fd5b5061045960048036038101906104549190613145565b610e69565b005b34801561046757600080fd5b50610482600480360381019061047d919061336b565b610e89565b005b34801561049057600080fd5b506104ab60048036038101906104a691906130d8565b610f61565b6040516104b891906138d5565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e3919061336b565b61100f565b005b3480156104f657600080fd5b50610511600480360381019061050c919061336b565b611095565b60405161051e9190613b94565b60405180910390f35b34801561053357600080fd5b5061053c611106565b60405161054991906138f7565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613322565b611119565b005b34801561058757600080fd5b506105906111af565b60405161059d91906138f7565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061336b565b6111c2565b6040516105da919061386e565b60405180910390f35b3480156105ef57600080fd5b5061060a600480360381019061060591906130d8565b611274565b6040516106179190613b94565b60405180910390f35b34801561062c57600080fd5b5061063561132c565b005b34801561064357600080fd5b5061065e6004803603810190610659919061336b565b6113b4565b005b34801561066c57600080fd5b5061067561143a565b604051610682919061386e565b60405180910390f35b34801561069757600080fd5b506106a0611464565b6040516106ad9190613912565b60405180910390f35b6106d060048036038101906106cb919061336b565b6114f6565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061321b565b6115e2565b005b34801561070757600080fd5b50610710611763565b005b34801561071e57600080fd5b5061073960048036038101906107349190613198565b6117fc565b005b34801561074757600080fd5b5061075061185e565b60405161075d9190613912565b60405180910390f35b34801561077257600080fd5b5061078d6004803603810190610788919061336b565b6118ec565b60405161079a9190613912565b60405180910390f35b3480156107af57600080fd5b506107b8611a45565b6040516107c59190613b94565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190613322565b611a4b565b005b34801561080357600080fd5b5061081e60048036038101906108199190613105565b611ae1565b60405161082b91906138f7565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613322565b611b75565b005b34801561086957600080fd5b50610884600480360381019061087f91906130d8565b611c0b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f957506108f882611d03565b5b9050919050565b610908611de5565b73ffffffffffffffffffffffffffffffffffffffff1661092661143a565b73ffffffffffffffffffffffffffffffffffffffff161461097c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097390613ab4565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546109a890613e9d565b80601f01602080910402602001604051908101604052809291908181526020018280546109d490613e9d565b8015610a215780601f106109f657610100808354040283529160200191610a21565b820191906000526020600020905b815481529060010190602001808311610a0457829003601f168201915b5050505050905090565b6000610a3682611ded565b610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90613a94565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610abd90613e9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae990613e9d565b8015610b365780601f10610b0b57610100808354040283529160200191610b36565b820191906000526020600020905b815481529060010190602001808311610b1957829003601f168201915b505050505081565b6000610b49826111c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190613b14565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd9611de5565b73ffffffffffffffffffffffffffffffffffffffff161480610c085750610c0781610c02611de5565b611ae1565b5b610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90613a14565b60405180910390fd5b610c518383611e59565b505050565b600d5481565b6000600880549050905090565b600f5481565b610c80610c7a611de5565b82611f12565b610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690613b34565b60405180910390fd5b610cca838383611ff0565b505050565b6000610cda83611274565b8210610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290613934565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d7c611de5565b73ffffffffffffffffffffffffffffffffffffffff16610d9a61143a565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613ab4565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e1690613859565b60006040518083038185875af1925050503d8060008114610e53576040519150601f19603f3d011682016040523d82523d6000602084013e610e58565b606091505b5050905080610e6657600080fd5b50565b610e84838383604051806020016040528060008152506117fc565b505050565b610e91611de5565b73ffffffffffffffffffffffffffffffffffffffff16610eaf61143a565b73ffffffffffffffffffffffffffffffffffffffff1614610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90613ab4565b60405180910390fd5b610f16610f10611de5565b82611f12565b610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90613b74565b60405180910390fd5b610f5e8161224c565b50565b60606000610f6e83611274565b905060008167ffffffffffffffff811115610f8c57610f8b614065565b5b604051908082528060200260200182016040528015610fba5781602001602082028036833780820191505090505b50905060005b8281101561100457610fd28582610ccf565b828281518110610fe557610fe4614036565b5b6020026020010181815250508080610ffc90613f00565b915050610fc0565b508092505050919050565b611017611de5565b73ffffffffffffffffffffffffffffffffffffffff1661103561143a565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290613ab4565b60405180910390fd5b80600d8190555050565b600061109f610c5c565b82106110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790613b54565b60405180910390fd5b600882815481106110f4576110f3614036565b5b90600052602060002001549050919050565b601060019054906101000a900460ff1681565b611121611de5565b73ffffffffffffffffffffffffffffffffffffffff1661113f61143a565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613ab4565b60405180910390fd5b80600b90805190602001906111ab929190612eec565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290613a54565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90613a34565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611334611de5565b73ffffffffffffffffffffffffffffffffffffffff1661135261143a565b73ffffffffffffffffffffffffffffffffffffffff16146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90613ab4565b60405180910390fd5b6113b2600061235d565b565b6113bc611de5565b73ffffffffffffffffffffffffffffffffffffffff166113da61143a565b73ffffffffffffffffffffffffffffffffffffffff1614611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790613ab4565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461147390613e9d565b80601f016020809104026020016040519081016040528092919081815260200182805461149f90613e9d565b80156114ec5780601f106114c1576101008083540402835291602001916114ec565b820191906000526020600020905b8154815290600101906020018083116114cf57829003601f168201915b5050505050905090565b6000611500610c5c565b9050601060009054906101000a900460ff161561151c57600080fd5b6000821161152957600080fd5b600f5482111561153857600080fd5b600e5482826115479190613cd2565b111561155257600080fd5b61155a61143a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115a75781600d5461159a9190613d59565b3410156115a657600080fd5b5b6000600190505b8281116115dd576115ca3382846115c59190613cd2565b612423565b80806115d590613f00565b9150506115ae565b505050565b6115ea611de5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f906139d4565b60405180910390fd5b8060056000611665611de5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611712611de5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175791906138f7565b60405180910390a35050565b61176b611de5565b73ffffffffffffffffffffffffffffffffffffffff1661178961143a565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613ab4565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b61180d611807611de5565b83611f12565b61184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390613b34565b60405180910390fd5b61185884848484612441565b50505050565b600c805461186b90613e9d565b80601f016020809104026020016040519081016040528092919081815260200182805461189790613e9d565b80156118e45780601f106118b9576101008083540402835291602001916118e4565b820191906000526020600020905b8154815290600101906020018083116118c757829003601f168201915b505050505081565b60606118f782611ded565b611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d90613af4565b60405180910390fd5b60001515601060019054906101000a900460ff16151514156119e4576011805461195f90613e9d565b80601f016020809104026020016040519081016040528092919081815260200182805461198b90613e9d565b80156119d85780601f106119ad576101008083540402835291602001916119d8565b820191906000526020600020905b8154815290600101906020018083116119bb57829003601f168201915b50505050509050611a40565b60006119ee61249d565b90506000815111611a0e5760405180602001604052806000815250611a3c565b80611a188461252f565b600c604051602001611a2c93929190613828565b6040516020818303038152906040525b9150505b919050565b600e5481565b611a53611de5565b73ffffffffffffffffffffffffffffffffffffffff16611a7161143a565b73ffffffffffffffffffffffffffffffffffffffff1614611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613ab4565b60405180910390fd5b80600c9080519060200190611add929190612eec565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b7d611de5565b73ffffffffffffffffffffffffffffffffffffffff16611b9b61143a565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890613ab4565b60405180910390fd5b8060119080519060200190611c07929190612eec565b5050565b611c13611de5565b73ffffffffffffffffffffffffffffffffffffffff16611c3161143a565b73ffffffffffffffffffffffffffffffffffffffff1614611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e90613ab4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613974565b60405180910390fd5b611d008161235d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611dde5750611ddd82612690565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ecc836111c2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f1d82611ded565b611f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f53906139f4565b60405180910390fd5b6000611f67836111c2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fd657508373ffffffffffffffffffffffffffffffffffffffff16611fbe84610a2b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fe75750611fe68185611ae1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612010826111c2565b73ffffffffffffffffffffffffffffffffffffffff1614612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90613ad4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd906139b4565b60405180910390fd5b6120e18383836126fa565b6120ec600082611e59565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213c9190613db3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121939190613cd2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612257826111c2565b9050612265816000846126fa565b612270600083611e59565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c09190613db3565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61243d82826040518060200160405280600081525061280e565b5050565b61244c848484611ff0565b61245884848484612869565b612497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248e90613954565b60405180910390fd5b50505050565b6060600b80546124ac90613e9d565b80601f01602080910402602001604051908101604052809291908181526020018280546124d890613e9d565b80156125255780601f106124fa57610100808354040283529160200191612525565b820191906000526020600020905b81548152906001019060200180831161250857829003601f168201915b5050505050905090565b60606000821415612577576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061268b565b600082905060005b600082146125a957808061259290613f00565b915050600a826125a29190613d28565b915061257f565b60008167ffffffffffffffff8111156125c5576125c4614065565b5b6040519080825280601f01601f1916602001820160405280156125f75781602001600182028036833780820191505090505b5090505b60008514612684576001826126109190613db3565b9150600a8561261f9190613f49565b603061262b9190613cd2565b60f81b81838151811061264157612640614036565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561267d9190613d28565b94506125fb565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612705838383612a00565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127485761274381612a05565b612787565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612786576127858382612a4e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ca576127c581612bbb565b612809565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612808576128078282612c8c565b5b5b505050565b6128188383612d0b565b6128256000848484612869565b612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90613954565b60405180910390fd5b505050565b600061288a8473ffffffffffffffffffffffffffffffffffffffff16612ed9565b156129f3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b3611de5565b8786866040518563ffffffff1660e01b81526004016128d59493929190613889565b602060405180830381600087803b1580156128ef57600080fd5b505af192505050801561292057506040513d601f19601f8201168201806040525081019061291d91906132f5565b60015b6129a3573d8060008114612950576040519150601f19603f3d011682016040523d82523d6000602084013e612955565b606091505b5060008151141561299b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299290613954565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129f8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a5b84611274565b612a659190613db3565b9050600060076000848152602001908152602001600020549050818114612b4a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612bcf9190613db3565b9050600060096000848152602001908152602001600020549050600060088381548110612bff57612bfe614036565b5b906000526020600020015490508060088381548110612c2157612c20614036565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c7057612c6f614007565b5b6001900381819060005260206000200160009055905550505050565b6000612c9783611274565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7290613a74565b60405180910390fd5b612d8481611ded565b15612dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbb90613994565b60405180910390fd5b612dd0600083836126fa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e209190613cd2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612ef890613e9d565b90600052602060002090601f016020900481019282612f1a5760008555612f61565b82601f10612f3357805160ff1916838001178555612f61565b82800160010185558215612f61579182015b82811115612f60578251825591602001919060010190612f45565b5b509050612f6e9190612f72565b5090565b5b80821115612f8b576000816000905550600101612f73565b5090565b6000612fa2612f9d84613bd4565b613baf565b905082815260208101848484011115612fbe57612fbd614099565b5b612fc9848285613e5b565b509392505050565b6000612fe4612fdf84613c05565b613baf565b90508281526020810184848401111561300057612fff614099565b5b61300b848285613e5b565b509392505050565b60008135905061302281614601565b92915050565b60008135905061303781614618565b92915050565b60008135905061304c8161462f565b92915050565b6000815190506130618161462f565b92915050565b600082601f83011261307c5761307b614094565b5b813561308c848260208601612f8f565b91505092915050565b600082601f8301126130aa576130a9614094565b5b81356130ba848260208601612fd1565b91505092915050565b6000813590506130d281614646565b92915050565b6000602082840312156130ee576130ed6140a3565b5b60006130fc84828501613013565b91505092915050565b6000806040838503121561311c5761311b6140a3565b5b600061312a85828601613013565b925050602061313b85828601613013565b9150509250929050565b60008060006060848603121561315e5761315d6140a3565b5b600061316c86828701613013565b935050602061317d86828701613013565b925050604061318e868287016130c3565b9150509250925092565b600080600080608085870312156131b2576131b16140a3565b5b60006131c087828801613013565b94505060206131d187828801613013565b93505060406131e2878288016130c3565b925050606085013567ffffffffffffffff8111156132035761320261409e565b5b61320f87828801613067565b91505092959194509250565b60008060408385031215613232576132316140a3565b5b600061324085828601613013565b925050602061325185828601613028565b9150509250929050565b60008060408385031215613272576132716140a3565b5b600061328085828601613013565b9250506020613291858286016130c3565b9150509250929050565b6000602082840312156132b1576132b06140a3565b5b60006132bf84828501613028565b91505092915050565b6000602082840312156132de576132dd6140a3565b5b60006132ec8482850161303d565b91505092915050565b60006020828403121561330b5761330a6140a3565b5b600061331984828501613052565b91505092915050565b600060208284031215613338576133376140a3565b5b600082013567ffffffffffffffff8111156133565761335561409e565b5b61336284828501613095565b91505092915050565b600060208284031215613381576133806140a3565b5b600061338f848285016130c3565b91505092915050565b60006133a4838361380a565b60208301905092915050565b6133b981613de7565b82525050565b60006133ca82613c5b565b6133d48185613c89565b93506133df83613c36565b8060005b838110156134105781516133f78882613398565b975061340283613c7c565b9250506001810190506133e3565b5085935050505092915050565b61342681613df9565b82525050565b600061343782613c66565b6134418185613c9a565b9350613451818560208601613e6a565b61345a816140a8565b840191505092915050565b600061347082613c71565b61347a8185613cb6565b935061348a818560208601613e6a565b613493816140a8565b840191505092915050565b60006134a982613c71565b6134b38185613cc7565b93506134c3818560208601613e6a565b80840191505092915050565b600081546134dc81613e9d565b6134e68186613cc7565b94506001821660008114613501576001811461351257613545565b60ff19831686528186019350613545565b61351b85613c46565b60005b8381101561353d5781548189015260018201915060208101905061351e565b838801955050505b50505092915050565b600061355b602b83613cb6565b9150613566826140b9565b604082019050919050565b600061357e603283613cb6565b915061358982614108565b604082019050919050565b60006135a1602683613cb6565b91506135ac82614157565b604082019050919050565b60006135c4601c83613cb6565b91506135cf826141a6565b602082019050919050565b60006135e7602483613cb6565b91506135f2826141cf565b604082019050919050565b600061360a601983613cb6565b91506136158261421e565b602082019050919050565b600061362d602c83613cb6565b915061363882614247565b604082019050919050565b6000613650603883613cb6565b915061365b82614296565b604082019050919050565b6000613673602a83613cb6565b915061367e826142e5565b604082019050919050565b6000613696602983613cb6565b91506136a182614334565b604082019050919050565b60006136b9602083613cb6565b91506136c482614383565b602082019050919050565b60006136dc602c83613cb6565b91506136e7826143ac565b604082019050919050565b60006136ff602083613cb6565b915061370a826143fb565b602082019050919050565b6000613722602983613cb6565b915061372d82614424565b604082019050919050565b6000613745602f83613cb6565b915061375082614473565b604082019050919050565b6000613768602183613cb6565b9150613773826144c2565b604082019050919050565b600061378b600083613cab565b915061379682614511565b600082019050919050565b60006137ae603183613cb6565b91506137b982614514565b604082019050919050565b60006137d1602c83613cb6565b91506137dc82614563565b604082019050919050565b60006137f4603083613cb6565b91506137ff826145b2565b604082019050919050565b61381381613e51565b82525050565b61382281613e51565b82525050565b6000613834828661349e565b9150613840828561349e565b915061384c82846134cf565b9150819050949350505050565b60006138648261377e565b9150819050919050565b600060208201905061388360008301846133b0565b92915050565b600060808201905061389e60008301876133b0565b6138ab60208301866133b0565b6138b86040830185613819565b81810360608301526138ca818461342c565b905095945050505050565b600060208201905081810360008301526138ef81846133bf565b905092915050565b600060208201905061390c600083018461341d565b92915050565b6000602082019050818103600083015261392c8184613465565b905092915050565b6000602082019050818103600083015261394d8161354e565b9050919050565b6000602082019050818103600083015261396d81613571565b9050919050565b6000602082019050818103600083015261398d81613594565b9050919050565b600060208201905081810360008301526139ad816135b7565b9050919050565b600060208201905081810360008301526139cd816135da565b9050919050565b600060208201905081810360008301526139ed816135fd565b9050919050565b60006020820190508181036000830152613a0d81613620565b9050919050565b60006020820190508181036000830152613a2d81613643565b9050919050565b60006020820190508181036000830152613a4d81613666565b9050919050565b60006020820190508181036000830152613a6d81613689565b9050919050565b60006020820190508181036000830152613a8d816136ac565b9050919050565b60006020820190508181036000830152613aad816136cf565b9050919050565b60006020820190508181036000830152613acd816136f2565b9050919050565b60006020820190508181036000830152613aed81613715565b9050919050565b60006020820190508181036000830152613b0d81613738565b9050919050565b60006020820190508181036000830152613b2d8161375b565b9050919050565b60006020820190508181036000830152613b4d816137a1565b9050919050565b60006020820190508181036000830152613b6d816137c4565b9050919050565b60006020820190508181036000830152613b8d816137e7565b9050919050565b6000602082019050613ba96000830184613819565b92915050565b6000613bb9613bca565b9050613bc58282613ecf565b919050565b6000604051905090565b600067ffffffffffffffff821115613bef57613bee614065565b5b613bf8826140a8565b9050602081019050919050565b600067ffffffffffffffff821115613c2057613c1f614065565b5b613c29826140a8565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cdd82613e51565b9150613ce883613e51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1d57613d1c613f7a565b5b828201905092915050565b6000613d3382613e51565b9150613d3e83613e51565b925082613d4e57613d4d613fa9565b5b828204905092915050565b6000613d6482613e51565b9150613d6f83613e51565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613da857613da7613f7a565b5b828202905092915050565b6000613dbe82613e51565b9150613dc983613e51565b925082821015613ddc57613ddb613f7a565b5b828203905092915050565b6000613df282613e31565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e88578082015181840152602081019050613e6d565b83811115613e97576000848401525b50505050565b60006002820490506001821680613eb557607f821691505b60208210811415613ec957613ec8613fd8565b5b50919050565b613ed8826140a8565b810181811067ffffffffffffffff82111715613ef757613ef6614065565b5b80604052505050565b6000613f0b82613e51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f3e57613f3d613f7a565b5b600182019050919050565b6000613f5482613e51565b9150613f5f83613e51565b925082613f6f57613f6e613fa9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61460a81613de7565b811461461557600080fd5b50565b61462181613df9565b811461462c57600080fd5b50565b61463881613e05565b811461464357600080fd5b50565b61464f81613e51565b811461465a57600080fd5b5056fea26469706673582212201bec685118ceac8df2a1f832f822c9eeb031818f4cb164d8ba61a1dd7ce3483664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000001353686170657320286f662046726565646f6d29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003536f4600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569616e6d6d616c6135776d617233373275687678686d696f7978617072616c6474346f696c736b6f713766796c6179756f6f6a6a6d2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Shapes (of Freedom)
Arg [1] : _symbol (string): SoF
Arg [2] : _initBaseURI (string): ipfs://bafybeianmmala5wmar372uhvxhmioyxapraldt4oilskoq7fylayuoojjm/
Arg [3] : _initNotRevealedUri (string): ipfs://
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [5] : 53686170657320286f662046726565646f6d2900000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 536f460000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [9] : 697066733a2f2f62616679626569616e6d6d616c6135776d6172333732756876
Arg [10] : 78686d696f7978617072616c6474346f696c736b6f713766796c6179756f6f6a
Arg [11] : 6a6d2f0000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [13] : 697066733a2f2f00000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
43676:3202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35223:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46637:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23115:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24674:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43997:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24197:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43828:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35863:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43897:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25564:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35531:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46717:158;;;:::i;:::-;;25974:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45810:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44862:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46065:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36053:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43965:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46405:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43934:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22809:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22539:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43012:94;;;;;;;;;;;;;:::i;:::-;;46153:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42361:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23284:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44423:433;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24967:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45735:67;;;;;;;;;;;;;:::i;:::-;;26230:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43786:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45216:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43864:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46509:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25333:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46279:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43261:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35223:224;35325:4;35364:35;35349:50;;;:11;:50;;;;:90;;;;35403:36;35427:11;35403:23;:36::i;:::-;35349:90;35342:97;;35223:224;;;:::o;46637:73::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46698:6:::1;46689;;:15;;;;;;;;;;;;;;;;;;46637:73:::0;:::o;23115:100::-;23169:13;23202:5;23195:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23115:100;:::o;24674:221::-;24750:7;24778:16;24786:7;24778;:16::i;:::-;24770:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24863:15;:24;24879:7;24863:24;;;;;;;;;;;;;;;;;;;;;24856:31;;24674:221;;;:::o;43997:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24197:411::-;24278:13;24294:23;24309:7;24294:14;:23::i;:::-;24278:39;;24342:5;24336:11;;:2;:11;;;;24328:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24436:5;24420:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24445:37;24462:5;24469:12;:10;:12::i;:::-;24445:16;:37::i;:::-;24420:62;24398:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24579:21;24588:2;24592:7;24579:8;:21::i;:::-;24267:341;24197:411;;:::o;43828:31::-;;;;:::o;35863:113::-;35924:7;35951:10;:17;;;;35944:24;;35863:113;:::o;43897:32::-;;;;:::o;25564:339::-;25759:41;25778:12;:10;:12::i;:::-;25792:7;25759:18;:41::i;:::-;25751:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25867:28;25877:4;25883:2;25887:7;25867:9;:28::i;:::-;25564:339;;;:::o;35531:256::-;35628:7;35664:23;35681:5;35664:16;:23::i;:::-;35656:5;:31;35648:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35753:12;:19;35766:5;35753:19;;;;;;;;;;;;;;;:26;35773:5;35753:26;;;;;;;;;;;;35746:33;;35531:256;;;;:::o;46717:158::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46770:12:::1;46796:10;46788:24;;46820:21;46788:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46769:77;;;46861:7;46853:16;;;::::0;::::1;;46762:113;46717:158::o:0;25974:185::-;26112:39;26129:4;26135:2;26139:7;26112:39;;;;;;;;;;;;:16;:39::i;:::-;25974:185;;;:::o;45810:249::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45932:41:::1;45951:12;:10;:12::i;:::-;45965:7;45932:18;:41::i;:::-;45924:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;46037:14;46043:7;46037:5;:14::i;:::-;45810:249:::0;:::o;44862:348::-;44937:16;44965:23;44991:17;45001:6;44991:9;:17::i;:::-;44965:43;;45015:25;45057:15;45043:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45015:58;;45085:9;45080:103;45100:15;45096:1;:19;45080:103;;;45145:30;45165:6;45173:1;45145:19;:30::i;:::-;45131:8;45140:1;45131:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;45117:3;;;;;:::i;:::-;;;;45080:103;;;;45196:8;45189:15;;;;44862:348;;;:::o;46065:82::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46133:8:::1;46126:4;:15;;;;46065:82:::0;:::o;36053:233::-;36128:7;36164:30;:28;:30::i;:::-;36156:5;:38;36148:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36261:10;36272:5;36261:17;;;;;;;;:::i;:::-;;;;;;;;;;36254:24;;36053:233;;;:::o;43965:27::-;;;;;;;;;;;;;:::o;46405:98::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46486:11:::1;46476:7;:21;;;;;;;;;;;;:::i;:::-;;46405:98:::0;:::o;43934:26::-;;;;;;;;;;;;;:::o;22809:239::-;22881:7;22901:13;22917:7;:16;22925:7;22917:16;;;;;;;;;;;;;;;;;;;;;22901:32;;22969:1;22952:19;;:5;:19;;;;22944:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23035:5;23028:12;;;22809:239;;;:::o;22539:208::-;22611:7;22656:1;22639:19;;:5;:19;;;;22631:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22723:9;:16;22733:5;22723:16;;;;;;;;;;;;;;;;22716:23;;22539:208;;;:::o;43012:94::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43077:21:::1;43095:1;43077:9;:21::i;:::-;43012:94::o:0;46153:118::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46248:17:::1;46232:13;:33;;;;46153:118:::0;:::o;42361:87::-;42407:7;42434:6;;;;;;;;;;;42427:13;;42361:87;:::o;23284:104::-;23340:13;23373:7;23366:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23284:104;:::o;44423:433::-;44480:14;44497:13;:11;:13::i;:::-;44480:30;;44526:6;;;;;;;;;;;44525:7;44517:16;;;;;;44562:1;44548:11;:15;44540:24;;;;;;44594:13;;44579:11;:28;;44571:37;;;;;;44647:9;;44632:11;44623:6;:20;;;;:::i;:::-;:33;;44615:42;;;;;;44684:7;:5;:7::i;:::-;44670:21;;:10;:21;;;44666:84;;44730:11;44723:4;;:18;;;;:::i;:::-;44710:9;:31;;44702:40;;;;;;44666:84;44763:9;44775:1;44763:13;;44758:93;44783:11;44778:1;:16;44758:93;;44810:33;44820:10;44841:1;44832:6;:10;;;;:::i;:::-;44810:9;:33::i;:::-;44796:3;;;;;:::i;:::-;;;;44758:93;;;;44473:383;44423:433;:::o;24967:295::-;25082:12;:10;:12::i;:::-;25070:24;;:8;:24;;;;25062:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25182:8;25137:18;:32;25156:12;:10;:12::i;:::-;25137:32;;;;;;;;;;;;;;;:42;25170:8;25137:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25235:8;25206:48;;25221:12;:10;:12::i;:::-;25206:48;;;25245:8;25206:48;;;;;;:::i;:::-;;;;;;;;24967:295;;:::o;45735:67::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45792:4:::1;45781:8;;:15;;;;;;;;;;;;;;;;;;45735:67::o:0;26230:328::-;26405:41;26424:12;:10;:12::i;:::-;26438:7;26405:18;:41::i;:::-;26397:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26511:39;26525:4;26531:2;26535:7;26544:5;26511:13;:39::i;:::-;26230:328;;;;:::o;43786:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45216:497::-;45314:13;45355:16;45363:7;45355;:16::i;:::-;45339:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;45464:5;45452:17;;:8;;;;;;;;;;;:17;;;45449:62;;;45489:14;45482:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45449:62;45519:28;45550:10;:8;:10::i;:::-;45519:41;;45605:1;45580:14;45574:28;:32;:133;;;;;;;;;;;;;;;;;45642:14;45658:18;:7;:16;:18::i;:::-;45678:13;45625:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45574:133;45567:140;;;45216:497;;;;:::o;43864:28::-;;;;:::o;46509:122::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46608:17:::1;46592:13;:33;;;;;;;;;;;;:::i;:::-;;46509:122:::0;:::o;25333:164::-;25430:4;25454:18;:25;25473:5;25454:25;;;;;;;;;;;;;;;:35;25480:8;25454:35;;;;;;;;;;;;;;;;;;;;;;;;;25447:42;;25333:164;;;;:::o;46279:120::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46378:15:::1;46361:14;:32;;;;;;;;;;;;:::i;:::-;;46279:120:::0;:::o;43261:192::-;42592:12;:10;:12::i;:::-;42581:23;;:7;:5;:7::i;:::-;:23;;;42573:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43370:1:::1;43350:22;;:8;:22;;;;43342:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43426:19;43436:8;43426:9;:19::i;:::-;43261:192:::0;:::o;22170:305::-;22272:4;22324:25;22309:40;;;:11;:40;;;;:105;;;;22381:33;22366:48;;;:11;:48;;;;22309:105;:158;;;;22431:36;22455:11;22431:23;:36::i;:::-;22309:158;22289:178;;22170:305;;;:::o;20644:98::-;20697:7;20724:10;20717:17;;20644:98;:::o;28068:127::-;28133:4;28185:1;28157:30;;:7;:16;28165:7;28157:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28150:37;;28068:127;;;:::o;32050:174::-;32152:2;32125:15;:24;32141:7;32125:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32208:7;32204:2;32170:46;;32179:23;32194:7;32179:14;:23::i;:::-;32170:46;;;;;;;;;;;;32050:174;;:::o;28362:348::-;28455:4;28480:16;28488:7;28480;:16::i;:::-;28472:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28556:13;28572:23;28587:7;28572:14;:23::i;:::-;28556:39;;28625:5;28614:16;;:7;:16;;;:51;;;;28658:7;28634:31;;:20;28646:7;28634:11;:20::i;:::-;:31;;;28614:51;:87;;;;28669:32;28686:5;28693:7;28669:16;:32::i;:::-;28614:87;28606:96;;;28362:348;;;;:::o;31354:578::-;31513:4;31486:31;;:23;31501:7;31486:14;:23::i;:::-;:31;;;31478:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31596:1;31582:16;;:2;:16;;;;31574:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31652:39;31673:4;31679:2;31683:7;31652:20;:39::i;:::-;31756:29;31773:1;31777:7;31756:8;:29::i;:::-;31817:1;31798:9;:15;31808:4;31798:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31846:1;31829:9;:13;31839:2;31829:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31877:2;31858:7;:16;31866:7;31858:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31916:7;31912:2;31897:27;;31906:4;31897:27;;;;;;;;;;;;31354:578;;;:::o;30657:360::-;30717:13;30733:23;30748:7;30733:14;:23::i;:::-;30717:39;;30769:48;30790:5;30805:1;30809:7;30769:20;:48::i;:::-;30858:29;30875:1;30879:7;30858:8;:29::i;:::-;30920:1;30900:9;:16;30910:5;30900:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;30939:7;:16;30947:7;30939:16;;;;;;;;;;;;30932:23;;;;;;;;;;;31001:7;30997:1;30973:36;;30982:5;30973:36;;;;;;;;;;;;30706:311;30657:360;:::o;43461:173::-;43517:16;43536:6;;;;;;;;;;;43517:25;;43562:8;43553:6;;:17;;;;;;;;;;;;;;;;;;43617:8;43586:40;;43607:8;43586:40;;;;;;;;;;;;43506:128;43461:173;:::o;29052:110::-;29128:26;29138:2;29142:7;29128:26;;;;;;;;;;;;:9;:26::i;:::-;29052:110;;:::o;27440:315::-;27597:28;27607:4;27613:2;27617:7;27597:9;:28::i;:::-;27644:48;27667:4;27673:2;27677:7;27686:5;27644:22;:48::i;:::-;27636:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27440:315;;;;:::o;44302:102::-;44362:13;44391:7;44384:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44302:102;:::o;8476:723::-;8532:13;8762:1;8753:5;:10;8749:53;;;8780:10;;;;;;;;;;;;;;;;;;;;;8749:53;8812:12;8827:5;8812:20;;8843:14;8868:78;8883:1;8875:4;:9;8868:78;;8901:8;;;;;:::i;:::-;;;;8932:2;8924:10;;;;;:::i;:::-;;;8868:78;;;8956:19;8988:6;8978:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8956:39;;9006:154;9022:1;9013:5;:10;9006:154;;9050:1;9040:11;;;;;:::i;:::-;;;9117:2;9109:5;:10;;;;:::i;:::-;9096:2;:24;;;;:::i;:::-;9083:39;;9066:6;9073;9066:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9146:2;9137:11;;;;;:::i;:::-;;;9006:154;;;9184:6;9170:21;;;;;8476:723;;;;:::o;8001:157::-;8086:4;8125:25;8110:40;;;:11;:40;;;;8103:47;;8001:157;;;:::o;36899:589::-;37043:45;37070:4;37076:2;37080:7;37043:26;:45::i;:::-;37121:1;37105:18;;:4;:18;;;37101:187;;;37140:40;37172:7;37140:31;:40::i;:::-;37101:187;;;37210:2;37202:10;;:4;:10;;;37198:90;;37229:47;37262:4;37268:7;37229:32;:47::i;:::-;37198:90;37101:187;37316:1;37302:16;;:2;:16;;;37298:183;;;37335:45;37372:7;37335:36;:45::i;:::-;37298:183;;;37408:4;37402:10;;:2;:10;;;37398:83;;37429:40;37457:2;37461:7;37429:27;:40::i;:::-;37398:83;37298:183;36899:589;;;:::o;29389:321::-;29519:18;29525:2;29529:7;29519:5;:18::i;:::-;29570:54;29601:1;29605:2;29609:7;29618:5;29570:22;:54::i;:::-;29548:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29389:321;;;:::o;32789:799::-;32944:4;32965:15;:2;:13;;;:15::i;:::-;32961:620;;;33017:2;33001:36;;;33038:12;:10;:12::i;:::-;33052:4;33058:7;33067:5;33001:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32997:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33260:1;33243:6;:13;:18;33239:272;;;33286:60;;;;;;;;;;:::i;:::-;;;;;;;;33239:272;33461:6;33455:13;33446:6;33442:2;33438:15;33431:38;32997:529;33134:41;;;33124:51;;;:6;:51;;;;33117:58;;;;;32961:620;33565:4;33558:11;;32789:799;;;;;;;:::o;34160:126::-;;;;:::o;38211:164::-;38315:10;:17;;;;38288:15;:24;38304:7;38288:24;;;;;;;;;;;:44;;;;38343:10;38359:7;38343:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38211:164;:::o;39002:988::-;39268:22;39318:1;39293:22;39310:4;39293:16;:22::i;:::-;:26;;;;:::i;:::-;39268:51;;39330:18;39351:17;:26;39369:7;39351:26;;;;;;;;;;;;39330:47;;39498:14;39484:10;:28;39480:328;;39529:19;39551:12;:18;39564:4;39551:18;;;;;;;;;;;;;;;:34;39570:14;39551:34;;;;;;;;;;;;39529:56;;39635:11;39602:12;:18;39615:4;39602:18;;;;;;;;;;;;;;;:30;39621:10;39602:30;;;;;;;;;;;:44;;;;39752:10;39719:17;:30;39737:11;39719:30;;;;;;;;;;;:43;;;;39514:294;39480:328;39904:17;:26;39922:7;39904:26;;;;;;;;;;;39897:33;;;39948:12;:18;39961:4;39948:18;;;;;;;;;;;;;;;:34;39967:14;39948:34;;;;;;;;;;;39941:41;;;39083:907;;39002:988;;:::o;40285:1079::-;40538:22;40583:1;40563:10;:17;;;;:21;;;;:::i;:::-;40538:46;;40595:18;40616:15;:24;40632:7;40616:24;;;;;;;;;;;;40595:45;;40967:19;40989:10;41000:14;40989:26;;;;;;;;:::i;:::-;;;;;;;;;;40967:48;;41053:11;41028:10;41039;41028:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;41164:10;41133:15;:28;41149:11;41133:28;;;;;;;;;;;:41;;;;41305:15;:24;41321:7;41305:24;;;;;;;;;;;41298:31;;;41340:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40356:1008;;;40285:1079;:::o;37789:221::-;37874:14;37891:20;37908:2;37891:16;:20::i;:::-;37874:37;;37949:7;37922:12;:16;37935:2;37922:16;;;;;;;;;;;;;;;:24;37939:6;37922:24;;;;;;;;;;;:34;;;;37996:6;37967:17;:26;37985:7;37967:26;;;;;;;;;;;:35;;;;37863:147;37789:221;;:::o;30046:382::-;30140:1;30126:16;;:2;:16;;;;30118:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30199:16;30207:7;30199;:16::i;:::-;30198:17;30190:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30261:45;30290:1;30294:2;30298:7;30261:20;:45::i;:::-;30336:1;30319:9;:13;30329:2;30319:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30367:2;30348:7;:16;30356:7;30348:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30412:7;30408:2;30387:33;;30404:1;30387:33;;;;;;;;;;;;30046:382;;:::o;11001:387::-;11061:4;11269:12;11336:7;11324:20;11316:28;;11379:1;11372:4;:8;11365:15;;;11001:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:398::-;16784:3;16805:83;16886:1;16881:3;16805:83;:::i;:::-;16798:90;;16897:93;16986:3;16897:93;:::i;:::-;17015:1;17010:3;17006:11;16999:18;;16625:398;;;:::o;17029:366::-;17171:3;17192:67;17256:2;17251:3;17192:67;:::i;:::-;17185:74;;17268:93;17357:3;17268:93;:::i;:::-;17386:2;17381:3;17377:12;17370:19;;17029:366;;;:::o;17401:::-;17543:3;17564:67;17628:2;17623:3;17564:67;:::i;:::-;17557:74;;17640:93;17729:3;17640:93;:::i;:::-;17758:2;17753:3;17749:12;17742:19;;17401:366;;;:::o;17773:::-;17915:3;17936:67;18000:2;17995:3;17936:67;:::i;:::-;17929:74;;18012:93;18101:3;18012:93;:::i;:::-;18130:2;18125:3;18121:12;18114:19;;17773:366;;;:::o;18145:108::-;18222:24;18240:5;18222:24;:::i;:::-;18217:3;18210:37;18145:108;;:::o;18259:118::-;18346:24;18364:5;18346:24;:::i;:::-;18341:3;18334:37;18259:118;;:::o;18383:589::-;18608:3;18630:95;18721:3;18712:6;18630:95;:::i;:::-;18623:102;;18742:95;18833:3;18824:6;18742:95;:::i;:::-;18735:102;;18854:92;18942:3;18933:6;18854:92;:::i;:::-;18847:99;;18963:3;18956:10;;18383:589;;;;;;:::o;18978:379::-;19162:3;19184:147;19327:3;19184:147;:::i;:::-;19177:154;;19348:3;19341:10;;18978:379;;;:::o;19363:222::-;19456:4;19494:2;19483:9;19479:18;19471:26;;19507:71;19575:1;19564:9;19560:17;19551:6;19507:71;:::i;:::-;19363:222;;;;:::o;19591:640::-;19786:4;19824:3;19813:9;19809:19;19801:27;;19838:71;19906:1;19895:9;19891:17;19882:6;19838:71;:::i;:::-;19919:72;19987:2;19976:9;19972:18;19963:6;19919:72;:::i;:::-;20001;20069:2;20058:9;20054:18;20045:6;20001:72;:::i;:::-;20120:9;20114:4;20110:20;20105:2;20094:9;20090:18;20083:48;20148:76;20219:4;20210:6;20148:76;:::i;:::-;20140:84;;19591:640;;;;;;;:::o;20237:373::-;20380:4;20418:2;20407:9;20403:18;20395:26;;20467:9;20461:4;20457:20;20453:1;20442:9;20438:17;20431:47;20495:108;20598:4;20589:6;20495:108;:::i;:::-;20487:116;;20237:373;;;;:::o;20616:210::-;20703:4;20741:2;20730:9;20726:18;20718:26;;20754:65;20816:1;20805:9;20801:17;20792:6;20754:65;:::i;:::-;20616:210;;;;:::o;20832:313::-;20945:4;20983:2;20972:9;20968:18;20960:26;;21032:9;21026:4;21022:20;21018:1;21007:9;21003:17;20996:47;21060:78;21133:4;21124:6;21060:78;:::i;:::-;21052:86;;20832:313;;;;:::o;21151:419::-;21317:4;21355:2;21344:9;21340:18;21332:26;;21404:9;21398:4;21394:20;21390:1;21379:9;21375:17;21368:47;21432:131;21558:4;21432:131;:::i;:::-;21424:139;;21151:419;;;:::o;21576:::-;21742:4;21780:2;21769:9;21765:18;21757:26;;21829:9;21823:4;21819:20;21815:1;21804:9;21800:17;21793:47;21857:131;21983:4;21857:131;:::i;:::-;21849:139;;21576:419;;;:::o;22001:::-;22167:4;22205:2;22194:9;22190:18;22182:26;;22254:9;22248:4;22244:20;22240:1;22229:9;22225:17;22218:47;22282:131;22408:4;22282:131;:::i;:::-;22274:139;;22001:419;;;:::o;22426:::-;22592:4;22630:2;22619:9;22615:18;22607:26;;22679:9;22673:4;22669:20;22665:1;22654:9;22650:17;22643:47;22707:131;22833:4;22707:131;:::i;:::-;22699:139;;22426:419;;;:::o;22851:::-;23017:4;23055:2;23044:9;23040:18;23032:26;;23104:9;23098:4;23094:20;23090:1;23079:9;23075:17;23068:47;23132:131;23258:4;23132:131;:::i;:::-;23124:139;;22851:419;;;:::o;23276:::-;23442:4;23480:2;23469:9;23465:18;23457:26;;23529:9;23523:4;23519:20;23515:1;23504:9;23500:17;23493:47;23557:131;23683:4;23557:131;:::i;:::-;23549:139;;23276:419;;;:::o;23701:::-;23867:4;23905:2;23894:9;23890:18;23882:26;;23954:9;23948:4;23944:20;23940:1;23929:9;23925:17;23918:47;23982:131;24108:4;23982:131;:::i;:::-;23974:139;;23701:419;;;:::o;24126:::-;24292:4;24330:2;24319:9;24315:18;24307:26;;24379:9;24373:4;24369:20;24365:1;24354:9;24350:17;24343:47;24407:131;24533:4;24407:131;:::i;:::-;24399:139;;24126:419;;;:::o;24551:::-;24717:4;24755:2;24744:9;24740:18;24732:26;;24804:9;24798:4;24794:20;24790:1;24779:9;24775:17;24768:47;24832:131;24958:4;24832:131;:::i;:::-;24824:139;;24551:419;;;:::o;24976:::-;25142:4;25180:2;25169:9;25165:18;25157:26;;25229:9;25223:4;25219:20;25215:1;25204:9;25200:17;25193:47;25257:131;25383:4;25257:131;:::i;:::-;25249:139;;24976:419;;;:::o;25401:::-;25567:4;25605:2;25594:9;25590:18;25582:26;;25654:9;25648:4;25644:20;25640:1;25629:9;25625:17;25618:47;25682:131;25808:4;25682:131;:::i;:::-;25674:139;;25401:419;;;:::o;25826:::-;25992:4;26030:2;26019:9;26015:18;26007:26;;26079:9;26073:4;26069:20;26065:1;26054:9;26050:17;26043:47;26107:131;26233:4;26107:131;:::i;:::-;26099:139;;25826:419;;;:::o;26251:::-;26417:4;26455:2;26444:9;26440:18;26432:26;;26504:9;26498:4;26494:20;26490:1;26479:9;26475:17;26468:47;26532:131;26658:4;26532:131;:::i;:::-;26524:139;;26251:419;;;:::o;26676:::-;26842:4;26880:2;26869:9;26865:18;26857:26;;26929:9;26923:4;26919:20;26915:1;26904:9;26900:17;26893:47;26957:131;27083:4;26957:131;:::i;:::-;26949:139;;26676:419;;;:::o;27101:::-;27267:4;27305:2;27294:9;27290:18;27282:26;;27354:9;27348:4;27344:20;27340:1;27329:9;27325:17;27318:47;27382:131;27508:4;27382:131;:::i;:::-;27374:139;;27101:419;;;:::o;27526:::-;27692:4;27730:2;27719:9;27715:18;27707:26;;27779:9;27773:4;27769:20;27765:1;27754:9;27750:17;27743:47;27807:131;27933:4;27807:131;:::i;:::-;27799:139;;27526:419;;;:::o;27951:::-;28117:4;28155:2;28144:9;28140:18;28132:26;;28204:9;28198:4;28194:20;28190:1;28179:9;28175:17;28168:47;28232:131;28358:4;28232:131;:::i;:::-;28224:139;;27951:419;;;:::o;28376:::-;28542:4;28580:2;28569:9;28565:18;28557:26;;28629:9;28623:4;28619:20;28615:1;28604:9;28600:17;28593:47;28657:131;28783:4;28657:131;:::i;:::-;28649:139;;28376:419;;;:::o;28801:::-;28967:4;29005:2;28994:9;28990:18;28982:26;;29054:9;29048:4;29044:20;29040:1;29029:9;29025:17;29018:47;29082:131;29208:4;29082:131;:::i;:::-;29074:139;;28801:419;;;:::o;29226:222::-;29319:4;29357:2;29346:9;29342:18;29334:26;;29370:71;29438:1;29427:9;29423:17;29414:6;29370:71;:::i;:::-;29226:222;;;;:::o;29454:129::-;29488:6;29515:20;;:::i;:::-;29505:30;;29544:33;29572:4;29564:6;29544:33;:::i;:::-;29454:129;;;:::o;29589:75::-;29622:6;29655:2;29649:9;29639:19;;29589:75;:::o;29670:307::-;29731:4;29821:18;29813:6;29810:30;29807:56;;;29843:18;;:::i;:::-;29807:56;29881:29;29903:6;29881:29;:::i;:::-;29873:37;;29965:4;29959;29955:15;29947:23;;29670:307;;;:::o;29983:308::-;30045:4;30135:18;30127:6;30124:30;30121:56;;;30157:18;;:::i;:::-;30121:56;30195:29;30217:6;30195:29;:::i;:::-;30187:37;;30279:4;30273;30269:15;30261:23;;29983:308;;;:::o;30297:132::-;30364:4;30387:3;30379:11;;30417:4;30412:3;30408:14;30400:22;;30297:132;;;:::o;30435:141::-;30484:4;30507:3;30499:11;;30530:3;30527:1;30520:14;30564:4;30561:1;30551:18;30543:26;;30435:141;;;:::o;30582:114::-;30649:6;30683:5;30677:12;30667:22;;30582:114;;;:::o;30702:98::-;30753:6;30787:5;30781:12;30771:22;;30702:98;;;:::o;30806:99::-;30858:6;30892:5;30886:12;30876:22;;30806:99;;;:::o;30911:113::-;30981:4;31013;31008:3;31004:14;30996:22;;30911:113;;;:::o;31030:184::-;31129:11;31163:6;31158:3;31151:19;31203:4;31198:3;31194:14;31179:29;;31030:184;;;;:::o;31220:168::-;31303:11;31337:6;31332:3;31325:19;31377:4;31372:3;31368:14;31353:29;;31220:168;;;;:::o;31394:147::-;31495:11;31532:3;31517:18;;31394:147;;;;:::o;31547:169::-;31631:11;31665:6;31660:3;31653:19;31705:4;31700:3;31696:14;31681:29;;31547:169;;;;:::o;31722:148::-;31824:11;31861:3;31846:18;;31722:148;;;;:::o;31876:305::-;31916:3;31935:20;31953:1;31935:20;:::i;:::-;31930:25;;31969:20;31987:1;31969:20;:::i;:::-;31964:25;;32123:1;32055:66;32051:74;32048:1;32045:81;32042:107;;;32129:18;;:::i;:::-;32042:107;32173:1;32170;32166:9;32159:16;;31876:305;;;;:::o;32187:185::-;32227:1;32244:20;32262:1;32244:20;:::i;:::-;32239:25;;32278:20;32296:1;32278:20;:::i;:::-;32273:25;;32317:1;32307:35;;32322:18;;:::i;:::-;32307:35;32364:1;32361;32357:9;32352:14;;32187:185;;;;:::o;32378:348::-;32418:7;32441:20;32459:1;32441:20;:::i;:::-;32436:25;;32475:20;32493:1;32475:20;:::i;:::-;32470:25;;32663:1;32595:66;32591:74;32588:1;32585:81;32580:1;32573:9;32566:17;32562:105;32559:131;;;32670:18;;:::i;:::-;32559:131;32718:1;32715;32711:9;32700:20;;32378:348;;;;:::o;32732:191::-;32772:4;32792:20;32810:1;32792:20;:::i;:::-;32787:25;;32826:20;32844:1;32826:20;:::i;:::-;32821:25;;32865:1;32862;32859:8;32856:34;;;32870:18;;:::i;:::-;32856:34;32915:1;32912;32908:9;32900:17;;32732:191;;;;:::o;32929:96::-;32966:7;32995:24;33013:5;32995:24;:::i;:::-;32984:35;;32929:96;;;:::o;33031:90::-;33065:7;33108:5;33101:13;33094:21;33083:32;;33031:90;;;:::o;33127:149::-;33163:7;33203:66;33196:5;33192:78;33181:89;;33127:149;;;:::o;33282:126::-;33319:7;33359:42;33352:5;33348:54;33337:65;;33282:126;;;:::o;33414:77::-;33451:7;33480:5;33469:16;;33414:77;;;:::o;33497:154::-;33581:6;33576:3;33571;33558:30;33643:1;33634:6;33629:3;33625:16;33618:27;33497:154;;;:::o;33657:307::-;33725:1;33735:113;33749:6;33746:1;33743:13;33735:113;;;33834:1;33829:3;33825:11;33819:18;33815:1;33810:3;33806:11;33799:39;33771:2;33768:1;33764:10;33759:15;;33735:113;;;33866:6;33863:1;33860:13;33857:101;;;33946:1;33937:6;33932:3;33928:16;33921:27;33857:101;33706:258;33657:307;;;:::o;33970:320::-;34014:6;34051:1;34045:4;34041:12;34031:22;;34098:1;34092:4;34088:12;34119:18;34109:81;;34175:4;34167:6;34163:17;34153:27;;34109:81;34237:2;34229:6;34226:14;34206:18;34203:38;34200:84;;;34256:18;;:::i;:::-;34200:84;34021:269;33970:320;;;:::o;34296:281::-;34379:27;34401:4;34379:27;:::i;:::-;34371:6;34367:40;34509:6;34497:10;34494:22;34473:18;34461:10;34458:34;34455:62;34452:88;;;34520:18;;:::i;:::-;34452:88;34560:10;34556:2;34549:22;34339:238;34296:281;;:::o;34583:233::-;34622:3;34645:24;34663:5;34645:24;:::i;:::-;34636:33;;34691:66;34684:5;34681:77;34678:103;;;34761:18;;:::i;:::-;34678:103;34808:1;34801:5;34797:13;34790:20;;34583:233;;;:::o;34822:176::-;34854:1;34871:20;34889:1;34871:20;:::i;:::-;34866:25;;34905:20;34923:1;34905:20;:::i;:::-;34900:25;;34944:1;34934:35;;34949:18;;:::i;:::-;34934:35;34990:1;34987;34983:9;34978:14;;34822:176;;;;:::o;35004:180::-;35052:77;35049:1;35042:88;35149:4;35146:1;35139:15;35173:4;35170:1;35163:15;35190:180;35238:77;35235:1;35228:88;35335:4;35332:1;35325:15;35359:4;35356:1;35349:15;35376:180;35424:77;35421:1;35414:88;35521:4;35518:1;35511:15;35545:4;35542:1;35535:15;35562:180;35610:77;35607:1;35600:88;35707:4;35704:1;35697:15;35731:4;35728:1;35721:15;35748:180;35796:77;35793:1;35786:88;35893:4;35890:1;35883:15;35917:4;35914:1;35907:15;35934:180;35982:77;35979:1;35972:88;36079:4;36076:1;36069:15;36103:4;36100:1;36093:15;36120:117;36229:1;36226;36219:12;36243:117;36352:1;36349;36342:12;36366:117;36475:1;36472;36465:12;36489:117;36598:1;36595;36588:12;36612:102;36653:6;36704:2;36700:7;36695:2;36688:5;36684:14;36680:28;36670:38;;36612:102;;;:::o;36720:230::-;36860:34;36856:1;36848:6;36844:14;36837:58;36929:13;36924:2;36916:6;36912:15;36905:38;36720:230;:::o;36956:237::-;37096:34;37092:1;37084:6;37080:14;37073:58;37165:20;37160:2;37152:6;37148:15;37141:45;36956:237;:::o;37199:225::-;37339:34;37335:1;37327:6;37323:14;37316:58;37408:8;37403:2;37395:6;37391:15;37384:33;37199:225;:::o;37430:178::-;37570:30;37566:1;37558:6;37554:14;37547:54;37430:178;:::o;37614:223::-;37754:34;37750:1;37742:6;37738:14;37731:58;37823:6;37818:2;37810:6;37806:15;37799:31;37614:223;:::o;37843:175::-;37983:27;37979:1;37971:6;37967:14;37960:51;37843:175;:::o;38024:231::-;38164:34;38160:1;38152:6;38148:14;38141:58;38233:14;38228:2;38220:6;38216:15;38209:39;38024:231;:::o;38261:243::-;38401:34;38397:1;38389:6;38385:14;38378:58;38470:26;38465:2;38457:6;38453:15;38446:51;38261:243;:::o;38510:229::-;38650:34;38646:1;38638:6;38634:14;38627:58;38719:12;38714:2;38706:6;38702:15;38695:37;38510:229;:::o;38745:228::-;38885:34;38881:1;38873:6;38869:14;38862:58;38954:11;38949:2;38941:6;38937:15;38930:36;38745:228;:::o;38979:182::-;39119:34;39115:1;39107:6;39103:14;39096:58;38979:182;:::o;39167:231::-;39307:34;39303:1;39295:6;39291:14;39284:58;39376:14;39371:2;39363:6;39359:15;39352:39;39167:231;:::o;39404:182::-;39544:34;39540:1;39532:6;39528:14;39521:58;39404:182;:::o;39592:228::-;39732:34;39728:1;39720:6;39716:14;39709:58;39801:11;39796:2;39788:6;39784:15;39777:36;39592:228;:::o;39826:234::-;39966:34;39962:1;39954:6;39950:14;39943:58;40035:17;40030:2;40022:6;40018:15;40011:42;39826:234;:::o;40066:220::-;40206:34;40202:1;40194:6;40190:14;40183:58;40275:3;40270:2;40262:6;40258:15;40251:28;40066:220;:::o;40292:114::-;;:::o;40412:236::-;40552:34;40548:1;40540:6;40536:14;40529:58;40621:19;40616:2;40608:6;40604:15;40597:44;40412:236;:::o;40654:231::-;40794:34;40790:1;40782:6;40778:14;40771:58;40863:14;40858:2;40850:6;40846:15;40839:39;40654:231;:::o;40891:235::-;41031:34;41027:1;41019:6;41015:14;41008:58;41100:18;41095:2;41087:6;41083:15;41076:43;40891:235;:::o;41132:122::-;41205:24;41223:5;41205:24;:::i;:::-;41198:5;41195:35;41185:63;;41244:1;41241;41234:12;41185:63;41132:122;:::o;41260:116::-;41330:21;41345:5;41330:21;:::i;:::-;41323:5;41320:32;41310:60;;41366:1;41363;41356:12;41310:60;41260:116;:::o;41382:120::-;41454:23;41471:5;41454:23;:::i;:::-;41447:5;41444:34;41434:62;;41492:1;41489;41482:12;41434:62;41382:120;:::o;41508:122::-;41581:24;41599:5;41581:24;:::i;:::-;41574:5;41571:35;41561:63;;41620:1;41617;41610:12;41561:63;41508:122;:::o
Swarm Source
ipfs://1bec685118ceac8df2a1f832f822c9eeb031818f4cb164d8ba61a1dd7ce34836
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.