Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Mint Reserved | 13248280 | 1638 days ago | IN | 0 ETH | 0.04484749 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CuteCryptoCats
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-09-18
*/
// SPDX-License-Identifier: MIT
/*
OFFICIAL CUTE CRYPTO CATS CONTRACT
Website: https://www.cutecryptocats.com
Twitter: https://www.twitter.com/CuteCryptoCats
Opensea: https://opensea.io/collection/cute-crypto-cats-official
*/
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
/**
* @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);
}
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;
}
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
pragma solidity ^0.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);
}
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;
}
}
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);
}
}
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.
*/
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
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);
}
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);
}
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
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();
}
}
pragma solidity ^0.8.4;
contract CuteCryptoCats is ERC721Enumerable, Ownable {
using Address for address;
// Starting and stopping sale and presale
bool public saleActive = false;
bool public presaleActive = false;
// Reserved for the team, customs, giveaways, collabs and so on.
uint256 public reserved = 70;
// Price of each token
uint256 public price = 0.045 ether;
// Maximum limit of tokens that can ever exist
uint256 constant MAX_SUPPLY = 6666;
// The base link that leads to the image / video of the token
string public baseTokenURI;
// The Team Address for withdrawals
address public a1 = 0x240cdbFE065376070d5aB36fA9900371A8b1A68a; //CuteCryptoCats.eth
// List of addresses that have a number of reserved tokens for presale
mapping (address => uint256) public presaleReserved;
constructor (string memory newBaseURI) ERC721 ("Cute Crypto Cats", "CCC") {
setBaseURI(newBaseURI);
}
// Override so the openzeppelin tokenURI() method will use this method to create the full tokenURI instead
function _baseURI() internal view virtual override returns (string memory) {
return baseTokenURI;
}
// See which address owns which tokens
function tokensOfOwner(address addr) public view returns(uint256[] memory) {
uint256 tokenCount = balanceOf(addr);
uint256[] memory tokensId = new uint256[](tokenCount);
for(uint256 i; i < tokenCount; i++){
tokensId[i] = tokenOfOwnerByIndex(addr, i);
}
return tokensId;
}
// Exclusive presale minting
function mintPresale(uint256 _amount) public payable {
uint256 supply = totalSupply();
uint256 reservedAmt = presaleReserved[msg.sender];
require( presaleActive, "Presale isn't active" );
require( reservedAmt > 0, "No tokens reserved for your address" );
require( _amount <= reservedAmt, "Can't mint more than reserved" );
require( supply + _amount <= MAX_SUPPLY, "Can't mint more than max supply" );
require( msg.value == price * _amount, "Wrong amount of ETH sent" );
presaleReserved[msg.sender] = reservedAmt - _amount;
for(uint256 i; i < _amount; i++){
_safeMint( msg.sender, supply + i );
}
}
// Standard mint function
function mintToken(uint256 _amount) public payable {
uint256 supply = totalSupply();
require( saleActive, "Sale isn't active" );
require( _amount > 0 && _amount < 6, "Can only mint between 1 and 5 tokens at once" );
require( supply + _amount <= MAX_SUPPLY, "Can't mint more than max supply" );
require( msg.value == price * _amount, "Wrong amount of ETH sent" );
for(uint256 i; i < _amount; i++){
_safeMint( msg.sender, supply + i );
}
}
// Admin minting function to reserve tokens for the team, collabs, customs and giveaways
function mintReserved(uint256 _amount) public onlyOwner {
// Limited to a publicly set amount
require( _amount <= reserved, "Can't reserve more than set amount" );
reserved -= _amount;
uint256 supply = totalSupply();
for(uint256 i; i < _amount; i++){
_safeMint( msg.sender, supply + i );
}
}
// Edit reserved presale spots
function editPresaleReserved(address[] memory _a, uint256[] memory _amount) public onlyOwner {
for(uint256 i; i < _a.length; i++){
presaleReserved[_a[i]] = _amount[i];
}
}
// Start and stop presale
function setPresaleActive(bool val) public onlyOwner {
presaleActive = val;
}
// Start and stop sale
function setSaleActive(bool val) public onlyOwner {
saleActive = val;
}
// Set new baseURI
function setBaseURI(string memory baseURI) public onlyOwner {
baseTokenURI = baseURI;
}
// Set a different price in case ETH changes drastically
function setPrice(uint256 newPrice) public onlyOwner {
price = newPrice;
}
// Set team addresses
function setAddresses(address[] memory _a) public onlyOwner {
a1 = _a[0];
}
// Withdraw funds from contract for the team
function withdrawTeam(uint256 amount) public payable onlyOwner {
uint256 percent = amount / 100;
require(payable(a1).send(percent * 100)); // 100% To Team Address
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"a1","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"editPresaleReserved","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":"uint256","name":"_amount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToken","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"}],"name":"setAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTeam","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506046600b55669fdf42f6e48000600c5573240cdbfe065376070d5ab36fa9900371a8b1a68a600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000ac57600080fd5b50604051620053a9380380620053a98339818101604052810190620000d291906200047b565b6040518060400160405280601081526020017f437574652043727970746f2043617473000000000000000000000000000000008152506040518060400160405280600381526020017f43434300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001569291906200034d565b5080600190805190602001906200016f9291906200034d565b5050506200019262000186620001aa60201b60201c565b620001b260201b60201c565b620001a3816200027860201b60201c565b50620006d3565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000288620001aa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ae6200032360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000307576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fe90620004f3565b60405180910390fd5b80600d90805190602001906200031f9291906200034d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035b90620005bb565b90600052602060002090601f0160209004810192826200037f5760008555620003cb565b82601f106200039a57805160ff1916838001178555620003cb565b82800160010185558215620003cb579182015b82811115620003ca578251825591602001919060010190620003ad565b5b509050620003da9190620003de565b5090565b5b80821115620003f9576000816000905550600101620003df565b5090565b6000620004146200040e846200053e565b62000515565b9050828152602081018484840111156200043357620004326200068a565b5b6200044084828562000585565b509392505050565b600082601f83011262000460576200045f62000685565b5b815162000472848260208601620003fd565b91505092915050565b60006020828403121562000494576200049362000694565b5b600082015167ffffffffffffffff811115620004b557620004b46200068f565b5b620004c38482850162000448565b91505092915050565b6000620004db60208362000574565b9150620004e882620006aa565b602082019050919050565b600060208201905081810360008301526200050e81620004cc565b9050919050565b60006200052162000534565b90506200052f8282620005f1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200055c576200055b62000656565b5b620005678262000699565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005a557808201518184015260208101905062000588565b83811115620005b5576000848401525b50505050565b60006002820490506001821680620005d457607f821691505b60208210811415620005eb57620005ea62000627565b5b50919050565b620005fc8262000699565b810181811067ffffffffffffffff821117156200061e576200061d62000656565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614cc680620006e36000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146107e6578063f2fde38b14610823578063f759867a1461084c578063fd2b049214610868578063fe60d12c146108845761021a565b8063b88d4fde14610710578063b957172114610739578063c634d03214610762578063c87b56dd1461077e578063d547cfb7146107bb5761021a565b806391b7f5ed116100f257806391b7f5ed1461063f57806395d89b41146106685780639a5d140b14610693578063a035b1fe146106bc578063a22cb465146106e75761021a565b8063715018a614610597578063841718a6146105ae5780638462151c146105d75780638da5cb5b146106145761021a565b80633f8121a2116101a657806355f804b31161017557806355f804b3146104a05780636352211e146104c957806368428a1b146105065780636b2fd8651461053157806370a082311461055a5761021a565b80633f8121a2146103e657806342842e0e1461040f5780634f6ccce71461043857806353135ca0146104755761021a565b8063119552a1116101ed578063119552a1146102ed57806318160ddd1461031857806323b872dd146103435780632f745c591461036c57806339c36fa0146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613645565b6108af565b6040516102539190613ca5565b60405180910390f35b34801561026857600080fd5b50610271610929565b60405161027e9190613cc0565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906136e8565b6109bb565b6040516102bb9190613c1c565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613517565b610a40565b005b3480156102f957600080fd5b50610302610b58565b60405161030f9190613c1c565b60405180910390f35b34801561032457600080fd5b5061032d610b7e565b60405161033a9190614022565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190613401565b610b8b565b005b34801561037857600080fd5b50610393600480360381019061038e9190613517565b610beb565b6040516103a09190614022565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190613394565b610c90565b6040516103dd9190614022565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190613618565b610ca8565b005b34801561041b57600080fd5b5061043660048036038101906104319190613401565b610d41565b005b34801561044457600080fd5b5061045f600480360381019061045a91906136e8565b610d61565b60405161046c9190614022565b60405180910390f35b34801561048157600080fd5b5061048a610dd2565b6040516104979190613ca5565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c2919061369f565b610de5565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906136e8565b610e7b565b6040516104fd9190613c1c565b60405180910390f35b34801561051257600080fd5b5061051b610f2d565b6040516105289190613ca5565b60405180910390f35b34801561053d57600080fd5b50610558600480360381019061055391906135a0565b610f40565b005b34801561056657600080fd5b50610581600480360381019061057c9190613394565b611058565b60405161058e9190614022565b60405180910390f35b3480156105a357600080fd5b506105ac611110565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190613618565b611198565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613394565b611231565b60405161060b9190613c83565b60405180910390f35b34801561062057600080fd5b506106296112df565b6040516106369190613c1c565b60405180910390f35b34801561064b57600080fd5b50610666600480360381019061066191906136e8565b611309565b005b34801561067457600080fd5b5061067d61138f565b60405161068a9190613cc0565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b591906136e8565b611421565b005b3480156106c857600080fd5b506106d161153f565b6040516106de9190614022565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906134d7565b611545565b005b34801561071c57600080fd5b5061073760048036038101906107329190613454565b6116c6565b005b34801561074557600080fd5b50610760600480360381019061075b9190613557565b611728565b005b61077c600480360381019061077791906136e8565b611803565b005b34801561078a57600080fd5b506107a560048036038101906107a091906136e8565b611984565b6040516107b29190613cc0565b60405180910390f35b3480156107c757600080fd5b506107d0611a2b565b6040516107dd9190613cc0565b60405180910390f35b3480156107f257600080fd5b5061080d600480360381019061080891906133c1565b611ab9565b60405161081a9190613ca5565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613394565b611b4d565b005b610866600480360381019061086191906136e8565b611c45565b005b610882600480360381019061087d91906136e8565b611e91565b005b34801561089057600080fd5b50610899611f8e565b6040516108a69190614022565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610922575061092182611f94565b5b9050919050565b60606000805461093890614363565b80601f016020809104026020016040519081016040528092919081815260200182805461096490614363565b80156109b15780601f10610986576101008083540402835291602001916109b1565b820191906000526020600020905b81548152906001019060200180831161099457829003601f168201915b5050505050905090565b60006109c682612076565b610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90613ee2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4b82610e7b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613fa2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adb6120e2565b73ffffffffffffffffffffffffffffffffffffffff161480610b0a5750610b0981610b046120e2565b611ab9565b5b610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090613e42565b60405180910390fd5b610b5383836120ea565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600880549050905090565b610b9c610b966120e2565b826121a3565b610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290613fc2565b60405180910390fd5b610be6838383612281565b505050565b6000610bf683611058565b8210610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e90613d22565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f6020528060005260406000206000915090505481565b610cb06120e2565b73ffffffffffffffffffffffffffffffffffffffff16610cce6112df565b73ffffffffffffffffffffffffffffffffffffffff1614610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613f22565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b610d5c838383604051806020016040528060008152506116c6565b505050565b6000610d6b610b7e565b8210610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390613fe2565b60405180910390fd5b60088281548110610dc057610dbf6144fc565b5b90600052602060002001549050919050565b600a60159054906101000a900460ff1681565b610ded6120e2565b73ffffffffffffffffffffffffffffffffffffffff16610e0b6112df565b73ffffffffffffffffffffffffffffffffffffffff1614610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890613f22565b60405180910390fd5b80600d9080519060200190610e7792919061306c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90613e82565b60405180910390fd5b80915050919050565b600a60149054906101000a900460ff1681565b610f486120e2565b73ffffffffffffffffffffffffffffffffffffffff16610f666112df565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390613f22565b60405180910390fd5b60005b825181101561105357818181518110610fdb57610fda6144fc565b5b6020026020010151600f6000858481518110610ffa57610ff96144fc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061104b906143c6565b915050610fbf565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613e62565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111186120e2565b73ffffffffffffffffffffffffffffffffffffffff166111366112df565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390613f22565b60405180910390fd5b61119660006124dd565b565b6111a06120e2565b73ffffffffffffffffffffffffffffffffffffffff166111be6112df565b73ffffffffffffffffffffffffffffffffffffffff1614611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90613f22565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b6060600061123e83611058565b905060008167ffffffffffffffff81111561125c5761125b61452b565b5b60405190808252806020026020018201604052801561128a5781602001602082028036833780820191505090505b50905060005b828110156112d4576112a28582610beb565b8282815181106112b5576112b46144fc565b5b60200260200101818152505080806112cc906143c6565b915050611290565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113116120e2565b73ffffffffffffffffffffffffffffffffffffffff1661132f6112df565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90613f22565b60405180910390fd5b80600c8190555050565b60606001805461139e90614363565b80601f01602080910402602001604051908101604052809291908181526020018280546113ca90614363565b80156114175780601f106113ec57610100808354040283529160200191611417565b820191906000526020600020905b8154815290600101906020018083116113fa57829003601f168201915b5050505050905090565b6114296120e2565b73ffffffffffffffffffffffffffffffffffffffff166114476112df565b73ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149490613f22565b60405180910390fd5b600b548111156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613ec2565b60405180910390fd5b80600b60008282546114f49190614279565b925050819055506000611505610b7e565b905060005b8281101561153a576115273382846115229190614198565b6125a3565b8080611532906143c6565b91505061150a565b505050565b600c5481565b61154d6120e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613de2565b60405180910390fd5b80600560006115c86120e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116756120e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ba9190613ca5565b60405180910390a35050565b6116d76116d16120e2565b836121a3565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613fc2565b60405180910390fd5b611722848484846125c1565b50505050565b6117306120e2565b73ffffffffffffffffffffffffffffffffffffffff1661174e6112df565b73ffffffffffffffffffffffffffffffffffffffff16146117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90613f22565b60405180910390fd5b806000815181106117b8576117b76144fc565b5b6020026020010151600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061180d610b7e565b9050600a60149054906101000a900460ff1661185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590613f82565b60405180910390fd5b60008211801561186e5750600682105b6118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490613ce2565b60405180910390fd5b611a0a82826118bc9190614198565b11156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490613da2565b60405180910390fd5b81600c5461190b919061421f565b341461194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390614002565b60405180910390fd5b60005b8281101561197f5761196c3382846119679190614198565b6125a3565b8080611977906143c6565b91505061194f565b505050565b606061198f82612076565b6119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613f62565b60405180910390fd5b60006119d861261d565b905060008151116119f85760405180602001604052806000815250611a23565b80611a02846126af565b604051602001611a13929190613bf8565b6040516020818303038152906040525b915050919050565b600d8054611a3890614363565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6490614363565b8015611ab15780601f10611a8657610100808354040283529160200191611ab1565b820191906000526020600020905b815481529060010190602001808311611a9457829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b556120e2565b73ffffffffffffffffffffffffffffffffffffffff16611b736112df565b73ffffffffffffffffffffffffffffffffffffffff1614611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090613f22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090613d62565b60405180910390fd5b611c42816124dd565b50565b6000611c4f610b7e565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600a60159054906101000a900460ff16611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613f02565b60405180910390fd5b60008111611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613e22565b60405180910390fd5b80831115611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6190613d02565b60405180910390fd5b611a0a8383611d799190614198565b1115611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613da2565b60405180910390fd5b82600c54611dc8919061421f565b3414611e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0090614002565b60405180910390fd5b8281611e159190614279565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b83811015611e8b57611e78338285611e739190614198565b6125a3565b8080611e83906143c6565b915050611e5b565b50505050565b611e996120e2565b73ffffffffffffffffffffffffffffffffffffffff16611eb76112df565b73ffffffffffffffffffffffffffffffffffffffff1614611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490613f22565b60405180910390fd5b6000606482611f1c91906141ee565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606483611f67919061421f565b9081150290604051600060405180830381858888f19350505050611f8a57600080fd5b5050565b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061205f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061206f575061206e82612810565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661215d83610e7b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121ae82612076565b6121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e490613e02565b60405180910390fd5b60006121f883610e7b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061226757508373ffffffffffffffffffffffffffffffffffffffff1661224f846109bb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061227857506122778185611ab9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122a182610e7b565b73ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90613f42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90613dc2565b60405180910390fd5b61237283838361287a565b61237d6000826120ea565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123cd9190614279565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124249190614198565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125bd82826040518060200160405280600081525061298e565b5050565b6125cc848484612281565b6125d8848484846129e9565b612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e90613d42565b60405180910390fd5b50505050565b6060600d805461262c90614363565b80601f016020809104026020016040519081016040528092919081815260200182805461265890614363565b80156126a55780601f1061267a576101008083540402835291602001916126a5565b820191906000526020600020905b81548152906001019060200180831161268857829003601f168201915b5050505050905090565b606060008214156126f7576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061280b565b600082905060005b60008214612729578080612712906143c6565b915050600a8261272291906141ee565b91506126ff565b60008167ffffffffffffffff8111156127455761274461452b565b5b6040519080825280601f01601f1916602001820160405280156127775781602001600182028036833780820191505090505b5090505b60008514612804576001826127909190614279565b9150600a8561279f919061440f565b60306127ab9190614198565b60f81b8183815181106127c1576127c06144fc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127fd91906141ee565b945061277b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612885838383612b80565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128c8576128c381612b85565b612907565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612906576129058382612bce565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561294a5761294581612d3b565b612989565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612988576129878282612e0c565b5b5b505050565b6129988383612e8b565b6129a560008484846129e9565b6129e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129db90613d42565b60405180910390fd5b505050565b6000612a0a8473ffffffffffffffffffffffffffffffffffffffff16613059565b15612b73578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a336120e2565b8786866040518563ffffffff1660e01b8152600401612a559493929190613c37565b602060405180830381600087803b158015612a6f57600080fd5b505af1925050508015612aa057506040513d601f19601f82011682018060405250810190612a9d9190613672565b60015b612b23573d8060008114612ad0576040519150601f19603f3d011682016040523d82523d6000602084013e612ad5565b606091505b50600081511415612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1290613d42565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b78565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bdb84611058565b612be59190614279565b9050600060076000848152602001908152602001600020549050818114612cca576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d4f9190614279565b9050600060096000848152602001908152602001600020549050600060088381548110612d7f57612d7e6144fc565b5b906000526020600020015490508060088381548110612da157612da06144fc565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612df057612def6144cd565b5b6001900381819060005260206000200160009055905550505050565b6000612e1783611058565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef290613ea2565b60405180910390fd5b612f0481612076565b15612f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3b90613d82565b60405180910390fd5b612f506000838361287a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fa09190614198565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461307890614363565b90600052602060002090601f01602090048101928261309a57600085556130e1565b82601f106130b357805160ff19168380011785556130e1565b828001600101855582156130e1579182015b828111156130e05782518255916020019190600101906130c5565b5b5090506130ee91906130f2565b5090565b5b8082111561310b5760008160009055506001016130f3565b5090565b600061312261311d84614062565b61403d565b905080838252602082019050828560208602820111156131455761314461455f565b5b60005b85811015613175578161315b8882613273565b845260208401935060208301925050600181019050613148565b5050509392505050565b600061319261318d8461408e565b61403d565b905080838252602082019050828560208602820111156131b5576131b461455f565b5b60005b858110156131e557816131cb888261337f565b8452602084019350602083019250506001810190506131b8565b5050509392505050565b60006132026131fd846140ba565b61403d565b90508281526020810184848401111561321e5761321d614564565b5b613229848285614321565b509392505050565b600061324461323f846140eb565b61403d565b9050828152602081018484840111156132605761325f614564565b5b61326b848285614321565b509392505050565b60008135905061328281614c34565b92915050565b600082601f83011261329d5761329c61455a565b5b81356132ad84826020860161310f565b91505092915050565b600082601f8301126132cb576132ca61455a565b5b81356132db84826020860161317f565b91505092915050565b6000813590506132f381614c4b565b92915050565b60008135905061330881614c62565b92915050565b60008151905061331d81614c62565b92915050565b600082601f8301126133385761333761455a565b5b81356133488482602086016131ef565b91505092915050565b600082601f8301126133665761336561455a565b5b8135613376848260208601613231565b91505092915050565b60008135905061338e81614c79565b92915050565b6000602082840312156133aa576133a961456e565b5b60006133b884828501613273565b91505092915050565b600080604083850312156133d8576133d761456e565b5b60006133e685828601613273565b92505060206133f785828601613273565b9150509250929050565b60008060006060848603121561341a5761341961456e565b5b600061342886828701613273565b935050602061343986828701613273565b925050604061344a8682870161337f565b9150509250925092565b6000806000806080858703121561346e5761346d61456e565b5b600061347c87828801613273565b945050602061348d87828801613273565b935050604061349e8782880161337f565b925050606085013567ffffffffffffffff8111156134bf576134be614569565b5b6134cb87828801613323565b91505092959194509250565b600080604083850312156134ee576134ed61456e565b5b60006134fc85828601613273565b925050602061350d858286016132e4565b9150509250929050565b6000806040838503121561352e5761352d61456e565b5b600061353c85828601613273565b925050602061354d8582860161337f565b9150509250929050565b60006020828403121561356d5761356c61456e565b5b600082013567ffffffffffffffff81111561358b5761358a614569565b5b61359784828501613288565b91505092915050565b600080604083850312156135b7576135b661456e565b5b600083013567ffffffffffffffff8111156135d5576135d4614569565b5b6135e185828601613288565b925050602083013567ffffffffffffffff81111561360257613601614569565b5b61360e858286016132b6565b9150509250929050565b60006020828403121561362e5761362d61456e565b5b600061363c848285016132e4565b91505092915050565b60006020828403121561365b5761365a61456e565b5b6000613669848285016132f9565b91505092915050565b6000602082840312156136885761368761456e565b5b60006136968482850161330e565b91505092915050565b6000602082840312156136b5576136b461456e565b5b600082013567ffffffffffffffff8111156136d3576136d2614569565b5b6136df84828501613351565b91505092915050565b6000602082840312156136fe576136fd61456e565b5b600061370c8482850161337f565b91505092915050565b60006137218383613bda565b60208301905092915050565b613736816142ad565b82525050565b60006137478261412c565b613751818561415a565b935061375c8361411c565b8060005b8381101561378d5781516137748882613715565b975061377f8361414d565b925050600181019050613760565b5085935050505092915050565b6137a3816142bf565b82525050565b60006137b482614137565b6137be818561416b565b93506137ce818560208601614330565b6137d781614573565b840191505092915050565b60006137ed82614142565b6137f7818561417c565b9350613807818560208601614330565b61381081614573565b840191505092915050565b600061382682614142565b613830818561418d565b9350613840818560208601614330565b80840191505092915050565b6000613859602c8361417c565b915061386482614584565b604082019050919050565b600061387c601d8361417c565b9150613887826145d3565b602082019050919050565b600061389f602b8361417c565b91506138aa826145fc565b604082019050919050565b60006138c260328361417c565b91506138cd8261464b565b604082019050919050565b60006138e560268361417c565b91506138f08261469a565b604082019050919050565b6000613908601c8361417c565b9150613913826146e9565b602082019050919050565b600061392b601f8361417c565b915061393682614712565b602082019050919050565b600061394e60248361417c565b91506139598261473b565b604082019050919050565b600061397160198361417c565b915061397c8261478a565b602082019050919050565b6000613994602c8361417c565b915061399f826147b3565b604082019050919050565b60006139b760238361417c565b91506139c282614802565b604082019050919050565b60006139da60388361417c565b91506139e582614851565b604082019050919050565b60006139fd602a8361417c565b9150613a08826148a0565b604082019050919050565b6000613a2060298361417c565b9150613a2b826148ef565b604082019050919050565b6000613a4360208361417c565b9150613a4e8261493e565b602082019050919050565b6000613a6660228361417c565b9150613a7182614967565b604082019050919050565b6000613a89602c8361417c565b9150613a94826149b6565b604082019050919050565b6000613aac60148361417c565b9150613ab782614a05565b602082019050919050565b6000613acf60208361417c565b9150613ada82614a2e565b602082019050919050565b6000613af260298361417c565b9150613afd82614a57565b604082019050919050565b6000613b15602f8361417c565b9150613b2082614aa6565b604082019050919050565b6000613b3860118361417c565b9150613b4382614af5565b602082019050919050565b6000613b5b60218361417c565b9150613b6682614b1e565b604082019050919050565b6000613b7e60318361417c565b9150613b8982614b6d565b604082019050919050565b6000613ba1602c8361417c565b9150613bac82614bbc565b604082019050919050565b6000613bc460188361417c565b9150613bcf82614c0b565b602082019050919050565b613be381614317565b82525050565b613bf281614317565b82525050565b6000613c04828561381b565b9150613c10828461381b565b91508190509392505050565b6000602082019050613c31600083018461372d565b92915050565b6000608082019050613c4c600083018761372d565b613c59602083018661372d565b613c666040830185613be9565b8181036060830152613c7881846137a9565b905095945050505050565b60006020820190508181036000830152613c9d818461373c565b905092915050565b6000602082019050613cba600083018461379a565b92915050565b60006020820190508181036000830152613cda81846137e2565b905092915050565b60006020820190508181036000830152613cfb8161384c565b9050919050565b60006020820190508181036000830152613d1b8161386f565b9050919050565b60006020820190508181036000830152613d3b81613892565b9050919050565b60006020820190508181036000830152613d5b816138b5565b9050919050565b60006020820190508181036000830152613d7b816138d8565b9050919050565b60006020820190508181036000830152613d9b816138fb565b9050919050565b60006020820190508181036000830152613dbb8161391e565b9050919050565b60006020820190508181036000830152613ddb81613941565b9050919050565b60006020820190508181036000830152613dfb81613964565b9050919050565b60006020820190508181036000830152613e1b81613987565b9050919050565b60006020820190508181036000830152613e3b816139aa565b9050919050565b60006020820190508181036000830152613e5b816139cd565b9050919050565b60006020820190508181036000830152613e7b816139f0565b9050919050565b60006020820190508181036000830152613e9b81613a13565b9050919050565b60006020820190508181036000830152613ebb81613a36565b9050919050565b60006020820190508181036000830152613edb81613a59565b9050919050565b60006020820190508181036000830152613efb81613a7c565b9050919050565b60006020820190508181036000830152613f1b81613a9f565b9050919050565b60006020820190508181036000830152613f3b81613ac2565b9050919050565b60006020820190508181036000830152613f5b81613ae5565b9050919050565b60006020820190508181036000830152613f7b81613b08565b9050919050565b60006020820190508181036000830152613f9b81613b2b565b9050919050565b60006020820190508181036000830152613fbb81613b4e565b9050919050565b60006020820190508181036000830152613fdb81613b71565b9050919050565b60006020820190508181036000830152613ffb81613b94565b9050919050565b6000602082019050818103600083015261401b81613bb7565b9050919050565b60006020820190506140376000830184613be9565b92915050565b6000614047614058565b90506140538282614395565b919050565b6000604051905090565b600067ffffffffffffffff82111561407d5761407c61452b565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140a9576140a861452b565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140d5576140d461452b565b5b6140de82614573565b9050602081019050919050565b600067ffffffffffffffff8211156141065761410561452b565b5b61410f82614573565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141a382614317565b91506141ae83614317565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141e3576141e2614440565b5b828201905092915050565b60006141f982614317565b915061420483614317565b9250826142145761421361446f565b5b828204905092915050565b600061422a82614317565b915061423583614317565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561426e5761426d614440565b5b828202905092915050565b600061428482614317565b915061428f83614317565b9250828210156142a2576142a1614440565b5b828203905092915050565b60006142b8826142f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561434e578082015181840152602081019050614333565b8381111561435d576000848401525b50505050565b6000600282049050600182168061437b57607f821691505b6020821081141561438f5761438e61449e565b5b50919050565b61439e82614573565b810181811067ffffffffffffffff821117156143bd576143bc61452b565b5b80604052505050565b60006143d182614317565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561440457614403614440565b5b600182019050919050565b600061441a82614317565b915061442583614317565b9250826144355761443461446f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203520746f60008201527f6b656e73206174206f6e63650000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f20746f6b656e7320726573657276656420666f7220796f7572206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742072657365727665206d6f7265207468616e2073657420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726573616c652069736e277420616374697665000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c652069736e277420616374697665000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b614c3d816142ad565b8114614c4857600080fd5b50565b614c54816142bf565b8114614c5f57600080fd5b50565b614c6b816142cb565b8114614c7657600080fd5b50565b614c8281614317565b8114614c8d57600080fd5b5056fea2646970667358221220cbab77ad90e06912e4e487743c144811d199184cc134623a87ee998b56f4acc164736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f7777772e6375746563727970746f636174732e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146107e6578063f2fde38b14610823578063f759867a1461084c578063fd2b049214610868578063fe60d12c146108845761021a565b8063b88d4fde14610710578063b957172114610739578063c634d03214610762578063c87b56dd1461077e578063d547cfb7146107bb5761021a565b806391b7f5ed116100f257806391b7f5ed1461063f57806395d89b41146106685780639a5d140b14610693578063a035b1fe146106bc578063a22cb465146106e75761021a565b8063715018a614610597578063841718a6146105ae5780638462151c146105d75780638da5cb5b146106145761021a565b80633f8121a2116101a657806355f804b31161017557806355f804b3146104a05780636352211e146104c957806368428a1b146105065780636b2fd8651461053157806370a082311461055a5761021a565b80633f8121a2146103e657806342842e0e1461040f5780634f6ccce71461043857806353135ca0146104755761021a565b8063119552a1116101ed578063119552a1146102ed57806318160ddd1461031857806323b872dd146103435780632f745c591461036c57806339c36fa0146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613645565b6108af565b6040516102539190613ca5565b60405180910390f35b34801561026857600080fd5b50610271610929565b60405161027e9190613cc0565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906136e8565b6109bb565b6040516102bb9190613c1c565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613517565b610a40565b005b3480156102f957600080fd5b50610302610b58565b60405161030f9190613c1c565b60405180910390f35b34801561032457600080fd5b5061032d610b7e565b60405161033a9190614022565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190613401565b610b8b565b005b34801561037857600080fd5b50610393600480360381019061038e9190613517565b610beb565b6040516103a09190614022565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190613394565b610c90565b6040516103dd9190614022565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190613618565b610ca8565b005b34801561041b57600080fd5b5061043660048036038101906104319190613401565b610d41565b005b34801561044457600080fd5b5061045f600480360381019061045a91906136e8565b610d61565b60405161046c9190614022565b60405180910390f35b34801561048157600080fd5b5061048a610dd2565b6040516104979190613ca5565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c2919061369f565b610de5565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906136e8565b610e7b565b6040516104fd9190613c1c565b60405180910390f35b34801561051257600080fd5b5061051b610f2d565b6040516105289190613ca5565b60405180910390f35b34801561053d57600080fd5b50610558600480360381019061055391906135a0565b610f40565b005b34801561056657600080fd5b50610581600480360381019061057c9190613394565b611058565b60405161058e9190614022565b60405180910390f35b3480156105a357600080fd5b506105ac611110565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190613618565b611198565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613394565b611231565b60405161060b9190613c83565b60405180910390f35b34801561062057600080fd5b506106296112df565b6040516106369190613c1c565b60405180910390f35b34801561064b57600080fd5b50610666600480360381019061066191906136e8565b611309565b005b34801561067457600080fd5b5061067d61138f565b60405161068a9190613cc0565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b591906136e8565b611421565b005b3480156106c857600080fd5b506106d161153f565b6040516106de9190614022565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906134d7565b611545565b005b34801561071c57600080fd5b5061073760048036038101906107329190613454565b6116c6565b005b34801561074557600080fd5b50610760600480360381019061075b9190613557565b611728565b005b61077c600480360381019061077791906136e8565b611803565b005b34801561078a57600080fd5b506107a560048036038101906107a091906136e8565b611984565b6040516107b29190613cc0565b60405180910390f35b3480156107c757600080fd5b506107d0611a2b565b6040516107dd9190613cc0565b60405180910390f35b3480156107f257600080fd5b5061080d600480360381019061080891906133c1565b611ab9565b60405161081a9190613ca5565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613394565b611b4d565b005b610866600480360381019061086191906136e8565b611c45565b005b610882600480360381019061087d91906136e8565b611e91565b005b34801561089057600080fd5b50610899611f8e565b6040516108a69190614022565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610922575061092182611f94565b5b9050919050565b60606000805461093890614363565b80601f016020809104026020016040519081016040528092919081815260200182805461096490614363565b80156109b15780601f10610986576101008083540402835291602001916109b1565b820191906000526020600020905b81548152906001019060200180831161099457829003601f168201915b5050505050905090565b60006109c682612076565b610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90613ee2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4b82610e7b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613fa2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adb6120e2565b73ffffffffffffffffffffffffffffffffffffffff161480610b0a5750610b0981610b046120e2565b611ab9565b5b610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090613e42565b60405180910390fd5b610b5383836120ea565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600880549050905090565b610b9c610b966120e2565b826121a3565b610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290613fc2565b60405180910390fd5b610be6838383612281565b505050565b6000610bf683611058565b8210610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e90613d22565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f6020528060005260406000206000915090505481565b610cb06120e2565b73ffffffffffffffffffffffffffffffffffffffff16610cce6112df565b73ffffffffffffffffffffffffffffffffffffffff1614610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613f22565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b610d5c838383604051806020016040528060008152506116c6565b505050565b6000610d6b610b7e565b8210610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390613fe2565b60405180910390fd5b60088281548110610dc057610dbf6144fc565b5b90600052602060002001549050919050565b600a60159054906101000a900460ff1681565b610ded6120e2565b73ffffffffffffffffffffffffffffffffffffffff16610e0b6112df565b73ffffffffffffffffffffffffffffffffffffffff1614610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890613f22565b60405180910390fd5b80600d9080519060200190610e7792919061306c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90613e82565b60405180910390fd5b80915050919050565b600a60149054906101000a900460ff1681565b610f486120e2565b73ffffffffffffffffffffffffffffffffffffffff16610f666112df565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390613f22565b60405180910390fd5b60005b825181101561105357818181518110610fdb57610fda6144fc565b5b6020026020010151600f6000858481518110610ffa57610ff96144fc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061104b906143c6565b915050610fbf565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613e62565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111186120e2565b73ffffffffffffffffffffffffffffffffffffffff166111366112df565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390613f22565b60405180910390fd5b61119660006124dd565b565b6111a06120e2565b73ffffffffffffffffffffffffffffffffffffffff166111be6112df565b73ffffffffffffffffffffffffffffffffffffffff1614611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90613f22565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b6060600061123e83611058565b905060008167ffffffffffffffff81111561125c5761125b61452b565b5b60405190808252806020026020018201604052801561128a5781602001602082028036833780820191505090505b50905060005b828110156112d4576112a28582610beb565b8282815181106112b5576112b46144fc565b5b60200260200101818152505080806112cc906143c6565b915050611290565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113116120e2565b73ffffffffffffffffffffffffffffffffffffffff1661132f6112df565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90613f22565b60405180910390fd5b80600c8190555050565b60606001805461139e90614363565b80601f01602080910402602001604051908101604052809291908181526020018280546113ca90614363565b80156114175780601f106113ec57610100808354040283529160200191611417565b820191906000526020600020905b8154815290600101906020018083116113fa57829003601f168201915b5050505050905090565b6114296120e2565b73ffffffffffffffffffffffffffffffffffffffff166114476112df565b73ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149490613f22565b60405180910390fd5b600b548111156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613ec2565b60405180910390fd5b80600b60008282546114f49190614279565b925050819055506000611505610b7e565b905060005b8281101561153a576115273382846115229190614198565b6125a3565b8080611532906143c6565b91505061150a565b505050565b600c5481565b61154d6120e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613de2565b60405180910390fd5b80600560006115c86120e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116756120e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ba9190613ca5565b60405180910390a35050565b6116d76116d16120e2565b836121a3565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613fc2565b60405180910390fd5b611722848484846125c1565b50505050565b6117306120e2565b73ffffffffffffffffffffffffffffffffffffffff1661174e6112df565b73ffffffffffffffffffffffffffffffffffffffff16146117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90613f22565b60405180910390fd5b806000815181106117b8576117b76144fc565b5b6020026020010151600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061180d610b7e565b9050600a60149054906101000a900460ff1661185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590613f82565b60405180910390fd5b60008211801561186e5750600682105b6118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490613ce2565b60405180910390fd5b611a0a82826118bc9190614198565b11156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490613da2565b60405180910390fd5b81600c5461190b919061421f565b341461194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390614002565b60405180910390fd5b60005b8281101561197f5761196c3382846119679190614198565b6125a3565b8080611977906143c6565b91505061194f565b505050565b606061198f82612076565b6119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613f62565b60405180910390fd5b60006119d861261d565b905060008151116119f85760405180602001604052806000815250611a23565b80611a02846126af565b604051602001611a13929190613bf8565b6040516020818303038152906040525b915050919050565b600d8054611a3890614363565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6490614363565b8015611ab15780601f10611a8657610100808354040283529160200191611ab1565b820191906000526020600020905b815481529060010190602001808311611a9457829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b556120e2565b73ffffffffffffffffffffffffffffffffffffffff16611b736112df565b73ffffffffffffffffffffffffffffffffffffffff1614611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090613f22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090613d62565b60405180910390fd5b611c42816124dd565b50565b6000611c4f610b7e565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600a60159054906101000a900460ff16611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613f02565b60405180910390fd5b60008111611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613e22565b60405180910390fd5b80831115611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6190613d02565b60405180910390fd5b611a0a8383611d799190614198565b1115611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613da2565b60405180910390fd5b82600c54611dc8919061421f565b3414611e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0090614002565b60405180910390fd5b8281611e159190614279565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b83811015611e8b57611e78338285611e739190614198565b6125a3565b8080611e83906143c6565b915050611e5b565b50505050565b611e996120e2565b73ffffffffffffffffffffffffffffffffffffffff16611eb76112df565b73ffffffffffffffffffffffffffffffffffffffff1614611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490613f22565b60405180910390fd5b6000606482611f1c91906141ee565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606483611f67919061421f565b9081150290604051600060405180830381858888f19350505050611f8a57600080fd5b5050565b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061205f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061206f575061206e82612810565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661215d83610e7b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121ae82612076565b6121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e490613e02565b60405180910390fd5b60006121f883610e7b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061226757508373ffffffffffffffffffffffffffffffffffffffff1661224f846109bb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061227857506122778185611ab9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122a182610e7b565b73ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90613f42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90613dc2565b60405180910390fd5b61237283838361287a565b61237d6000826120ea565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123cd9190614279565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124249190614198565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125bd82826040518060200160405280600081525061298e565b5050565b6125cc848484612281565b6125d8848484846129e9565b612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e90613d42565b60405180910390fd5b50505050565b6060600d805461262c90614363565b80601f016020809104026020016040519081016040528092919081815260200182805461265890614363565b80156126a55780601f1061267a576101008083540402835291602001916126a5565b820191906000526020600020905b81548152906001019060200180831161268857829003601f168201915b5050505050905090565b606060008214156126f7576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061280b565b600082905060005b60008214612729578080612712906143c6565b915050600a8261272291906141ee565b91506126ff565b60008167ffffffffffffffff8111156127455761274461452b565b5b6040519080825280601f01601f1916602001820160405280156127775781602001600182028036833780820191505090505b5090505b60008514612804576001826127909190614279565b9150600a8561279f919061440f565b60306127ab9190614198565b60f81b8183815181106127c1576127c06144fc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127fd91906141ee565b945061277b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612885838383612b80565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128c8576128c381612b85565b612907565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612906576129058382612bce565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561294a5761294581612d3b565b612989565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612988576129878282612e0c565b5b5b505050565b6129988383612e8b565b6129a560008484846129e9565b6129e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129db90613d42565b60405180910390fd5b505050565b6000612a0a8473ffffffffffffffffffffffffffffffffffffffff16613059565b15612b73578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a336120e2565b8786866040518563ffffffff1660e01b8152600401612a559493929190613c37565b602060405180830381600087803b158015612a6f57600080fd5b505af1925050508015612aa057506040513d601f19601f82011682018060405250810190612a9d9190613672565b60015b612b23573d8060008114612ad0576040519150601f19603f3d011682016040523d82523d6000602084013e612ad5565b606091505b50600081511415612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1290613d42565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b78565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bdb84611058565b612be59190614279565b9050600060076000848152602001908152602001600020549050818114612cca576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d4f9190614279565b9050600060096000848152602001908152602001600020549050600060088381548110612d7f57612d7e6144fc565b5b906000526020600020015490508060088381548110612da157612da06144fc565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612df057612def6144cd565b5b6001900381819060005260206000200160009055905550505050565b6000612e1783611058565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef290613ea2565b60405180910390fd5b612f0481612076565b15612f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3b90613d82565b60405180910390fd5b612f506000838361287a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fa09190614198565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461307890614363565b90600052602060002090601f01602090048101928261309a57600085556130e1565b82601f106130b357805160ff19168380011785556130e1565b828001600101855582156130e1579182015b828111156130e05782518255916020019190600101906130c5565b5b5090506130ee91906130f2565b5090565b5b8082111561310b5760008160009055506001016130f3565b5090565b600061312261311d84614062565b61403d565b905080838252602082019050828560208602820111156131455761314461455f565b5b60005b85811015613175578161315b8882613273565b845260208401935060208301925050600181019050613148565b5050509392505050565b600061319261318d8461408e565b61403d565b905080838252602082019050828560208602820111156131b5576131b461455f565b5b60005b858110156131e557816131cb888261337f565b8452602084019350602083019250506001810190506131b8565b5050509392505050565b60006132026131fd846140ba565b61403d565b90508281526020810184848401111561321e5761321d614564565b5b613229848285614321565b509392505050565b600061324461323f846140eb565b61403d565b9050828152602081018484840111156132605761325f614564565b5b61326b848285614321565b509392505050565b60008135905061328281614c34565b92915050565b600082601f83011261329d5761329c61455a565b5b81356132ad84826020860161310f565b91505092915050565b600082601f8301126132cb576132ca61455a565b5b81356132db84826020860161317f565b91505092915050565b6000813590506132f381614c4b565b92915050565b60008135905061330881614c62565b92915050565b60008151905061331d81614c62565b92915050565b600082601f8301126133385761333761455a565b5b81356133488482602086016131ef565b91505092915050565b600082601f8301126133665761336561455a565b5b8135613376848260208601613231565b91505092915050565b60008135905061338e81614c79565b92915050565b6000602082840312156133aa576133a961456e565b5b60006133b884828501613273565b91505092915050565b600080604083850312156133d8576133d761456e565b5b60006133e685828601613273565b92505060206133f785828601613273565b9150509250929050565b60008060006060848603121561341a5761341961456e565b5b600061342886828701613273565b935050602061343986828701613273565b925050604061344a8682870161337f565b9150509250925092565b6000806000806080858703121561346e5761346d61456e565b5b600061347c87828801613273565b945050602061348d87828801613273565b935050604061349e8782880161337f565b925050606085013567ffffffffffffffff8111156134bf576134be614569565b5b6134cb87828801613323565b91505092959194509250565b600080604083850312156134ee576134ed61456e565b5b60006134fc85828601613273565b925050602061350d858286016132e4565b9150509250929050565b6000806040838503121561352e5761352d61456e565b5b600061353c85828601613273565b925050602061354d8582860161337f565b9150509250929050565b60006020828403121561356d5761356c61456e565b5b600082013567ffffffffffffffff81111561358b5761358a614569565b5b61359784828501613288565b91505092915050565b600080604083850312156135b7576135b661456e565b5b600083013567ffffffffffffffff8111156135d5576135d4614569565b5b6135e185828601613288565b925050602083013567ffffffffffffffff81111561360257613601614569565b5b61360e858286016132b6565b9150509250929050565b60006020828403121561362e5761362d61456e565b5b600061363c848285016132e4565b91505092915050565b60006020828403121561365b5761365a61456e565b5b6000613669848285016132f9565b91505092915050565b6000602082840312156136885761368761456e565b5b60006136968482850161330e565b91505092915050565b6000602082840312156136b5576136b461456e565b5b600082013567ffffffffffffffff8111156136d3576136d2614569565b5b6136df84828501613351565b91505092915050565b6000602082840312156136fe576136fd61456e565b5b600061370c8482850161337f565b91505092915050565b60006137218383613bda565b60208301905092915050565b613736816142ad565b82525050565b60006137478261412c565b613751818561415a565b935061375c8361411c565b8060005b8381101561378d5781516137748882613715565b975061377f8361414d565b925050600181019050613760565b5085935050505092915050565b6137a3816142bf565b82525050565b60006137b482614137565b6137be818561416b565b93506137ce818560208601614330565b6137d781614573565b840191505092915050565b60006137ed82614142565b6137f7818561417c565b9350613807818560208601614330565b61381081614573565b840191505092915050565b600061382682614142565b613830818561418d565b9350613840818560208601614330565b80840191505092915050565b6000613859602c8361417c565b915061386482614584565b604082019050919050565b600061387c601d8361417c565b9150613887826145d3565b602082019050919050565b600061389f602b8361417c565b91506138aa826145fc565b604082019050919050565b60006138c260328361417c565b91506138cd8261464b565b604082019050919050565b60006138e560268361417c565b91506138f08261469a565b604082019050919050565b6000613908601c8361417c565b9150613913826146e9565b602082019050919050565b600061392b601f8361417c565b915061393682614712565b602082019050919050565b600061394e60248361417c565b91506139598261473b565b604082019050919050565b600061397160198361417c565b915061397c8261478a565b602082019050919050565b6000613994602c8361417c565b915061399f826147b3565b604082019050919050565b60006139b760238361417c565b91506139c282614802565b604082019050919050565b60006139da60388361417c565b91506139e582614851565b604082019050919050565b60006139fd602a8361417c565b9150613a08826148a0565b604082019050919050565b6000613a2060298361417c565b9150613a2b826148ef565b604082019050919050565b6000613a4360208361417c565b9150613a4e8261493e565b602082019050919050565b6000613a6660228361417c565b9150613a7182614967565b604082019050919050565b6000613a89602c8361417c565b9150613a94826149b6565b604082019050919050565b6000613aac60148361417c565b9150613ab782614a05565b602082019050919050565b6000613acf60208361417c565b9150613ada82614a2e565b602082019050919050565b6000613af260298361417c565b9150613afd82614a57565b604082019050919050565b6000613b15602f8361417c565b9150613b2082614aa6565b604082019050919050565b6000613b3860118361417c565b9150613b4382614af5565b602082019050919050565b6000613b5b60218361417c565b9150613b6682614b1e565b604082019050919050565b6000613b7e60318361417c565b9150613b8982614b6d565b604082019050919050565b6000613ba1602c8361417c565b9150613bac82614bbc565b604082019050919050565b6000613bc460188361417c565b9150613bcf82614c0b565b602082019050919050565b613be381614317565b82525050565b613bf281614317565b82525050565b6000613c04828561381b565b9150613c10828461381b565b91508190509392505050565b6000602082019050613c31600083018461372d565b92915050565b6000608082019050613c4c600083018761372d565b613c59602083018661372d565b613c666040830185613be9565b8181036060830152613c7881846137a9565b905095945050505050565b60006020820190508181036000830152613c9d818461373c565b905092915050565b6000602082019050613cba600083018461379a565b92915050565b60006020820190508181036000830152613cda81846137e2565b905092915050565b60006020820190508181036000830152613cfb8161384c565b9050919050565b60006020820190508181036000830152613d1b8161386f565b9050919050565b60006020820190508181036000830152613d3b81613892565b9050919050565b60006020820190508181036000830152613d5b816138b5565b9050919050565b60006020820190508181036000830152613d7b816138d8565b9050919050565b60006020820190508181036000830152613d9b816138fb565b9050919050565b60006020820190508181036000830152613dbb8161391e565b9050919050565b60006020820190508181036000830152613ddb81613941565b9050919050565b60006020820190508181036000830152613dfb81613964565b9050919050565b60006020820190508181036000830152613e1b81613987565b9050919050565b60006020820190508181036000830152613e3b816139aa565b9050919050565b60006020820190508181036000830152613e5b816139cd565b9050919050565b60006020820190508181036000830152613e7b816139f0565b9050919050565b60006020820190508181036000830152613e9b81613a13565b9050919050565b60006020820190508181036000830152613ebb81613a36565b9050919050565b60006020820190508181036000830152613edb81613a59565b9050919050565b60006020820190508181036000830152613efb81613a7c565b9050919050565b60006020820190508181036000830152613f1b81613a9f565b9050919050565b60006020820190508181036000830152613f3b81613ac2565b9050919050565b60006020820190508181036000830152613f5b81613ae5565b9050919050565b60006020820190508181036000830152613f7b81613b08565b9050919050565b60006020820190508181036000830152613f9b81613b2b565b9050919050565b60006020820190508181036000830152613fbb81613b4e565b9050919050565b60006020820190508181036000830152613fdb81613b71565b9050919050565b60006020820190508181036000830152613ffb81613b94565b9050919050565b6000602082019050818103600083015261401b81613bb7565b9050919050565b60006020820190506140376000830184613be9565b92915050565b6000614047614058565b90506140538282614395565b919050565b6000604051905090565b600067ffffffffffffffff82111561407d5761407c61452b565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140a9576140a861452b565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140d5576140d461452b565b5b6140de82614573565b9050602081019050919050565b600067ffffffffffffffff8211156141065761410561452b565b5b61410f82614573565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141a382614317565b91506141ae83614317565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141e3576141e2614440565b5b828201905092915050565b60006141f982614317565b915061420483614317565b9250826142145761421361446f565b5b828204905092915050565b600061422a82614317565b915061423583614317565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561426e5761426d614440565b5b828202905092915050565b600061428482614317565b915061428f83614317565b9250828210156142a2576142a1614440565b5b828203905092915050565b60006142b8826142f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561434e578082015181840152602081019050614333565b8381111561435d576000848401525b50505050565b6000600282049050600182168061437b57607f821691505b6020821081141561438f5761438e61449e565b5b50919050565b61439e82614573565b810181811067ffffffffffffffff821117156143bd576143bc61452b565b5b80604052505050565b60006143d182614317565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561440457614403614440565b5b600182019050919050565b600061441a82614317565b915061442583614317565b9250826144355761443461446f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203520746f60008201527f6b656e73206174206f6e63650000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f20746f6b656e7320726573657276656420666f7220796f7572206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742072657365727665206d6f7265207468616e2073657420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726573616c652069736e277420616374697665000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c652069736e277420616374697665000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b614c3d816142ad565b8114614c4857600080fd5b50565b614c54816142bf565b8114614c5f57600080fd5b50565b614c6b816142cb565b8114614c7657600080fd5b50565b614c8281614317565b8114614c8d57600080fd5b5056fea2646970667358221220cbab77ad90e06912e4e487743c144811d199184cc134623a87ee998b56f4acc164736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f7777772e6375746563727970746f636174732e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : newBaseURI (string): https://www.cutecryptocats.com/metadata/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [2] : 68747470733a2f2f7777772e6375746563727970746f636174732e636f6d2f6d
Arg [3] : 657461646174612f000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
42528:4611:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36353:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24334:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25893:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25416:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43170:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36993:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26783:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36661:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43338:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46263:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27193:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37183:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42712:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46507:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24028:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42675:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46017:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23758:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7591:94;;;;;;;;;;;;;:::i;:::-;;46390:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43798:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6940:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46678:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24503:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45606:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42889:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26186:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27449:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46801:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44960:544;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24678:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43094:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26552:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7840:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44174:747;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46948:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42824:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36353:224;36455:4;36494:35;36479:50;;;:11;:50;;;;:90;;;;36533:36;36557:11;36533:23;:36::i;:::-;36479:90;36472:97;;36353:224;;;:::o;24334:100::-;24388:13;24421:5;24414:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24334:100;:::o;25893:221::-;25969:7;25997:16;26005:7;25997;:16::i;:::-;25989:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26082:15;:24;26098:7;26082:24;;;;;;;;;;;;;;;;;;;;;26075:31;;25893:221;;;:::o;25416:411::-;25497:13;25513:23;25528:7;25513:14;:23::i;:::-;25497:39;;25561:5;25555:11;;:2;:11;;;;25547:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25655:5;25639:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25664:37;25681:5;25688:12;:10;:12::i;:::-;25664:16;:37::i;:::-;25639:62;25617:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25798:21;25807:2;25811:7;25798:8;:21::i;:::-;25486:341;25416:411;;:::o;43170:62::-;;;;;;;;;;;;;:::o;36993:113::-;37054:7;37081:10;:17;;;;37074:24;;36993:113;:::o;26783:339::-;26978:41;26997:12;:10;:12::i;:::-;27011:7;26978:18;:41::i;:::-;26970:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27086:28;27096:4;27102:2;27106:7;27086:9;:28::i;:::-;26783:339;;;:::o;36661:256::-;36758:7;36794:23;36811:5;36794:16;:23::i;:::-;36786:5;:31;36778:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36883:12;:19;36896:5;36883:19;;;;;;;;;;;;;;;:26;36903:5;36883:26;;;;;;;;;;;;36876:33;;36661:256;;;;:::o;43338:51::-;;;;;;;;;;;;;;;;;:::o;46263:91::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46343:3:::1;46327:13;;:19;;;;;;;;;;;;;;;;;;46263:91:::0;:::o;27193:185::-;27331:39;27348:4;27354:2;27358:7;27331:39;;;;;;;;;;;;:16;:39::i;:::-;27193:185;;;:::o;37183:233::-;37258:7;37294:30;:28;:30::i;:::-;37286:5;:38;37278:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37391:10;37402:5;37391:17;;;;;;;;:::i;:::-;;;;;;;;;;37384:24;;37183:233;;;:::o;42712:33::-;;;;;;;;;;;;;:::o;46507:101::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46593:7:::1;46578:12;:22;;;;;;;;;;;;:::i;:::-;;46507:101:::0;:::o;24028:239::-;24100:7;24120:13;24136:7;:16;24144:7;24136:16;;;;;;;;;;;;;;;;;;;;;24120:32;;24188:1;24171:19;;:5;:19;;;;24163:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24254:5;24247:12;;;24028:239;;;:::o;42675:30::-;;;;;;;;;;;;;:::o;46017:207::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46125:9:::1;46121:96;46140:2;:9;46136:1;:13;46121:96;;;46195:7;46203:1;46195:10;;;;;;;;:::i;:::-;;;;;;;;46170:15;:22;46186:2;46189:1;46186:5;;;;;;;;:::i;:::-;;;;;;;;46170:22;;;;;;;;;;;;;;;:35;;;;46151:3;;;;;:::i;:::-;;;;46121:96;;;;46017:207:::0;;:::o;23758:208::-;23830:7;23875:1;23858:19;;:5;:19;;;;23850:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23942:9;:16;23952:5;23942:16;;;;;;;;;;;;;;;;23935:23;;23758:208;;;:::o;7591:94::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7656:21:::1;7674:1;7656:9;:21::i;:::-;7591:94::o:0;46390:85::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46464:3:::1;46451:10;;:16;;;;;;;;;;;;;;;;;;46390:85:::0;:::o;43798:334::-;43855:16;43884:18;43905:15;43915:4;43905:9;:15::i;:::-;43884:36;;43931:25;43973:10;43959:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43931:53;;43999:9;43995:104;44014:10;44010:1;:14;43995:104;;;44059:28;44079:4;44085:1;44059:19;:28::i;:::-;44045:8;44054:1;44045:11;;;;;;;;:::i;:::-;;;;;;;:42;;;;;44026:3;;;;;:::i;:::-;;;;43995:104;;;;44116:8;44109:15;;;;43798:334;;;:::o;6940:87::-;6986:7;7013:6;;;;;;;;;;;7006:13;;6940:87;:::o;46678:88::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46750:8:::1;46742:5;:16;;;;46678:88:::0;:::o;24503:104::-;24559:13;24592:7;24585:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24503:104;:::o;45606:363::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45738:8:::1;;45727:7;:19;;45718:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45809:7;45797:8;;:19;;;;;;;:::i;:::-;;;;;;;;45827:14;45844:13;:11;:13::i;:::-;45827:30;;45872:9;45868:94;45887:7;45883:1;:11;45868:94;;;45915:35;45926:10;45947:1;45938:6;:10;;;;:::i;:::-;45915:9;:35::i;:::-;45896:3;;;;;:::i;:::-;;;;45868:94;;;;45662:307;45606:363:::0;:::o;42889:34::-;;;;:::o;26186:295::-;26301:12;:10;:12::i;:::-;26289:24;;:8;:24;;;;26281:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26401:8;26356:18;:32;26375:12;:10;:12::i;:::-;26356:32;;;;;;;;;;;;;;;:42;26389:8;26356:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26454:8;26425:48;;26440:12;:10;:12::i;:::-;26425:48;;;26464:8;26425:48;;;;;;:::i;:::-;;;;;;;;26186:295;;:::o;27449:328::-;27624:41;27643:12;:10;:12::i;:::-;27657:7;27624:18;:41::i;:::-;27616:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27730:39;27744:4;27750:2;27754:7;27763:5;27730:13;:39::i;:::-;27449:328;;;;:::o;46801:89::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46877:2:::1;46880:1;46877:5;;;;;;;;:::i;:::-;;;;;;;;46872:2;;:10;;;;;;;;;;;;;;;;;;46801:89:::0;:::o;44960:544::-;45022:14;45039:13;:11;:13::i;:::-;45022:30;;45072:10;;;;;;;;;;;45063:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45155:1;45145:7;:11;:26;;;;;45170:1;45160:7;:11;45145:26;45136:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;43014:4;45254:7;45245:6;:16;;;;:::i;:::-;:30;;45236:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45353:7;45345:5;;:15;;;;:::i;:::-;45332:9;:28;45323:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;45407:9;45403:94;45422:7;45418:1;:11;45403:94;;;45450:35;45461:10;45482:1;45473:6;:10;;;;:::i;:::-;45450:9;:35::i;:::-;45431:3;;;;;:::i;:::-;;;;45403:94;;;;45011:493;44960:544;:::o;24678:334::-;24751:13;24785:16;24793:7;24785;:16::i;:::-;24777:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24866:21;24890:10;:8;:10::i;:::-;24866:34;;24942:1;24924:7;24918:21;:25;:86;;;;;;;;;;;;;;;;;24970:7;24979:18;:7;:16;:18::i;:::-;24953:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24918:86;24911:93;;;24678:334;;;:::o;43094:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26552:164::-;26649:4;26673:18;:25;26692:5;26673:25;;;;;;;;;;;;;;;:35;26699:8;26673:35;;;;;;;;;;;;;;;;;;;;;;;;;26666:42;;26552:164;;;;:::o;7840:192::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7949:1:::1;7929:22;;:8;:22;;;;7921:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8005:19;8015:8;8005:9;:19::i;:::-;7840:192:::0;:::o;44174:747::-;44238:14;44255:13;:11;:13::i;:::-;44238:30;;44279:19;44301:15;:27;44317:10;44301:27;;;;;;;;;;;;;;;;44279:49;;44348:13;;;;;;;;;;;44339:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44438:1;44424:11;:15;44415:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;44526:11;44515:7;:22;;44506:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43014:4;44609:7;44600:6;:16;;;;:::i;:::-;:30;;44591:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44708:7;44700:5;;:15;;;;:::i;:::-;44687:9;:28;44678:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;44802:7;44788:11;:21;;;;:::i;:::-;44758:15;:27;44774:10;44758:27;;;;;;;;;;;;;;;:51;;;;44824:9;44820:94;44839:7;44835:1;:11;44820:94;;;44867:35;44878:10;44899:1;44890:6;:10;;;;:::i;:::-;44867:9;:35::i;:::-;44848:3;;;;;:::i;:::-;;;;44820:94;;;;44227:694;;44174:747;:::o;46948:188::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47022:15:::1;47049:3;47040:6;:12;;;;:::i;:::-;47022:30;;47079:2;;;;;;;;;;;47071:16;;:31;47098:3;47088:7;:13;;;;:::i;:::-;47071:31;;;;;;;;;;;;;;;;;;;;;;;47063:40;;;::::0;::::1;;47011:125;46948:188:::0;:::o;42824:28::-;;;;:::o;23389:305::-;23491:4;23543:25;23528:40;;;:11;:40;;;;:105;;;;23600:33;23585:48;;;:11;:48;;;;23528:105;:158;;;;23650:36;23674:11;23650:23;:36::i;:::-;23528:158;23508:178;;23389:305;;;:::o;29287:127::-;29352:4;29404:1;29376:30;;:7;:16;29384:7;29376:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29369:37;;29287:127;;;:::o;303:98::-;356:7;383:10;376:17;;303:98;:::o;33269:174::-;33371:2;33344:15;:24;33360:7;33344:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33427:7;33423:2;33389:46;;33398:23;33413:7;33398:14;:23::i;:::-;33389:46;;;;;;;;;;;;33269:174;;:::o;29581:348::-;29674:4;29699:16;29707:7;29699;:16::i;:::-;29691:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29775:13;29791:23;29806:7;29791:14;:23::i;:::-;29775:39;;29844:5;29833:16;;:7;:16;;;:51;;;;29877:7;29853:31;;:20;29865:7;29853:11;:20::i;:::-;:31;;;29833:51;:87;;;;29888:32;29905:5;29912:7;29888:16;:32::i;:::-;29833:87;29825:96;;;29581:348;;;;:::o;32573:578::-;32732:4;32705:31;;:23;32720:7;32705:14;:23::i;:::-;:31;;;32697:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32815:1;32801:16;;:2;:16;;;;32793:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32871:39;32892:4;32898:2;32902:7;32871:20;:39::i;:::-;32975:29;32992:1;32996:7;32975:8;:29::i;:::-;33036:1;33017:9;:15;33027:4;33017:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33065:1;33048:9;:13;33058:2;33048:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33096:2;33077:7;:16;33085:7;33077:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33135:7;33131:2;33116:27;;33125:4;33116:27;;;;;;;;;;;;32573:578;;;:::o;8040:173::-;8096:16;8115:6;;;;;;;;;;;8096:25;;8141:8;8132:6;;:17;;;;;;;;;;;;;;;;;;8196:8;8165:40;;8186:8;8165:40;;;;;;;;;;;;8085:128;8040:173;:::o;30271:110::-;30347:26;30357:2;30361:7;30347:26;;;;;;;;;;;;:9;:26::i;:::-;30271:110;;:::o;28659:315::-;28816:28;28826:4;28832:2;28836:7;28816:9;:28::i;:::-;28863:48;28886:4;28892:2;28896:7;28905:5;28863:22;:48::i;:::-;28855:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28659:315;;;;:::o;43633:113::-;43693:13;43726:12;43719:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43633:113;:::o;10265:723::-;10321:13;10551:1;10542:5;:10;10538:53;;;10569:10;;;;;;;;;;;;;;;;;;;;;10538:53;10601:12;10616:5;10601:20;;10632:14;10657:78;10672:1;10664:4;:9;10657:78;;10690:8;;;;;:::i;:::-;;;;10721:2;10713:10;;;;;:::i;:::-;;;10657:78;;;10745:19;10777:6;10767:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10745:39;;10795:154;10811:1;10802:5;:10;10795:154;;10839:1;10829:11;;;;;:::i;:::-;;;10906:2;10898:5;:10;;;;:::i;:::-;10885:2;:24;;;;:::i;:::-;10872:39;;10855:6;10862;10855:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;10935:2;10926:11;;;;;:::i;:::-;;;10795:154;;;10973:6;10959:21;;;;;10265:723;;;;:::o;9848:157::-;9933:4;9972:25;9957:40;;;:11;:40;;;;9950:47;;9848:157;;;:::o;38029:589::-;38173:45;38200:4;38206:2;38210:7;38173:26;:45::i;:::-;38251:1;38235:18;;:4;:18;;;38231:187;;;38270:40;38302:7;38270:31;:40::i;:::-;38231:187;;;38340:2;38332:10;;:4;:10;;;38328:90;;38359:47;38392:4;38398:7;38359:32;:47::i;:::-;38328:90;38231:187;38446:1;38432:16;;:2;:16;;;38428:183;;;38465:45;38502:7;38465:36;:45::i;:::-;38428:183;;;38538:4;38532:10;;:2;:10;;;38528:83;;38559:40;38587:2;38591:7;38559:27;:40::i;:::-;38528:83;38428:183;38029:589;;;:::o;30608:321::-;30738:18;30744:2;30748:7;30738:5;:18::i;:::-;30789:54;30820:1;30824:2;30828:7;30837:5;30789:22;:54::i;:::-;30767:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30608:321;;;:::o;34008:799::-;34163:4;34184:15;:2;:13;;;:15::i;:::-;34180:620;;;34236:2;34220:36;;;34257:12;:10;:12::i;:::-;34271:4;34277:7;34286:5;34220:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34216:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34479:1;34462:6;:13;:18;34458:272;;;34505:60;;;;;;;;;;:::i;:::-;;;;;;;;34458:272;34680:6;34674:13;34665:6;34661:2;34657:15;34650:38;34216:529;34353:41;;;34343:51;;;:6;:51;;;;34336:58;;;;;34180:620;34784:4;34777:11;;34008:799;;;;;;;:::o;35379:126::-;;;;:::o;39341:164::-;39445:10;:17;;;;39418:15;:24;39434:7;39418:24;;;;;;;;;;;:44;;;;39473:10;39489:7;39473:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39341:164;:::o;40132:988::-;40398:22;40448:1;40423:22;40440:4;40423:16;:22::i;:::-;:26;;;;:::i;:::-;40398:51;;40460:18;40481:17;:26;40499:7;40481:26;;;;;;;;;;;;40460:47;;40628:14;40614:10;:28;40610:328;;40659:19;40681:12;:18;40694:4;40681:18;;;;;;;;;;;;;;;:34;40700:14;40681:34;;;;;;;;;;;;40659:56;;40765:11;40732:12;:18;40745:4;40732:18;;;;;;;;;;;;;;;:30;40751:10;40732:30;;;;;;;;;;;:44;;;;40882:10;40849:17;:30;40867:11;40849:30;;;;;;;;;;;:43;;;;40644:294;40610:328;41034:17;:26;41052:7;41034:26;;;;;;;;;;;41027:33;;;41078:12;:18;41091:4;41078:18;;;;;;;;;;;;;;;:34;41097:14;41078:34;;;;;;;;;;;41071:41;;;40213:907;;40132:988;;:::o;41415:1079::-;41668:22;41713:1;41693:10;:17;;;;:21;;;;:::i;:::-;41668:46;;41725:18;41746:15;:24;41762:7;41746:24;;;;;;;;;;;;41725:45;;42097:19;42119:10;42130:14;42119:26;;;;;;;;:::i;:::-;;;;;;;;;;42097:48;;42183:11;42158:10;42169;42158:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42294:10;42263:15;:28;42279:11;42263:28;;;;;;;;;;;:41;;;;42435:15;:24;42451:7;42435:24;;;;;;;;;;;42428:31;;;42470:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41486:1008;;;41415:1079;:::o;38919:221::-;39004:14;39021:20;39038:2;39021:16;:20::i;:::-;39004:37;;39079:7;39052:12;:16;39065:2;39052:16;;;;;;;;;;;;;;;:24;39069:6;39052:24;;;;;;;;;;;:34;;;;39126:6;39097:17;:26;39115:7;39097:26;;;;;;;;;;;:35;;;;38993:147;38919:221;;:::o;31265:382::-;31359:1;31345:16;;:2;:16;;;;31337:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31418:16;31426:7;31418;:16::i;:::-;31417:17;31409:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31480:45;31509:1;31513:2;31517:7;31480:20;:45::i;:::-;31555:1;31538:9;:13;31548:2;31538:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31586:2;31567:7;:16;31575:7;31567:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31631:7;31627:2;31606:33;;31623:1;31606:33;;;;;;;;;;;;31265:382;;:::o;13268:387::-;13328:4;13536:12;13603:7;13591:20;13583:28;;13646:1;13639:4;:8;13632:15;;;13268:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:619::-;5445:6;5453;5461;5510:2;5498:9;5489:7;5485:23;5481:32;5478:119;;;5516:79;;:::i;:::-;5478:119;5636:1;5661:53;5706:7;5697:6;5686:9;5682:22;5661:53;:::i;:::-;5651:63;;5607:117;5763:2;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5734:118;5891:2;5917:53;5962:7;5953:6;5942:9;5938:22;5917:53;:::i;:::-;5907:63;;5862:118;5368:619;;;;;:::o;5993:943::-;6088:6;6096;6104;6112;6161:3;6149:9;6140:7;6136:23;6132:33;6129:120;;;6168:79;;:::i;:::-;6129:120;6288:1;6313:53;6358:7;6349:6;6338:9;6334:22;6313:53;:::i;:::-;6303:63;;6259:117;6415:2;6441:53;6486:7;6477:6;6466:9;6462:22;6441:53;:::i;:::-;6431:63;;6386:118;6543:2;6569:53;6614:7;6605:6;6594:9;6590:22;6569:53;:::i;:::-;6559:63;;6514:118;6699:2;6688:9;6684:18;6671:32;6730:18;6722:6;6719:30;6716:117;;;6752:79;;:::i;:::-;6716:117;6857:62;6911:7;6902:6;6891:9;6887:22;6857:62;:::i;:::-;6847:72;;6642:287;5993:943;;;;;;;:::o;6942:468::-;7007:6;7015;7064:2;7052:9;7043:7;7039:23;7035:32;7032:119;;;7070:79;;:::i;:::-;7032:119;7190:1;7215:53;7260:7;7251:6;7240:9;7236:22;7215:53;:::i;:::-;7205:63;;7161:117;7317:2;7343:50;7385:7;7376:6;7365:9;7361:22;7343:50;:::i;:::-;7333:60;;7288:115;6942:468;;;;;:::o;7416:474::-;7484:6;7492;7541:2;7529:9;7520:7;7516:23;7512:32;7509:119;;;7547:79;;:::i;:::-;7509:119;7667:1;7692:53;7737:7;7728:6;7717:9;7713:22;7692:53;:::i;:::-;7682:63;;7638:117;7794:2;7820:53;7865:7;7856:6;7845:9;7841:22;7820:53;:::i;:::-;7810:63;;7765:118;7416:474;;;;;:::o;7896:539::-;7980:6;8029:2;8017:9;8008:7;8004:23;8000:32;7997:119;;;8035:79;;:::i;:::-;7997:119;8183:1;8172:9;8168:17;8155:31;8213:18;8205:6;8202:30;8199:117;;;8235:79;;:::i;:::-;8199:117;8340:78;8410:7;8401:6;8390:9;8386:22;8340:78;:::i;:::-;8330:88;;8126:302;7896:539;;;;:::o;8441:894::-;8559:6;8567;8616:2;8604:9;8595:7;8591:23;8587:32;8584:119;;;8622:79;;:::i;:::-;8584:119;8770:1;8759:9;8755:17;8742:31;8800:18;8792:6;8789:30;8786:117;;;8822:79;;:::i;:::-;8786:117;8927:78;8997:7;8988:6;8977:9;8973:22;8927:78;:::i;:::-;8917:88;;8713:302;9082:2;9071:9;9067:18;9054:32;9113:18;9105:6;9102:30;9099:117;;;9135:79;;:::i;:::-;9099:117;9240:78;9310:7;9301:6;9290:9;9286:22;9240:78;:::i;:::-;9230:88;;9025:303;8441:894;;;;;:::o;9341:323::-;9397:6;9446:2;9434:9;9425:7;9421:23;9417:32;9414:119;;;9452:79;;:::i;:::-;9414:119;9572:1;9597:50;9639:7;9630:6;9619:9;9615:22;9597:50;:::i;:::-;9587:60;;9543:114;9341:323;;;;:::o;9670:327::-;9728:6;9777:2;9765:9;9756:7;9752:23;9748:32;9745:119;;;9783:79;;:::i;:::-;9745:119;9903:1;9928:52;9972:7;9963:6;9952:9;9948:22;9928:52;:::i;:::-;9918:62;;9874:116;9670:327;;;;:::o;10003:349::-;10072:6;10121:2;10109:9;10100:7;10096:23;10092:32;10089:119;;;10127:79;;:::i;:::-;10089:119;10247:1;10272:63;10327:7;10318:6;10307:9;10303:22;10272:63;:::i;:::-;10262:73;;10218:127;10003:349;;;;:::o;10358:509::-;10427:6;10476:2;10464:9;10455:7;10451:23;10447:32;10444:119;;;10482:79;;:::i;:::-;10444:119;10630:1;10619:9;10615:17;10602:31;10660:18;10652:6;10649:30;10646:117;;;10682:79;;:::i;:::-;10646:117;10787:63;10842:7;10833:6;10822:9;10818:22;10787:63;:::i;:::-;10777:73;;10573:287;10358:509;;;;:::o;10873:329::-;10932:6;10981:2;10969:9;10960:7;10956:23;10952:32;10949:119;;;10987:79;;:::i;:::-;10949:119;11107:1;11132:53;11177:7;11168:6;11157:9;11153:22;11132:53;:::i;:::-;11122:63;;11078:117;10873:329;;;;:::o;11208:179::-;11277:10;11298:46;11340:3;11332:6;11298:46;:::i;:::-;11376:4;11371:3;11367:14;11353:28;;11208:179;;;;:::o;11393:118::-;11480:24;11498:5;11480:24;:::i;:::-;11475:3;11468:37;11393:118;;:::o;11547:732::-;11666:3;11695:54;11743:5;11695:54;:::i;:::-;11765:86;11844:6;11839:3;11765:86;:::i;:::-;11758:93;;11875:56;11925:5;11875:56;:::i;:::-;11954:7;11985:1;11970:284;11995:6;11992:1;11989:13;11970:284;;;12071:6;12065:13;12098:63;12157:3;12142:13;12098:63;:::i;:::-;12091:70;;12184:60;12237:6;12184:60;:::i;:::-;12174:70;;12030:224;12017:1;12014;12010:9;12005:14;;11970:284;;;11974:14;12270:3;12263:10;;11671:608;;;11547:732;;;;:::o;12285:109::-;12366:21;12381:5;12366:21;:::i;:::-;12361:3;12354:34;12285:109;;:::o;12400:360::-;12486:3;12514:38;12546:5;12514:38;:::i;:::-;12568:70;12631:6;12626:3;12568:70;:::i;:::-;12561:77;;12647:52;12692:6;12687:3;12680:4;12673:5;12669:16;12647:52;:::i;:::-;12724:29;12746:6;12724:29;:::i;:::-;12719:3;12715:39;12708:46;;12490:270;12400:360;;;;:::o;12766:364::-;12854:3;12882:39;12915:5;12882:39;:::i;:::-;12937:71;13001:6;12996:3;12937:71;:::i;:::-;12930:78;;13017:52;13062:6;13057:3;13050:4;13043:5;13039:16;13017:52;:::i;:::-;13094:29;13116:6;13094:29;:::i;:::-;13089:3;13085:39;13078:46;;12858:272;12766:364;;;;:::o;13136:377::-;13242:3;13270:39;13303:5;13270:39;:::i;:::-;13325:89;13407:6;13402:3;13325:89;:::i;:::-;13318:96;;13423:52;13468:6;13463:3;13456:4;13449:5;13445:16;13423:52;:::i;:::-;13500:6;13495:3;13491:16;13484:23;;13246:267;13136:377;;;;:::o;13519:366::-;13661:3;13682:67;13746:2;13741:3;13682:67;:::i;:::-;13675:74;;13758:93;13847:3;13758:93;:::i;:::-;13876:2;13871:3;13867:12;13860:19;;13519:366;;;:::o;13891:::-;14033:3;14054:67;14118:2;14113:3;14054:67;:::i;:::-;14047:74;;14130:93;14219:3;14130:93;:::i;:::-;14248:2;14243:3;14239:12;14232:19;;13891:366;;;:::o;14263:::-;14405:3;14426:67;14490:2;14485:3;14426:67;:::i;:::-;14419:74;;14502:93;14591:3;14502:93;:::i;:::-;14620:2;14615:3;14611:12;14604:19;;14263:366;;;:::o;14635:::-;14777:3;14798:67;14862:2;14857:3;14798:67;:::i;:::-;14791:74;;14874:93;14963:3;14874:93;:::i;:::-;14992:2;14987:3;14983:12;14976:19;;14635:366;;;:::o;15007:::-;15149:3;15170:67;15234:2;15229:3;15170:67;:::i;:::-;15163:74;;15246:93;15335:3;15246:93;:::i;:::-;15364:2;15359:3;15355:12;15348:19;;15007:366;;;:::o;15379:::-;15521:3;15542:67;15606:2;15601:3;15542:67;:::i;:::-;15535:74;;15618:93;15707:3;15618:93;:::i;:::-;15736:2;15731:3;15727:12;15720:19;;15379:366;;;:::o;15751:::-;15893:3;15914:67;15978:2;15973:3;15914:67;:::i;:::-;15907:74;;15990:93;16079:3;15990:93;:::i;:::-;16108:2;16103:3;16099:12;16092:19;;15751:366;;;:::o;16123:::-;16265:3;16286:67;16350:2;16345:3;16286:67;:::i;:::-;16279:74;;16362:93;16451:3;16362:93;:::i;:::-;16480:2;16475:3;16471:12;16464:19;;16123:366;;;:::o;16495:::-;16637:3;16658:67;16722:2;16717:3;16658:67;:::i;:::-;16651:74;;16734:93;16823:3;16734:93;:::i;:::-;16852:2;16847:3;16843:12;16836:19;;16495:366;;;:::o;16867:::-;17009:3;17030:67;17094:2;17089:3;17030:67;:::i;:::-;17023:74;;17106:93;17195:3;17106:93;:::i;:::-;17224:2;17219:3;17215:12;17208:19;;16867:366;;;:::o;17239:::-;17381:3;17402:67;17466:2;17461:3;17402:67;:::i;:::-;17395:74;;17478:93;17567:3;17478:93;:::i;:::-;17596:2;17591:3;17587:12;17580:19;;17239:366;;;:::o;17611:::-;17753:3;17774:67;17838:2;17833:3;17774:67;:::i;:::-;17767:74;;17850:93;17939:3;17850:93;:::i;:::-;17968:2;17963:3;17959:12;17952:19;;17611:366;;;:::o;17983:::-;18125:3;18146:67;18210:2;18205:3;18146:67;:::i;:::-;18139:74;;18222:93;18311:3;18222:93;:::i;:::-;18340:2;18335:3;18331:12;18324:19;;17983:366;;;:::o;18355:::-;18497:3;18518:67;18582:2;18577:3;18518:67;:::i;:::-;18511:74;;18594:93;18683:3;18594:93;:::i;:::-;18712:2;18707:3;18703:12;18696:19;;18355:366;;;:::o;18727:::-;18869:3;18890:67;18954:2;18949:3;18890:67;:::i;:::-;18883:74;;18966:93;19055:3;18966:93;:::i;:::-;19084:2;19079:3;19075:12;19068:19;;18727:366;;;:::o;19099:::-;19241:3;19262:67;19326:2;19321:3;19262:67;:::i;:::-;19255:74;;19338:93;19427:3;19338:93;:::i;:::-;19456:2;19451:3;19447:12;19440:19;;19099:366;;;:::o;19471:::-;19613:3;19634:67;19698:2;19693:3;19634:67;:::i;:::-;19627:74;;19710:93;19799:3;19710:93;:::i;:::-;19828:2;19823:3;19819:12;19812:19;;19471:366;;;:::o;19843:::-;19985:3;20006:67;20070:2;20065:3;20006:67;:::i;:::-;19999:74;;20082:93;20171:3;20082:93;:::i;:::-;20200:2;20195:3;20191:12;20184:19;;19843:366;;;:::o;20215:::-;20357:3;20378:67;20442:2;20437:3;20378:67;:::i;:::-;20371:74;;20454:93;20543:3;20454:93;:::i;:::-;20572:2;20567:3;20563:12;20556:19;;20215:366;;;:::o;20587:::-;20729:3;20750:67;20814:2;20809:3;20750:67;:::i;:::-;20743:74;;20826:93;20915:3;20826:93;:::i;:::-;20944:2;20939:3;20935:12;20928:19;;20587:366;;;:::o;20959:::-;21101:3;21122:67;21186:2;21181:3;21122:67;:::i;:::-;21115:74;;21198:93;21287:3;21198:93;:::i;:::-;21316:2;21311:3;21307:12;21300:19;;20959:366;;;:::o;21331:::-;21473:3;21494:67;21558:2;21553:3;21494:67;:::i;:::-;21487:74;;21570:93;21659:3;21570:93;:::i;:::-;21688:2;21683:3;21679:12;21672:19;;21331:366;;;:::o;21703:::-;21845:3;21866:67;21930:2;21925:3;21866:67;:::i;:::-;21859:74;;21942:93;22031:3;21942:93;:::i;:::-;22060:2;22055:3;22051:12;22044:19;;21703:366;;;:::o;22075:::-;22217:3;22238:67;22302:2;22297:3;22238:67;:::i;:::-;22231:74;;22314:93;22403:3;22314:93;:::i;:::-;22432:2;22427:3;22423:12;22416:19;;22075:366;;;:::o;22447:::-;22589:3;22610:67;22674:2;22669:3;22610:67;:::i;:::-;22603:74;;22686:93;22775:3;22686:93;:::i;:::-;22804:2;22799:3;22795:12;22788:19;;22447:366;;;:::o;22819:::-;22961:3;22982:67;23046:2;23041:3;22982:67;:::i;:::-;22975:74;;23058:93;23147:3;23058:93;:::i;:::-;23176:2;23171:3;23167:12;23160:19;;22819:366;;;:::o;23191:108::-;23268:24;23286:5;23268:24;:::i;:::-;23263:3;23256:37;23191:108;;:::o;23305:118::-;23392:24;23410:5;23392:24;:::i;:::-;23387:3;23380:37;23305:118;;:::o;23429:435::-;23609:3;23631:95;23722:3;23713:6;23631:95;:::i;:::-;23624:102;;23743:95;23834:3;23825:6;23743:95;:::i;:::-;23736:102;;23855:3;23848:10;;23429:435;;;;;:::o;23870:222::-;23963:4;24001:2;23990:9;23986:18;23978:26;;24014:71;24082:1;24071:9;24067:17;24058:6;24014:71;:::i;:::-;23870:222;;;;:::o;24098:640::-;24293:4;24331:3;24320:9;24316:19;24308:27;;24345:71;24413:1;24402:9;24398:17;24389:6;24345:71;:::i;:::-;24426:72;24494:2;24483:9;24479:18;24470:6;24426:72;:::i;:::-;24508;24576:2;24565:9;24561:18;24552:6;24508:72;:::i;:::-;24627:9;24621:4;24617:20;24612:2;24601:9;24597:18;24590:48;24655:76;24726:4;24717:6;24655:76;:::i;:::-;24647:84;;24098:640;;;;;;;:::o;24744:373::-;24887:4;24925:2;24914:9;24910:18;24902:26;;24974:9;24968:4;24964:20;24960:1;24949:9;24945:17;24938:47;25002:108;25105:4;25096:6;25002:108;:::i;:::-;24994:116;;24744:373;;;;:::o;25123:210::-;25210:4;25248:2;25237:9;25233:18;25225:26;;25261:65;25323:1;25312:9;25308:17;25299:6;25261:65;:::i;:::-;25123:210;;;;:::o;25339:313::-;25452:4;25490:2;25479:9;25475:18;25467:26;;25539:9;25533:4;25529:20;25525:1;25514:9;25510:17;25503:47;25567:78;25640:4;25631:6;25567:78;:::i;:::-;25559:86;;25339:313;;;;:::o;25658:419::-;25824:4;25862:2;25851:9;25847:18;25839:26;;25911:9;25905:4;25901:20;25897:1;25886:9;25882:17;25875:47;25939:131;26065:4;25939:131;:::i;:::-;25931:139;;25658:419;;;:::o;26083:::-;26249:4;26287:2;26276:9;26272:18;26264:26;;26336:9;26330:4;26326:20;26322:1;26311:9;26307:17;26300:47;26364:131;26490:4;26364:131;:::i;:::-;26356:139;;26083:419;;;:::o;26508:::-;26674:4;26712:2;26701:9;26697:18;26689:26;;26761:9;26755:4;26751:20;26747:1;26736:9;26732:17;26725:47;26789:131;26915:4;26789:131;:::i;:::-;26781:139;;26508:419;;;:::o;26933:::-;27099:4;27137:2;27126:9;27122:18;27114:26;;27186:9;27180:4;27176:20;27172:1;27161:9;27157:17;27150:47;27214:131;27340:4;27214:131;:::i;:::-;27206:139;;26933:419;;;:::o;27358:::-;27524:4;27562:2;27551:9;27547:18;27539:26;;27611:9;27605:4;27601:20;27597:1;27586:9;27582:17;27575:47;27639:131;27765:4;27639:131;:::i;:::-;27631:139;;27358:419;;;:::o;27783:::-;27949:4;27987:2;27976:9;27972:18;27964:26;;28036:9;28030:4;28026:20;28022:1;28011:9;28007:17;28000:47;28064:131;28190:4;28064:131;:::i;:::-;28056:139;;27783:419;;;:::o;28208:::-;28374:4;28412:2;28401:9;28397:18;28389:26;;28461:9;28455:4;28451:20;28447:1;28436:9;28432:17;28425:47;28489:131;28615:4;28489:131;:::i;:::-;28481:139;;28208:419;;;:::o;28633:::-;28799:4;28837:2;28826:9;28822:18;28814:26;;28886:9;28880:4;28876:20;28872:1;28861:9;28857:17;28850:47;28914:131;29040:4;28914:131;:::i;:::-;28906:139;;28633:419;;;:::o;29058:::-;29224:4;29262:2;29251:9;29247:18;29239:26;;29311:9;29305:4;29301:20;29297:1;29286:9;29282:17;29275:47;29339:131;29465:4;29339:131;:::i;:::-;29331:139;;29058:419;;;:::o;29483:::-;29649:4;29687:2;29676:9;29672:18;29664:26;;29736:9;29730:4;29726:20;29722:1;29711:9;29707:17;29700:47;29764:131;29890:4;29764:131;:::i;:::-;29756:139;;29483:419;;;:::o;29908:::-;30074:4;30112:2;30101:9;30097:18;30089:26;;30161:9;30155:4;30151:20;30147:1;30136:9;30132:17;30125:47;30189:131;30315:4;30189:131;:::i;:::-;30181:139;;29908:419;;;:::o;30333:::-;30499:4;30537:2;30526:9;30522:18;30514:26;;30586:9;30580:4;30576:20;30572:1;30561:9;30557:17;30550:47;30614:131;30740:4;30614:131;:::i;:::-;30606:139;;30333:419;;;:::o;30758:::-;30924:4;30962:2;30951:9;30947:18;30939:26;;31011:9;31005:4;31001:20;30997:1;30986:9;30982:17;30975:47;31039:131;31165:4;31039:131;:::i;:::-;31031:139;;30758:419;;;:::o;31183:::-;31349:4;31387:2;31376:9;31372:18;31364:26;;31436:9;31430:4;31426:20;31422:1;31411:9;31407:17;31400:47;31464:131;31590:4;31464:131;:::i;:::-;31456:139;;31183:419;;;:::o;31608:::-;31774:4;31812:2;31801:9;31797:18;31789:26;;31861:9;31855:4;31851:20;31847:1;31836:9;31832:17;31825:47;31889:131;32015:4;31889:131;:::i;:::-;31881:139;;31608:419;;;:::o;32033:::-;32199:4;32237:2;32226:9;32222:18;32214:26;;32286:9;32280:4;32276:20;32272:1;32261:9;32257:17;32250:47;32314:131;32440:4;32314:131;:::i;:::-;32306:139;;32033:419;;;:::o;32458:::-;32624:4;32662:2;32651:9;32647:18;32639:26;;32711:9;32705:4;32701:20;32697:1;32686:9;32682:17;32675:47;32739:131;32865:4;32739:131;:::i;:::-;32731:139;;32458:419;;;:::o;32883:::-;33049:4;33087:2;33076:9;33072:18;33064:26;;33136:9;33130:4;33126:20;33122:1;33111:9;33107:17;33100:47;33164:131;33290:4;33164:131;:::i;:::-;33156:139;;32883:419;;;:::o;33308:::-;33474:4;33512:2;33501:9;33497:18;33489:26;;33561:9;33555:4;33551:20;33547:1;33536:9;33532:17;33525:47;33589:131;33715:4;33589:131;:::i;:::-;33581:139;;33308:419;;;:::o;33733:::-;33899:4;33937:2;33926:9;33922:18;33914:26;;33986:9;33980:4;33976:20;33972:1;33961:9;33957:17;33950:47;34014:131;34140:4;34014:131;:::i;:::-;34006:139;;33733:419;;;:::o;34158:::-;34324:4;34362:2;34351:9;34347:18;34339:26;;34411:9;34405:4;34401:20;34397:1;34386:9;34382:17;34375:47;34439:131;34565:4;34439:131;:::i;:::-;34431:139;;34158:419;;;:::o;34583:::-;34749:4;34787:2;34776:9;34772:18;34764:26;;34836:9;34830:4;34826:20;34822:1;34811:9;34807:17;34800:47;34864:131;34990:4;34864:131;:::i;:::-;34856:139;;34583:419;;;:::o;35008:::-;35174:4;35212:2;35201:9;35197:18;35189:26;;35261:9;35255:4;35251:20;35247:1;35236:9;35232:17;35225:47;35289:131;35415:4;35289:131;:::i;:::-;35281:139;;35008:419;;;:::o;35433:::-;35599:4;35637:2;35626:9;35622:18;35614:26;;35686:9;35680:4;35676:20;35672:1;35661:9;35657:17;35650:47;35714:131;35840:4;35714:131;:::i;:::-;35706:139;;35433:419;;;:::o;35858:::-;36024:4;36062:2;36051:9;36047:18;36039:26;;36111:9;36105:4;36101:20;36097:1;36086:9;36082:17;36075:47;36139:131;36265:4;36139:131;:::i;:::-;36131:139;;35858:419;;;:::o;36283:::-;36449:4;36487:2;36476:9;36472:18;36464:26;;36536:9;36530:4;36526:20;36522:1;36511:9;36507:17;36500:47;36564:131;36690:4;36564:131;:::i;:::-;36556:139;;36283:419;;;:::o;36708:222::-;36801:4;36839:2;36828:9;36824:18;36816:26;;36852:71;36920:1;36909:9;36905:17;36896:6;36852:71;:::i;:::-;36708:222;;;;:::o;36936:129::-;36970:6;36997:20;;:::i;:::-;36987:30;;37026:33;37054:4;37046:6;37026:33;:::i;:::-;36936:129;;;:::o;37071:75::-;37104:6;37137:2;37131:9;37121:19;;37071:75;:::o;37152:311::-;37229:4;37319:18;37311:6;37308:30;37305:56;;;37341:18;;:::i;:::-;37305:56;37391:4;37383:6;37379:17;37371:25;;37451:4;37445;37441:15;37433:23;;37152:311;;;:::o;37469:::-;37546:4;37636:18;37628:6;37625:30;37622:56;;;37658:18;;:::i;:::-;37622:56;37708:4;37700:6;37696:17;37688:25;;37768:4;37762;37758:15;37750:23;;37469:311;;;:::o;37786:307::-;37847:4;37937:18;37929:6;37926:30;37923:56;;;37959:18;;:::i;:::-;37923:56;37997:29;38019:6;37997:29;:::i;:::-;37989:37;;38081:4;38075;38071:15;38063:23;;37786:307;;;:::o;38099:308::-;38161:4;38251:18;38243:6;38240:30;38237:56;;;38273:18;;:::i;:::-;38237:56;38311:29;38333:6;38311:29;:::i;:::-;38303:37;;38395:4;38389;38385:15;38377:23;;38099:308;;;:::o;38413:132::-;38480:4;38503:3;38495:11;;38533:4;38528:3;38524:14;38516:22;;38413:132;;;:::o;38551:114::-;38618:6;38652:5;38646:12;38636:22;;38551:114;;;:::o;38671:98::-;38722:6;38756:5;38750:12;38740:22;;38671:98;;;:::o;38775:99::-;38827:6;38861:5;38855:12;38845:22;;38775:99;;;:::o;38880:113::-;38950:4;38982;38977:3;38973:14;38965:22;;38880:113;;;:::o;38999:184::-;39098:11;39132:6;39127:3;39120:19;39172:4;39167:3;39163:14;39148:29;;38999:184;;;;:::o;39189:168::-;39272:11;39306:6;39301:3;39294:19;39346:4;39341:3;39337:14;39322:29;;39189:168;;;;:::o;39363:169::-;39447:11;39481:6;39476:3;39469:19;39521:4;39516:3;39512:14;39497:29;;39363:169;;;;:::o;39538:148::-;39640:11;39677:3;39662:18;;39538:148;;;;:::o;39692:305::-;39732:3;39751:20;39769:1;39751:20;:::i;:::-;39746:25;;39785:20;39803:1;39785:20;:::i;:::-;39780:25;;39939:1;39871:66;39867:74;39864:1;39861:81;39858:107;;;39945:18;;:::i;:::-;39858:107;39989:1;39986;39982:9;39975:16;;39692:305;;;;:::o;40003:185::-;40043:1;40060:20;40078:1;40060:20;:::i;:::-;40055:25;;40094:20;40112:1;40094:20;:::i;:::-;40089:25;;40133:1;40123:35;;40138:18;;:::i;:::-;40123:35;40180:1;40177;40173:9;40168:14;;40003:185;;;;:::o;40194:348::-;40234:7;40257:20;40275:1;40257:20;:::i;:::-;40252:25;;40291:20;40309:1;40291:20;:::i;:::-;40286:25;;40479:1;40411:66;40407:74;40404:1;40401:81;40396:1;40389:9;40382:17;40378:105;40375:131;;;40486:18;;:::i;:::-;40375:131;40534:1;40531;40527:9;40516:20;;40194:348;;;;:::o;40548:191::-;40588:4;40608:20;40626:1;40608:20;:::i;:::-;40603:25;;40642:20;40660:1;40642:20;:::i;:::-;40637:25;;40681:1;40678;40675:8;40672:34;;;40686:18;;:::i;:::-;40672:34;40731:1;40728;40724:9;40716:17;;40548:191;;;;:::o;40745:96::-;40782:7;40811:24;40829:5;40811:24;:::i;:::-;40800:35;;40745:96;;;:::o;40847:90::-;40881:7;40924:5;40917:13;40910:21;40899:32;;40847:90;;;:::o;40943:149::-;40979:7;41019:66;41012:5;41008:78;40997:89;;40943:149;;;:::o;41098:126::-;41135:7;41175:42;41168:5;41164:54;41153:65;;41098:126;;;:::o;41230:77::-;41267:7;41296:5;41285:16;;41230:77;;;:::o;41313:154::-;41397:6;41392:3;41387;41374:30;41459:1;41450:6;41445:3;41441:16;41434:27;41313:154;;;:::o;41473:307::-;41541:1;41551:113;41565:6;41562:1;41559:13;41551:113;;;41650:1;41645:3;41641:11;41635:18;41631:1;41626:3;41622:11;41615:39;41587:2;41584:1;41580:10;41575:15;;41551:113;;;41682:6;41679:1;41676:13;41673:101;;;41762:1;41753:6;41748:3;41744:16;41737:27;41673:101;41522:258;41473:307;;;:::o;41786:320::-;41830:6;41867:1;41861:4;41857:12;41847:22;;41914:1;41908:4;41904:12;41935:18;41925:81;;41991:4;41983:6;41979:17;41969:27;;41925:81;42053:2;42045:6;42042:14;42022:18;42019:38;42016:84;;;42072:18;;:::i;:::-;42016:84;41837:269;41786:320;;;:::o;42112:281::-;42195:27;42217:4;42195:27;:::i;:::-;42187:6;42183:40;42325:6;42313:10;42310:22;42289:18;42277:10;42274:34;42271:62;42268:88;;;42336:18;;:::i;:::-;42268:88;42376:10;42372:2;42365:22;42155:238;42112:281;;:::o;42399:233::-;42438:3;42461:24;42479:5;42461:24;:::i;:::-;42452:33;;42507:66;42500:5;42497:77;42494:103;;;42577:18;;:::i;:::-;42494:103;42624:1;42617:5;42613:13;42606:20;;42399:233;;;:::o;42638:176::-;42670:1;42687:20;42705:1;42687:20;:::i;:::-;42682:25;;42721:20;42739:1;42721:20;:::i;:::-;42716:25;;42760:1;42750:35;;42765:18;;:::i;:::-;42750:35;42806:1;42803;42799:9;42794:14;;42638:176;;;;:::o;42820:180::-;42868:77;42865:1;42858:88;42965:4;42962:1;42955:15;42989:4;42986:1;42979:15;43006:180;43054:77;43051:1;43044:88;43151:4;43148:1;43141:15;43175:4;43172:1;43165:15;43192:180;43240:77;43237:1;43230:88;43337:4;43334:1;43327:15;43361:4;43358:1;43351:15;43378:180;43426:77;43423:1;43416:88;43523:4;43520:1;43513:15;43547:4;43544:1;43537:15;43564:180;43612:77;43609:1;43602:88;43709:4;43706:1;43699:15;43733:4;43730:1;43723:15;43750:180;43798:77;43795:1;43788:88;43895:4;43892:1;43885:15;43919:4;43916:1;43909:15;43936:117;44045:1;44042;44035:12;44059:117;44168:1;44165;44158:12;44182:117;44291:1;44288;44281:12;44305:117;44414:1;44411;44404:12;44428:117;44537:1;44534;44527:12;44551:102;44592:6;44643:2;44639:7;44634:2;44627:5;44623:14;44619:28;44609:38;;44551:102;;;:::o;44659:231::-;44799:34;44795:1;44787:6;44783:14;44776:58;44868:14;44863:2;44855:6;44851:15;44844:39;44659:231;:::o;44896:179::-;45036:31;45032:1;45024:6;45020:14;45013:55;44896:179;:::o;45081:230::-;45221:34;45217:1;45209:6;45205:14;45198:58;45290:13;45285:2;45277:6;45273:15;45266:38;45081:230;:::o;45317:237::-;45457:34;45453:1;45445:6;45441:14;45434:58;45526:20;45521:2;45513:6;45509:15;45502:45;45317:237;:::o;45560:225::-;45700:34;45696:1;45688:6;45684:14;45677:58;45769:8;45764:2;45756:6;45752:15;45745:33;45560:225;:::o;45791:178::-;45931:30;45927:1;45919:6;45915:14;45908:54;45791:178;:::o;45975:181::-;46115:33;46111:1;46103:6;46099:14;46092:57;45975:181;:::o;46162:223::-;46302:34;46298:1;46290:6;46286:14;46279:58;46371:6;46366:2;46358:6;46354:15;46347:31;46162:223;:::o;46391:175::-;46531:27;46527:1;46519:6;46515:14;46508:51;46391:175;:::o;46572:231::-;46712:34;46708:1;46700:6;46696:14;46689:58;46781:14;46776:2;46768:6;46764:15;46757:39;46572:231;:::o;46809:222::-;46949:34;46945:1;46937:6;46933:14;46926:58;47018:5;47013:2;47005:6;47001:15;46994:30;46809:222;:::o;47037:243::-;47177:34;47173:1;47165:6;47161:14;47154:58;47246:26;47241:2;47233:6;47229:15;47222:51;47037:243;:::o;47286:229::-;47426:34;47422:1;47414:6;47410:14;47403:58;47495:12;47490:2;47482:6;47478:15;47471:37;47286:229;:::o;47521:228::-;47661:34;47657:1;47649:6;47645:14;47638:58;47730:11;47725:2;47717:6;47713:15;47706:36;47521:228;:::o;47755:182::-;47895:34;47891:1;47883:6;47879:14;47872:58;47755:182;:::o;47943:221::-;48083:34;48079:1;48071:6;48067:14;48060:58;48152:4;48147:2;48139:6;48135:15;48128:29;47943:221;:::o;48170:231::-;48310:34;48306:1;48298:6;48294:14;48287:58;48379:14;48374:2;48366:6;48362:15;48355:39;48170:231;:::o;48407:170::-;48547:22;48543:1;48535:6;48531:14;48524:46;48407:170;:::o;48583:182::-;48723:34;48719:1;48711:6;48707:14;48700:58;48583:182;:::o;48771:228::-;48911:34;48907:1;48899:6;48895:14;48888:58;48980:11;48975:2;48967:6;48963:15;48956:36;48771:228;:::o;49005:234::-;49145:34;49141:1;49133:6;49129:14;49122:58;49214:17;49209:2;49201:6;49197:15;49190:42;49005:234;:::o;49245:167::-;49385:19;49381:1;49373:6;49369:14;49362:43;49245:167;:::o;49418:220::-;49558:34;49554:1;49546:6;49542:14;49535:58;49627:3;49622:2;49614:6;49610:15;49603:28;49418:220;:::o;49644:236::-;49784:34;49780:1;49772:6;49768:14;49761:58;49853:19;49848:2;49840:6;49836:15;49829:44;49644:236;:::o;49886:231::-;50026:34;50022:1;50014:6;50010:14;50003:58;50095:14;50090:2;50082:6;50078:15;50071:39;49886:231;:::o;50123:174::-;50263:26;50259:1;50251:6;50247:14;50240:50;50123:174;:::o;50303:122::-;50376:24;50394:5;50376:24;:::i;:::-;50369:5;50366:35;50356:63;;50415:1;50412;50405:12;50356:63;50303:122;:::o;50431:116::-;50501:21;50516:5;50501:21;:::i;:::-;50494:5;50491:32;50481:60;;50537:1;50534;50527:12;50481:60;50431:116;:::o;50553:120::-;50625:23;50642:5;50625:23;:::i;:::-;50618:5;50615:34;50605:62;;50663:1;50660;50653:12;50605:62;50553:120;:::o;50679:122::-;50752:24;50770:5;50752:24;:::i;:::-;50745:5;50742:35;50732:63;;50791:1;50788;50781:12;50732:63;50679:122;:::o
Swarm Source
ipfs://cbab77ad90e06912e4e487743c144811d199184cc134623a87ee998b56f4acc1
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.