Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 23 from a total of 23 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw All | 13199822 | 1647 days ago | IN | 0 ETH | 0.00249464 | ||||
| Adopt | 13187321 | 1649 days ago | IN | 0.01 ETH | 0.0196 | ||||
| Adopt | 13184826 | 1649 days ago | IN | 0.01 ETH | 0.01385811 | ||||
| Adopt | 13184826 | 1649 days ago | IN | 0.01 ETH | 0.00405 | ||||
| Adopt | 13184826 | 1649 days ago | IN | 0.01 ETH | 0.0018 | ||||
| Give Away | 13174556 | 1651 days ago | IN | 0 ETH | 0.00396192 | ||||
| Adopt | 13172371 | 1651 days ago | IN | 0.01 ETH | 0.0085 | ||||
| Adopt | 13172358 | 1651 days ago | IN | 0.01 ETH | 0.00405 | ||||
| Set Price | 13172181 | 1651 days ago | IN | 0 ETH | 0.00233664 | ||||
| Adopt | 13170207 | 1651 days ago | IN | 0.02 ETH | 0.0153979 | ||||
| Adopt | 13170197 | 1651 days ago | IN | 0.02 ETH | 0.0153979 | ||||
| Adopt | 13170197 | 1651 days ago | IN | 0.06 ETH | 0.00260611 | ||||
| Adopt | 13170172 | 1651 days ago | IN | 0.02 ETH | 0.015 | ||||
| Adopt | 13170160 | 1651 days ago | IN | 0.02 ETH | 0.01 | ||||
| Adopt | 13170158 | 1651 days ago | IN | 0.02 ETH | 0.01058253 | ||||
| Adopt | 13170143 | 1651 days ago | IN | 0.04 ETH | 0.003 | ||||
| Adopt | 13170108 | 1651 days ago | IN | 0.02 ETH | 0.00309173 | ||||
| Pause | 13169919 | 1651 days ago | IN | 0 ETH | 0.0020765 | ||||
| Adopt | 13169912 | 1651 days ago | IN | 0.02 ETH | 0.00183393 | ||||
| Give Away | 13169556 | 1652 days ago | IN | 0 ETH | 0.02656892 | ||||
| Pause | 13169294 | 1652 days ago | IN | 0 ETH | 0.00236551 | ||||
| Adopt | 13169269 | 1652 days ago | IN | 0.02 ETH | 0.01285021 | ||||
| Pause | 13169247 | 1652 days ago | IN | 0 ETH | 0.00226637 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 13199822 | 1647 days ago | 0.09 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
EpicHero
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-09-05
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
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 alphabet = "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] = alphabet[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.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
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;
// solhint-disable-next-line no-inline-assembly
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");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
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 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;
/**
* @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;
/**
* @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;
/**
* @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}. Empty by default, can be overriden
* in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(address from, address to, uint256 tokenId) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
_mint(to, tokenId);
require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(address from, address to, uint256 tokenId) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
private returns (bool)
{
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
// solhint-disable-next-line no-inline-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` 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 { }
}
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 () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), 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 {
emit OwnershipTransferred(_owner, address(0));
_owner = 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");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
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.0;
contract EpicHero is ERC721Enumerable, Ownable {
using Strings for uint256;
string _baseTokenURI;
uint256 private _reserved = 1000;
uint256 private _price = 0.02 ether;
bool public _paused = true;
address t1 = 0xCC8Ec715853e3575B50bAAad958908c9AA1107D9;
constructor(string memory baseURI) ERC721("Epic Hero Battles", "EpicBattles") {
setBaseURI(baseURI);
_safeMint( t1, 0);
}
function adopt(uint256 num) public payable {
uint256 supply = totalSupply();
require( !_paused, "Sale paused" );
require( num < 21, "You can buy a maximum of 20 Heros" );
require( supply + num < 20000 - _reserved, "Exceeds maximum Heros supply" );
require( msg.value >= _price * num, "Ether sent is not correct" );
for(uint256 i; i < num; i++){
_safeMint( msg.sender, supply + i );
}
}
function walletOfOwner(address _owner) public view returns(uint256[] memory) {
uint256 tokenCount = balanceOf(_owner);
uint256[] memory tokensId = new uint256[](tokenCount);
for(uint256 i; i < tokenCount; i++){
tokensId[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokensId;
}
function setPrice(uint256 _newPrice) public onlyOwner() {
_price = _newPrice;
}
function _baseURI() internal view virtual override returns (string memory) {
return _baseTokenURI;
}
function setBaseURI(string memory baseURI) public onlyOwner {
_baseTokenURI = baseURI;
}
function getPrice() public view returns (uint256){
return _price;
}
function giveAway(address _to, uint256 _amount) external onlyOwner() {
require( _amount <= _reserved, "Exceeds reserved Cat supply" );
uint256 supply = totalSupply();
for(uint256 i; i < _amount; i++){
_safeMint( _to, supply + i );
}
_reserved -= _amount;
}
function pause(bool val) public onlyOwner {
_paused = val;
}
function withdrawAll() public payable onlyOwner {
uint256 _each = address(this).balance;
require(payable(t1).send(_each));
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"adopt","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60806040526103e8600c5566470de4df820000600d556001600e60006101000a81548160ff02191690831515021790555073cc8ec715853e3575b50baaad958908c9aa1107d9600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200009257600080fd5b50604051620055ec380380620055ec8339818101604052810190620000b8919062000eec565b6040518060400160405280601181526020017f45706963204865726f20426174746c65730000000000000000000000000000008152506040518060400160405280600b81526020017f45706963426174746c657300000000000000000000000000000000000000000081525081600090805190602001906200013c92919062000d87565b5080600190805190602001906200015592919062000d87565b50505060006200016a6200025660201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200021a816200025e60201b60201c565b6200024f600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006200030960201b60201c565b50620014e2565b600033905090565b6200026e6200025660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002946200032f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e49062001206565b60405180910390fd5b80600b90805190602001906200030592919062000d87565b5050565b6200032b8282604051806020016040528060008152506200035960201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200036b8383620003c760201b60201c565b620003806000848484620005ad60201b60201c565b620003c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b9906200117e565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200043a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043190620011e4565b60405180910390fd5b6200044b816200076760201b60201c565b156200048e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048590620011a0565b60405180910390fd5b620004a260008383620007d360201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004f49190620012bc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005db8473ffffffffffffffffffffffffffffffffffffffff166200091a60201b620019ab1760201c565b156200075a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200060d6200025660201b60201c565b8786866040518563ffffffff1660e01b81526004016200063194939291906200112a565b602060405180830381600087803b1580156200064c57600080fd5b505af19250505080156200068057506040513d601f19601f820116820180604052508101906200067d919062000ec0565b60015b62000709573d8060008114620006b3576040519150601f19603f3d011682016040523d82523d6000602084013e620006b8565b606091505b5060008151141562000701576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f8906200117e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200075f565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620007eb8383836200092d60201b620019be1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620008385762000832816200093260201b60201c565b62000880565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200087f576200087e83826200097b60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008cd57620008c78162000af860201b60201c565b62000915565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620009145762000913828262000c4060201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620009958462000ccc60201b62000e1a1760201c565b620009a1919062001319565b905060006007600084815260200190815260200160002054905081811462000a87576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000b0e919062001319565b905060006009600084815260200190815260200160002054905060006008838154811062000b65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000bae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000c24577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000c588362000ccc60201b62000e1a1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d3790620011c2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000d9590620013f4565b90600052602060002090601f01602090048101928262000db9576000855562000e05565b82601f1062000dd457805160ff191683800117855562000e05565b8280016001018555821562000e05579182015b8281111562000e0457825182559160200191906001019062000de7565b5b50905062000e14919062000e18565b5090565b5b8082111562000e3357600081600090555060010162000e19565b5090565b600062000e4e62000e48846200125c565b62001228565b90508281526020810184848401111562000e6757600080fd5b62000e74848285620013be565b509392505050565b60008151905062000e8d81620014c8565b92915050565b600082601f83011262000ea557600080fd5b815162000eb784826020860162000e37565b91505092915050565b60006020828403121562000ed357600080fd5b600062000ee38482850162000e7c565b91505092915050565b60006020828403121562000eff57600080fd5b600082015167ffffffffffffffff81111562000f1a57600080fd5b62000f288482850162000e93565b91505092915050565b62000f3c8162001354565b82525050565b600062000f4f826200128f565b62000f5b81856200129a565b935062000f6d818560208601620013be565b62000f7881620014b7565b840191505092915050565b600062000f92603283620012ab565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600062000ffa601c83620012ab565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006200103c602a83620012ab565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000620010a4602083620012ab565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000620010e6602083620012ab565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6200112481620013b4565b82525050565b600060808201905062001141600083018762000f31565b62001150602083018662000f31565b6200115f604083018562001119565b818103606083015262001173818462000f42565b905095945050505050565b60006020820190508181036000830152620011998162000f83565b9050919050565b60006020820190508181036000830152620011bb8162000feb565b9050919050565b60006020820190508181036000830152620011dd816200102d565b9050919050565b60006020820190508181036000830152620011ff8162001095565b9050919050565b600060208201905081810360008301526200122181620010d7565b9050919050565b6000604051905081810181811067ffffffffffffffff8211171562001252576200125162001488565b5b8060405250919050565b600067ffffffffffffffff8211156200127a576200127962001488565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620012c982620013b4565b9150620012d683620013b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200130e576200130d6200142a565b5b828201905092915050565b60006200132682620013b4565b91506200133383620013b4565b9250828210156200134957620013486200142a565b5b828203905092915050565b6000620013618262001394565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620013de578082015181840152602081019050620013c1565b83811115620013ee576000848401525b50505050565b600060028204905060018216806200140d57607f821691505b6020821081141562001424576200142362001459565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620014d38162001368565b8114620014df57600080fd5b50565b6140fa80620014f26000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec57806398d5fdca1161008a578063c87b56dd11610064578063c87b56dd146105ee578063ca8001441461062b578063e985e9c514610654578063f2fde38b14610691576101b7565b806398d5fdca14610571578063a22cb4651461059c578063b88d4fde146105c5576101b7565b80638588b2c5116100c65780638588b2c5146104d65780638da5cb5b146104f257806391b7f5ed1461051d57806395d89b4114610546576101b7565b806370a0823114610478578063715018a6146104b5578063853828b6146104cc576101b7565b806323b872dd11610159578063438b630011610133578063438b6300146103985780634f6ccce7146103d557806355f804b3146104125780636352211e1461043b576101b7565b806323b872dd146103095780632f745c591461033257806342842e0e1461036f576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806316c61ccc146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612e27565b6106ba565b6040516101f091906138df565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612dfe565b610734565b005b34801561022e57600080fd5b506102376107cd565b60405161024491906138fa565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612eba565b61085f565b6040516102819190613856565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612dc2565b6108e4565b005b3480156102bf57600080fd5b506102c86109fc565b6040516102d591906138df565b60405180910390f35b3480156102ea57600080fd5b506102f3610a0f565b6040516103009190613bfc565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612cbc565b610a1c565b005b34801561033e57600080fd5b5061035960048036038101906103549190612dc2565b610a7c565b6040516103669190613bfc565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190612cbc565b610b21565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612c57565b610b41565b6040516103cc91906138bd565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190612eba565b610c3b565b6040516104099190613bfc565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612e79565b610cd2565b005b34801561044757600080fd5b50610462600480360381019061045d9190612eba565b610d68565b60405161046f9190613856565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612c57565b610e1a565b6040516104ac9190613bfc565b60405180910390f35b3480156104c157600080fd5b506104ca610ed2565b005b6104d461100f565b005b6104f060048036038101906104eb9190612eba565b6110f3565b005b3480156104fe57600080fd5b50610507611276565b6040516105149190613856565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612eba565b6112a0565b005b34801561055257600080fd5b5061055b611326565b60405161056891906138fa565b60405180910390f35b34801561057d57600080fd5b506105866113b8565b6040516105939190613bfc565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612d86565b6113c2565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190612d0b565b611543565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612eba565b6115a5565b60405161062291906138fa565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612dc2565b61164c565b005b34801561066057600080fd5b5061067b60048036038101906106769190612c80565b61176b565b60405161068891906138df565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612c57565b6117ff565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072d575061072c826119c3565b5b9050919050565b61073c611aa5565b73ffffffffffffffffffffffffffffffffffffffff1661075a611276565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a790613b1c565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546107dc90613eef565b80601f016020809104026020016040519081016040528092919081815260200182805461080890613eef565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611aad565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090613afc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ef82610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613b7c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097f611aa5565b73ffffffffffffffffffffffffffffffffffffffff1614806109ae57506109ad816109a8611aa5565b61176b565b5b6109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613a7c565b60405180910390fd5b6109f78383611b19565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610a2d610a27611aa5565b82611bd2565b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613bbc565b60405180910390fd5b610a77838383611cb0565b505050565b6000610a8783610e1a565b8210610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf9061395c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b3c83838360405180602001604052806000815250611543565b505050565b60606000610b4e83610e1a565b905060008167ffffffffffffffff811115610b92577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bc05781602001602082028036833780820191505090505b50905060005b82811015610c3057610bd88582610a7c565b828281518110610c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c2890613f21565b915050610bc6565b508092505050919050565b6000610c45610a0f565b8210610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613bdc565b60405180910390fd5b60088281548110610cc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cda611aa5565b73ffffffffffffffffffffffffffffffffffffffff16610cf8611276565b73ffffffffffffffffffffffffffffffffffffffff1614610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613b1c565b60405180910390fd5b80600b9080519060200190610d64929190612a7b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613abc565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290613a9c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eda611aa5565b73ffffffffffffffffffffffffffffffffffffffff16610ef8611276565b73ffffffffffffffffffffffffffffffffffffffff1614610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613b1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611017611aa5565b73ffffffffffffffffffffffffffffffffffffffff16611035611276565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290613b1c565b60405180910390fd5b6000479050600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110f057600080fd5b50565b60006110fd610a0f565b9050600e60009054906101000a900460ff161561114f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111469061391c565b60405180910390fd5b60158210611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990613a3c565b60405180910390fd5b600c54614e206111a29190613e05565b82826111ae9190613d24565b106111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e59061393c565b60405180910390fd5b81600d546111fc9190613dab565b34101561123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590613b9c565b60405180910390fd5b60005b828110156112715761125e3382846112599190613d24565b611f0c565b808061126990613f21565b915050611241565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112a8611aa5565b73ffffffffffffffffffffffffffffffffffffffff166112c6611276565b73ffffffffffffffffffffffffffffffffffffffff161461131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613b1c565b60405180910390fd5b80600d8190555050565b60606001805461133590613eef565b80601f016020809104026020016040519081016040528092919081815260200182805461136190613eef565b80156113ae5780601f10611383576101008083540402835291602001916113ae565b820191906000526020600020905b81548152906001019060200180831161139157829003601f168201915b5050505050905090565b6000600d54905090565b6113ca611aa5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613a1c565b60405180910390fd5b8060056000611445611aa5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f2611aa5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153791906138df565b60405180910390a35050565b61155461154e611aa5565b83611bd2565b611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90613bbc565b60405180910390fd5b61159f84848484611f2a565b50505050565b60606115b082611aad565b6115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e690613b5c565b60405180910390fd5b60006115f9611f86565b905060008151116116195760405180602001604052806000815250611644565b8061162384612018565b604051602001611634929190613832565b6040516020818303038152906040525b915050919050565b611654611aa5565b73ffffffffffffffffffffffffffffffffffffffff16611672611276565b73ffffffffffffffffffffffffffffffffffffffff16146116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613b1c565b60405180910390fd5b600c5481111561170d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611704906139bc565b60405180910390fd5b6000611717610a0f565b905060005b8281101561174c576117398482846117349190613d24565b611f0c565b808061174490613f21565b91505061171c565b5081600c600082825461175f9190613e05565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611807611aa5565b73ffffffffffffffffffffffffffffffffffffffff16611825611276565b73ffffffffffffffffffffffffffffffffffffffff161461187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613b1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e29061399c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a8e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a9e5750611a9d826121c5565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b8c83610d68565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bdd82611aad565b611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390613a5c565b60405180910390fd5b6000611c2783610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c9657508373ffffffffffffffffffffffffffffffffffffffff16611c7e8461085f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ca75750611ca6818561176b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cd082610d68565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90613b3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d906139fc565b60405180910390fd5b611da183838361222f565b611dac600082611b19565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dfc9190613e05565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e539190613d24565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f26828260405180602001604052806000815250612343565b5050565b611f35848484611cb0565b611f418484848461239e565b611f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f779061397c565b60405180910390fd5b50505050565b6060600b8054611f9590613eef565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc190613eef565b801561200e5780601f10611fe35761010080835404028352916020019161200e565b820191906000526020600020905b815481529060010190602001808311611ff157829003601f168201915b5050505050905090565b60606000821415612060576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c0565b600082905060005b6000821461209257808061207b90613f21565b915050600a8261208b9190613d7a565b9150612068565b60008167ffffffffffffffff8111156120d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121065781602001600182028036833780820191505090505b5090505b600085146121b95760018261211f9190613e05565b9150600a8561212e9190613f6a565b603061213a9190613d24565b60f81b818381518110612176577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b29190613d7a565b945061210a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61223a8383836119be565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561227d5761227881612535565b6122bc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122bb576122ba838261257e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ff576122fa816126eb565b61233e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461233d5761233c828261282e565b5b5b505050565b61234d83836128ad565b61235a600084848461239e565b612399576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123909061397c565b60405180910390fd5b505050565b60006123bf8473ffffffffffffffffffffffffffffffffffffffff166119ab565b15612528578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123e8611aa5565b8786866040518563ffffffff1660e01b815260040161240a9493929190613871565b602060405180830381600087803b15801561242457600080fd5b505af192505050801561245557506040513d601f19601f820116820180604052508101906124529190612e50565b60015b6124d8573d8060008114612485576040519150601f19603f3d011682016040523d82523d6000602084013e61248a565b606091505b506000815114156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c79061397c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061252d565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161258b84610e1a565b6125959190613e05565b905060006007600084815260200190815260200160002054905081811461267a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126ff9190613e05565b9050600060096000848152602001908152602001600020549050600060088381548110612755577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061279d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612812577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061283983610e1a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561291d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291490613adc565b60405180910390fd5b61292681611aad565b15612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d906139dc565b60405180910390fd5b6129726000838361222f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c29190613d24565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612a8790613eef565b90600052602060002090601f016020900481019282612aa95760008555612af0565b82601f10612ac257805160ff1916838001178555612af0565b82800160010185558215612af0579182015b82811115612aef578251825591602001919060010190612ad4565b5b509050612afd9190612b01565b5090565b5b80821115612b1a576000816000905550600101612b02565b5090565b6000612b31612b2c84613c48565b613c17565b905082815260208101848484011115612b4957600080fd5b612b54848285613ead565b509392505050565b6000612b6f612b6a84613c78565b613c17565b905082815260208101848484011115612b8757600080fd5b612b92848285613ead565b509392505050565b600081359050612ba981614068565b92915050565b600081359050612bbe8161407f565b92915050565b600081359050612bd381614096565b92915050565b600081519050612be881614096565b92915050565b600082601f830112612bff57600080fd5b8135612c0f848260208601612b1e565b91505092915050565b600082601f830112612c2957600080fd5b8135612c39848260208601612b5c565b91505092915050565b600081359050612c51816140ad565b92915050565b600060208284031215612c6957600080fd5b6000612c7784828501612b9a565b91505092915050565b60008060408385031215612c9357600080fd5b6000612ca185828601612b9a565b9250506020612cb285828601612b9a565b9150509250929050565b600080600060608486031215612cd157600080fd5b6000612cdf86828701612b9a565b9350506020612cf086828701612b9a565b9250506040612d0186828701612c42565b9150509250925092565b60008060008060808587031215612d2157600080fd5b6000612d2f87828801612b9a565b9450506020612d4087828801612b9a565b9350506040612d5187828801612c42565b925050606085013567ffffffffffffffff811115612d6e57600080fd5b612d7a87828801612bee565b91505092959194509250565b60008060408385031215612d9957600080fd5b6000612da785828601612b9a565b9250506020612db885828601612baf565b9150509250929050565b60008060408385031215612dd557600080fd5b6000612de385828601612b9a565b9250506020612df485828601612c42565b9150509250929050565b600060208284031215612e1057600080fd5b6000612e1e84828501612baf565b91505092915050565b600060208284031215612e3957600080fd5b6000612e4784828501612bc4565b91505092915050565b600060208284031215612e6257600080fd5b6000612e7084828501612bd9565b91505092915050565b600060208284031215612e8b57600080fd5b600082013567ffffffffffffffff811115612ea557600080fd5b612eb184828501612c18565b91505092915050565b600060208284031215612ecc57600080fd5b6000612eda84828501612c42565b91505092915050565b6000612eef8383613814565b60208301905092915050565b612f0481613e39565b82525050565b6000612f1582613cb8565b612f1f8185613ce6565b9350612f2a83613ca8565b8060005b83811015612f5b578151612f428882612ee3565b9750612f4d83613cd9565b925050600181019050612f2e565b5085935050505092915050565b612f7181613e4b565b82525050565b6000612f8282613cc3565b612f8c8185613cf7565b9350612f9c818560208601613ebc565b612fa581614057565b840191505092915050565b6000612fbb82613cce565b612fc58185613d08565b9350612fd5818560208601613ebc565b612fde81614057565b840191505092915050565b6000612ff482613cce565b612ffe8185613d19565b935061300e818560208601613ebc565b80840191505092915050565b6000613027600b83613d08565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b6000613067601c83613d08565b91507f45786365656473206d6178696d756d204865726f7320737570706c79000000006000830152602082019050919050565b60006130a7602b83613d08565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061310d603283613d08565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613173602683613d08565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131d9601b83613d08565b91507f457863656564732072657365727665642043617420737570706c7900000000006000830152602082019050919050565b6000613219601c83613d08565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613259602483613d08565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132bf601983613d08565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006132ff602183613d08565b91507f596f752063616e206275792061206d6178696d756d206f66203230204865726f60008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613365602c83613d08565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006133cb603883613d08565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613431602a83613d08565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613497602983613d08565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134fd602083613d08565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061353d602c83613d08565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006135a3602083613d08565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006135e3602983613d08565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613649602f83613d08565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006136af602183613d08565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613715601983613d08565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000613755603183613d08565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006137bb602c83613d08565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61381d81613ea3565b82525050565b61382c81613ea3565b82525050565b600061383e8285612fe9565b915061384a8284612fe9565b91508190509392505050565b600060208201905061386b6000830184612efb565b92915050565b60006080820190506138866000830187612efb565b6138936020830186612efb565b6138a06040830185613823565b81810360608301526138b28184612f77565b905095945050505050565b600060208201905081810360008301526138d78184612f0a565b905092915050565b60006020820190506138f46000830184612f68565b92915050565b600060208201905081810360008301526139148184612fb0565b905092915050565b600060208201905081810360008301526139358161301a565b9050919050565b600060208201905081810360008301526139558161305a565b9050919050565b600060208201905081810360008301526139758161309a565b9050919050565b6000602082019050818103600083015261399581613100565b9050919050565b600060208201905081810360008301526139b581613166565b9050919050565b600060208201905081810360008301526139d5816131cc565b9050919050565b600060208201905081810360008301526139f58161320c565b9050919050565b60006020820190508181036000830152613a158161324c565b9050919050565b60006020820190508181036000830152613a35816132b2565b9050919050565b60006020820190508181036000830152613a55816132f2565b9050919050565b60006020820190508181036000830152613a7581613358565b9050919050565b60006020820190508181036000830152613a95816133be565b9050919050565b60006020820190508181036000830152613ab581613424565b9050919050565b60006020820190508181036000830152613ad58161348a565b9050919050565b60006020820190508181036000830152613af5816134f0565b9050919050565b60006020820190508181036000830152613b1581613530565b9050919050565b60006020820190508181036000830152613b3581613596565b9050919050565b60006020820190508181036000830152613b55816135d6565b9050919050565b60006020820190508181036000830152613b758161363c565b9050919050565b60006020820190508181036000830152613b95816136a2565b9050919050565b60006020820190508181036000830152613bb581613708565b9050919050565b60006020820190508181036000830152613bd581613748565b9050919050565b60006020820190508181036000830152613bf5816137ae565b9050919050565b6000602082019050613c116000830184613823565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613c3e57613c3d614028565b5b8060405250919050565b600067ffffffffffffffff821115613c6357613c62614028565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613c9357613c92614028565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d2f82613ea3565b9150613d3a83613ea3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d6f57613d6e613f9b565b5b828201905092915050565b6000613d8582613ea3565b9150613d9083613ea3565b925082613da057613d9f613fca565b5b828204905092915050565b6000613db682613ea3565b9150613dc183613ea3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dfa57613df9613f9b565b5b828202905092915050565b6000613e1082613ea3565b9150613e1b83613ea3565b925082821015613e2e57613e2d613f9b565b5b828203905092915050565b6000613e4482613e83565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613eda578082015181840152602081019050613ebf565b83811115613ee9576000848401525b50505050565b60006002820490506001821680613f0757607f821691505b60208210811415613f1b57613f1a613ff9565b5b50919050565b6000613f2c82613ea3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f5f57613f5e613f9b565b5b600182019050919050565b6000613f7582613ea3565b9150613f8083613ea3565b925082613f9057613f8f613fca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61407181613e39565b811461407c57600080fd5b50565b61408881613e4b565b811461409357600080fd5b50565b61409f81613e57565b81146140aa57600080fd5b50565b6140b681613ea3565b81146140c157600080fd5b5056fea2646970667358221220a5ba24b2f1c17f049a2415de9eeb9da97f89943d0f4b36aef7b49245b290e14764736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f65706963626174746c65732e66756e2f4d657461646174612f00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101b75760003560e01c806370a08231116100ec57806398d5fdca1161008a578063c87b56dd11610064578063c87b56dd146105ee578063ca8001441461062b578063e985e9c514610654578063f2fde38b14610691576101b7565b806398d5fdca14610571578063a22cb4651461059c578063b88d4fde146105c5576101b7565b80638588b2c5116100c65780638588b2c5146104d65780638da5cb5b146104f257806391b7f5ed1461051d57806395d89b4114610546576101b7565b806370a0823114610478578063715018a6146104b5578063853828b6146104cc576101b7565b806323b872dd11610159578063438b630011610133578063438b6300146103985780634f6ccce7146103d557806355f804b3146104125780636352211e1461043b576101b7565b806323b872dd146103095780632f745c591461033257806342842e0e1461036f576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806316c61ccc146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612e27565b6106ba565b6040516101f091906138df565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612dfe565b610734565b005b34801561022e57600080fd5b506102376107cd565b60405161024491906138fa565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612eba565b61085f565b6040516102819190613856565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612dc2565b6108e4565b005b3480156102bf57600080fd5b506102c86109fc565b6040516102d591906138df565b60405180910390f35b3480156102ea57600080fd5b506102f3610a0f565b6040516103009190613bfc565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612cbc565b610a1c565b005b34801561033e57600080fd5b5061035960048036038101906103549190612dc2565b610a7c565b6040516103669190613bfc565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190612cbc565b610b21565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612c57565b610b41565b6040516103cc91906138bd565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190612eba565b610c3b565b6040516104099190613bfc565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612e79565b610cd2565b005b34801561044757600080fd5b50610462600480360381019061045d9190612eba565b610d68565b60405161046f9190613856565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612c57565b610e1a565b6040516104ac9190613bfc565b60405180910390f35b3480156104c157600080fd5b506104ca610ed2565b005b6104d461100f565b005b6104f060048036038101906104eb9190612eba565b6110f3565b005b3480156104fe57600080fd5b50610507611276565b6040516105149190613856565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612eba565b6112a0565b005b34801561055257600080fd5b5061055b611326565b60405161056891906138fa565b60405180910390f35b34801561057d57600080fd5b506105866113b8565b6040516105939190613bfc565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612d86565b6113c2565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190612d0b565b611543565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612eba565b6115a5565b60405161062291906138fa565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612dc2565b61164c565b005b34801561066057600080fd5b5061067b60048036038101906106769190612c80565b61176b565b60405161068891906138df565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612c57565b6117ff565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072d575061072c826119c3565b5b9050919050565b61073c611aa5565b73ffffffffffffffffffffffffffffffffffffffff1661075a611276565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a790613b1c565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546107dc90613eef565b80601f016020809104026020016040519081016040528092919081815260200182805461080890613eef565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611aad565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090613afc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ef82610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613b7c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097f611aa5565b73ffffffffffffffffffffffffffffffffffffffff1614806109ae57506109ad816109a8611aa5565b61176b565b5b6109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613a7c565b60405180910390fd5b6109f78383611b19565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610a2d610a27611aa5565b82611bd2565b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613bbc565b60405180910390fd5b610a77838383611cb0565b505050565b6000610a8783610e1a565b8210610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf9061395c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b3c83838360405180602001604052806000815250611543565b505050565b60606000610b4e83610e1a565b905060008167ffffffffffffffff811115610b92577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bc05781602001602082028036833780820191505090505b50905060005b82811015610c3057610bd88582610a7c565b828281518110610c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c2890613f21565b915050610bc6565b508092505050919050565b6000610c45610a0f565b8210610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613bdc565b60405180910390fd5b60088281548110610cc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cda611aa5565b73ffffffffffffffffffffffffffffffffffffffff16610cf8611276565b73ffffffffffffffffffffffffffffffffffffffff1614610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613b1c565b60405180910390fd5b80600b9080519060200190610d64929190612a7b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613abc565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290613a9c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eda611aa5565b73ffffffffffffffffffffffffffffffffffffffff16610ef8611276565b73ffffffffffffffffffffffffffffffffffffffff1614610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613b1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611017611aa5565b73ffffffffffffffffffffffffffffffffffffffff16611035611276565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290613b1c565b60405180910390fd5b6000479050600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110f057600080fd5b50565b60006110fd610a0f565b9050600e60009054906101000a900460ff161561114f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111469061391c565b60405180910390fd5b60158210611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990613a3c565b60405180910390fd5b600c54614e206111a29190613e05565b82826111ae9190613d24565b106111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e59061393c565b60405180910390fd5b81600d546111fc9190613dab565b34101561123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590613b9c565b60405180910390fd5b60005b828110156112715761125e3382846112599190613d24565b611f0c565b808061126990613f21565b915050611241565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112a8611aa5565b73ffffffffffffffffffffffffffffffffffffffff166112c6611276565b73ffffffffffffffffffffffffffffffffffffffff161461131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613b1c565b60405180910390fd5b80600d8190555050565b60606001805461133590613eef565b80601f016020809104026020016040519081016040528092919081815260200182805461136190613eef565b80156113ae5780601f10611383576101008083540402835291602001916113ae565b820191906000526020600020905b81548152906001019060200180831161139157829003601f168201915b5050505050905090565b6000600d54905090565b6113ca611aa5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613a1c565b60405180910390fd5b8060056000611445611aa5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f2611aa5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153791906138df565b60405180910390a35050565b61155461154e611aa5565b83611bd2565b611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90613bbc565b60405180910390fd5b61159f84848484611f2a565b50505050565b60606115b082611aad565b6115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e690613b5c565b60405180910390fd5b60006115f9611f86565b905060008151116116195760405180602001604052806000815250611644565b8061162384612018565b604051602001611634929190613832565b6040516020818303038152906040525b915050919050565b611654611aa5565b73ffffffffffffffffffffffffffffffffffffffff16611672611276565b73ffffffffffffffffffffffffffffffffffffffff16146116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613b1c565b60405180910390fd5b600c5481111561170d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611704906139bc565b60405180910390fd5b6000611717610a0f565b905060005b8281101561174c576117398482846117349190613d24565b611f0c565b808061174490613f21565b91505061171c565b5081600c600082825461175f9190613e05565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611807611aa5565b73ffffffffffffffffffffffffffffffffffffffff16611825611276565b73ffffffffffffffffffffffffffffffffffffffff161461187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613b1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e29061399c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a8e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a9e5750611a9d826121c5565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b8c83610d68565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bdd82611aad565b611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390613a5c565b60405180910390fd5b6000611c2783610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c9657508373ffffffffffffffffffffffffffffffffffffffff16611c7e8461085f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ca75750611ca6818561176b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cd082610d68565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90613b3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d906139fc565b60405180910390fd5b611da183838361222f565b611dac600082611b19565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dfc9190613e05565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e539190613d24565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f26828260405180602001604052806000815250612343565b5050565b611f35848484611cb0565b611f418484848461239e565b611f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f779061397c565b60405180910390fd5b50505050565b6060600b8054611f9590613eef565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc190613eef565b801561200e5780601f10611fe35761010080835404028352916020019161200e565b820191906000526020600020905b815481529060010190602001808311611ff157829003601f168201915b5050505050905090565b60606000821415612060576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c0565b600082905060005b6000821461209257808061207b90613f21565b915050600a8261208b9190613d7a565b9150612068565b60008167ffffffffffffffff8111156120d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121065781602001600182028036833780820191505090505b5090505b600085146121b95760018261211f9190613e05565b9150600a8561212e9190613f6a565b603061213a9190613d24565b60f81b818381518110612176577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b29190613d7a565b945061210a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61223a8383836119be565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561227d5761227881612535565b6122bc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122bb576122ba838261257e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ff576122fa816126eb565b61233e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461233d5761233c828261282e565b5b5b505050565b61234d83836128ad565b61235a600084848461239e565b612399576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123909061397c565b60405180910390fd5b505050565b60006123bf8473ffffffffffffffffffffffffffffffffffffffff166119ab565b15612528578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123e8611aa5565b8786866040518563ffffffff1660e01b815260040161240a9493929190613871565b602060405180830381600087803b15801561242457600080fd5b505af192505050801561245557506040513d601f19601f820116820180604052508101906124529190612e50565b60015b6124d8573d8060008114612485576040519150601f19603f3d011682016040523d82523d6000602084013e61248a565b606091505b506000815114156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c79061397c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061252d565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161258b84610e1a565b6125959190613e05565b905060006007600084815260200190815260200160002054905081811461267a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126ff9190613e05565b9050600060096000848152602001908152602001600020549050600060088381548110612755577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061279d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612812577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061283983610e1a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561291d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291490613adc565b60405180910390fd5b61292681611aad565b15612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d906139dc565b60405180910390fd5b6129726000838361222f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c29190613d24565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612a8790613eef565b90600052602060002090601f016020900481019282612aa95760008555612af0565b82601f10612ac257805160ff1916838001178555612af0565b82800160010185558215612af0579182015b82811115612aef578251825591602001919060010190612ad4565b5b509050612afd9190612b01565b5090565b5b80821115612b1a576000816000905550600101612b02565b5090565b6000612b31612b2c84613c48565b613c17565b905082815260208101848484011115612b4957600080fd5b612b54848285613ead565b509392505050565b6000612b6f612b6a84613c78565b613c17565b905082815260208101848484011115612b8757600080fd5b612b92848285613ead565b509392505050565b600081359050612ba981614068565b92915050565b600081359050612bbe8161407f565b92915050565b600081359050612bd381614096565b92915050565b600081519050612be881614096565b92915050565b600082601f830112612bff57600080fd5b8135612c0f848260208601612b1e565b91505092915050565b600082601f830112612c2957600080fd5b8135612c39848260208601612b5c565b91505092915050565b600081359050612c51816140ad565b92915050565b600060208284031215612c6957600080fd5b6000612c7784828501612b9a565b91505092915050565b60008060408385031215612c9357600080fd5b6000612ca185828601612b9a565b9250506020612cb285828601612b9a565b9150509250929050565b600080600060608486031215612cd157600080fd5b6000612cdf86828701612b9a565b9350506020612cf086828701612b9a565b9250506040612d0186828701612c42565b9150509250925092565b60008060008060808587031215612d2157600080fd5b6000612d2f87828801612b9a565b9450506020612d4087828801612b9a565b9350506040612d5187828801612c42565b925050606085013567ffffffffffffffff811115612d6e57600080fd5b612d7a87828801612bee565b91505092959194509250565b60008060408385031215612d9957600080fd5b6000612da785828601612b9a565b9250506020612db885828601612baf565b9150509250929050565b60008060408385031215612dd557600080fd5b6000612de385828601612b9a565b9250506020612df485828601612c42565b9150509250929050565b600060208284031215612e1057600080fd5b6000612e1e84828501612baf565b91505092915050565b600060208284031215612e3957600080fd5b6000612e4784828501612bc4565b91505092915050565b600060208284031215612e6257600080fd5b6000612e7084828501612bd9565b91505092915050565b600060208284031215612e8b57600080fd5b600082013567ffffffffffffffff811115612ea557600080fd5b612eb184828501612c18565b91505092915050565b600060208284031215612ecc57600080fd5b6000612eda84828501612c42565b91505092915050565b6000612eef8383613814565b60208301905092915050565b612f0481613e39565b82525050565b6000612f1582613cb8565b612f1f8185613ce6565b9350612f2a83613ca8565b8060005b83811015612f5b578151612f428882612ee3565b9750612f4d83613cd9565b925050600181019050612f2e565b5085935050505092915050565b612f7181613e4b565b82525050565b6000612f8282613cc3565b612f8c8185613cf7565b9350612f9c818560208601613ebc565b612fa581614057565b840191505092915050565b6000612fbb82613cce565b612fc58185613d08565b9350612fd5818560208601613ebc565b612fde81614057565b840191505092915050565b6000612ff482613cce565b612ffe8185613d19565b935061300e818560208601613ebc565b80840191505092915050565b6000613027600b83613d08565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b6000613067601c83613d08565b91507f45786365656473206d6178696d756d204865726f7320737570706c79000000006000830152602082019050919050565b60006130a7602b83613d08565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061310d603283613d08565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613173602683613d08565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131d9601b83613d08565b91507f457863656564732072657365727665642043617420737570706c7900000000006000830152602082019050919050565b6000613219601c83613d08565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613259602483613d08565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132bf601983613d08565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006132ff602183613d08565b91507f596f752063616e206275792061206d6178696d756d206f66203230204865726f60008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613365602c83613d08565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006133cb603883613d08565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613431602a83613d08565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613497602983613d08565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134fd602083613d08565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061353d602c83613d08565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006135a3602083613d08565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006135e3602983613d08565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613649602f83613d08565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006136af602183613d08565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613715601983613d08565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000613755603183613d08565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006137bb602c83613d08565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61381d81613ea3565b82525050565b61382c81613ea3565b82525050565b600061383e8285612fe9565b915061384a8284612fe9565b91508190509392505050565b600060208201905061386b6000830184612efb565b92915050565b60006080820190506138866000830187612efb565b6138936020830186612efb565b6138a06040830185613823565b81810360608301526138b28184612f77565b905095945050505050565b600060208201905081810360008301526138d78184612f0a565b905092915050565b60006020820190506138f46000830184612f68565b92915050565b600060208201905081810360008301526139148184612fb0565b905092915050565b600060208201905081810360008301526139358161301a565b9050919050565b600060208201905081810360008301526139558161305a565b9050919050565b600060208201905081810360008301526139758161309a565b9050919050565b6000602082019050818103600083015261399581613100565b9050919050565b600060208201905081810360008301526139b581613166565b9050919050565b600060208201905081810360008301526139d5816131cc565b9050919050565b600060208201905081810360008301526139f58161320c565b9050919050565b60006020820190508181036000830152613a158161324c565b9050919050565b60006020820190508181036000830152613a35816132b2565b9050919050565b60006020820190508181036000830152613a55816132f2565b9050919050565b60006020820190508181036000830152613a7581613358565b9050919050565b60006020820190508181036000830152613a95816133be565b9050919050565b60006020820190508181036000830152613ab581613424565b9050919050565b60006020820190508181036000830152613ad58161348a565b9050919050565b60006020820190508181036000830152613af5816134f0565b9050919050565b60006020820190508181036000830152613b1581613530565b9050919050565b60006020820190508181036000830152613b3581613596565b9050919050565b60006020820190508181036000830152613b55816135d6565b9050919050565b60006020820190508181036000830152613b758161363c565b9050919050565b60006020820190508181036000830152613b95816136a2565b9050919050565b60006020820190508181036000830152613bb581613708565b9050919050565b60006020820190508181036000830152613bd581613748565b9050919050565b60006020820190508181036000830152613bf5816137ae565b9050919050565b6000602082019050613c116000830184613823565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613c3e57613c3d614028565b5b8060405250919050565b600067ffffffffffffffff821115613c6357613c62614028565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613c9357613c92614028565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d2f82613ea3565b9150613d3a83613ea3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d6f57613d6e613f9b565b5b828201905092915050565b6000613d8582613ea3565b9150613d9083613ea3565b925082613da057613d9f613fca565b5b828204905092915050565b6000613db682613ea3565b9150613dc183613ea3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dfa57613df9613f9b565b5b828202905092915050565b6000613e1082613ea3565b9150613e1b83613ea3565b925082821015613e2e57613e2d613f9b565b5b828203905092915050565b6000613e4482613e83565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613eda578082015181840152602081019050613ebf565b83811115613ee9576000848401525b50505050565b60006002820490506001821680613f0757607f821691505b60208210811415613f1b57613f1a613ff9565b5b50919050565b6000613f2c82613ea3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f5f57613f5e613f9b565b5b600182019050919050565b6000613f7582613ea3565b9150613f8083613ea3565b925082613f9057613f8f613fca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61407181613e39565b811461407c57600080fd5b50565b61408881613e4b565b811461409357600080fd5b50565b61409f81613e57565b81146140aa57600080fd5b50565b6140b681613ea3565b81146140c157600080fd5b5056fea2646970667358221220a5ba24b2f1c17f049a2415de9eeb9da97f89943d0f4b36aef7b49245b290e14764736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f65706963626174746c65732e66756e2f4d657461646174612f00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://epicbattles.fun/Metadata/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [2] : 68747470733a2f2f65706963626174746c65732e66756e2f4d65746164617461
Arg [3] : 2f00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
41984:2336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35826:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44088:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21863:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23323:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22860:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42182:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36479:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24213:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36147:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24589:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42985:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36669:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43558:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21557:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21287:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34429:148;;;;;;;;;;;;;:::i;:::-;;44170:147;;;:::i;:::-;;42434:543;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33778:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43335:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22032:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43668:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23616:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24811:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22207:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43757:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23982:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34732:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35826:237;35928:4;35967:35;35952:50;;;:11;:50;;;;:103;;;;36019:36;36043:11;36019:23;:36::i;:::-;35952:103;35945:110;;35826:237;;;:::o;44088:74::-;34009:12;:10;:12::i;:::-;33998:23;;:7;:5;:7::i;:::-;:23;;;33990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44151:3:::1;44141:7;;:13;;;;;;;;;;;;;;;;;;44088:74:::0;:::o;21863:100::-;21917:13;21950:5;21943:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21863:100;:::o;23323:221::-;23399:7;23427:16;23435:7;23427;:16::i;:::-;23419:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23512:15;:24;23528:7;23512:24;;;;;;;;;;;;;;;;;;;;;23505:31;;23323:221;;;:::o;22860:397::-;22941:13;22957:23;22972:7;22957:14;:23::i;:::-;22941:39;;23005:5;22999:11;;:2;:11;;;;22991:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23085:5;23069:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23094:37;23111:5;23118:12;:10;:12::i;:::-;23094:16;:37::i;:::-;23069:62;23061:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;23228:21;23237:2;23241:7;23228:8;:21::i;:::-;22860:397;;;:::o;42182:26::-;;;;;;;;;;;;;:::o;36479:113::-;36540:7;36567:10;:17;;;;36560:24;;36479:113;:::o;24213:305::-;24374:41;24393:12;:10;:12::i;:::-;24407:7;24374:18;:41::i;:::-;24366:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24482:28;24492:4;24498:2;24502:7;24482:9;:28::i;:::-;24213:305;;;:::o;36147:256::-;36244:7;36280:23;36297:5;36280:16;:23::i;:::-;36272:5;:31;36264:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36369:12;:19;36382:5;36369:19;;;;;;;;;;;;;;;:26;36389:5;36369:26;;;;;;;;;;;;36362:33;;36147:256;;;;:::o;24589:151::-;24693:39;24710:4;24716:2;24720:7;24693:39;;;;;;;;;;;;:16;:39::i;:::-;24589:151;;;:::o;42985:342::-;43044:16;43073:18;43094:17;43104:6;43094:9;:17::i;:::-;43073:38;;43124:25;43166:10;43152:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43124:53;;43192:9;43188:106;43207:10;43203:1;:14;43188:106;;;43252:30;43272:6;43280:1;43252:19;:30::i;:::-;43238:8;43247:1;43238:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;43219:3;;;;;:::i;:::-;;;;43188:106;;;;43311:8;43304:15;;;;42985:342;;;:::o;36669:233::-;36744:7;36780:30;:28;:30::i;:::-;36772:5;:38;36764:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36877:10;36888:5;36877:17;;;;;;;;;;;;;;;;;;;;;;;;36870:24;;36669:233;;;:::o;43558:102::-;34009:12;:10;:12::i;:::-;33998:23;;:7;:5;:7::i;:::-;:23;;;33990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43645:7:::1;43629:13;:23;;;;;;;;;;;;:::i;:::-;;43558:102:::0;:::o;21557:239::-;21629:7;21649:13;21665:7;:16;21673:7;21665:16;;;;;;;;;;;;;;;;;;;;;21649:32;;21717:1;21700:19;;:5;:19;;;;21692:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21783:5;21776:12;;;21557:239;;;:::o;21287:208::-;21359:7;21404:1;21387:19;;:5;:19;;;;21379:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21471:9;:16;21481:5;21471:16;;;;;;;;;;;;;;;;21464:23;;21287:208;;;:::o;34429:148::-;34009:12;:10;:12::i;:::-;33998:23;;:7;:5;:7::i;:::-;:23;;;33990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34536:1:::1;34499:40;;34520:6;;;;;;;;;;;34499:40;;;;;;;;;;;;34567:1;34550:6;;:19;;;;;;;;;;;;;;;;;;34429:148::o:0;44170:147::-;34009:12;:10;:12::i;:::-;33998:23;;:7;:5;:7::i;:::-;:23;;;33990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44229:13:::1;44245:21;44229:37;;44293:2;;;;;;;;;;;44285:16;;:23;44302:5;44285:23;;;;;;;;;;;;;;;;;;;;;;;44277:32;;;::::0;::::1;;34069:1;44170:147::o:0;42434:543::-;42488:14;42505:13;:11;:13::i;:::-;42488:30;;42539:7;;;;;;;;;;;42538:8;42529:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42618:2;42612:3;:8;42603:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42731:9;;42723:5;:17;;;;:::i;:::-;42717:3;42708:6;:12;;;;:::i;:::-;:32;42699:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;42821:3;42812:6;;:12;;;;:::i;:::-;42799:9;:25;;42790:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42884:9;42880:90;42899:3;42895:1;:7;42880:90;;;42923:35;42934:10;42955:1;42946:6;:10;;;;:::i;:::-;42923:9;:35::i;:::-;42904:3;;;;;:::i;:::-;;;;42880:90;;;;42434:543;;:::o;33778:87::-;33824:7;33851:6;;;;;;;;;;;33844:13;;33778:87;:::o;43335:93::-;34009:12;:10;:12::i;:::-;33998:23;;:7;:5;:7::i;:::-;:23;;;33990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43411:9:::1;43402:6;:18;;;;43335:93:::0;:::o;22032:104::-;22088:13;22121:7;22114:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22032:104;:::o;43668:81::-;43709:7;43735:6;;43728:13;;43668:81;:::o;23616:295::-;23731:12;:10;:12::i;:::-;23719:24;;:8;:24;;;;23711:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23831:8;23786:18;:32;23805:12;:10;:12::i;:::-;23786:32;;;;;;;;;;;;;;;:42;23819:8;23786:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23884:8;23855:48;;23870:12;:10;:12::i;:::-;23855:48;;;23894:8;23855:48;;;;;;:::i;:::-;;;;;;;;23616:295;;:::o;24811:285::-;24943:41;24962:12;:10;:12::i;:::-;24976:7;24943:18;:41::i;:::-;24935:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25049:39;25063:4;25069:2;25073:7;25082:5;25049:13;:39::i;:::-;24811:285;;;;:::o;22207:360::-;22280:13;22314:16;22322:7;22314;:16::i;:::-;22306:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22395:21;22419:10;:8;:10::i;:::-;22395:34;;22471:1;22453:7;22447:21;:25;:112;;;;;;;;;;;;;;;;;22512:7;22521:18;:7;:16;:18::i;:::-;22495:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22447:112;22440:119;;;22207:360;;;:::o;43757:323::-;34009:12;:10;:12::i;:::-;33998:23;;:7;:5;:7::i;:::-;:23;;;33990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43857:9:::1;;43846:7;:20;;43837:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43912:14;43929:13;:11;:13::i;:::-;43912:30;;43957:9;43953:87;43972:7;43968:1;:11;43953:87;;;44000:28;44011:3;44025:1;44016:6;:10;;;;:::i;:::-;44000:9;:28::i;:::-;43981:3;;;;;:::i;:::-;;;;43953:87;;;;44065:7;44052:9;;:20;;;;;;;:::i;:::-;;;;;;;;34069:1;43757:323:::0;;:::o;23982:164::-;24079:4;24103:18;:25;24122:5;24103:25;;;;;;;;;;;;;;;:35;24129:8;24103:35;;;;;;;;;;;;;;;;;;;;;;;;;24096:42;;23982:164;;;;:::o;34732:244::-;34009:12;:10;:12::i;:::-;33998:23;;:7;:5;:7::i;:::-;:23;;;33990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34841:1:::1;34821:22;;:8;:22;;;;34813:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34931:8;34902:38;;34923:6;;;;;;;;;;;34902:38;;;;;;;;;;;;34960:8;34951:6;;:17;;;;;;;;;;;;;;;;;;34732:244:::0;:::o;5347:422::-;5407:4;5615:12;5726:7;5714:20;5706:28;;5760:1;5753:4;:8;5746:15;;;5347:422;;;:::o;32641:93::-;;;;:::o;20931:292::-;21033:4;21072:25;21057:40;;;:11;:40;;;;:105;;;;21129:33;21114:48;;;:11;:48;;;;21057:105;:158;;;;21179:36;21203:11;21179:23;:36::i;:::-;21057:158;21050:165;;20931:292;;;:::o;4289:98::-;4342:7;4369:10;4362:17;;4289:98;:::o;26563:127::-;26628:4;26680:1;26652:30;;:7;:16;26660:7;26652:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26645:37;;26563:127;;;:::o;30446:174::-;30548:2;30521:15;:24;30537:7;30521:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30604:7;30600:2;30566:46;;30575:23;30590:7;30575:14;:23::i;:::-;30566:46;;;;;;;;;;;;30446:174;;:::o;26857:348::-;26950:4;26975:16;26983:7;26975;:16::i;:::-;26967:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27051:13;27067:23;27082:7;27067:14;:23::i;:::-;27051:39;;27120:5;27109:16;;:7;:16;;;:51;;;;27153:7;27129:31;;:20;27141:7;27129:11;:20::i;:::-;:31;;;27109:51;:87;;;;27164:32;27181:5;27188:7;27164:16;:32::i;:::-;27109:87;27101:96;;;26857:348;;;;:::o;29784:544::-;29909:4;29882:31;;:23;29897:7;29882:14;:23::i;:::-;:31;;;29874:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29992:1;29978:16;;:2;:16;;;;29970:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30048:39;30069:4;30075:2;30079:7;30048:20;:39::i;:::-;30152:29;30169:1;30173:7;30152:8;:29::i;:::-;30213:1;30194:9;:15;30204:4;30194:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30242:1;30225:9;:13;30235:2;30225:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30273:2;30254:7;:16;30262:7;30254:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30312:7;30308:2;30293:27;;30302:4;30293:27;;;;;;;;;;;;29784:544;;;:::o;27547:110::-;27623:26;27633:2;27637:7;27623:26;;;;;;;;;;;;:9;:26::i;:::-;27547:110;;:::o;25978:272::-;26092:28;26102:4;26108:2;26112:7;26092:9;:28::i;:::-;26139:48;26162:4;26168:2;26172:7;26181:5;26139:22;:48::i;:::-;26131:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25978:272;;;;:::o;43436:114::-;43496:13;43529;43522:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43436:114;:::o;1962:723::-;2018:13;2248:1;2239:5;:10;2235:53;;;2266:10;;;;;;;;;;;;;;;;;;;;;2235:53;2298:12;2313:5;2298:20;;2329:14;2354:78;2369:1;2361:4;:9;2354:78;;2387:8;;;;;:::i;:::-;;;;2418:2;2410:10;;;;;:::i;:::-;;;2354:78;;;2442:19;2474:6;2464:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2442:39;;2492:154;2508:1;2499:5;:10;2492:154;;2536:1;2526:11;;;;;:::i;:::-;;;2603:2;2595:5;:10;;;;:::i;:::-;2582:2;:24;;;;:::i;:::-;2569:39;;2552:6;2559;2552:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;2632:2;2623:11;;;;;:::i;:::-;;;2492:154;;;2670:6;2656:21;;;;;1962:723;;;;:::o;1547:157::-;1632:4;1671:25;1656:40;;;:11;:40;;;;1649:47;;1547:157;;;:::o;37515:555::-;37625:45;37652:4;37658:2;37662:7;37625:26;:45::i;:::-;37703:1;37687:18;;:4;:18;;;37683:187;;;37722:40;37754:7;37722:31;:40::i;:::-;37683:187;;;37792:2;37784:10;;:4;:10;;;37780:90;;37811:47;37844:4;37850:7;37811:32;:47::i;:::-;37780:90;37683:187;37898:1;37884:16;;:2;:16;;;37880:183;;;37917:45;37954:7;37917:36;:45::i;:::-;37880:183;;;37990:4;37984:10;;:2;:10;;;37980:83;;38011:40;38039:2;38043:7;38011:27;:40::i;:::-;37980:83;37880:183;37515:555;;;:::o;27884:250::-;27980:18;27986:2;27990:7;27980:5;:18::i;:::-;28017:54;28048:1;28052:2;28056:7;28065:5;28017:22;:54::i;:::-;28009:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27884:250;;;:::o;31185:843::-;31306:4;31332:15;:2;:13;;;:15::i;:::-;31328:693;;;31384:2;31368:36;;;31405:12;:10;:12::i;:::-;31419:4;31425:7;31434:5;31368:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31364:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31631:1;31614:6;:13;:18;31610:341;;;31657:60;;;;;;;;;;:::i;:::-;;;;;;;;31610:341;31901:6;31895:13;31886:6;31882:2;31878:15;31871:38;31364:602;31501:45;;;31491:55;;;:6;:55;;;;31484:62;;;;;31328:693;32005:4;31998:11;;31185:843;;;;;;;:::o;38793:164::-;38897:10;:17;;;;38870:15;:24;38886:7;38870:24;;;;;;;;;;;:44;;;;38925:10;38941:7;38925:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38793:164;:::o;39584:988::-;39850:22;39900:1;39875:22;39892:4;39875:16;:22::i;:::-;:26;;;;:::i;:::-;39850:51;;39912:18;39933:17;:26;39951:7;39933:26;;;;;;;;;;;;39912:47;;40080:14;40066:10;:28;40062:328;;40111:19;40133:12;:18;40146:4;40133:18;;;;;;;;;;;;;;;:34;40152:14;40133:34;;;;;;;;;;;;40111:56;;40217:11;40184:12;:18;40197:4;40184:18;;;;;;;;;;;;;;;:30;40203:10;40184:30;;;;;;;;;;;:44;;;;40334:10;40301:17;:30;40319:11;40301:30;;;;;;;;;;;:43;;;;40062:328;;40486:17;:26;40504:7;40486:26;;;;;;;;;;;40479:33;;;40530:12;:18;40543:4;40530:18;;;;;;;;;;;;;;;:34;40549:14;40530:34;;;;;;;;;;;40523:41;;;39584:988;;;;:::o;40867:1079::-;41120:22;41165:1;41145:10;:17;;;;:21;;;;:::i;:::-;41120:46;;41177:18;41198:15;:24;41214:7;41198:24;;;;;;;;;;;;41177:45;;41549:19;41571:10;41582:14;41571:26;;;;;;;;;;;;;;;;;;;;;;;;41549:48;;41635:11;41610:10;41621;41610:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41746:10;41715:15;:28;41731:11;41715:28;;;;;;;;;;;:41;;;;41887:15;:24;41903:7;41887:24;;;;;;;;;;;41880:31;;;41922:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40867:1079;;;;:::o;38371:221::-;38456:14;38473:20;38490:2;38473:16;:20::i;:::-;38456:37;;38531:7;38504:12;:16;38517:2;38504:16;;;;;;;;;;;;;;;:24;38521:6;38504:24;;;;;;;;;;;:34;;;;38578:6;38549:17;:26;38567:7;38549:26;;;;;;;;;;;:35;;;;38371:221;;;:::o;28470:382::-;28564:1;28550:16;;:2;:16;;;;28542:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28623:16;28631:7;28623;:16::i;:::-;28622:17;28614:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28685:45;28714:1;28718:2;28722:7;28685:20;:45::i;:::-;28760:1;28743:9;:13;28753:2;28743:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28791:2;28772:7;:16;28780:7;28772:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28836:7;28832:2;28811:33;;28828:1;28811:33;;;;;;;;;;;;28470:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:179::-;;6436:46;6478:3;6470:6;6436:46;:::i;:::-;6514:4;6509:3;6505:14;6491:28;;6426:99;;;;:::o;6531:118::-;6618:24;6636:5;6618:24;:::i;:::-;6613:3;6606:37;6596:53;;:::o;6685:732::-;;6833:54;6881:5;6833:54;:::i;:::-;6903:86;6982:6;6977:3;6903:86;:::i;:::-;6896:93;;7013:56;7063:5;7013:56;:::i;:::-;7092:7;7123:1;7108:284;7133:6;7130:1;7127:13;7108:284;;;7209:6;7203:13;7236:63;7295:3;7280:13;7236:63;:::i;:::-;7229:70;;7322:60;7375:6;7322:60;:::i;:::-;7312:70;;7168:224;7155:1;7152;7148:9;7143:14;;7108:284;;;7112:14;7408:3;7401:10;;6809:608;;;;;;;:::o;7423:109::-;7504:21;7519:5;7504:21;:::i;:::-;7499:3;7492:34;7482:50;;:::o;7538:360::-;;7652:38;7684:5;7652:38;:::i;:::-;7706:70;7769:6;7764:3;7706:70;:::i;:::-;7699:77;;7785:52;7830:6;7825:3;7818:4;7811:5;7807:16;7785:52;:::i;:::-;7862:29;7884:6;7862:29;:::i;:::-;7857:3;7853:39;7846:46;;7628:270;;;;;:::o;7904:364::-;;8020:39;8053:5;8020:39;:::i;:::-;8075:71;8139:6;8134:3;8075:71;:::i;:::-;8068:78;;8155:52;8200:6;8195:3;8188:4;8181:5;8177:16;8155:52;:::i;:::-;8232:29;8254:6;8232:29;:::i;:::-;8227:3;8223:39;8216:46;;7996:272;;;;;:::o;8274:377::-;;8408:39;8441:5;8408:39;:::i;:::-;8463:89;8545:6;8540:3;8463:89;:::i;:::-;8456:96;;8561:52;8606:6;8601:3;8594:4;8587:5;8583:16;8561:52;:::i;:::-;8638:6;8633:3;8629:16;8622:23;;8384:267;;;;;:::o;8657:309::-;;8820:67;8884:2;8879:3;8820:67;:::i;:::-;8813:74;;8917:13;8913:1;8908:3;8904:11;8897:34;8957:2;8952:3;8948:12;8941:19;;8803:163;;;:::o;8972:326::-;;9135:67;9199:2;9194:3;9135:67;:::i;:::-;9128:74;;9232:30;9228:1;9223:3;9219:11;9212:51;9289:2;9284:3;9280:12;9273:19;;9118:180;;;:::o;9304:375::-;;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9564:34;9560:1;9555:3;9551:11;9544:55;9630:13;9625:2;9620:3;9616:12;9609:35;9670:2;9665:3;9661:12;9654:19;;9450:229;;;:::o;9685:382::-;;9848:67;9912:2;9907:3;9848:67;:::i;:::-;9841:74;;9945:34;9941:1;9936:3;9932:11;9925:55;10011:20;10006:2;10001:3;9997:12;9990:42;10058:2;10053:3;10049:12;10042:19;;9831:236;;;:::o;10073:370::-;;10236:67;10300:2;10295:3;10236:67;:::i;:::-;10229:74;;10333:34;10329:1;10324:3;10320:11;10313:55;10399:8;10394:2;10389:3;10385:12;10378:30;10434:2;10429:3;10425:12;10418:19;;10219:224;;;:::o;10449:325::-;;10612:67;10676:2;10671:3;10612:67;:::i;:::-;10605:74;;10709:29;10705:1;10700:3;10696:11;10689:50;10765:2;10760:3;10756:12;10749:19;;10595:179;;;:::o;10780:326::-;;10943:67;11007:2;11002:3;10943:67;:::i;:::-;10936:74;;11040:30;11036:1;11031:3;11027:11;11020:51;11097:2;11092:3;11088:12;11081:19;;10926:180;;;:::o;11112:368::-;;11275:67;11339:2;11334:3;11275:67;:::i;:::-;11268:74;;11372:34;11368:1;11363:3;11359:11;11352:55;11438:6;11433:2;11428:3;11424:12;11417:28;11471:2;11466:3;11462:12;11455:19;;11258:222;;;:::o;11486:323::-;;11649:67;11713:2;11708:3;11649:67;:::i;:::-;11642:74;;11746:27;11742:1;11737:3;11733:11;11726:48;11800:2;11795:3;11791:12;11784:19;;11632:177;;;:::o;11815:365::-;;11978:67;12042:2;12037:3;11978:67;:::i;:::-;11971:74;;12075:34;12071:1;12066:3;12062:11;12055:55;12141:3;12136:2;12131:3;12127:12;12120:25;12171:2;12166:3;12162:12;12155:19;;11961:219;;;:::o;12186:376::-;;12349:67;12413:2;12408:3;12349:67;:::i;:::-;12342:74;;12446:34;12442:1;12437:3;12433:11;12426:55;12512:14;12507:2;12502:3;12498:12;12491:36;12553:2;12548:3;12544:12;12537:19;;12332:230;;;:::o;12568:388::-;;12731:67;12795:2;12790:3;12731:67;:::i;:::-;12724:74;;12828:34;12824:1;12819:3;12815:11;12808:55;12894:26;12889:2;12884:3;12880:12;12873:48;12947:2;12942:3;12938:12;12931:19;;12714:242;;;:::o;12962:374::-;;13125:67;13189:2;13184:3;13125:67;:::i;:::-;13118:74;;13222:34;13218:1;13213:3;13209:11;13202:55;13288:12;13283:2;13278:3;13274:12;13267:34;13327:2;13322:3;13318:12;13311:19;;13108:228;;;:::o;13342:373::-;;13505:67;13569:2;13564:3;13505:67;:::i;:::-;13498:74;;13602:34;13598:1;13593:3;13589:11;13582:55;13668:11;13663:2;13658:3;13654:12;13647:33;13706:2;13701:3;13697:12;13690:19;;13488:227;;;:::o;13721:330::-;;13884:67;13948:2;13943:3;13884:67;:::i;:::-;13877:74;;13981:34;13977:1;13972:3;13968:11;13961:55;14042:2;14037:3;14033:12;14026:19;;13867:184;;;:::o;14057:376::-;;14220:67;14284:2;14279:3;14220:67;:::i;:::-;14213:74;;14317:34;14313:1;14308:3;14304:11;14297:55;14383:14;14378:2;14373:3;14369:12;14362:36;14424:2;14419:3;14415:12;14408:19;;14203:230;;;:::o;14439:330::-;;14602:67;14666:2;14661:3;14602:67;:::i;:::-;14595:74;;14699:34;14695:1;14690:3;14686:11;14679:55;14760:2;14755:3;14751:12;14744:19;;14585:184;;;:::o;14775:373::-;;14938:67;15002:2;14997:3;14938:67;:::i;:::-;14931:74;;15035:34;15031:1;15026:3;15022:11;15015:55;15101:11;15096:2;15091:3;15087:12;15080:33;15139:2;15134:3;15130:12;15123:19;;14921:227;;;:::o;15154:379::-;;15317:67;15381:2;15376:3;15317:67;:::i;:::-;15310:74;;15414:34;15410:1;15405:3;15401:11;15394:55;15480:17;15475:2;15470:3;15466:12;15459:39;15524:2;15519:3;15515:12;15508:19;;15300:233;;;:::o;15539:365::-;;15702:67;15766:2;15761:3;15702:67;:::i;:::-;15695:74;;15799:34;15795:1;15790:3;15786:11;15779:55;15865:3;15860:2;15855:3;15851:12;15844:25;15895:2;15890:3;15886:12;15879:19;;15685:219;;;:::o;15910:323::-;;16073:67;16137:2;16132:3;16073:67;:::i;:::-;16066:74;;16170:27;16166:1;16161:3;16157:11;16150:48;16224:2;16219:3;16215:12;16208:19;;16056:177;;;:::o;16239:381::-;;16402:67;16466:2;16461:3;16402:67;:::i;:::-;16395:74;;16499:34;16495:1;16490:3;16486:11;16479:55;16565:19;16560:2;16555:3;16551:12;16544:41;16611:2;16606:3;16602:12;16595:19;;16385:235;;;:::o;16626:376::-;;16789:67;16853:2;16848:3;16789:67;:::i;:::-;16782:74;;16886:34;16882:1;16877:3;16873:11;16866:55;16952:14;16947:2;16942:3;16938:12;16931:36;16993:2;16988:3;16984:12;16977:19;;16772:230;;;:::o;17008:108::-;17085:24;17103:5;17085:24;:::i;:::-;17080:3;17073:37;17063:53;;:::o;17122:118::-;17209:24;17227:5;17209:24;:::i;:::-;17204:3;17197:37;17187:53;;:::o;17246:435::-;;17448:95;17539:3;17530:6;17448:95;:::i;:::-;17441:102;;17560:95;17651:3;17642:6;17560:95;:::i;:::-;17553:102;;17672:3;17665:10;;17430:251;;;;;:::o;17687:222::-;;17818:2;17807:9;17803:18;17795:26;;17831:71;17899:1;17888:9;17884:17;17875:6;17831:71;:::i;:::-;17785:124;;;;:::o;17915:640::-;;18148:3;18137:9;18133:19;18125:27;;18162:71;18230:1;18219:9;18215:17;18206:6;18162:71;:::i;:::-;18243:72;18311:2;18300:9;18296:18;18287:6;18243:72;:::i;:::-;18325;18393:2;18382:9;18378:18;18369:6;18325:72;:::i;:::-;18444:9;18438:4;18434:20;18429:2;18418:9;18414:18;18407:48;18472:76;18543:4;18534:6;18472:76;:::i;:::-;18464:84;;18115:440;;;;;;;:::o;18561:373::-;;18742:2;18731:9;18727:18;18719:26;;18791:9;18785:4;18781:20;18777:1;18766:9;18762:17;18755:47;18819:108;18922:4;18913:6;18819:108;:::i;:::-;18811:116;;18709:225;;;;:::o;18940:210::-;;19065:2;19054:9;19050:18;19042:26;;19078:65;19140:1;19129:9;19125:17;19116:6;19078:65;:::i;:::-;19032:118;;;;:::o;19156:313::-;;19307:2;19296:9;19292:18;19284:26;;19356:9;19350:4;19346:20;19342:1;19331:9;19327:17;19320:47;19384:78;19457:4;19448:6;19384:78;:::i;:::-;19376:86;;19274:195;;;;:::o;19475:419::-;;19679:2;19668:9;19664:18;19656:26;;19728:9;19722:4;19718:20;19714:1;19703:9;19699:17;19692:47;19756:131;19882:4;19756:131;:::i;:::-;19748:139;;19646:248;;;:::o;19900:419::-;;20104:2;20093:9;20089:18;20081:26;;20153:9;20147:4;20143:20;20139:1;20128:9;20124:17;20117:47;20181:131;20307:4;20181:131;:::i;:::-;20173:139;;20071:248;;;:::o;20325:419::-;;20529:2;20518:9;20514:18;20506:26;;20578:9;20572:4;20568:20;20564:1;20553:9;20549:17;20542:47;20606:131;20732:4;20606:131;:::i;:::-;20598:139;;20496:248;;;:::o;20750:419::-;;20954:2;20943:9;20939:18;20931:26;;21003:9;20997:4;20993:20;20989:1;20978:9;20974:17;20967:47;21031:131;21157:4;21031:131;:::i;:::-;21023:139;;20921:248;;;:::o;21175:419::-;;21379:2;21368:9;21364:18;21356:26;;21428:9;21422:4;21418:20;21414:1;21403:9;21399:17;21392:47;21456:131;21582:4;21456:131;:::i;:::-;21448:139;;21346:248;;;:::o;21600:419::-;;21804:2;21793:9;21789:18;21781:26;;21853:9;21847:4;21843:20;21839:1;21828:9;21824:17;21817:47;21881:131;22007:4;21881:131;:::i;:::-;21873:139;;21771:248;;;:::o;22025:419::-;;22229:2;22218:9;22214:18;22206:26;;22278:9;22272:4;22268:20;22264:1;22253:9;22249:17;22242:47;22306:131;22432:4;22306:131;:::i;:::-;22298:139;;22196:248;;;:::o;22450:419::-;;22654:2;22643:9;22639:18;22631:26;;22703:9;22697:4;22693:20;22689:1;22678:9;22674:17;22667:47;22731:131;22857:4;22731:131;:::i;:::-;22723:139;;22621:248;;;:::o;22875:419::-;;23079:2;23068:9;23064:18;23056:26;;23128:9;23122:4;23118:20;23114:1;23103:9;23099:17;23092:47;23156:131;23282:4;23156:131;:::i;:::-;23148:139;;23046:248;;;:::o;23300:419::-;;23504:2;23493:9;23489:18;23481:26;;23553:9;23547:4;23543:20;23539:1;23528:9;23524:17;23517:47;23581:131;23707:4;23581:131;:::i;:::-;23573:139;;23471:248;;;:::o;23725:419::-;;23929:2;23918:9;23914:18;23906:26;;23978:9;23972:4;23968:20;23964:1;23953:9;23949:17;23942:47;24006:131;24132:4;24006:131;:::i;:::-;23998:139;;23896:248;;;:::o;24150:419::-;;24354:2;24343:9;24339:18;24331:26;;24403:9;24397:4;24393:20;24389:1;24378:9;24374:17;24367:47;24431:131;24557:4;24431:131;:::i;:::-;24423:139;;24321:248;;;:::o;24575:419::-;;24779:2;24768:9;24764:18;24756:26;;24828:9;24822:4;24818:20;24814:1;24803:9;24799:17;24792:47;24856:131;24982:4;24856:131;:::i;:::-;24848:139;;24746:248;;;:::o;25000:419::-;;25204:2;25193:9;25189:18;25181:26;;25253:9;25247:4;25243:20;25239:1;25228:9;25224:17;25217:47;25281:131;25407:4;25281:131;:::i;:::-;25273:139;;25171:248;;;:::o;25425:419::-;;25629:2;25618:9;25614:18;25606:26;;25678:9;25672:4;25668:20;25664:1;25653:9;25649:17;25642:47;25706:131;25832:4;25706:131;:::i;:::-;25698:139;;25596:248;;;:::o;25850:419::-;;26054:2;26043:9;26039:18;26031:26;;26103:9;26097:4;26093:20;26089:1;26078:9;26074:17;26067:47;26131:131;26257:4;26131:131;:::i;:::-;26123:139;;26021:248;;;:::o;26275:419::-;;26479:2;26468:9;26464:18;26456:26;;26528:9;26522:4;26518:20;26514:1;26503:9;26499:17;26492:47;26556:131;26682:4;26556:131;:::i;:::-;26548:139;;26446:248;;;:::o;26700:419::-;;26904:2;26893:9;26889:18;26881:26;;26953:9;26947:4;26943:20;26939:1;26928:9;26924:17;26917:47;26981:131;27107:4;26981:131;:::i;:::-;26973:139;;26871:248;;;:::o;27125:419::-;;27329:2;27318:9;27314:18;27306:26;;27378:9;27372:4;27368:20;27364:1;27353:9;27349:17;27342:47;27406:131;27532:4;27406:131;:::i;:::-;27398:139;;27296:248;;;:::o;27550:419::-;;27754:2;27743:9;27739:18;27731:26;;27803:9;27797:4;27793:20;27789:1;27778:9;27774:17;27767:47;27831:131;27957:4;27831:131;:::i;:::-;27823:139;;27721:248;;;:::o;27975:419::-;;28179:2;28168:9;28164:18;28156:26;;28228:9;28222:4;28218:20;28214:1;28203:9;28199:17;28192:47;28256:131;28382:4;28256:131;:::i;:::-;28248:139;;28146:248;;;:::o;28400:419::-;;28604:2;28593:9;28589:18;28581:26;;28653:9;28647:4;28643:20;28639:1;28628:9;28624:17;28617:47;28681:131;28807:4;28681:131;:::i;:::-;28673:139;;28571:248;;;:::o;28825:419::-;;29029:2;29018:9;29014:18;29006:26;;29078:9;29072:4;29068:20;29064:1;29053:9;29049:17;29042:47;29106:131;29232:4;29106:131;:::i;:::-;29098:139;;28996:248;;;:::o;29250:222::-;;29381:2;29370:9;29366:18;29358:26;;29394:71;29462:1;29451:9;29447:17;29438:6;29394:71;:::i;:::-;29348:124;;;;:::o;29478:283::-;;29544:2;29538:9;29528:19;;29586:4;29578:6;29574:17;29693:6;29681:10;29678:22;29657:18;29645:10;29642:34;29639:62;29636:2;;;29704:18;;:::i;:::-;29636:2;29744:10;29740:2;29733:22;29518:243;;;;:::o;29767:331::-;;29918:18;29910:6;29907:30;29904:2;;;29940:18;;:::i;:::-;29904:2;30025:4;30021:9;30014:4;30006:6;30002:17;29998:33;29990:41;;30086:4;30080;30076:15;30068:23;;29833:265;;;:::o;30104:332::-;;30256:18;30248:6;30245:30;30242:2;;;30278:18;;:::i;:::-;30242:2;30363:4;30359:9;30352:4;30344:6;30340:17;30336:33;30328:41;;30424:4;30418;30414:15;30406:23;;30171:265;;;:::o;30442:132::-;;30532:3;30524:11;;30562:4;30557:3;30553:14;30545:22;;30514:60;;;:::o;30580:114::-;;30681:5;30675:12;30665:22;;30654:40;;;:::o;30700:98::-;;30785:5;30779:12;30769:22;;30758:40;;;:::o;30804:99::-;;30890:5;30884:12;30874:22;;30863:40;;;:::o;30909:113::-;;31011:4;31006:3;31002:14;30994:22;;30984:38;;;:::o;31028:184::-;;31161:6;31156:3;31149:19;31201:4;31196:3;31192:14;31177:29;;31139:73;;;;:::o;31218:168::-;;31335:6;31330:3;31323:19;31375:4;31370:3;31366:14;31351:29;;31313:73;;;;:::o;31392:169::-;;31510:6;31505:3;31498:19;31550:4;31545:3;31541:14;31526:29;;31488:73;;;;:::o;31567:148::-;;31706:3;31691:18;;31681:34;;;;:::o;31721:305::-;;31780:20;31798:1;31780:20;:::i;:::-;31775:25;;31814:20;31832:1;31814:20;:::i;:::-;31809:25;;31968:1;31900:66;31896:74;31893:1;31890:81;31887:2;;;31974:18;;:::i;:::-;31887:2;32018:1;32015;32011:9;32004:16;;31765:261;;;;:::o;32032:185::-;;32089:20;32107:1;32089:20;:::i;:::-;32084:25;;32123:20;32141:1;32123:20;:::i;:::-;32118:25;;32162:1;32152:2;;32167:18;;:::i;:::-;32152:2;32209:1;32206;32202:9;32197:14;;32074:143;;;;:::o;32223:348::-;;32286:20;32304:1;32286:20;:::i;:::-;32281:25;;32320:20;32338:1;32320:20;:::i;:::-;32315:25;;32508:1;32440:66;32436:74;32433:1;32430:81;32425:1;32418:9;32411:17;32407:105;32404:2;;;32515:18;;:::i;:::-;32404:2;32563:1;32560;32556:9;32545:20;;32271:300;;;;:::o;32577:191::-;;32637:20;32655:1;32637:20;:::i;:::-;32632:25;;32671:20;32689:1;32671:20;:::i;:::-;32666:25;;32710:1;32707;32704:8;32701:2;;;32715:18;;:::i;:::-;32701:2;32760:1;32757;32753:9;32745:17;;32622:146;;;;:::o;32774:96::-;;32840:24;32858:5;32840:24;:::i;:::-;32829:35;;32819:51;;;:::o;32876:90::-;;32953:5;32946:13;32939:21;32928:32;;32918:48;;;:::o;32972:149::-;;33048:66;33041:5;33037:78;33026:89;;33016:105;;;:::o;33127:126::-;;33204:42;33197:5;33193:54;33182:65;;33172:81;;;:::o;33259:77::-;;33325:5;33314:16;;33304:32;;;:::o;33342:154::-;33426:6;33421:3;33416;33403:30;33488:1;33479:6;33474:3;33470:16;33463:27;33393:103;;;:::o;33502:307::-;33570:1;33580:113;33594:6;33591:1;33588:13;33580:113;;;33679:1;33674:3;33670:11;33664:18;33660:1;33655:3;33651:11;33644:39;33616:2;33613:1;33609:10;33604:15;;33580:113;;;33711:6;33708:1;33705:13;33702:2;;;33791:1;33782:6;33777:3;33773:16;33766:27;33702:2;33551:258;;;;:::o;33815:320::-;;33896:1;33890:4;33886:12;33876:22;;33943:1;33937:4;33933:12;33964:18;33954:2;;34020:4;34012:6;34008:17;33998:27;;33954:2;34082;34074:6;34071:14;34051:18;34048:38;34045:2;;;34101:18;;:::i;:::-;34045:2;33866:269;;;;:::o;34141:233::-;;34203:24;34221:5;34203:24;:::i;:::-;34194:33;;34249:66;34242:5;34239:77;34236:2;;;34319:18;;:::i;:::-;34236:2;34366:1;34359:5;34355:13;34348:20;;34184:190;;;:::o;34380:176::-;;34429:20;34447:1;34429:20;:::i;:::-;34424:25;;34463:20;34481:1;34463:20;:::i;:::-;34458:25;;34502:1;34492:2;;34507:18;;:::i;:::-;34492:2;34548:1;34545;34541:9;34536:14;;34414:142;;;;:::o;34562:180::-;34610:77;34607:1;34600:88;34707:4;34704:1;34697:15;34731:4;34728:1;34721:15;34748:180;34796:77;34793:1;34786:88;34893:4;34890:1;34883:15;34917:4;34914:1;34907:15;34934:180;34982:77;34979:1;34972:88;35079:4;35076:1;35069:15;35103:4;35100:1;35093:15;35120:180;35168:77;35165:1;35158:88;35265:4;35262:1;35255:15;35289:4;35286:1;35279:15;35306:102;;35398:2;35394:7;35389:2;35382:5;35378:14;35374:28;35364:38;;35354:54;;;:::o;35414:122::-;35487:24;35505:5;35487:24;:::i;:::-;35480:5;35477:35;35467:2;;35526:1;35523;35516:12;35467:2;35457:79;:::o;35542:116::-;35612:21;35627:5;35612:21;:::i;:::-;35605:5;35602:32;35592:2;;35648:1;35645;35638:12;35592:2;35582:76;:::o;35664:120::-;35736:23;35753:5;35736:23;:::i;:::-;35729:5;35726:34;35716:2;;35774:1;35771;35764:12;35716:2;35706:78;:::o;35790:122::-;35863:24;35881:5;35863:24;:::i;:::-;35856:5;35853:35;35843:2;;35902:1;35899;35892:12;35843:2;35833:79;:::o
Swarm Source
ipfs://a5ba24b2f1c17f049a2415de9eeb9da97f89943d0f4b36aef7b49245b290e147
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 ]
[ 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.