Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0.045 ETH
Eth Value
$104.97 (@ $2,332.58/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 14 from a total of 14 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 14238827 | 1487 days ago | IN | 0 ETH | 0.00294165 | ||||
| Mint Sharkz | 13433958 | 1613 days ago | IN | 0 ETH | 0.00953654 | ||||
| Set Approval For... | 13433410 | 1613 days ago | IN | 0 ETH | 0.00254801 | ||||
| Mint Sharkz | 13428668 | 1613 days ago | IN | 0 ETH | 0.00908802 | ||||
| Mint Sharkz | 13428660 | 1613 days ago | IN | 0 ETH | 0.00826661 | ||||
| Set Price | 13262945 | 1639 days ago | IN | 0 ETH | 0.00353095 | ||||
| Transfer From | 13236960 | 1643 days ago | IN | 0 ETH | 0.00509318 | ||||
| Set Base URI | 13204971 | 1648 days ago | IN | 0 ETH | 0.00219456 | ||||
| Set Approval For... | 13204667 | 1648 days ago | IN | 0 ETH | 0.00259055 | ||||
| Mint Sharkz | 13204650 | 1648 days ago | IN | 0.015 ETH | 0.00944578 | ||||
| Mint Sharkz | 13204646 | 1648 days ago | IN | 0.015 ETH | 0.00994372 | ||||
| Set Base URI | 13204366 | 1648 days ago | IN | 0 ETH | 0.00210249 | ||||
| Mint Sharkz | 13203133 | 1649 days ago | IN | 0.015 ETH | 0.01185817 | ||||
| Mint Sharkz | 13198724 | 1649 days ago | IN | 0 ETH | 0.02042137 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Sharkz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-09-11
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// 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/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// 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/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);
}
}
// 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);
}
function _verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) private pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
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/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(to).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: Sharkz.sol
pragma solidity ^0.8.0;
/// @author Hammad Ghazi
contract Sharkz is ERC721Enumerable, Ownable {
using Counters for Counters.Counter;
Counters.Counter private _tokenId;
uint256 public constant MAX_SHARKZ = 7000;
uint256 public price = 15000000000000000; //0.015 Ether
string baseTokenURI;
bool public saleOpen = true;
event SharkzMinted(uint256 totalMinted);
constructor(string memory baseURI) ERC721("Sharkz", "SHARKZ") {
setBaseURI(baseURI);
}
//Get token Ids of all tokens owned by _owner
function walletOfOwner(address _owner)
external
view
returns (uint256[] memory)
{
uint256 tokenCount = balanceOf(_owner);
uint256[] memory tokensId = new uint256[](tokenCount);
for (uint256 i = 0; i < tokenCount; i++) {
tokensId[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokensId;
}
function setBaseURI(string memory baseURI) public onlyOwner {
baseTokenURI = baseURI;
}
function setPrice(uint256 _newPrice) external onlyOwner {
price = _newPrice;
}
//Close sale if open, open sale if closed
function flipSaleState() external onlyOwner {
saleOpen = !saleOpen;
}
function withdrawAll() external onlyOwner {
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success, "Transfer failed.");
}
//mint Sharkz
function mintSharkz(address _to, uint256 _count) external payable {
require(
totalSupply() + _count <= MAX_SHARKZ,
"Exceeds maximum supply of Sharkz"
);
require(
_count > 0,
"Minimum 1 Sharkz has to be minted per transaction"
);
if (msg.sender != owner()) {
require(saleOpen, "Sale is not open yet");
require(
_count <= 20,
"Maximum 20 Sharkz can be minted per transaction"
);
require(
msg.value >= price * _count,
"Ether sent with this transaction is not correct"
);
}
for (uint256 i = 0; i < _count; i++) {
_mint(_to);
}
}
function _mint(address _to) private {
_tokenId.increment();
uint256 tokenId = _tokenId.current();
_safeMint(_to, tokenId);
emit SharkzMinted(tokenId);
}
function _baseURI() internal view virtual override returns (string memory) {
return baseTokenURI;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"SharkzMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SHARKZ","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSharkz","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405266354a6ba7a18000600c556001600e60006101000a81548160ff0219169083151502179055503480156200003757600080fd5b506040516200486f3803806200486f83398181016040528101906200005d919062000406565b6040518060400160405280600681526020017f536861726b7a00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f534841524b5a00000000000000000000000000000000000000000000000000008152508160009080519060200190620000e1929190620002d8565b508060019080519060200190620000fa929190620002d8565b5050506200011d620001116200013560201b60201c565b6200013d60201b60201c565b6200012e816200020360201b60201c565b506200065e565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002136200013560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000239620002ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000289906200047e565b60405180910390fd5b80600d9080519060200190620002aa929190620002d8565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002e69062000546565b90600052602060002090601f0160209004810192826200030a576000855562000356565b82601f106200032557805160ff191683800117855562000356565b8280016001018555821562000356579182015b828111156200035557825182559160200191906001019062000338565b5b50905062000365919062000369565b5090565b5b80821115620003845760008160009055506001016200036a565b5090565b60006200039f6200039984620004c9565b620004a0565b905082815260208101848484011115620003be57620003bd62000615565b5b620003cb84828562000510565b509392505050565b600082601f830112620003eb57620003ea62000610565b5b8151620003fd84826020860162000388565b91505092915050565b6000602082840312156200041f576200041e6200061f565b5b600082015167ffffffffffffffff81111562000440576200043f6200061a565b5b6200044e84828501620003d3565b91505092915050565b600062000466602083620004ff565b9150620004738262000635565b602082019050919050565b60006020820190508181036000830152620004998162000457565b9050919050565b6000620004ac620004bf565b9050620004ba82826200057c565b919050565b6000604051905090565b600067ffffffffffffffff821115620004e757620004e6620005e1565b5b620004f28262000624565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200053057808201518184015260208101905062000513565b8381111562000540576000848401525b50505050565b600060028204905060018216806200055f57607f821691505b60208210811415620005765762000575620005b2565b5b50919050565b620005878262000624565b810181811067ffffffffffffffff82111715620005a957620005a8620005e1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614201806200066e6000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105e9578063d211b6e114610626578063e985e9c514610651578063f2fde38b1461068e576101b7565b8063a22cb4651461057b578063b1034d51146105a4578063b88d4fde146105c0576101b7565b806391b7f5ed116100c657806391b7f5ed146104d157806395d89b41146104fa57806399288dbb14610525578063a035b1fe14610550576101b7565b8063715018a614610478578063853828b61461048f5780638da5cb5b146104a6576101b7565b806334918dfd116101595780634f6ccce7116101335780634f6ccce71461039857806355f804b3146103d55780636352211e146103fe57806370a082311461043b576101b7565b806334918dfd1461031b57806342842e0e14610332578063438b63001461035b576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632f745c59146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612c6f565b6106b7565b6040516101f091906132c1565b60405180910390f35b34801561020557600080fd5b5061020e610731565b60405161021b91906132dc565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612d12565b6107c3565b6040516102589190613238565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612c2f565b610848565b005b34801561029657600080fd5b5061029f610960565b6040516102ac91906135fe565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612b19565b61096d565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612c2f565b6109cd565b60405161031291906135fe565b60405180910390f35b34801561032757600080fd5b50610330610a72565b005b34801561033e57600080fd5b5061035960048036038101906103549190612b19565b610b1a565b005b34801561036757600080fd5b50610382600480360381019061037d9190612aac565b610b3a565b60405161038f919061329f565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190612d12565b610be8565b6040516103cc91906135fe565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190612cc9565b610c59565b005b34801561040a57600080fd5b5061042560048036038101906104209190612d12565b610cef565b6040516104329190613238565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190612aac565b610da1565b60405161046f91906135fe565b60405180910390f35b34801561048457600080fd5b5061048d610e59565b005b34801561049b57600080fd5b506104a4610ee1565b005b3480156104b257600080fd5b506104bb61100c565b6040516104c89190613238565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190612d12565b611036565b005b34801561050657600080fd5b5061050f6110bc565b60405161051c91906132dc565b60405180910390f35b34801561053157600080fd5b5061053a61114e565b60405161054791906132c1565b60405180910390f35b34801561055c57600080fd5b50610565611161565b60405161057291906135fe565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190612bef565b611167565b005b6105be60048036038101906105b99190612c2f565b6112e8565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612b6c565b6114cc565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612d12565b61152e565b60405161061d91906132dc565b60405180910390f35b34801561063257600080fd5b5061063b6115d5565b60405161064891906135fe565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190612ad9565b6115db565b60405161068591906132c1565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612aac565b61166f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a575061072982611767565b5b9050919050565b606060008054610740906138f2565b80601f016020809104026020016040519081016040528092919081815260200182805461076c906138f2565b80156107b95780601f1061078e576101008083540402835291602001916107b9565b820191906000526020600020905b81548152906001019060200180831161079c57829003601f168201915b5050505050905090565b60006107ce82611849565b61080d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610804906134be565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085382610cef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb9061355e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e36118b5565b73ffffffffffffffffffffffffffffffffffffffff16148061091257506109118161090c6118b5565b6115db565b5b610951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109489061341e565b60405180910390fd5b61095b83836118bd565b505050565b6000600880549050905090565b61097e6109786118b5565b82611976565b6109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b49061359e565b60405180910390fd5b6109c8838383611a54565b505050565b60006109d883610da1565b8210610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a10906132fe565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a7a6118b5565b73ffffffffffffffffffffffffffffffffffffffff16610a9861100c565b73ffffffffffffffffffffffffffffffffffffffff1614610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae5906134fe565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610b35838383604051806020016040528060008152506114cc565b505050565b60606000610b4783610da1565b905060008167ffffffffffffffff811115610b6557610b64613aba565b5b604051908082528060200260200182016040528015610b935781602001602082028036833780820191505090505b50905060005b82811015610bdd57610bab85826109cd565b828281518110610bbe57610bbd613a8b565b5b6020026020010181815250508080610bd590613955565b915050610b99565b508092505050919050565b6000610bf2610960565b8210610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a906135be565b60405180910390fd5b60088281548110610c4757610c46613a8b565b5b90600052602060002001549050919050565b610c616118b5565b73ffffffffffffffffffffffffffffffffffffffff16610c7f61100c565b73ffffffffffffffffffffffffffffffffffffffff1614610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906134fe565b60405180910390fd5b80600d9080519060200190610ceb9291906128c0565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f9061345e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e099061343e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e616118b5565b73ffffffffffffffffffffffffffffffffffffffff16610e7f61100c565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc906134fe565b60405180910390fd5b610edf6000611cb0565b565b610ee96118b5565b73ffffffffffffffffffffffffffffffffffffffff16610f0761100c565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f54906134fe565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f8390613223565b60006040518083038185875af1925050503d8060008114610fc0576040519150601f19603f3d011682016040523d82523d6000602084013e610fc5565b606091505b5050905080611009576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110009061357e565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61103e6118b5565b73ffffffffffffffffffffffffffffffffffffffff1661105c61100c565b73ffffffffffffffffffffffffffffffffffffffff16146110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906134fe565b60405180910390fd5b80600c8190555050565b6060600180546110cb906138f2565b80601f01602080910402602001604051908101604052809291908181526020018280546110f7906138f2565b80156111445780601f1061111957610100808354040283529160200191611144565b820191906000526020600020905b81548152906001019060200180831161112757829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600c5481565b61116f6118b5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d49061339e565b60405180910390fd5b80600560006111ea6118b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112976118b5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112dc91906132c1565b60405180910390a35050565b611b58816112f4610960565b6112fe9190613727565b111561133f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611336906135de565b60405180910390fd5b60008111611382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113799061347e565b60405180910390fd5b61138a61100c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a057600e60009054906101000a900460ff1661140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906133be565b60405180910390fd5b601481111561144f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611446906133de565b60405180910390fd5b80600c5461145d91906137ae565b34101561149f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611496906134de565b60405180910390fd5b5b60005b818110156114c7576114b483611d76565b80806114bf90613955565b9150506114a3565b505050565b6114dd6114d76118b5565b83611976565b61151c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115139061359e565b60405180910390fd5b61152884848484611dd3565b50505050565b606061153982611849565b611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f9061353e565b60405180910390fd5b6000611582611e2f565b905060008151116115a257604051806020016040528060008152506115cd565b806115ac84611ec1565b6040516020016115bd9291906131ff565b6040516020818303038152906040525b915050919050565b611b5881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116776118b5565b73ffffffffffffffffffffffffffffffffffffffff1661169561100c565b73ffffffffffffffffffffffffffffffffffffffff16146116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e2906134fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561175b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117529061333e565b60405180910390fd5b61176481611cb0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061183257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611842575061184182612022565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661193083610cef565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061198182611849565b6119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906133fe565b60405180910390fd5b60006119cb83610cef565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a3a57508373ffffffffffffffffffffffffffffffffffffffff16611a22846107c3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a4b5750611a4a81856115db565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7482610cef565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac19061351e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b319061337e565b60405180910390fd5b611b4583838361208c565b611b506000826118bd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba09190613808565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bf79190613727565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d80600b6121a0565b6000611d8c600b6121b6565b9050611d9882826121c4565b7f7979b6dfc87c61b9c8f3d992a3fdfee0dcb0232d441daf44e8446519fa77d5df81604051611dc791906135fe565b60405180910390a15050565b611dde848484611a54565b611dea848484846121e2565b611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e209061331e565b60405180910390fd5b50505050565b6060600d8054611e3e906138f2565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6a906138f2565b8015611eb75780601f10611e8c57610100808354040283529160200191611eb7565b820191906000526020600020905b815481529060010190602001808311611e9a57829003601f168201915b5050505050905090565b60606000821415611f09576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061201d565b600082905060005b60008214611f3b578080611f2490613955565b915050600a82611f34919061377d565b9150611f11565b60008167ffffffffffffffff811115611f5757611f56613aba565b5b6040519080825280601f01601f191660200182016040528015611f895781602001600182028036833780820191505090505b5090505b6000851461201657600182611fa29190613808565b9150600a85611fb1919061399e565b6030611fbd9190613727565b60f81b818381518110611fd357611fd2613a8b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561200f919061377d565b9450611f8d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612097838383612379565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120da576120d58161237e565b612119565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121185761211783826123c7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215c5761215781612534565b61219b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461219a576121998282612605565b5b5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6121de828260405180602001604052806000815250612684565b5050565b60006122038473ffffffffffffffffffffffffffffffffffffffff166126df565b1561236c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261222c6118b5565b8786866040518563ffffffff1660e01b815260040161224e9493929190613253565b602060405180830381600087803b15801561226857600080fd5b505af192505050801561229957506040513d601f19601f820116820180604052508101906122969190612c9c565b60015b61231c573d80600081146122c9576040519150601f19603f3d011682016040523d82523d6000602084013e6122ce565b606091505b50600081511415612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b9061331e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612371565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016123d484610da1565b6123de9190613808565b90506000600760008481526020019081526020016000205490508181146124c3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125489190613808565b905060006009600084815260200190815260200160002054905060006008838154811061257857612577613a8b565b5b90600052602060002001549050806008838154811061259a57612599613a8b565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806125e9576125e8613a5c565b5b6001900381819060005260206000200160009055905550505050565b600061261083610da1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b61268e83836126f2565b61269b60008484846121e2565b6126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d19061331e565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127599061349e565b60405180910390fd5b61276b81611849565b156127ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a29061335e565b60405180910390fd5b6127b76000838361208c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128079190613727565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128cc906138f2565b90600052602060002090601f0160209004810192826128ee5760008555612935565b82601f1061290757805160ff1916838001178555612935565b82800160010185558215612935579182015b82811115612934578251825591602001919060010190612919565b5b5090506129429190612946565b5090565b5b8082111561295f576000816000905550600101612947565b5090565b60006129766129718461363e565b613619565b90508281526020810184848401111561299257612991613aee565b5b61299d8482856138b0565b509392505050565b60006129b86129b38461366f565b613619565b9050828152602081018484840111156129d4576129d3613aee565b5b6129df8482856138b0565b509392505050565b6000813590506129f68161416f565b92915050565b600081359050612a0b81614186565b92915050565b600081359050612a208161419d565b92915050565b600081519050612a358161419d565b92915050565b600082601f830112612a5057612a4f613ae9565b5b8135612a60848260208601612963565b91505092915050565b600082601f830112612a7e57612a7d613ae9565b5b8135612a8e8482602086016129a5565b91505092915050565b600081359050612aa6816141b4565b92915050565b600060208284031215612ac257612ac1613af8565b5b6000612ad0848285016129e7565b91505092915050565b60008060408385031215612af057612aef613af8565b5b6000612afe858286016129e7565b9250506020612b0f858286016129e7565b9150509250929050565b600080600060608486031215612b3257612b31613af8565b5b6000612b40868287016129e7565b9350506020612b51868287016129e7565b9250506040612b6286828701612a97565b9150509250925092565b60008060008060808587031215612b8657612b85613af8565b5b6000612b94878288016129e7565b9450506020612ba5878288016129e7565b9350506040612bb687828801612a97565b925050606085013567ffffffffffffffff811115612bd757612bd6613af3565b5b612be387828801612a3b565b91505092959194509250565b60008060408385031215612c0657612c05613af8565b5b6000612c14858286016129e7565b9250506020612c25858286016129fc565b9150509250929050565b60008060408385031215612c4657612c45613af8565b5b6000612c54858286016129e7565b9250506020612c6585828601612a97565b9150509250929050565b600060208284031215612c8557612c84613af8565b5b6000612c9384828501612a11565b91505092915050565b600060208284031215612cb257612cb1613af8565b5b6000612cc084828501612a26565b91505092915050565b600060208284031215612cdf57612cde613af8565b5b600082013567ffffffffffffffff811115612cfd57612cfc613af3565b5b612d0984828501612a69565b91505092915050565b600060208284031215612d2857612d27613af8565b5b6000612d3684828501612a97565b91505092915050565b6000612d4b83836131e1565b60208301905092915050565b612d608161383c565b82525050565b6000612d71826136b0565b612d7b81856136de565b9350612d86836136a0565b8060005b83811015612db7578151612d9e8882612d3f565b9750612da9836136d1565b925050600181019050612d8a565b5085935050505092915050565b612dcd8161384e565b82525050565b6000612dde826136bb565b612de881856136ef565b9350612df88185602086016138bf565b612e0181613afd565b840191505092915050565b6000612e17826136c6565b612e21818561370b565b9350612e318185602086016138bf565b612e3a81613afd565b840191505092915050565b6000612e50826136c6565b612e5a818561371c565b9350612e6a8185602086016138bf565b80840191505092915050565b6000612e83602b8361370b565b9150612e8e82613b0e565b604082019050919050565b6000612ea660328361370b565b9150612eb182613b5d565b604082019050919050565b6000612ec960268361370b565b9150612ed482613bac565b604082019050919050565b6000612eec601c8361370b565b9150612ef782613bfb565b602082019050919050565b6000612f0f60248361370b565b9150612f1a82613c24565b604082019050919050565b6000612f3260198361370b565b9150612f3d82613c73565b602082019050919050565b6000612f5560148361370b565b9150612f6082613c9c565b602082019050919050565b6000612f78602f8361370b565b9150612f8382613cc5565b604082019050919050565b6000612f9b602c8361370b565b9150612fa682613d14565b604082019050919050565b6000612fbe60388361370b565b9150612fc982613d63565b604082019050919050565b6000612fe1602a8361370b565b9150612fec82613db2565b604082019050919050565b600061300460298361370b565b915061300f82613e01565b604082019050919050565b600061302760318361370b565b915061303282613e50565b604082019050919050565b600061304a60208361370b565b915061305582613e9f565b602082019050919050565b600061306d602c8361370b565b915061307882613ec8565b604082019050919050565b6000613090602f8361370b565b915061309b82613f17565b604082019050919050565b60006130b360208361370b565b91506130be82613f66565b602082019050919050565b60006130d660298361370b565b91506130e182613f8f565b604082019050919050565b60006130f9602f8361370b565b915061310482613fde565b604082019050919050565b600061311c60218361370b565b91506131278261402d565b604082019050919050565b600061313f600083613700565b915061314a8261407c565b600082019050919050565b600061316260108361370b565b915061316d8261407f565b602082019050919050565b600061318560318361370b565b9150613190826140a8565b604082019050919050565b60006131a8602c8361370b565b91506131b3826140f7565b604082019050919050565b60006131cb60208361370b565b91506131d682614146565b602082019050919050565b6131ea816138a6565b82525050565b6131f9816138a6565b82525050565b600061320b8285612e45565b91506132178284612e45565b91508190509392505050565b600061322e82613132565b9150819050919050565b600060208201905061324d6000830184612d57565b92915050565b60006080820190506132686000830187612d57565b6132756020830186612d57565b61328260408301856131f0565b81810360608301526132948184612dd3565b905095945050505050565b600060208201905081810360008301526132b98184612d66565b905092915050565b60006020820190506132d66000830184612dc4565b92915050565b600060208201905081810360008301526132f68184612e0c565b905092915050565b6000602082019050818103600083015261331781612e76565b9050919050565b6000602082019050818103600083015261333781612e99565b9050919050565b6000602082019050818103600083015261335781612ebc565b9050919050565b6000602082019050818103600083015261337781612edf565b9050919050565b6000602082019050818103600083015261339781612f02565b9050919050565b600060208201905081810360008301526133b781612f25565b9050919050565b600060208201905081810360008301526133d781612f48565b9050919050565b600060208201905081810360008301526133f781612f6b565b9050919050565b6000602082019050818103600083015261341781612f8e565b9050919050565b6000602082019050818103600083015261343781612fb1565b9050919050565b6000602082019050818103600083015261345781612fd4565b9050919050565b6000602082019050818103600083015261347781612ff7565b9050919050565b600060208201905081810360008301526134978161301a565b9050919050565b600060208201905081810360008301526134b78161303d565b9050919050565b600060208201905081810360008301526134d781613060565b9050919050565b600060208201905081810360008301526134f781613083565b9050919050565b60006020820190508181036000830152613517816130a6565b9050919050565b60006020820190508181036000830152613537816130c9565b9050919050565b60006020820190508181036000830152613557816130ec565b9050919050565b600060208201905081810360008301526135778161310f565b9050919050565b6000602082019050818103600083015261359781613155565b9050919050565b600060208201905081810360008301526135b781613178565b9050919050565b600060208201905081810360008301526135d78161319b565b9050919050565b600060208201905081810360008301526135f7816131be565b9050919050565b600060208201905061361360008301846131f0565b92915050565b6000613623613634565b905061362f8282613924565b919050565b6000604051905090565b600067ffffffffffffffff82111561365957613658613aba565b5b61366282613afd565b9050602081019050919050565b600067ffffffffffffffff82111561368a57613689613aba565b5b61369382613afd565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613732826138a6565b915061373d836138a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613772576137716139cf565b5b828201905092915050565b6000613788826138a6565b9150613793836138a6565b9250826137a3576137a26139fe565b5b828204905092915050565b60006137b9826138a6565b91506137c4836138a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137fd576137fc6139cf565b5b828202905092915050565b6000613813826138a6565b915061381e836138a6565b925082821015613831576138306139cf565b5b828203905092915050565b600061384782613886565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138dd5780820151818401526020810190506138c2565b838111156138ec576000848401525b50505050565b6000600282049050600182168061390a57607f821691505b6020821081141561391e5761391d613a2d565b5b50919050565b61392d82613afd565b810181811067ffffffffffffffff8211171561394c5761394b613aba565b5b80604052505050565b6000613960826138a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613993576139926139cf565b5b600182019050919050565b60006139a9826138a6565b91506139b4836138a6565b9250826139c4576139c36139fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4d6178696d756d20323020536861726b7a2063616e206265206d696e7465642060008201527f706572207472616e73616374696f6e0000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d203120536861726b7a2068617320746f206265206d696e746560008201527f6420706572207472616e73616374696f6e000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c79206f6620536861726b7a600082015250565b6141788161383c565b811461418357600080fd5b50565b61418f8161384e565b811461419a57600080fd5b50565b6141a68161385a565b81146141b157600080fd5b50565b6141bd816138a6565b81146141c857600080fd5b5056fea264697066735822122030e665927c9b63b14925c75639c814e2676283b957ec7988f9c9e0ffd5011fbf64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733b2f2f516d4e50484c5932714b424565466873624c44474a735a7459447958366a6656524441334752596e597854474c762f00000000000000000000
Deployed Bytecode
0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105e9578063d211b6e114610626578063e985e9c514610651578063f2fde38b1461068e576101b7565b8063a22cb4651461057b578063b1034d51146105a4578063b88d4fde146105c0576101b7565b806391b7f5ed116100c657806391b7f5ed146104d157806395d89b41146104fa57806399288dbb14610525578063a035b1fe14610550576101b7565b8063715018a614610478578063853828b61461048f5780638da5cb5b146104a6576101b7565b806334918dfd116101595780634f6ccce7116101335780634f6ccce71461039857806355f804b3146103d55780636352211e146103fe57806370a082311461043b576101b7565b806334918dfd1461031b57806342842e0e14610332578063438b63001461035b576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632f745c59146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612c6f565b6106b7565b6040516101f091906132c1565b60405180910390f35b34801561020557600080fd5b5061020e610731565b60405161021b91906132dc565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612d12565b6107c3565b6040516102589190613238565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612c2f565b610848565b005b34801561029657600080fd5b5061029f610960565b6040516102ac91906135fe565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612b19565b61096d565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612c2f565b6109cd565b60405161031291906135fe565b60405180910390f35b34801561032757600080fd5b50610330610a72565b005b34801561033e57600080fd5b5061035960048036038101906103549190612b19565b610b1a565b005b34801561036757600080fd5b50610382600480360381019061037d9190612aac565b610b3a565b60405161038f919061329f565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190612d12565b610be8565b6040516103cc91906135fe565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190612cc9565b610c59565b005b34801561040a57600080fd5b5061042560048036038101906104209190612d12565b610cef565b6040516104329190613238565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190612aac565b610da1565b60405161046f91906135fe565b60405180910390f35b34801561048457600080fd5b5061048d610e59565b005b34801561049b57600080fd5b506104a4610ee1565b005b3480156104b257600080fd5b506104bb61100c565b6040516104c89190613238565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190612d12565b611036565b005b34801561050657600080fd5b5061050f6110bc565b60405161051c91906132dc565b60405180910390f35b34801561053157600080fd5b5061053a61114e565b60405161054791906132c1565b60405180910390f35b34801561055c57600080fd5b50610565611161565b60405161057291906135fe565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190612bef565b611167565b005b6105be60048036038101906105b99190612c2f565b6112e8565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612b6c565b6114cc565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612d12565b61152e565b60405161061d91906132dc565b60405180910390f35b34801561063257600080fd5b5061063b6115d5565b60405161064891906135fe565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190612ad9565b6115db565b60405161068591906132c1565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612aac565b61166f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a575061072982611767565b5b9050919050565b606060008054610740906138f2565b80601f016020809104026020016040519081016040528092919081815260200182805461076c906138f2565b80156107b95780601f1061078e576101008083540402835291602001916107b9565b820191906000526020600020905b81548152906001019060200180831161079c57829003601f168201915b5050505050905090565b60006107ce82611849565b61080d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610804906134be565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085382610cef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb9061355e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e36118b5565b73ffffffffffffffffffffffffffffffffffffffff16148061091257506109118161090c6118b5565b6115db565b5b610951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109489061341e565b60405180910390fd5b61095b83836118bd565b505050565b6000600880549050905090565b61097e6109786118b5565b82611976565b6109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b49061359e565b60405180910390fd5b6109c8838383611a54565b505050565b60006109d883610da1565b8210610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a10906132fe565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a7a6118b5565b73ffffffffffffffffffffffffffffffffffffffff16610a9861100c565b73ffffffffffffffffffffffffffffffffffffffff1614610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae5906134fe565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610b35838383604051806020016040528060008152506114cc565b505050565b60606000610b4783610da1565b905060008167ffffffffffffffff811115610b6557610b64613aba565b5b604051908082528060200260200182016040528015610b935781602001602082028036833780820191505090505b50905060005b82811015610bdd57610bab85826109cd565b828281518110610bbe57610bbd613a8b565b5b6020026020010181815250508080610bd590613955565b915050610b99565b508092505050919050565b6000610bf2610960565b8210610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a906135be565b60405180910390fd5b60088281548110610c4757610c46613a8b565b5b90600052602060002001549050919050565b610c616118b5565b73ffffffffffffffffffffffffffffffffffffffff16610c7f61100c565b73ffffffffffffffffffffffffffffffffffffffff1614610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906134fe565b60405180910390fd5b80600d9080519060200190610ceb9291906128c0565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f9061345e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e099061343e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e616118b5565b73ffffffffffffffffffffffffffffffffffffffff16610e7f61100c565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc906134fe565b60405180910390fd5b610edf6000611cb0565b565b610ee96118b5565b73ffffffffffffffffffffffffffffffffffffffff16610f0761100c565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f54906134fe565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f8390613223565b60006040518083038185875af1925050503d8060008114610fc0576040519150601f19603f3d011682016040523d82523d6000602084013e610fc5565b606091505b5050905080611009576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110009061357e565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61103e6118b5565b73ffffffffffffffffffffffffffffffffffffffff1661105c61100c565b73ffffffffffffffffffffffffffffffffffffffff16146110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906134fe565b60405180910390fd5b80600c8190555050565b6060600180546110cb906138f2565b80601f01602080910402602001604051908101604052809291908181526020018280546110f7906138f2565b80156111445780601f1061111957610100808354040283529160200191611144565b820191906000526020600020905b81548152906001019060200180831161112757829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600c5481565b61116f6118b5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d49061339e565b60405180910390fd5b80600560006111ea6118b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112976118b5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112dc91906132c1565b60405180910390a35050565b611b58816112f4610960565b6112fe9190613727565b111561133f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611336906135de565b60405180910390fd5b60008111611382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113799061347e565b60405180910390fd5b61138a61100c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a057600e60009054906101000a900460ff1661140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906133be565b60405180910390fd5b601481111561144f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611446906133de565b60405180910390fd5b80600c5461145d91906137ae565b34101561149f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611496906134de565b60405180910390fd5b5b60005b818110156114c7576114b483611d76565b80806114bf90613955565b9150506114a3565b505050565b6114dd6114d76118b5565b83611976565b61151c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115139061359e565b60405180910390fd5b61152884848484611dd3565b50505050565b606061153982611849565b611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f9061353e565b60405180910390fd5b6000611582611e2f565b905060008151116115a257604051806020016040528060008152506115cd565b806115ac84611ec1565b6040516020016115bd9291906131ff565b6040516020818303038152906040525b915050919050565b611b5881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116776118b5565b73ffffffffffffffffffffffffffffffffffffffff1661169561100c565b73ffffffffffffffffffffffffffffffffffffffff16146116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e2906134fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561175b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117529061333e565b60405180910390fd5b61176481611cb0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061183257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611842575061184182612022565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661193083610cef565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061198182611849565b6119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906133fe565b60405180910390fd5b60006119cb83610cef565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a3a57508373ffffffffffffffffffffffffffffffffffffffff16611a22846107c3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a4b5750611a4a81856115db565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7482610cef565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac19061351e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b319061337e565b60405180910390fd5b611b4583838361208c565b611b506000826118bd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba09190613808565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bf79190613727565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d80600b6121a0565b6000611d8c600b6121b6565b9050611d9882826121c4565b7f7979b6dfc87c61b9c8f3d992a3fdfee0dcb0232d441daf44e8446519fa77d5df81604051611dc791906135fe565b60405180910390a15050565b611dde848484611a54565b611dea848484846121e2565b611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e209061331e565b60405180910390fd5b50505050565b6060600d8054611e3e906138f2565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6a906138f2565b8015611eb75780601f10611e8c57610100808354040283529160200191611eb7565b820191906000526020600020905b815481529060010190602001808311611e9a57829003601f168201915b5050505050905090565b60606000821415611f09576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061201d565b600082905060005b60008214611f3b578080611f2490613955565b915050600a82611f34919061377d565b9150611f11565b60008167ffffffffffffffff811115611f5757611f56613aba565b5b6040519080825280601f01601f191660200182016040528015611f895781602001600182028036833780820191505090505b5090505b6000851461201657600182611fa29190613808565b9150600a85611fb1919061399e565b6030611fbd9190613727565b60f81b818381518110611fd357611fd2613a8b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561200f919061377d565b9450611f8d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612097838383612379565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120da576120d58161237e565b612119565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121185761211783826123c7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215c5761215781612534565b61219b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461219a576121998282612605565b5b5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6121de828260405180602001604052806000815250612684565b5050565b60006122038473ffffffffffffffffffffffffffffffffffffffff166126df565b1561236c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261222c6118b5565b8786866040518563ffffffff1660e01b815260040161224e9493929190613253565b602060405180830381600087803b15801561226857600080fd5b505af192505050801561229957506040513d601f19601f820116820180604052508101906122969190612c9c565b60015b61231c573d80600081146122c9576040519150601f19603f3d011682016040523d82523d6000602084013e6122ce565b606091505b50600081511415612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b9061331e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612371565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016123d484610da1565b6123de9190613808565b90506000600760008481526020019081526020016000205490508181146124c3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125489190613808565b905060006009600084815260200190815260200160002054905060006008838154811061257857612577613a8b565b5b90600052602060002001549050806008838154811061259a57612599613a8b565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806125e9576125e8613a5c565b5b6001900381819060005260206000200160009055905550505050565b600061261083610da1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b61268e83836126f2565b61269b60008484846121e2565b6126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d19061331e565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127599061349e565b60405180910390fd5b61276b81611849565b156127ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a29061335e565b60405180910390fd5b6127b76000838361208c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128079190613727565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128cc906138f2565b90600052602060002090601f0160209004810192826128ee5760008555612935565b82601f1061290757805160ff1916838001178555612935565b82800160010185558215612935579182015b82811115612934578251825591602001919060010190612919565b5b5090506129429190612946565b5090565b5b8082111561295f576000816000905550600101612947565b5090565b60006129766129718461363e565b613619565b90508281526020810184848401111561299257612991613aee565b5b61299d8482856138b0565b509392505050565b60006129b86129b38461366f565b613619565b9050828152602081018484840111156129d4576129d3613aee565b5b6129df8482856138b0565b509392505050565b6000813590506129f68161416f565b92915050565b600081359050612a0b81614186565b92915050565b600081359050612a208161419d565b92915050565b600081519050612a358161419d565b92915050565b600082601f830112612a5057612a4f613ae9565b5b8135612a60848260208601612963565b91505092915050565b600082601f830112612a7e57612a7d613ae9565b5b8135612a8e8482602086016129a5565b91505092915050565b600081359050612aa6816141b4565b92915050565b600060208284031215612ac257612ac1613af8565b5b6000612ad0848285016129e7565b91505092915050565b60008060408385031215612af057612aef613af8565b5b6000612afe858286016129e7565b9250506020612b0f858286016129e7565b9150509250929050565b600080600060608486031215612b3257612b31613af8565b5b6000612b40868287016129e7565b9350506020612b51868287016129e7565b9250506040612b6286828701612a97565b9150509250925092565b60008060008060808587031215612b8657612b85613af8565b5b6000612b94878288016129e7565b9450506020612ba5878288016129e7565b9350506040612bb687828801612a97565b925050606085013567ffffffffffffffff811115612bd757612bd6613af3565b5b612be387828801612a3b565b91505092959194509250565b60008060408385031215612c0657612c05613af8565b5b6000612c14858286016129e7565b9250506020612c25858286016129fc565b9150509250929050565b60008060408385031215612c4657612c45613af8565b5b6000612c54858286016129e7565b9250506020612c6585828601612a97565b9150509250929050565b600060208284031215612c8557612c84613af8565b5b6000612c9384828501612a11565b91505092915050565b600060208284031215612cb257612cb1613af8565b5b6000612cc084828501612a26565b91505092915050565b600060208284031215612cdf57612cde613af8565b5b600082013567ffffffffffffffff811115612cfd57612cfc613af3565b5b612d0984828501612a69565b91505092915050565b600060208284031215612d2857612d27613af8565b5b6000612d3684828501612a97565b91505092915050565b6000612d4b83836131e1565b60208301905092915050565b612d608161383c565b82525050565b6000612d71826136b0565b612d7b81856136de565b9350612d86836136a0565b8060005b83811015612db7578151612d9e8882612d3f565b9750612da9836136d1565b925050600181019050612d8a565b5085935050505092915050565b612dcd8161384e565b82525050565b6000612dde826136bb565b612de881856136ef565b9350612df88185602086016138bf565b612e0181613afd565b840191505092915050565b6000612e17826136c6565b612e21818561370b565b9350612e318185602086016138bf565b612e3a81613afd565b840191505092915050565b6000612e50826136c6565b612e5a818561371c565b9350612e6a8185602086016138bf565b80840191505092915050565b6000612e83602b8361370b565b9150612e8e82613b0e565b604082019050919050565b6000612ea660328361370b565b9150612eb182613b5d565b604082019050919050565b6000612ec960268361370b565b9150612ed482613bac565b604082019050919050565b6000612eec601c8361370b565b9150612ef782613bfb565b602082019050919050565b6000612f0f60248361370b565b9150612f1a82613c24565b604082019050919050565b6000612f3260198361370b565b9150612f3d82613c73565b602082019050919050565b6000612f5560148361370b565b9150612f6082613c9c565b602082019050919050565b6000612f78602f8361370b565b9150612f8382613cc5565b604082019050919050565b6000612f9b602c8361370b565b9150612fa682613d14565b604082019050919050565b6000612fbe60388361370b565b9150612fc982613d63565b604082019050919050565b6000612fe1602a8361370b565b9150612fec82613db2565b604082019050919050565b600061300460298361370b565b915061300f82613e01565b604082019050919050565b600061302760318361370b565b915061303282613e50565b604082019050919050565b600061304a60208361370b565b915061305582613e9f565b602082019050919050565b600061306d602c8361370b565b915061307882613ec8565b604082019050919050565b6000613090602f8361370b565b915061309b82613f17565b604082019050919050565b60006130b360208361370b565b91506130be82613f66565b602082019050919050565b60006130d660298361370b565b91506130e182613f8f565b604082019050919050565b60006130f9602f8361370b565b915061310482613fde565b604082019050919050565b600061311c60218361370b565b91506131278261402d565b604082019050919050565b600061313f600083613700565b915061314a8261407c565b600082019050919050565b600061316260108361370b565b915061316d8261407f565b602082019050919050565b600061318560318361370b565b9150613190826140a8565b604082019050919050565b60006131a8602c8361370b565b91506131b3826140f7565b604082019050919050565b60006131cb60208361370b565b91506131d682614146565b602082019050919050565b6131ea816138a6565b82525050565b6131f9816138a6565b82525050565b600061320b8285612e45565b91506132178284612e45565b91508190509392505050565b600061322e82613132565b9150819050919050565b600060208201905061324d6000830184612d57565b92915050565b60006080820190506132686000830187612d57565b6132756020830186612d57565b61328260408301856131f0565b81810360608301526132948184612dd3565b905095945050505050565b600060208201905081810360008301526132b98184612d66565b905092915050565b60006020820190506132d66000830184612dc4565b92915050565b600060208201905081810360008301526132f68184612e0c565b905092915050565b6000602082019050818103600083015261331781612e76565b9050919050565b6000602082019050818103600083015261333781612e99565b9050919050565b6000602082019050818103600083015261335781612ebc565b9050919050565b6000602082019050818103600083015261337781612edf565b9050919050565b6000602082019050818103600083015261339781612f02565b9050919050565b600060208201905081810360008301526133b781612f25565b9050919050565b600060208201905081810360008301526133d781612f48565b9050919050565b600060208201905081810360008301526133f781612f6b565b9050919050565b6000602082019050818103600083015261341781612f8e565b9050919050565b6000602082019050818103600083015261343781612fb1565b9050919050565b6000602082019050818103600083015261345781612fd4565b9050919050565b6000602082019050818103600083015261347781612ff7565b9050919050565b600060208201905081810360008301526134978161301a565b9050919050565b600060208201905081810360008301526134b78161303d565b9050919050565b600060208201905081810360008301526134d781613060565b9050919050565b600060208201905081810360008301526134f781613083565b9050919050565b60006020820190508181036000830152613517816130a6565b9050919050565b60006020820190508181036000830152613537816130c9565b9050919050565b60006020820190508181036000830152613557816130ec565b9050919050565b600060208201905081810360008301526135778161310f565b9050919050565b6000602082019050818103600083015261359781613155565b9050919050565b600060208201905081810360008301526135b781613178565b9050919050565b600060208201905081810360008301526135d78161319b565b9050919050565b600060208201905081810360008301526135f7816131be565b9050919050565b600060208201905061361360008301846131f0565b92915050565b6000613623613634565b905061362f8282613924565b919050565b6000604051905090565b600067ffffffffffffffff82111561365957613658613aba565b5b61366282613afd565b9050602081019050919050565b600067ffffffffffffffff82111561368a57613689613aba565b5b61369382613afd565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613732826138a6565b915061373d836138a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613772576137716139cf565b5b828201905092915050565b6000613788826138a6565b9150613793836138a6565b9250826137a3576137a26139fe565b5b828204905092915050565b60006137b9826138a6565b91506137c4836138a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137fd576137fc6139cf565b5b828202905092915050565b6000613813826138a6565b915061381e836138a6565b925082821015613831576138306139cf565b5b828203905092915050565b600061384782613886565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138dd5780820151818401526020810190506138c2565b838111156138ec576000848401525b50505050565b6000600282049050600182168061390a57607f821691505b6020821081141561391e5761391d613a2d565b5b50919050565b61392d82613afd565b810181811067ffffffffffffffff8211171561394c5761394b613aba565b5b80604052505050565b6000613960826138a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613993576139926139cf565b5b600182019050919050565b60006139a9826138a6565b91506139b4836138a6565b9250826139c4576139c36139fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4d6178696d756d20323020536861726b7a2063616e206265206d696e7465642060008201527f706572207472616e73616374696f6e0000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d203120536861726b7a2068617320746f206265206d696e746560008201527f6420706572207472616e73616374696f6e000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c79206f6620536861726b7a600082015250565b6141788161383c565b811461418357600080fd5b50565b61418f8161384e565b811461419a57600080fd5b50565b6141a68161385a565b81146141b157600080fd5b50565b6141bd816138a6565b81146141c857600080fd5b5056fea264697066735822122030e665927c9b63b14925c75639c814e2676283b957ec7988f9c9e0ffd5011fbf64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733b2f2f516d4e50484c5932714b424565466873624c44474a735a7459447958366a6656524441334752596e597854474c762f00000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs;//QmNPHLY2qKBEeFhsbLDGJsZtYDyX6jfVRDA3GRYnYxTGLv/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733b2f2f516d4e50484c5932714b424565466873624c44474a735a7459
Arg [3] : 447958366a6656524441334752596e597854474c762f00000000000000000000
Deployed Bytecode Sourcemap
46360:2583:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39872:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28725:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28248:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40675:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29784:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40256:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47523:83;;;;;;;;;;;;;:::i;:::-;;30231:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46874:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40865:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47267:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26639:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26282:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9739:94;;;;;;;;;;;;;:::i;:::-;;47614:176;;;;;;;;;;;;;:::i;:::-;;9088:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47376:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27201:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46631:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46544:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29105:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47817:801;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30487:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27376:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46496:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29503:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9988:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39872:300;40019:4;40076:35;40061:50;;;:11;:50;;;;:103;;;;40128:36;40152:11;40128:23;:36::i;:::-;40061:103;40041:123;;39872:300;;;:::o;27032:100::-;27086:13;27119:5;27112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27032:100;:::o;28725:308::-;28846:7;28893:16;28901:7;28893;:16::i;:::-;28871:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29001:15;:24;29017:7;29001:24;;;;;;;;;;;;;;;;;;;;;28994:31;;28725:308;;;:::o;28248:411::-;28329:13;28345:23;28360:7;28345:14;:23::i;:::-;28329:39;;28393:5;28387:11;;:2;:11;;;;28379:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28487:5;28471:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28496:37;28513:5;28520:12;:10;:12::i;:::-;28496:16;:37::i;:::-;28471:62;28449:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28630:21;28639:2;28643:7;28630:8;:21::i;:::-;28318:341;28248:411;;:::o;40675:113::-;40736:7;40763:10;:17;;;;40756:24;;40675:113;:::o;29784:376::-;29993:41;30012:12;:10;:12::i;:::-;30026:7;29993:18;:41::i;:::-;29971:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30124:28;30134:4;30140:2;30144:7;30124:9;:28::i;:::-;29784:376;;;:::o;40256:343::-;40398:7;40453:23;40470:5;40453:16;:23::i;:::-;40445:5;:31;40423:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40565:12;:19;40578:5;40565:19;;;;;;;;;;;;;;;:26;40585:5;40565:26;;;;;;;;;;;;40558:33;;40256:343;;;;:::o;47523:83::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47590:8:::1;;;;;;;;;;;47589:9;47578:8;;:20;;;;;;;;;;;;;;;;;;47523:83::o:0;30231:185::-;30369:39;30386:4;30392:2;30396:7;30369:39;;;;;;;;;;;;:16;:39::i;:::-;30231:185;;;:::o;46874:385::-;46963:16;46997:18;47018:17;47028:6;47018:9;:17::i;:::-;46997:38;;47048:25;47090:10;47076:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47048:53;;47117:9;47112:112;47136:10;47132:1;:14;47112:112;;;47182:30;47202:6;47210:1;47182:19;:30::i;:::-;47168:8;47177:1;47168:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47148:3;;;;;:::i;:::-;;;;47112:112;;;;47243:8;47236:15;;;;46874:385;;;:::o;40865:320::-;40985:7;41040:30;:28;:30::i;:::-;41032:5;:38;41010:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41160:10;41171:5;41160:17;;;;;;;;:::i;:::-;;;;;;;;;;41153:24;;40865:320;;;:::o;47267:101::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47353:7:::1;47338:12;:22;;;;;;;;;;;;:::i;:::-;;47267:101:::0;:::o;26639:326::-;26756:7;26781:13;26797:7;:16;26805:7;26797:16;;;;;;;;;;;;;;;;;;;;;26781:32;;26863:1;26846:19;;:5;:19;;;;26824:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26952:5;26945:12;;;26639:326;;;:::o;26282:295::-;26399:7;26463:1;26446:19;;:5;:19;;;;26424:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26553:9;:16;26563:5;26553:16;;;;;;;;;;;;;;;;26546:23;;26282:295;;;:::o;9739:94::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9804:21:::1;9822:1;9804:9;:21::i;:::-;9739:94::o:0;47614:176::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47668:12:::1;47686:10;:15;;47709:21;47686:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47667:68;;;47754:7;47746:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;47656:134;47614:176::o:0;9088:87::-;9134:7;9161:6;;;;;;;;;;;9154:13;;9088:87;:::o;47376:92::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47451:9:::1;47443:5;:17;;;;47376:92:::0;:::o;27201:104::-;27257:13;27290:7;27283:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27201:104;:::o;46631:27::-;;;;;;;;;;;;;:::o;46544:40::-;;;;:::o;29105:327::-;29252:12;:10;:12::i;:::-;29240:24;;:8;:24;;;;29232:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29352:8;29307:18;:32;29326:12;:10;:12::i;:::-;29307:32;;;;;;;;;;;;;;;:42;29340:8;29307:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29405:8;29376:48;;29391:12;:10;:12::i;:::-;29376:48;;;29415:8;29376:48;;;;;;:::i;:::-;;;;;;;;29105:327;;:::o;47817:801::-;46533:4;47932:6;47916:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;47894:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;48054:1;48045:6;:10;48023:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;48161:7;:5;:7::i;:::-;48147:21;;:10;:21;;;48143:382;;48193:8;;;;;;;;;;;48185:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;48277:2;48267:6;:12;;48241:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;48424:6;48416:5;;:14;;;;:::i;:::-;48403:9;:27;;48377:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;48143:382;48542:9;48537:74;48561:6;48557:1;:10;48537:74;;;48589:10;48595:3;48589:5;:10::i;:::-;48569:3;;;;;:::i;:::-;;;;48537:74;;;;47817:801;;:::o;30487:365::-;30676:41;30695:12;:10;:12::i;:::-;30709:7;30676:18;:41::i;:::-;30654:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30805:39;30819:4;30825:2;30829:7;30838:5;30805:13;:39::i;:::-;30487:365;;;;:::o;27376:468::-;27494:13;27547:16;27555:7;27547;:16::i;:::-;27525:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;27651:21;27675:10;:8;:10::i;:::-;27651:34;;27740:1;27722:7;27716:21;:25;:120;;;;;;;;;;;;;;;;;27785:7;27794:18;:7;:16;:18::i;:::-;27768:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27716:120;27696:140;;;27376:468;;;:::o;46496:41::-;46533:4;46496:41;:::o;29503:214::-;29645:4;29674:18;:25;29693:5;29674:25;;;;;;;;;;;;;;;:35;29700:8;29674:35;;;;;;;;;;;;;;;;;;;;;;;;;29667:42;;29503:214;;;;:::o;9988:229::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10111:1:::1;10091:22;;:8;:22;;;;10069:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10190:19;10200:8;10190:9;:19::i;:::-;9988:229:::0;:::o;25863:355::-;26010:4;26067:25;26052:40;;;:11;:40;;;;:105;;;;26124:33;26109:48;;;:11;:48;;;;26052:105;:158;;;;26174:36;26198:11;26174:23;:36::i;:::-;26052:158;26032:178;;25863:355;;;:::o;32399:127::-;32464:4;32516:1;32488:30;;:7;:16;32496:7;32488:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32481:37;;32399:127;;;:::o;2061:98::-;2114:7;2141:10;2134:17;;2061:98;:::o;36522:174::-;36624:2;36597:15;:24;36613:7;36597:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36680:7;36676:2;36642:46;;36651:23;36666:7;36651:14;:23::i;:::-;36642:46;;;;;;;;;;;;36522:174;;:::o;32693:452::-;32822:4;32866:16;32874:7;32866;:16::i;:::-;32844:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32965:13;32981:23;32996:7;32981:14;:23::i;:::-;32965:39;;33034:5;33023:16;;:7;:16;;;:64;;;;33080:7;33056:31;;:20;33068:7;33056:11;:20::i;:::-;:31;;;33023:64;:113;;;;33104:32;33121:5;33128:7;33104:16;:32::i;:::-;33023:113;33015:122;;;32693:452;;;;:::o;35789:615::-;35962:4;35935:31;;:23;35950:7;35935:14;:23::i;:::-;:31;;;35913:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;36068:1;36054:16;;:2;:16;;;;36046:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36124:39;36145:4;36151:2;36155:7;36124:20;:39::i;:::-;36228:29;36245:1;36249:7;36228:8;:29::i;:::-;36289:1;36270:9;:15;36280:4;36270:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36318:1;36301:9;:13;36311:2;36301:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36349:2;36330:7;:16;36338:7;36330:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36388:7;36384:2;36369:27;;36378:4;36369:27;;;;;;;;;;;;35789:615;;;:::o;10225:173::-;10281:16;10300:6;;;;;;;;;;;10281:25;;10326:8;10317:6;;:17;;;;;;;;;;;;;;;;;;10381:8;10350:40;;10371:8;10350:40;;;;;;;;;;;;10270:128;10225:173;:::o;48626:193::-;48673:20;:8;:18;:20::i;:::-;48704:15;48722:18;:8;:16;:18::i;:::-;48704:36;;48751:23;48761:3;48766:7;48751:9;:23::i;:::-;48790:21;48803:7;48790:21;;;;;;:::i;:::-;;;;;;;;48662:157;48626:193;:::o;31734:352::-;31891:28;31901:4;31907:2;31911:7;31891:9;:28::i;:::-;31952:48;31975:4;31981:2;31985:7;31994:5;31952:22;:48::i;:::-;31930:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31734:352;;;;:::o;48827:113::-;48887:13;48920:12;48913:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48827:113;:::o;12730:723::-;12786:13;13016:1;13007:5;:10;13003:53;;;13034:10;;;;;;;;;;;;;;;;;;;;;13003:53;13066:12;13081:5;13066:20;;13097:14;13122:78;13137:1;13129:4;:9;13122:78;;13155:8;;;;;:::i;:::-;;;;13186:2;13178:10;;;;;:::i;:::-;;;13122:78;;;13210:19;13242:6;13232:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13210:39;;13260:154;13276:1;13267:5;:10;13260:154;;13304:1;13294:11;;;;;:::i;:::-;;;13371:2;13363:5;:10;;;;:::i;:::-;13350:2;:24;;;;:::i;:::-;13337:39;;13320:6;13327;13320:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13400:2;13391:11;;;;;:::i;:::-;;;13260:154;;;13438:6;13424:21;;;;;12730:723;;;;:::o;12209:207::-;12339:4;12383:25;12368:40;;;:11;:40;;;;12361:47;;12209:207;;;:::o;41798:589::-;41942:45;41969:4;41975:2;41979:7;41942:26;:45::i;:::-;42020:1;42004:18;;:4;:18;;;42000:187;;;42039:40;42071:7;42039:31;:40::i;:::-;42000:187;;;42109:2;42101:10;;:4;:10;;;42097:90;;42128:47;42161:4;42167:7;42128:32;:47::i;:::-;42097:90;42000:187;42215:1;42201:16;;:2;:16;;;42197:183;;;42234:45;42271:7;42234:36;:45::i;:::-;42197:183;;;42307:4;42301:10;;:2;:10;;;42297:83;;42328:40;42356:2;42360:7;42328:27;:40::i;:::-;42297:83;42197:183;41798:589;;;:::o;970:127::-;1077:1;1059:7;:14;;;:19;;;;;;;;;;;970:127;:::o;848:114::-;913:7;940;:14;;;933:21;;848:114;;;:::o;33487:110::-;33563:26;33573:2;33577:7;33563:26;;;;;;;;;;;;:9;:26::i;:::-;33487:110;;:::o;37261:984::-;37416:4;37437:15;:2;:13;;;:15::i;:::-;37433:805;;;37506:2;37490:36;;;37549:12;:10;:12::i;:::-;37584:4;37611:7;37641:5;37490:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37469:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37869:1;37852:6;:13;:18;37848:320;;;37895:108;;;;;;;;;;:::i;:::-;;;;;;;;37848:320;38118:6;38112:13;38103:6;38099:2;38095:15;38088:38;37469:714;37739:45;;;37729:55;;;:6;:55;;;;37722:62;;;;;37433:805;38222:4;38215:11;;37261:984;;;;;;;:::o;38817:126::-;;;;:::o;43110:164::-;43214:10;:17;;;;43187:15;:24;43203:7;43187:24;;;;;;;;;;;:44;;;;43242:10;43258:7;43242:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43110:164;:::o;43901:1002::-;44181:22;44231:1;44206:22;44223:4;44206:16;:22::i;:::-;:26;;;;:::i;:::-;44181:51;;44243:18;44264:17;:26;44282:7;44264:26;;;;;;;;;;;;44243:47;;44411:14;44397:10;:28;44393:328;;44442:19;44464:12;:18;44477:4;44464:18;;;;;;;;;;;;;;;:34;44483:14;44464:34;;;;;;;;;;;;44442:56;;44548:11;44515:12;:18;44528:4;44515:18;;;;;;;;;;;;;;;:30;44534:10;44515:30;;;;;;;;;;;:44;;;;44665:10;44632:17;:30;44650:11;44632:30;;;;;;;;;;;:43;;;;44427:294;44393:328;44817:17;:26;44835:7;44817:26;;;;;;;;;;;44810:33;;;44861:12;:18;44874:4;44861:18;;;;;;;;;;;;;;;:34;44880:14;44861:34;;;;;;;;;;;44854:41;;;43996:907;;43901:1002;;:::o;45198:1079::-;45451:22;45496:1;45476:10;:17;;;;:21;;;;:::i;:::-;45451:46;;45508:18;45529:15;:24;45545:7;45529:24;;;;;;;;;;;;45508:45;;45880:19;45902:10;45913:14;45902:26;;;;;;;;:::i;:::-;;;;;;;;;;45880:48;;45966:11;45941:10;45952;45941:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46077:10;46046:15;:28;46062:11;46046:28;;;;;;;;;;;:41;;;;46218:15;:24;46234:7;46218:24;;;;;;;;;;;46211:31;;;46253:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45269:1008;;;45198:1079;:::o;42688:221::-;42773:14;42790:20;42807:2;42790:16;:20::i;:::-;42773:37;;42848:7;42821:12;:16;42834:2;42821:16;;;;;;;;;;;;;;;:24;42838:6;42821:24;;;;;;;;;;;:34;;;;42895:6;42866:17;:26;42884:7;42866:26;;;;;;;;;;;:35;;;;42762:147;42688:221;;:::o;33824:321::-;33954:18;33960:2;33964:7;33954:5;:18::i;:::-;34005:54;34036:1;34040:2;34044:7;34053:5;34005:22;:54::i;:::-;33983:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33824:321;;;:::o;15283:387::-;15343:4;15551:12;15618:7;15606:20;15598:28;;15661:1;15654:4;:8;15647:15;;;15283:387;;;:::o;34481:382::-;34575:1;34561:16;;:2;:16;;;;34553:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34634:16;34642:7;34634;:16::i;:::-;34633:17;34625:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34696:45;34725:1;34729:2;34733:7;34696:20;:45::i;:::-;34771:1;34754:9;:13;34764:2;34754:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34802:2;34783:7;:16;34791:7;34783:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34847:7;34843:2;34822:33;;34839:1;34822:33;;;;;;;;;;;;34481:382;;:::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:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7158:179;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7343:118;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;7497:732;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8235:109;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;8350:360;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;8716:364;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;9086:377;;;;:::o;9469:366::-;9611:3;9632:67;9696:2;9691:3;9632:67;:::i;:::-;9625:74;;9708:93;9797:3;9708:93;:::i;:::-;9826:2;9821:3;9817:12;9810:19;;9469:366;;;:::o;9841:::-;9983:3;10004:67;10068:2;10063:3;10004:67;:::i;:::-;9997:74;;10080:93;10169:3;10080:93;:::i;:::-;10198:2;10193:3;10189:12;10182:19;;9841:366;;;:::o;10213:::-;10355:3;10376:67;10440:2;10435:3;10376:67;:::i;:::-;10369:74;;10452:93;10541:3;10452:93;:::i;:::-;10570:2;10565:3;10561:12;10554:19;;10213:366;;;:::o;10585:::-;10727:3;10748:67;10812:2;10807:3;10748:67;:::i;:::-;10741:74;;10824:93;10913:3;10824:93;:::i;:::-;10942:2;10937:3;10933:12;10926:19;;10585:366;;;:::o;10957:::-;11099:3;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11196:93;11285:3;11196:93;:::i;:::-;11314:2;11309:3;11305:12;11298:19;;10957:366;;;:::o;11329:::-;11471:3;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11568:93;11657:3;11568:93;:::i;:::-;11686:2;11681:3;11677:12;11670:19;;11329:366;;;:::o;11701:::-;11843:3;11864:67;11928:2;11923:3;11864:67;:::i;:::-;11857:74;;11940:93;12029:3;11940:93;:::i;:::-;12058:2;12053:3;12049:12;12042:19;;11701:366;;;:::o;12073:::-;12215:3;12236:67;12300:2;12295:3;12236:67;:::i;:::-;12229:74;;12312:93;12401:3;12312:93;:::i;:::-;12430:2;12425:3;12421:12;12414:19;;12073:366;;;:::o;12445:::-;12587:3;12608:67;12672:2;12667:3;12608:67;:::i;:::-;12601:74;;12684:93;12773:3;12684:93;:::i;:::-;12802:2;12797:3;12793:12;12786:19;;12445:366;;;:::o;12817:::-;12959:3;12980:67;13044:2;13039:3;12980:67;:::i;:::-;12973:74;;13056:93;13145:3;13056:93;:::i;:::-;13174:2;13169:3;13165:12;13158:19;;12817:366;;;:::o;13189:::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13189:366;;;:::o;13561:::-;13703:3;13724:67;13788:2;13783:3;13724:67;:::i;:::-;13717:74;;13800:93;13889:3;13800:93;:::i;:::-;13918:2;13913:3;13909:12;13902:19;;13561:366;;;:::o;13933:::-;14075:3;14096:67;14160:2;14155:3;14096:67;:::i;:::-;14089:74;;14172:93;14261:3;14172:93;:::i;:::-;14290:2;14285:3;14281:12;14274:19;;13933:366;;;:::o;14305:::-;14447:3;14468:67;14532:2;14527:3;14468:67;:::i;:::-;14461:74;;14544:93;14633:3;14544:93;:::i;:::-;14662:2;14657:3;14653:12;14646:19;;14305:366;;;:::o;14677:::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15049:366;;;:::o;15421:::-;15563:3;15584:67;15648:2;15643:3;15584:67;:::i;:::-;15577:74;;15660:93;15749:3;15660:93;:::i;:::-;15778:2;15773:3;15769:12;15762:19;;15421:366;;;:::o;15793:::-;15935:3;15956:67;16020:2;16015:3;15956:67;:::i;:::-;15949:74;;16032:93;16121:3;16032:93;:::i;:::-;16150:2;16145:3;16141:12;16134:19;;15793:366;;;:::o;16165:::-;16307:3;16328:67;16392:2;16387:3;16328:67;:::i;:::-;16321:74;;16404:93;16493:3;16404:93;:::i;:::-;16522:2;16517:3;16513:12;16506:19;;16165:366;;;:::o;16537:::-;16679:3;16700:67;16764:2;16759:3;16700:67;:::i;:::-;16693:74;;16776:93;16865:3;16776:93;:::i;:::-;16894:2;16889:3;16885:12;16878:19;;16537:366;;;:::o;16909:398::-;17068:3;17089:83;17170:1;17165:3;17089:83;:::i;:::-;17082:90;;17181:93;17270:3;17181:93;:::i;:::-;17299:1;17294:3;17290:11;17283:18;;16909:398;;;:::o;17313:366::-;17455:3;17476:67;17540:2;17535:3;17476:67;:::i;:::-;17469:74;;17552:93;17641:3;17552:93;:::i;:::-;17670:2;17665:3;17661:12;17654:19;;17313:366;;;:::o;17685:::-;17827:3;17848:67;17912:2;17907:3;17848:67;:::i;:::-;17841:74;;17924:93;18013:3;17924:93;:::i;:::-;18042:2;18037:3;18033:12;18026:19;;17685:366;;;:::o;18057:::-;18199:3;18220:67;18284:2;18279:3;18220:67;:::i;:::-;18213:74;;18296:93;18385:3;18296:93;:::i;:::-;18414:2;18409:3;18405:12;18398:19;;18057:366;;;:::o;18429:::-;18571:3;18592:67;18656:2;18651:3;18592:67;:::i;:::-;18585:74;;18668:93;18757:3;18668:93;:::i;:::-;18786:2;18781:3;18777:12;18770:19;;18429:366;;;:::o;18801:108::-;18878:24;18896:5;18878:24;:::i;:::-;18873:3;18866:37;18801:108;;:::o;18915:118::-;19002:24;19020:5;19002:24;:::i;:::-;18997:3;18990:37;18915:118;;:::o;19039:435::-;19219:3;19241:95;19332:3;19323:6;19241:95;:::i;:::-;19234:102;;19353:95;19444:3;19435:6;19353:95;:::i;:::-;19346:102;;19465:3;19458:10;;19039:435;;;;;:::o;19480:379::-;19664:3;19686:147;19829:3;19686:147;:::i;:::-;19679:154;;19850:3;19843:10;;19480:379;;;:::o;19865:222::-;19958:4;19996:2;19985:9;19981:18;19973:26;;20009:71;20077:1;20066:9;20062:17;20053:6;20009:71;:::i;:::-;19865:222;;;;:::o;20093:640::-;20288:4;20326:3;20315:9;20311:19;20303:27;;20340:71;20408:1;20397:9;20393:17;20384:6;20340:71;:::i;:::-;20421:72;20489:2;20478:9;20474:18;20465:6;20421:72;:::i;:::-;20503;20571:2;20560:9;20556:18;20547:6;20503:72;:::i;:::-;20622:9;20616:4;20612:20;20607:2;20596:9;20592:18;20585:48;20650:76;20721:4;20712:6;20650:76;:::i;:::-;20642:84;;20093:640;;;;;;;:::o;20739:373::-;20882:4;20920:2;20909:9;20905:18;20897:26;;20969:9;20963:4;20959:20;20955:1;20944:9;20940:17;20933:47;20997:108;21100:4;21091:6;20997:108;:::i;:::-;20989:116;;20739:373;;;;:::o;21118:210::-;21205:4;21243:2;21232:9;21228:18;21220:26;;21256:65;21318:1;21307:9;21303:17;21294:6;21256:65;:::i;:::-;21118:210;;;;:::o;21334:313::-;21447:4;21485:2;21474:9;21470:18;21462:26;;21534:9;21528:4;21524:20;21520:1;21509:9;21505:17;21498:47;21562:78;21635:4;21626:6;21562:78;:::i;:::-;21554:86;;21334:313;;;;:::o;21653:419::-;21819:4;21857:2;21846:9;21842:18;21834:26;;21906:9;21900:4;21896:20;21892:1;21881:9;21877:17;21870:47;21934:131;22060:4;21934:131;:::i;:::-;21926:139;;21653:419;;;:::o;22078:::-;22244:4;22282:2;22271:9;22267:18;22259:26;;22331:9;22325:4;22321:20;22317:1;22306:9;22302:17;22295:47;22359:131;22485:4;22359:131;:::i;:::-;22351:139;;22078:419;;;:::o;22503:::-;22669:4;22707:2;22696:9;22692:18;22684:26;;22756:9;22750:4;22746:20;22742:1;22731:9;22727:17;22720:47;22784:131;22910:4;22784:131;:::i;:::-;22776:139;;22503:419;;;:::o;22928:::-;23094:4;23132:2;23121:9;23117:18;23109:26;;23181:9;23175:4;23171:20;23167:1;23156:9;23152:17;23145:47;23209:131;23335:4;23209:131;:::i;:::-;23201:139;;22928:419;;;:::o;23353:::-;23519:4;23557:2;23546:9;23542:18;23534:26;;23606:9;23600:4;23596:20;23592:1;23581:9;23577:17;23570:47;23634:131;23760:4;23634:131;:::i;:::-;23626:139;;23353:419;;;:::o;23778:::-;23944:4;23982:2;23971:9;23967:18;23959:26;;24031:9;24025:4;24021:20;24017:1;24006:9;24002:17;23995:47;24059:131;24185:4;24059:131;:::i;:::-;24051:139;;23778:419;;;:::o;24203:::-;24369:4;24407:2;24396:9;24392:18;24384:26;;24456:9;24450:4;24446:20;24442:1;24431:9;24427:17;24420:47;24484:131;24610:4;24484:131;:::i;:::-;24476:139;;24203:419;;;:::o;24628:::-;24794:4;24832:2;24821:9;24817:18;24809:26;;24881:9;24875:4;24871:20;24867:1;24856:9;24852:17;24845:47;24909:131;25035:4;24909:131;:::i;:::-;24901:139;;24628:419;;;:::o;25053:::-;25219:4;25257:2;25246:9;25242:18;25234:26;;25306:9;25300:4;25296:20;25292:1;25281:9;25277:17;25270:47;25334:131;25460:4;25334:131;:::i;:::-;25326:139;;25053:419;;;:::o;25478:::-;25644:4;25682:2;25671:9;25667:18;25659:26;;25731:9;25725:4;25721:20;25717:1;25706:9;25702:17;25695:47;25759:131;25885:4;25759:131;:::i;:::-;25751:139;;25478:419;;;:::o;25903:::-;26069:4;26107:2;26096:9;26092:18;26084:26;;26156:9;26150:4;26146:20;26142:1;26131:9;26127:17;26120:47;26184:131;26310:4;26184:131;:::i;:::-;26176:139;;25903:419;;;:::o;26328:::-;26494:4;26532:2;26521:9;26517:18;26509:26;;26581:9;26575:4;26571:20;26567:1;26556:9;26552:17;26545:47;26609:131;26735:4;26609:131;:::i;:::-;26601:139;;26328:419;;;:::o;26753:::-;26919:4;26957:2;26946:9;26942:18;26934:26;;27006:9;27000:4;26996:20;26992:1;26981:9;26977:17;26970:47;27034:131;27160:4;27034:131;:::i;:::-;27026:139;;26753:419;;;:::o;27178:::-;27344:4;27382:2;27371:9;27367:18;27359:26;;27431:9;27425:4;27421:20;27417:1;27406:9;27402:17;27395:47;27459:131;27585:4;27459:131;:::i;:::-;27451:139;;27178:419;;;:::o;27603:::-;27769:4;27807:2;27796:9;27792:18;27784:26;;27856:9;27850:4;27846:20;27842:1;27831:9;27827:17;27820:47;27884:131;28010:4;27884:131;:::i;:::-;27876:139;;27603:419;;;:::o;28028:::-;28194:4;28232:2;28221:9;28217:18;28209:26;;28281:9;28275:4;28271:20;28267:1;28256:9;28252:17;28245:47;28309:131;28435:4;28309:131;:::i;:::-;28301:139;;28028:419;;;:::o;28453:::-;28619:4;28657:2;28646:9;28642:18;28634:26;;28706:9;28700:4;28696:20;28692:1;28681:9;28677:17;28670:47;28734:131;28860:4;28734:131;:::i;:::-;28726:139;;28453:419;;;:::o;28878:::-;29044:4;29082:2;29071:9;29067:18;29059:26;;29131:9;29125:4;29121:20;29117:1;29106:9;29102:17;29095:47;29159:131;29285:4;29159:131;:::i;:::-;29151:139;;28878:419;;;:::o;29303:::-;29469:4;29507:2;29496:9;29492:18;29484:26;;29556:9;29550:4;29546:20;29542:1;29531:9;29527:17;29520:47;29584:131;29710:4;29584:131;:::i;:::-;29576:139;;29303:419;;;:::o;29728:::-;29894:4;29932:2;29921:9;29917:18;29909:26;;29981:9;29975:4;29971:20;29967:1;29956:9;29952:17;29945:47;30009:131;30135:4;30009:131;:::i;:::-;30001:139;;29728:419;;;:::o;30153:::-;30319:4;30357:2;30346:9;30342:18;30334:26;;30406:9;30400:4;30396:20;30392:1;30381:9;30377:17;30370:47;30434:131;30560:4;30434:131;:::i;:::-;30426:139;;30153:419;;;:::o;30578:::-;30744:4;30782:2;30771:9;30767:18;30759:26;;30831:9;30825:4;30821:20;30817:1;30806:9;30802:17;30795:47;30859:131;30985:4;30859:131;:::i;:::-;30851:139;;30578:419;;;:::o;31003:::-;31169:4;31207:2;31196:9;31192:18;31184:26;;31256:9;31250:4;31246:20;31242:1;31231:9;31227:17;31220:47;31284:131;31410:4;31284:131;:::i;:::-;31276:139;;31003:419;;;:::o;31428:::-;31594:4;31632:2;31621:9;31617:18;31609:26;;31681:9;31675:4;31671:20;31667:1;31656:9;31652:17;31645:47;31709:131;31835:4;31709:131;:::i;:::-;31701:139;;31428:419;;;:::o;31853:222::-;31946:4;31984:2;31973:9;31969:18;31961:26;;31997:71;32065:1;32054:9;32050:17;32041:6;31997:71;:::i;:::-;31853:222;;;;:::o;32081:129::-;32115:6;32142:20;;:::i;:::-;32132:30;;32171:33;32199:4;32191:6;32171:33;:::i;:::-;32081:129;;;:::o;32216:75::-;32249:6;32282:2;32276:9;32266:19;;32216:75;:::o;32297:307::-;32358:4;32448:18;32440:6;32437:30;32434:56;;;32470:18;;:::i;:::-;32434:56;32508:29;32530:6;32508:29;:::i;:::-;32500:37;;32592:4;32586;32582:15;32574:23;;32297:307;;;:::o;32610:308::-;32672:4;32762:18;32754:6;32751:30;32748:56;;;32784:18;;:::i;:::-;32748:56;32822:29;32844:6;32822:29;:::i;:::-;32814:37;;32906:4;32900;32896:15;32888:23;;32610:308;;;:::o;32924:132::-;32991:4;33014:3;33006:11;;33044:4;33039:3;33035:14;33027:22;;32924:132;;;:::o;33062:114::-;33129:6;33163:5;33157:12;33147:22;;33062:114;;;:::o;33182:98::-;33233:6;33267:5;33261:12;33251:22;;33182:98;;;:::o;33286:99::-;33338:6;33372:5;33366:12;33356:22;;33286:99;;;:::o;33391:113::-;33461:4;33493;33488:3;33484:14;33476:22;;33391:113;;;:::o;33510:184::-;33609:11;33643:6;33638:3;33631:19;33683:4;33678:3;33674:14;33659:29;;33510:184;;;;:::o;33700:168::-;33783:11;33817:6;33812:3;33805:19;33857:4;33852:3;33848:14;33833:29;;33700:168;;;;:::o;33874:147::-;33975:11;34012:3;33997:18;;33874:147;;;;:::o;34027:169::-;34111:11;34145:6;34140:3;34133:19;34185:4;34180:3;34176:14;34161:29;;34027:169;;;;:::o;34202:148::-;34304:11;34341:3;34326:18;;34202:148;;;;:::o;34356:305::-;34396:3;34415:20;34433:1;34415:20;:::i;:::-;34410:25;;34449:20;34467:1;34449:20;:::i;:::-;34444:25;;34603:1;34535:66;34531:74;34528:1;34525:81;34522:107;;;34609:18;;:::i;:::-;34522:107;34653:1;34650;34646:9;34639:16;;34356:305;;;;:::o;34667:185::-;34707:1;34724:20;34742:1;34724:20;:::i;:::-;34719:25;;34758:20;34776:1;34758:20;:::i;:::-;34753:25;;34797:1;34787:35;;34802:18;;:::i;:::-;34787:35;34844:1;34841;34837:9;34832:14;;34667:185;;;;:::o;34858:348::-;34898:7;34921:20;34939:1;34921:20;:::i;:::-;34916:25;;34955:20;34973:1;34955:20;:::i;:::-;34950:25;;35143:1;35075:66;35071:74;35068:1;35065:81;35060:1;35053:9;35046:17;35042:105;35039:131;;;35150:18;;:::i;:::-;35039:131;35198:1;35195;35191:9;35180:20;;34858:348;;;;:::o;35212:191::-;35252:4;35272:20;35290:1;35272:20;:::i;:::-;35267:25;;35306:20;35324:1;35306:20;:::i;:::-;35301:25;;35345:1;35342;35339:8;35336:34;;;35350:18;;:::i;:::-;35336:34;35395:1;35392;35388:9;35380:17;;35212:191;;;;:::o;35409:96::-;35446:7;35475:24;35493:5;35475:24;:::i;:::-;35464:35;;35409:96;;;:::o;35511:90::-;35545:7;35588:5;35581:13;35574:21;35563:32;;35511:90;;;:::o;35607:149::-;35643:7;35683:66;35676:5;35672:78;35661:89;;35607:149;;;:::o;35762:126::-;35799:7;35839:42;35832:5;35828:54;35817:65;;35762:126;;;:::o;35894:77::-;35931:7;35960:5;35949:16;;35894:77;;;:::o;35977:154::-;36061:6;36056:3;36051;36038:30;36123:1;36114:6;36109:3;36105:16;36098:27;35977:154;;;:::o;36137:307::-;36205:1;36215:113;36229:6;36226:1;36223:13;36215:113;;;36314:1;36309:3;36305:11;36299:18;36295:1;36290:3;36286:11;36279:39;36251:2;36248:1;36244:10;36239:15;;36215:113;;;36346:6;36343:1;36340:13;36337:101;;;36426:1;36417:6;36412:3;36408:16;36401:27;36337:101;36186:258;36137:307;;;:::o;36450:320::-;36494:6;36531:1;36525:4;36521:12;36511:22;;36578:1;36572:4;36568:12;36599:18;36589:81;;36655:4;36647:6;36643:17;36633:27;;36589:81;36717:2;36709:6;36706:14;36686:18;36683:38;36680:84;;;36736:18;;:::i;:::-;36680:84;36501:269;36450:320;;;:::o;36776:281::-;36859:27;36881:4;36859:27;:::i;:::-;36851:6;36847:40;36989:6;36977:10;36974:22;36953:18;36941:10;36938:34;36935:62;36932:88;;;37000:18;;:::i;:::-;36932:88;37040:10;37036:2;37029:22;36819:238;36776:281;;:::o;37063:233::-;37102:3;37125:24;37143:5;37125:24;:::i;:::-;37116:33;;37171:66;37164:5;37161:77;37158:103;;;37241:18;;:::i;:::-;37158:103;37288:1;37281:5;37277:13;37270:20;;37063:233;;;:::o;37302:176::-;37334:1;37351:20;37369:1;37351:20;:::i;:::-;37346:25;;37385:20;37403:1;37385:20;:::i;:::-;37380:25;;37424:1;37414:35;;37429:18;;:::i;:::-;37414:35;37470:1;37467;37463:9;37458:14;;37302:176;;;;:::o;37484:180::-;37532:77;37529:1;37522:88;37629:4;37626:1;37619:15;37653:4;37650:1;37643:15;37670:180;37718:77;37715:1;37708:88;37815:4;37812:1;37805:15;37839:4;37836:1;37829:15;37856:180;37904:77;37901:1;37894:88;38001:4;37998:1;37991:15;38025:4;38022:1;38015:15;38042:180;38090:77;38087:1;38080:88;38187:4;38184:1;38177:15;38211:4;38208:1;38201:15;38228:180;38276:77;38273:1;38266:88;38373:4;38370:1;38363:15;38397:4;38394:1;38387:15;38414:180;38462:77;38459:1;38452:88;38559:4;38556:1;38549:15;38583:4;38580:1;38573:15;38600:117;38709:1;38706;38699:12;38723:117;38832:1;38829;38822:12;38846:117;38955:1;38952;38945:12;38969:117;39078:1;39075;39068:12;39092:102;39133:6;39184:2;39180:7;39175:2;39168:5;39164:14;39160:28;39150:38;;39092:102;;;:::o;39200:230::-;39340:34;39336:1;39328:6;39324:14;39317:58;39409:13;39404:2;39396:6;39392:15;39385:38;39200:230;:::o;39436:237::-;39576:34;39572:1;39564:6;39560:14;39553:58;39645:20;39640:2;39632:6;39628:15;39621:45;39436:237;:::o;39679:225::-;39819:34;39815:1;39807:6;39803:14;39796:58;39888:8;39883:2;39875:6;39871:15;39864:33;39679:225;:::o;39910:178::-;40050:30;40046:1;40038:6;40034:14;40027:54;39910:178;:::o;40094:223::-;40234:34;40230:1;40222:6;40218:14;40211:58;40303:6;40298:2;40290:6;40286:15;40279:31;40094:223;:::o;40323:175::-;40463:27;40459:1;40451:6;40447:14;40440:51;40323:175;:::o;40504:170::-;40644:22;40640:1;40632:6;40628:14;40621:46;40504:170;:::o;40680:234::-;40820:34;40816:1;40808:6;40804:14;40797:58;40889:17;40884:2;40876:6;40872:15;40865:42;40680:234;:::o;40920:231::-;41060:34;41056:1;41048:6;41044:14;41037:58;41129:14;41124:2;41116:6;41112:15;41105:39;40920:231;:::o;41157:243::-;41297:34;41293:1;41285:6;41281:14;41274:58;41366:26;41361:2;41353:6;41349:15;41342:51;41157:243;:::o;41406:229::-;41546:34;41542:1;41534:6;41530:14;41523:58;41615:12;41610:2;41602:6;41598:15;41591:37;41406:229;:::o;41641:228::-;41781:34;41777:1;41769:6;41765:14;41758:58;41850:11;41845:2;41837:6;41833:15;41826:36;41641:228;:::o;41875:236::-;42015:34;42011:1;42003:6;41999:14;41992:58;42084:19;42079:2;42071:6;42067:15;42060:44;41875:236;:::o;42117:182::-;42257:34;42253:1;42245:6;42241:14;42234:58;42117:182;:::o;42305:231::-;42445:34;42441:1;42433:6;42429:14;42422:58;42514:14;42509:2;42501:6;42497:15;42490:39;42305:231;:::o;42542:234::-;42682:34;42678:1;42670:6;42666:14;42659:58;42751:17;42746:2;42738:6;42734:15;42727:42;42542:234;:::o;42782:182::-;42922:34;42918:1;42910:6;42906:14;42899:58;42782:182;:::o;42970:228::-;43110:34;43106:1;43098:6;43094:14;43087:58;43179:11;43174:2;43166:6;43162:15;43155:36;42970:228;:::o;43204:234::-;43344:34;43340:1;43332:6;43328:14;43321:58;43413:17;43408:2;43400:6;43396:15;43389:42;43204:234;:::o;43444:220::-;43584:34;43580:1;43572:6;43568:14;43561:58;43653:3;43648:2;43640:6;43636:15;43629:28;43444:220;:::o;43670:114::-;;:::o;43790:166::-;43930:18;43926:1;43918:6;43914:14;43907:42;43790:166;:::o;43962:236::-;44102:34;44098:1;44090:6;44086:14;44079:58;44171:19;44166:2;44158:6;44154:15;44147:44;43962:236;:::o;44204:231::-;44344:34;44340:1;44332:6;44328:14;44321:58;44413:14;44408:2;44400:6;44396:15;44389:39;44204:231;:::o;44441:182::-;44581:34;44577:1;44569:6;44565:14;44558:58;44441:182;:::o;44629:122::-;44702:24;44720:5;44702:24;:::i;:::-;44695:5;44692:35;44682:63;;44741:1;44738;44731:12;44682:63;44629:122;:::o;44757:116::-;44827:21;44842:5;44827:21;:::i;:::-;44820:5;44817:32;44807:60;;44863:1;44860;44853:12;44807:60;44757:116;:::o;44879:120::-;44951:23;44968:5;44951:23;:::i;:::-;44944:5;44941:34;44931:62;;44989:1;44986;44979:12;44931:62;44879:120;:::o;45005:122::-;45078:24;45096:5;45078:24;:::i;:::-;45071:5;45068:35;45058:63;;45117:1;45114;45107:12;45058:63;45005:122;:::o
Swarm Source
ipfs://30e665927c9b63b14925c75639c814e2676283b957ec7988f9c9e0ffd5011fbf
Loading...
Loading
Loading...
Loading
Net Worth in USD
$104.97
Net Worth in ETH
0.045
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,332.58 | 0.045 | $104.97 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.