Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
113 IMMIGRANT
Holders
56
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 IMMIGRANTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ImmigrantNFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Creator: https://twitter.com/xisk1699 pragma solidity ^0.8.4; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import './ERC721A.sol'; contract ImmigrantNFT is Ownable, ERC721A, ReentrancyGuard { uint16 public immutable MAX_SUPPLY = 4000; uint16 public immutable MAX_SUPPLY_PRESALE = 700; address private immutable CEO_ADDRESS = 0x7432a6290a7b2c3e86fB7EfCc92FEb932Ab00237; string public baseTokenURI; struct SaleConfig { uint8 saleStage; // 0: PAUSED | 1: PRESALE | 2: PUBLIC SALE | 3: SOLDOUT uint64 presalePrice; uint64 publicSalePrice; uint8 maxMintAtOnce; } SaleConfig public saleConfig; constructor() ERC721A('The Immigrant', 'IMMIGRANT', 6, 4000) { saleConfig = SaleConfig(0, 0.015 ether, 0.025 ether, 6); baseTokenURI = "https://gateway.pinata.cloud/ipfs/QmQd2sedReXKFt3bzG136rcp8MxvyMs2vKcNyQtYBVe4eo/"; } // UPDATE SALECONFIG METHODS function setSaleStage(uint8 _saleStage) external onlyOwner { require(saleConfig.saleStage != 3, "Cannot update if already reached soldout stage."); saleConfig.saleStage = _saleStage; } // PRESALE MINT function presaleMint(uint8 _quantity) external payable nonReentrant { require(saleConfig.saleStage == 1, "Presale is not active."); require(_quantity <= saleConfig.maxMintAtOnce, "Max mint at onece exceeded."); require(totalSupply() + _quantity <= MAX_SUPPLY_PRESALE, "Mint would exceed max supply."); require(msg.value >= saleConfig.presalePrice * _quantity, "ETH value don't match."); _safeMint(msg.sender, _quantity); if (totalSupply() == MAX_SUPPLY_PRESALE) { saleConfig.saleStage = 0; } } // PUBLIC MINT function publicMint(uint8 _quantity) external payable nonReentrant { require(saleConfig.saleStage == 2, "Public sale is not active."); require(_quantity <= saleConfig.maxMintAtOnce, "Max mint at onece exceeded."); require(totalSupply() + _quantity <= MAX_SUPPLY, "Mint would exceed max supply."); require(msg.value >= saleConfig.publicSalePrice * _quantity, "ETH value don't match."); _safeMint(msg.sender, _quantity); if (totalSupply() == MAX_SUPPLY) { saleConfig.saleStage = 3; } } // METADATA URI function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseTokenUri(string calldata _baseTokenURI) external onlyOwner { baseTokenURI = _baseTokenURI; } function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexisting token"); string memory base = _baseURI(); return bytes(base).length > 0 ? string(abi.encodePacked(base, Strings.toString(tokenId), ".json")) : ""; } // WITHDRAW function withdraw() external onlyOwner { uint256 ethBalance = address(this).balance; payable(CEO_ADDRESS).transfer(ethBalance); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: 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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_PRESALE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint8","name":"_quantity","type":"uint8"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_quantity","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint8","name":"saleStage","type":"uint8"},{"internalType":"uint64","name":"presalePrice","type":"uint64"},{"internalType":"uint64","name":"publicSalePrice","type":"uint64"},{"internalType":"uint8","name":"maxMintAtOnce","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_saleStage","type":"uint8"}],"name":"setSaleStage","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61012060405260006001556000600855610fa061ffff1660c09061ffff1660f01b8152506102bc61ffff1660e09061ffff1660f01b815250737432a6290a7b2c3e86fb7efcc92feb932ab0023773ffffffffffffffffffffffffffffffffffffffff166101009073ffffffffffffffffffffffffffffffffffffffff1660601b8152503480156200008f57600080fd5b506040518060400160405280600d81526020017f54686520496d6d696772616e74000000000000000000000000000000000000008152506040518060400160405280600981526020017f494d4d494752414e5400000000000000000000000000000000000000000000008152506006610fa062000121620001156200032360201b60201c565b6200032b60201b60201c565b6000811162000167576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015e906200050f565b60405180910390fd5b60008211620001ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a490620004ed565b60405180910390fd5b8360029080519060200190620001c5929190620003ef565b508260039080519060200190620001de929190620003ef565b508160a0818152505080608081815250505050505060016009819055506040518060800160405280600060ff16815260200166354a6ba7a1800067ffffffffffffffff1681526020016658d15e1762800067ffffffffffffffff168152602001600660ff16815250600b60008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060408201518160000160096101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060608201518160000160116101000a81548160ff021916908360ff16021790555090505060405180608001604052806051815260200162004fe260519139600a90805190602001906200031c929190620003ef565b5062000645565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003fd9062000542565b90600052602060002090601f0160209004810192826200042157600085556200046d565b82601f106200043c57805160ff19168380011785556200046d565b828001600101855582156200046d579182015b828111156200046c5782518255916020019190600101906200044f565b5b5090506200047c919062000480565b5090565b5b808211156200049b57600081600090555060010162000481565b5090565b6000620004ae60278362000531565b9150620004bb82620005a7565b604082019050919050565b6000620004d5602e8362000531565b9150620004e282620005f6565b604082019050919050565b6000602082019050818103600083015262000508816200049f565b9050919050565b600060208201905081810360008301526200052a81620004c6565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200055b57607f821691505b6020821081141562000572576200057162000578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05160c05160f01c60e05160f01c6101005160601c614928620006ba6000396000610d1c01526000818161150a01528181611a480152611b45015260008181610c7701528181611081015261117e0152600081816122e0015281816123090152612a150152600050506149286000f3fe6080604052600436106101c25760003560e01c8063858e83b5116100f7578063b44c576711610095578063d7224ba011610064578063d7224ba014610636578063e985e9c514610661578063f2fde38b1461069e578063f617f920146106c7576101c2565b8063b44c57671461057c578063b88d4fde146105a5578063c87b56dd146105ce578063d547cfb71461060b576101c2565b806395652cfa116100d157806395652cfa146104d457806395d89b41146104fd578063a22cb46514610528578063abcae5d514610551576101c2565b8063858e83b51461045f5780638da5cb5b1461047b57806390aa0b0f146104a6576101c2565b806332cb6b0c116101645780634f6ccce71161013e5780634f6ccce7146103915780636352211e146103ce57806370a082311461040b578063715018a614610448576101c2565b806332cb6b0c146103265780633ccfd60b1461035157806342842e0e14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061320a565b6106e3565b6040516101fb919061385a565b60405180910390f35b34801561021057600080fd5b5061021961082d565b6040516102269190613875565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906132a1565b6108bf565b60405161026391906137f3565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906131ce565b610944565b005b3480156102a157600080fd5b506102aa610a5d565b6040516102b79190613c12565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906130c8565b610a67565b005b3480156102f557600080fd5b50610310600480360381019061030b91906131ce565b610a77565b60405161031d9190613c12565b60405180910390f35b34801561033257600080fd5b5061033b610c75565b6040516103489190613bf7565b60405180910390f35b34801561035d57600080fd5b50610366610c99565b005b34801561037457600080fd5b5061038f600480360381019061038a91906130c8565b610d84565b005b34801561039d57600080fd5b506103b860048036038101906103b391906132a1565b610da4565b6040516103c59190613c12565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906132a1565b610df7565b60405161040291906137f3565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190613063565b610e0d565b60405161043f9190613c12565b60405180910390f35b34801561045457600080fd5b5061045d610ef6565b005b610479600480360381019061047491906132ca565b610f7e565b005b34801561048757600080fd5b506104906111da565b60405161049d91906137f3565b60405180910390f35b3480156104b257600080fd5b506104bb611203565b6040516104cb9493929190613c2d565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f6919061325c565b611263565b005b34801561050957600080fd5b506105126112f5565b60405161051f9190613875565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613192565b611387565b005b34801561055d57600080fd5b50610566611508565b6040516105739190613bf7565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906132ca565b61152c565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613117565b611622565b005b3480156105da57600080fd5b506105f560048036038101906105f091906132a1565b61167e565b6040516106029190613875565b60405180910390f35b34801561061757600080fd5b50610620611725565b60405161062d9190613875565b60405180910390f35b34801561064257600080fd5b5061064b6117b3565b6040516106589190613c12565b60405180910390f35b34801561066d57600080fd5b506106886004803603810190610683919061308c565b6117b9565b604051610695919061385a565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190613063565b61184d565b005b6106e160048036038101906106dc91906132ca565b611945565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610826575061082582611ba1565b5b9050919050565b60606002805461083c90613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461086890613fad565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b60006108ca82611c0b565b610909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090090613bb7565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094f82610df7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613a97565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109df611c19565b73ffffffffffffffffffffffffffffffffffffffff161480610a0e5750610a0d81610a08611c19565b6117b9565b5b610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a44906139b7565b60405180910390fd5b610a58838383611c21565b505050565b6000600154905090565b610a72838383611cd3565b505050565b6000610a8283610e0d565b8210610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90613897565b60405180910390fd5b6000610acd610a5d565b905060008060005b83811015610c33576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bc757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1f5786841415610c10578195505050505050610c6f565b8380610c1b90614010565b9450505b508080610c2b90614010565b915050610ad5565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690613b57565b60405180910390fd5b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610ca1611c19565b73ffffffffffffffffffffffffffffffffffffffff16610cbf6111da565b73ffffffffffffffffffffffffffffffffffffffff1614610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613a37565b60405180910390fd5b60004790507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d80573d6000803e3d6000fd5b5050565b610d9f83838360405180602001604052806000815250611622565b505050565b6000610dae610a5d565b8210610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690613937565b60405180910390fd5b819050919050565b6000610e028261228c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e75906139d7565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610efe611c19565b73ffffffffffffffffffffffffffffffffffffffff16610f1c6111da565b73ffffffffffffffffffffffffffffffffffffffff1614610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990613a37565b60405180910390fd5b610f7c600061248f565b565b60026009541415610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90613b77565b60405180910390fd5b60026009819055506002600b60000160009054906101000a900460ff1660ff1614611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613917565b60405180910390fd5b600b60000160119054906101000a900460ff1660ff168160ff16111561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690613af7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000061ffff168160ff166110b0610a5d565b6110ba9190613d51565b11156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906138b7565b60405180910390fd5b8060ff16600b60000160099054906101000a900467ffffffffffffffff166111239190613dd8565b67ffffffffffffffff1634101561116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690613977565b60405180910390fd5b61117c338260ff16612553565b7f000000000000000000000000000000000000000000000000000000000000000061ffff166111a9610a5d565b14156111cf576003600b60000160006101000a81548160ff021916908360ff1602179055505b600160098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b8060000160009054906101000a900460ff16908060000160019054906101000a900467ffffffffffffffff16908060000160099054906101000a900467ffffffffffffffff16908060000160119054906101000a900460ff16905084565b61126b611c19565b73ffffffffffffffffffffffffffffffffffffffff166112896111da565b73ffffffffffffffffffffffffffffffffffffffff16146112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613a37565b60405180910390fd5b8181600a91906112f0929190612e56565b505050565b60606003805461130490613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461133090613fad565b801561137d5780601f106113525761010080835404028352916020019161137d565b820191906000526020600020905b81548152906001019060200180831161136057829003601f168201915b5050505050905090565b61138f611c19565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f490613a57565b60405180910390fd5b806007600061140a611c19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b7611c19565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fc919061385a565b60405180910390a35050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611534611c19565b73ffffffffffffffffffffffffffffffffffffffff166115526111da565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613a37565b60405180910390fd5b6003600b60000160009054906101000a900460ff1660ff161415611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f8906139f7565b60405180910390fd5b80600b60000160006101000a81548160ff021916908360ff16021790555050565b61162d848484611cd3565b61163984848484612571565b611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613ab7565b60405180910390fd5b50505050565b606061168982611c0b565b6116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613997565b60405180910390fd5b60006116d2612708565b905060008151116116f2576040518060200160405280600081525061171d565b806116fc8461279a565b60405160200161170d9291906137c4565b6040516020818303038152906040525b915050919050565b600a805461173290613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461175e90613fad565b80156117ab5780601f10611780576101008083540402835291602001916117ab565b820191906000526020600020905b81548152906001019060200180831161178e57829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611855611c19565b73ffffffffffffffffffffffffffffffffffffffff166118736111da565b73ffffffffffffffffffffffffffffffffffffffff16146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090613a37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906138d7565b60405180910390fd5b6119428161248f565b50565b6002600954141561198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613b77565b60405180910390fd5b60026009819055506001600b60000160009054906101000a900460ff1660ff16146119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613b37565b60405180910390fd5b600b60000160119054906101000a900460ff1660ff168160ff161115611a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3d90613af7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000061ffff168160ff16611a77610a5d565b611a819190613d51565b1115611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906138b7565b60405180910390fd5b8060ff16600b60000160019054906101000a900467ffffffffffffffff16611aea9190613dd8565b67ffffffffffffffff16341015611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d90613977565b60405180910390fd5b611b43338260ff16612553565b7f000000000000000000000000000000000000000000000000000000000000000061ffff16611b70610a5d565b1415611b96576000600b60000160006101000a81548160ff021916908360ff1602179055505b600160098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cde8261228c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d05611c19565b73ffffffffffffffffffffffffffffffffffffffff161480611d615750611d2a611c19565b73ffffffffffffffffffffffffffffffffffffffff16611d49846108bf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d7d5750611d7c8260000151611d77611c19565b6117b9565b5b905080611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690613a77565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2890613a17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613957565b60405180910390fd5b611eae8585856001612947565b611ebe6000848460000151611c21565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f2c9190613e1a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fd09190613d0b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120d69190613d51565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561221c5761214c81611c0b565b1561221b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612284868686600161294d565b505050505050565b612294612edc565b61229d82611c0b565b6122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d3906138f7565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106123405760017f0000000000000000000000000000000000000000000000000000000000000000846123339190613e4e565b61233d9190613d51565b90505b60008390505b81811061244e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461243a5780935050505061248a565b50808061244690613f83565b915050612346565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190613b97565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61256d828260405180602001604052806000815250612953565b5050565b60006125928473ffffffffffffffffffffffffffffffffffffffff16612e33565b156126fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125bb611c19565b8786866040518563ffffffff1660e01b81526004016125dd949392919061380e565b602060405180830381600087803b1580156125f757600080fd5b505af192505050801561262857506040513d601f19601f820116820180604052508101906126259190613233565b60015b6126ab573d8060008114612658576040519150601f19603f3d011682016040523d82523d6000602084013e61265d565b606091505b506000815114156126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a90613ab7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612700565b600190505b949350505050565b6060600a805461271790613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461274390613fad565b80156127905780601f1061276557610100808354040283529160200191612790565b820191906000526020600020905b81548152906001019060200180831161277357829003601f168201915b5050505050905090565b606060008214156127e2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612942565b600082905060005b600082146128145780806127fd90614010565b915050600a8261280d9190613da7565b91506127ea565b60008167ffffffffffffffff811115612856577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128885781602001600182028036833780820191505090505b5090505b6000851461293b576001826128a19190613e4e565b9150600a856128b09190614059565b60306128bc9190613d51565b60f81b8183815181106128f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129349190613da7565b945061288c565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190613b17565b60405180910390fd5b6129d381611c0b565b15612a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0a90613ad7565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6d90613bd7565b60405180910390fd5b612a836000858386612947565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b809190613d0b565b6fffffffffffffffffffffffffffffffff168152602001858360200151612ba79190613d0b565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612e1657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612db66000888488612571565b612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec90613ab7565b60405180910390fd5b8180612e0090614010565b9250508080612e0e90614010565b915050612d45565b5080600181905550612e2b600087858861294d565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612e6290613fad565b90600052602060002090601f016020900481019282612e845760008555612ecb565b82601f10612e9d57803560ff1916838001178555612ecb565b82800160010185558215612ecb579182015b82811115612eca578235825591602001919060010190612eaf565b5b509050612ed89190612f16565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f2f576000816000905550600101612f17565b5090565b6000612f46612f4184613c97565b613c72565b905082815260208101848484011115612f5e57600080fd5b612f69848285613f41565b509392505050565b600081359050612f808161487f565b92915050565b600081359050612f9581614896565b92915050565b600081359050612faa816148ad565b92915050565b600081519050612fbf816148ad565b92915050565b600082601f830112612fd657600080fd5b8135612fe6848260208601612f33565b91505092915050565b60008083601f84011261300157600080fd5b8235905067ffffffffffffffff81111561301a57600080fd5b60208301915083600182028301111561303257600080fd5b9250929050565b600081359050613048816148c4565b92915050565b60008135905061305d816148db565b92915050565b60006020828403121561307557600080fd5b600061308384828501612f71565b91505092915050565b6000806040838503121561309f57600080fd5b60006130ad85828601612f71565b92505060206130be85828601612f71565b9150509250929050565b6000806000606084860312156130dd57600080fd5b60006130eb86828701612f71565b93505060206130fc86828701612f71565b925050604061310d86828701613039565b9150509250925092565b6000806000806080858703121561312d57600080fd5b600061313b87828801612f71565b945050602061314c87828801612f71565b935050604061315d87828801613039565b925050606085013567ffffffffffffffff81111561317a57600080fd5b61318687828801612fc5565b91505092959194509250565b600080604083850312156131a557600080fd5b60006131b385828601612f71565b92505060206131c485828601612f86565b9150509250929050565b600080604083850312156131e157600080fd5b60006131ef85828601612f71565b925050602061320085828601613039565b9150509250929050565b60006020828403121561321c57600080fd5b600061322a84828501612f9b565b91505092915050565b60006020828403121561324557600080fd5b600061325384828501612fb0565b91505092915050565b6000806020838503121561326f57600080fd5b600083013567ffffffffffffffff81111561328957600080fd5b61329585828601612fef565b92509250509250929050565b6000602082840312156132b357600080fd5b60006132c184828501613039565b91505092915050565b6000602082840312156132dc57600080fd5b60006132ea8482850161304e565b91505092915050565b6132fc81613e82565b82525050565b61330b81613e94565b82525050565b600061331c82613cc8565b6133268185613cde565b9350613336818560208601613f50565b61333f81614146565b840191505092915050565b600061335582613cd3565b61335f8185613cef565b935061336f818560208601613f50565b61337881614146565b840191505092915050565b600061338e82613cd3565b6133988185613d00565b93506133a8818560208601613f50565b80840191505092915050565b60006133c1602283613cef565b91506133cc82614157565b604082019050919050565b60006133e4601d83613cef565b91506133ef826141a6565b602082019050919050565b6000613407602683613cef565b9150613412826141cf565b604082019050919050565b600061342a602a83613cef565b91506134358261421e565b604082019050919050565b600061344d601a83613cef565b91506134588261426d565b602082019050919050565b6000613470602383613cef565b915061347b82614296565b604082019050919050565b6000613493602583613cef565b915061349e826142e5565b604082019050919050565b60006134b6601683613cef565b91506134c182614334565b602082019050919050565b60006134d9602f83613cef565b91506134e48261435d565b604082019050919050565b60006134fc603983613cef565b9150613507826143ac565b604082019050919050565b600061351f602b83613cef565b915061352a826143fb565b604082019050919050565b6000613542602f83613cef565b915061354d8261444a565b604082019050919050565b6000613565602683613cef565b915061357082614499565b604082019050919050565b6000613588600583613d00565b9150613593826144e8565b600582019050919050565b60006135ab602083613cef565b91506135b682614511565b602082019050919050565b60006135ce601a83613cef565b91506135d98261453a565b602082019050919050565b60006135f1603283613cef565b91506135fc82614563565b604082019050919050565b6000613614602283613cef565b915061361f826145b2565b604082019050919050565b6000613637603383613cef565b915061364282614601565b604082019050919050565b600061365a601d83613cef565b915061366582614650565b602082019050919050565b600061367d601b83613cef565b915061368882614679565b602082019050919050565b60006136a0602183613cef565b91506136ab826146a2565b604082019050919050565b60006136c3601683613cef565b91506136ce826146f1565b602082019050919050565b60006136e6602e83613cef565b91506136f18261471a565b604082019050919050565b6000613709601f83613cef565b915061371482614769565b602082019050919050565b600061372c602f83613cef565b915061373782614792565b604082019050919050565b600061374f602d83613cef565b915061375a826147e1565b604082019050919050565b6000613772602283613cef565b915061377d82614830565b604082019050919050565b61379181613ee8565b82525050565b6137a081613f16565b82525050565b6137af81613f20565b82525050565b6137be81613f34565b82525050565b60006137d08285613383565b91506137dc8284613383565b91506137e78261357b565b91508190509392505050565b600060208201905061380860008301846132f3565b92915050565b600060808201905061382360008301876132f3565b61383060208301866132f3565b61383d6040830185613797565b818103606083015261384f8184613311565b905095945050505050565b600060208201905061386f6000830184613302565b92915050565b6000602082019050818103600083015261388f818461334a565b905092915050565b600060208201905081810360008301526138b0816133b4565b9050919050565b600060208201905081810360008301526138d0816133d7565b9050919050565b600060208201905081810360008301526138f0816133fa565b9050919050565b600060208201905081810360008301526139108161341d565b9050919050565b6000602082019050818103600083015261393081613440565b9050919050565b6000602082019050818103600083015261395081613463565b9050919050565b6000602082019050818103600083015261397081613486565b9050919050565b60006020820190508181036000830152613990816134a9565b9050919050565b600060208201905081810360008301526139b0816134cc565b9050919050565b600060208201905081810360008301526139d0816134ef565b9050919050565b600060208201905081810360008301526139f081613512565b9050919050565b60006020820190508181036000830152613a1081613535565b9050919050565b60006020820190508181036000830152613a3081613558565b9050919050565b60006020820190508181036000830152613a508161359e565b9050919050565b60006020820190508181036000830152613a70816135c1565b9050919050565b60006020820190508181036000830152613a90816135e4565b9050919050565b60006020820190508181036000830152613ab081613607565b9050919050565b60006020820190508181036000830152613ad08161362a565b9050919050565b60006020820190508181036000830152613af08161364d565b9050919050565b60006020820190508181036000830152613b1081613670565b9050919050565b60006020820190508181036000830152613b3081613693565b9050919050565b60006020820190508181036000830152613b50816136b6565b9050919050565b60006020820190508181036000830152613b70816136d9565b9050919050565b60006020820190508181036000830152613b90816136fc565b9050919050565b60006020820190508181036000830152613bb08161371f565b9050919050565b60006020820190508181036000830152613bd081613742565b9050919050565b60006020820190508181036000830152613bf081613765565b9050919050565b6000602082019050613c0c6000830184613788565b92915050565b6000602082019050613c276000830184613797565b92915050565b6000608082019050613c4260008301876137b5565b613c4f60208301866137a6565b613c5c60408301856137a6565b613c6960608301846137b5565b95945050505050565b6000613c7c613c8d565b9050613c888282613fdf565b919050565b6000604051905090565b600067ffffffffffffffff821115613cb257613cb1614117565b5b613cbb82614146565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d1682613ecc565b9150613d2183613ecc565b9250826fffffffffffffffffffffffffffffffff03821115613d4657613d4561408a565b5b828201905092915050565b6000613d5c82613f16565b9150613d6783613f16565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d9c57613d9b61408a565b5b828201905092915050565b6000613db282613f16565b9150613dbd83613f16565b925082613dcd57613dcc6140b9565b5b828204905092915050565b6000613de382613f20565b9150613dee83613f20565b92508167ffffffffffffffff0483118215151615613e0f57613e0e61408a565b5b828202905092915050565b6000613e2582613ecc565b9150613e3083613ecc565b925082821015613e4357613e4261408a565b5b828203905092915050565b6000613e5982613f16565b9150613e6483613f16565b925082821015613e7757613e7661408a565b5b828203905092915050565b6000613e8d82613ef6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613f6e578082015181840152602081019050613f53565b83811115613f7d576000848401525b50505050565b6000613f8e82613f16565b91506000821415613fa257613fa161408a565b5b600182039050919050565b60006002820490506001821680613fc557607f821691505b60208210811415613fd957613fd86140e8565b5b50919050565b613fe882614146565b810181811067ffffffffffffffff8211171561400757614006614117565b5b80604052505050565b600061401b82613f16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561404e5761404d61408a565b5b600182019050919050565b600061406482613f16565b915061406f83613f16565b92508261407f5761407e6140b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420776f756c6420657863656564206d617820737570706c792e000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206163746976652e000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4554482076616c756520646f6e2774206d617463682e00000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374696e6720746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742075706461746520696620616c7265616479207265616368656460008201527f20736f6c646f75742073746167652e0000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f4d6178206d696e74206174206f6e6563652065786365656465642e0000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976652e00000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61488881613e82565b811461489357600080fd5b50565b61489f81613e94565b81146148aa57600080fd5b50565b6148b681613ea0565b81146148c157600080fd5b50565b6148cd81613f16565b81146148d857600080fd5b50565b6148e481613f34565b81146148ef57600080fd5b5056fea264697066735822122033ad29ca86b32c35e6e78ceb67a87f10bf34109cea2838c33d56e4c8e5da7af664736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5164327365645265584b467433627a47313336726370384d7876794d7332764b634e7951745942566534656f2f
Deployed Bytecode
0x6080604052600436106101c25760003560e01c8063858e83b5116100f7578063b44c576711610095578063d7224ba011610064578063d7224ba014610636578063e985e9c514610661578063f2fde38b1461069e578063f617f920146106c7576101c2565b8063b44c57671461057c578063b88d4fde146105a5578063c87b56dd146105ce578063d547cfb71461060b576101c2565b806395652cfa116100d157806395652cfa146104d457806395d89b41146104fd578063a22cb46514610528578063abcae5d514610551576101c2565b8063858e83b51461045f5780638da5cb5b1461047b57806390aa0b0f146104a6576101c2565b806332cb6b0c116101645780634f6ccce71161013e5780634f6ccce7146103915780636352211e146103ce57806370a082311461040b578063715018a614610448576101c2565b806332cb6b0c146103265780633ccfd60b1461035157806342842e0e14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061320a565b6106e3565b6040516101fb919061385a565b60405180910390f35b34801561021057600080fd5b5061021961082d565b6040516102269190613875565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906132a1565b6108bf565b60405161026391906137f3565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906131ce565b610944565b005b3480156102a157600080fd5b506102aa610a5d565b6040516102b79190613c12565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906130c8565b610a67565b005b3480156102f557600080fd5b50610310600480360381019061030b91906131ce565b610a77565b60405161031d9190613c12565b60405180910390f35b34801561033257600080fd5b5061033b610c75565b6040516103489190613bf7565b60405180910390f35b34801561035d57600080fd5b50610366610c99565b005b34801561037457600080fd5b5061038f600480360381019061038a91906130c8565b610d84565b005b34801561039d57600080fd5b506103b860048036038101906103b391906132a1565b610da4565b6040516103c59190613c12565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906132a1565b610df7565b60405161040291906137f3565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190613063565b610e0d565b60405161043f9190613c12565b60405180910390f35b34801561045457600080fd5b5061045d610ef6565b005b610479600480360381019061047491906132ca565b610f7e565b005b34801561048757600080fd5b506104906111da565b60405161049d91906137f3565b60405180910390f35b3480156104b257600080fd5b506104bb611203565b6040516104cb9493929190613c2d565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f6919061325c565b611263565b005b34801561050957600080fd5b506105126112f5565b60405161051f9190613875565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613192565b611387565b005b34801561055d57600080fd5b50610566611508565b6040516105739190613bf7565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906132ca565b61152c565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613117565b611622565b005b3480156105da57600080fd5b506105f560048036038101906105f091906132a1565b61167e565b6040516106029190613875565b60405180910390f35b34801561061757600080fd5b50610620611725565b60405161062d9190613875565b60405180910390f35b34801561064257600080fd5b5061064b6117b3565b6040516106589190613c12565b60405180910390f35b34801561066d57600080fd5b506106886004803603810190610683919061308c565b6117b9565b604051610695919061385a565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190613063565b61184d565b005b6106e160048036038101906106dc91906132ca565b611945565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610826575061082582611ba1565b5b9050919050565b60606002805461083c90613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461086890613fad565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b60006108ca82611c0b565b610909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090090613bb7565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094f82610df7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613a97565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109df611c19565b73ffffffffffffffffffffffffffffffffffffffff161480610a0e5750610a0d81610a08611c19565b6117b9565b5b610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a44906139b7565b60405180910390fd5b610a58838383611c21565b505050565b6000600154905090565b610a72838383611cd3565b505050565b6000610a8283610e0d565b8210610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90613897565b60405180910390fd5b6000610acd610a5d565b905060008060005b83811015610c33576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bc757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1f5786841415610c10578195505050505050610c6f565b8380610c1b90614010565b9450505b508080610c2b90614010565b915050610ad5565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690613b57565b60405180910390fd5b92915050565b7f0000000000000000000000000000000000000000000000000000000000000fa081565b610ca1611c19565b73ffffffffffffffffffffffffffffffffffffffff16610cbf6111da565b73ffffffffffffffffffffffffffffffffffffffff1614610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613a37565b60405180910390fd5b60004790507f0000000000000000000000007432a6290a7b2c3e86fb7efcc92feb932ab0023773ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d80573d6000803e3d6000fd5b5050565b610d9f83838360405180602001604052806000815250611622565b505050565b6000610dae610a5d565b8210610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690613937565b60405180910390fd5b819050919050565b6000610e028261228c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e75906139d7565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610efe611c19565b73ffffffffffffffffffffffffffffffffffffffff16610f1c6111da565b73ffffffffffffffffffffffffffffffffffffffff1614610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990613a37565b60405180910390fd5b610f7c600061248f565b565b60026009541415610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90613b77565b60405180910390fd5b60026009819055506002600b60000160009054906101000a900460ff1660ff1614611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613917565b60405180910390fd5b600b60000160119054906101000a900460ff1660ff168160ff16111561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690613af7565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000fa061ffff168160ff166110b0610a5d565b6110ba9190613d51565b11156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906138b7565b60405180910390fd5b8060ff16600b60000160099054906101000a900467ffffffffffffffff166111239190613dd8565b67ffffffffffffffff1634101561116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690613977565b60405180910390fd5b61117c338260ff16612553565b7f0000000000000000000000000000000000000000000000000000000000000fa061ffff166111a9610a5d565b14156111cf576003600b60000160006101000a81548160ff021916908360ff1602179055505b600160098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b8060000160009054906101000a900460ff16908060000160019054906101000a900467ffffffffffffffff16908060000160099054906101000a900467ffffffffffffffff16908060000160119054906101000a900460ff16905084565b61126b611c19565b73ffffffffffffffffffffffffffffffffffffffff166112896111da565b73ffffffffffffffffffffffffffffffffffffffff16146112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613a37565b60405180910390fd5b8181600a91906112f0929190612e56565b505050565b60606003805461130490613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461133090613fad565b801561137d5780601f106113525761010080835404028352916020019161137d565b820191906000526020600020905b81548152906001019060200180831161136057829003601f168201915b5050505050905090565b61138f611c19565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f490613a57565b60405180910390fd5b806007600061140a611c19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b7611c19565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fc919061385a565b60405180910390a35050565b7f00000000000000000000000000000000000000000000000000000000000002bc81565b611534611c19565b73ffffffffffffffffffffffffffffffffffffffff166115526111da565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90613a37565b60405180910390fd5b6003600b60000160009054906101000a900460ff1660ff161415611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f8906139f7565b60405180910390fd5b80600b60000160006101000a81548160ff021916908360ff16021790555050565b61162d848484611cd3565b61163984848484612571565b611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613ab7565b60405180910390fd5b50505050565b606061168982611c0b565b6116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613997565b60405180910390fd5b60006116d2612708565b905060008151116116f2576040518060200160405280600081525061171d565b806116fc8461279a565b60405160200161170d9291906137c4565b6040516020818303038152906040525b915050919050565b600a805461173290613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461175e90613fad565b80156117ab5780601f10611780576101008083540402835291602001916117ab565b820191906000526020600020905b81548152906001019060200180831161178e57829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611855611c19565b73ffffffffffffffffffffffffffffffffffffffff166118736111da565b73ffffffffffffffffffffffffffffffffffffffff16146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090613a37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906138d7565b60405180910390fd5b6119428161248f565b50565b6002600954141561198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613b77565b60405180910390fd5b60026009819055506001600b60000160009054906101000a900460ff1660ff16146119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613b37565b60405180910390fd5b600b60000160119054906101000a900460ff1660ff168160ff161115611a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3d90613af7565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000002bc61ffff168160ff16611a77610a5d565b611a819190613d51565b1115611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906138b7565b60405180910390fd5b8060ff16600b60000160019054906101000a900467ffffffffffffffff16611aea9190613dd8565b67ffffffffffffffff16341015611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d90613977565b60405180910390fd5b611b43338260ff16612553565b7f00000000000000000000000000000000000000000000000000000000000002bc61ffff16611b70610a5d565b1415611b96576000600b60000160006101000a81548160ff021916908360ff1602179055505b600160098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cde8261228c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d05611c19565b73ffffffffffffffffffffffffffffffffffffffff161480611d615750611d2a611c19565b73ffffffffffffffffffffffffffffffffffffffff16611d49846108bf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d7d5750611d7c8260000151611d77611c19565b6117b9565b5b905080611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690613a77565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2890613a17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613957565b60405180910390fd5b611eae8585856001612947565b611ebe6000848460000151611c21565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f2c9190613e1a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fd09190613d0b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120d69190613d51565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561221c5761214c81611c0b565b1561221b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612284868686600161294d565b505050505050565b612294612edc565b61229d82611c0b565b6122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d3906138f7565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000683106123405760017f0000000000000000000000000000000000000000000000000000000000000006846123339190613e4e565b61233d9190613d51565b90505b60008390505b81811061244e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461243a5780935050505061248a565b50808061244690613f83565b915050612346565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190613b97565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61256d828260405180602001604052806000815250612953565b5050565b60006125928473ffffffffffffffffffffffffffffffffffffffff16612e33565b156126fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125bb611c19565b8786866040518563ffffffff1660e01b81526004016125dd949392919061380e565b602060405180830381600087803b1580156125f757600080fd5b505af192505050801561262857506040513d601f19601f820116820180604052508101906126259190613233565b60015b6126ab573d8060008114612658576040519150601f19603f3d011682016040523d82523d6000602084013e61265d565b606091505b506000815114156126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a90613ab7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612700565b600190505b949350505050565b6060600a805461271790613fad565b80601f016020809104026020016040519081016040528092919081815260200182805461274390613fad565b80156127905780601f1061276557610100808354040283529160200191612790565b820191906000526020600020905b81548152906001019060200180831161277357829003601f168201915b5050505050905090565b606060008214156127e2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612942565b600082905060005b600082146128145780806127fd90614010565b915050600a8261280d9190613da7565b91506127ea565b60008167ffffffffffffffff811115612856577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128885781602001600182028036833780820191505090505b5090505b6000851461293b576001826128a19190613e4e565b9150600a856128b09190614059565b60306128bc9190613d51565b60f81b8183815181106128f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129349190613da7565b945061288c565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190613b17565b60405180910390fd5b6129d381611c0b565b15612a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0a90613ad7565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000006831115612a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6d90613bd7565b60405180910390fd5b612a836000858386612947565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b809190613d0b565b6fffffffffffffffffffffffffffffffff168152602001858360200151612ba79190613d0b565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612e1657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612db66000888488612571565b612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec90613ab7565b60405180910390fd5b8180612e0090614010565b9250508080612e0e90614010565b915050612d45565b5080600181905550612e2b600087858861294d565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612e6290613fad565b90600052602060002090601f016020900481019282612e845760008555612ecb565b82601f10612e9d57803560ff1916838001178555612ecb565b82800160010185558215612ecb579182015b82811115612eca578235825591602001919060010190612eaf565b5b509050612ed89190612f16565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f2f576000816000905550600101612f17565b5090565b6000612f46612f4184613c97565b613c72565b905082815260208101848484011115612f5e57600080fd5b612f69848285613f41565b509392505050565b600081359050612f808161487f565b92915050565b600081359050612f9581614896565b92915050565b600081359050612faa816148ad565b92915050565b600081519050612fbf816148ad565b92915050565b600082601f830112612fd657600080fd5b8135612fe6848260208601612f33565b91505092915050565b60008083601f84011261300157600080fd5b8235905067ffffffffffffffff81111561301a57600080fd5b60208301915083600182028301111561303257600080fd5b9250929050565b600081359050613048816148c4565b92915050565b60008135905061305d816148db565b92915050565b60006020828403121561307557600080fd5b600061308384828501612f71565b91505092915050565b6000806040838503121561309f57600080fd5b60006130ad85828601612f71565b92505060206130be85828601612f71565b9150509250929050565b6000806000606084860312156130dd57600080fd5b60006130eb86828701612f71565b93505060206130fc86828701612f71565b925050604061310d86828701613039565b9150509250925092565b6000806000806080858703121561312d57600080fd5b600061313b87828801612f71565b945050602061314c87828801612f71565b935050604061315d87828801613039565b925050606085013567ffffffffffffffff81111561317a57600080fd5b61318687828801612fc5565b91505092959194509250565b600080604083850312156131a557600080fd5b60006131b385828601612f71565b92505060206131c485828601612f86565b9150509250929050565b600080604083850312156131e157600080fd5b60006131ef85828601612f71565b925050602061320085828601613039565b9150509250929050565b60006020828403121561321c57600080fd5b600061322a84828501612f9b565b91505092915050565b60006020828403121561324557600080fd5b600061325384828501612fb0565b91505092915050565b6000806020838503121561326f57600080fd5b600083013567ffffffffffffffff81111561328957600080fd5b61329585828601612fef565b92509250509250929050565b6000602082840312156132b357600080fd5b60006132c184828501613039565b91505092915050565b6000602082840312156132dc57600080fd5b60006132ea8482850161304e565b91505092915050565b6132fc81613e82565b82525050565b61330b81613e94565b82525050565b600061331c82613cc8565b6133268185613cde565b9350613336818560208601613f50565b61333f81614146565b840191505092915050565b600061335582613cd3565b61335f8185613cef565b935061336f818560208601613f50565b61337881614146565b840191505092915050565b600061338e82613cd3565b6133988185613d00565b93506133a8818560208601613f50565b80840191505092915050565b60006133c1602283613cef565b91506133cc82614157565b604082019050919050565b60006133e4601d83613cef565b91506133ef826141a6565b602082019050919050565b6000613407602683613cef565b9150613412826141cf565b604082019050919050565b600061342a602a83613cef565b91506134358261421e565b604082019050919050565b600061344d601a83613cef565b91506134588261426d565b602082019050919050565b6000613470602383613cef565b915061347b82614296565b604082019050919050565b6000613493602583613cef565b915061349e826142e5565b604082019050919050565b60006134b6601683613cef565b91506134c182614334565b602082019050919050565b60006134d9602f83613cef565b91506134e48261435d565b604082019050919050565b60006134fc603983613cef565b9150613507826143ac565b604082019050919050565b600061351f602b83613cef565b915061352a826143fb565b604082019050919050565b6000613542602f83613cef565b915061354d8261444a565b604082019050919050565b6000613565602683613cef565b915061357082614499565b604082019050919050565b6000613588600583613d00565b9150613593826144e8565b600582019050919050565b60006135ab602083613cef565b91506135b682614511565b602082019050919050565b60006135ce601a83613cef565b91506135d98261453a565b602082019050919050565b60006135f1603283613cef565b91506135fc82614563565b604082019050919050565b6000613614602283613cef565b915061361f826145b2565b604082019050919050565b6000613637603383613cef565b915061364282614601565b604082019050919050565b600061365a601d83613cef565b915061366582614650565b602082019050919050565b600061367d601b83613cef565b915061368882614679565b602082019050919050565b60006136a0602183613cef565b91506136ab826146a2565b604082019050919050565b60006136c3601683613cef565b91506136ce826146f1565b602082019050919050565b60006136e6602e83613cef565b91506136f18261471a565b604082019050919050565b6000613709601f83613cef565b915061371482614769565b602082019050919050565b600061372c602f83613cef565b915061373782614792565b604082019050919050565b600061374f602d83613cef565b915061375a826147e1565b604082019050919050565b6000613772602283613cef565b915061377d82614830565b604082019050919050565b61379181613ee8565b82525050565b6137a081613f16565b82525050565b6137af81613f20565b82525050565b6137be81613f34565b82525050565b60006137d08285613383565b91506137dc8284613383565b91506137e78261357b565b91508190509392505050565b600060208201905061380860008301846132f3565b92915050565b600060808201905061382360008301876132f3565b61383060208301866132f3565b61383d6040830185613797565b818103606083015261384f8184613311565b905095945050505050565b600060208201905061386f6000830184613302565b92915050565b6000602082019050818103600083015261388f818461334a565b905092915050565b600060208201905081810360008301526138b0816133b4565b9050919050565b600060208201905081810360008301526138d0816133d7565b9050919050565b600060208201905081810360008301526138f0816133fa565b9050919050565b600060208201905081810360008301526139108161341d565b9050919050565b6000602082019050818103600083015261393081613440565b9050919050565b6000602082019050818103600083015261395081613463565b9050919050565b6000602082019050818103600083015261397081613486565b9050919050565b60006020820190508181036000830152613990816134a9565b9050919050565b600060208201905081810360008301526139b0816134cc565b9050919050565b600060208201905081810360008301526139d0816134ef565b9050919050565b600060208201905081810360008301526139f081613512565b9050919050565b60006020820190508181036000830152613a1081613535565b9050919050565b60006020820190508181036000830152613a3081613558565b9050919050565b60006020820190508181036000830152613a508161359e565b9050919050565b60006020820190508181036000830152613a70816135c1565b9050919050565b60006020820190508181036000830152613a90816135e4565b9050919050565b60006020820190508181036000830152613ab081613607565b9050919050565b60006020820190508181036000830152613ad08161362a565b9050919050565b60006020820190508181036000830152613af08161364d565b9050919050565b60006020820190508181036000830152613b1081613670565b9050919050565b60006020820190508181036000830152613b3081613693565b9050919050565b60006020820190508181036000830152613b50816136b6565b9050919050565b60006020820190508181036000830152613b70816136d9565b9050919050565b60006020820190508181036000830152613b90816136fc565b9050919050565b60006020820190508181036000830152613bb08161371f565b9050919050565b60006020820190508181036000830152613bd081613742565b9050919050565b60006020820190508181036000830152613bf081613765565b9050919050565b6000602082019050613c0c6000830184613788565b92915050565b6000602082019050613c276000830184613797565b92915050565b6000608082019050613c4260008301876137b5565b613c4f60208301866137a6565b613c5c60408301856137a6565b613c6960608301846137b5565b95945050505050565b6000613c7c613c8d565b9050613c888282613fdf565b919050565b6000604051905090565b600067ffffffffffffffff821115613cb257613cb1614117565b5b613cbb82614146565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d1682613ecc565b9150613d2183613ecc565b9250826fffffffffffffffffffffffffffffffff03821115613d4657613d4561408a565b5b828201905092915050565b6000613d5c82613f16565b9150613d6783613f16565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d9c57613d9b61408a565b5b828201905092915050565b6000613db282613f16565b9150613dbd83613f16565b925082613dcd57613dcc6140b9565b5b828204905092915050565b6000613de382613f20565b9150613dee83613f20565b92508167ffffffffffffffff0483118215151615613e0f57613e0e61408a565b5b828202905092915050565b6000613e2582613ecc565b9150613e3083613ecc565b925082821015613e4357613e4261408a565b5b828203905092915050565b6000613e5982613f16565b9150613e6483613f16565b925082821015613e7757613e7661408a565b5b828203905092915050565b6000613e8d82613ef6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613f6e578082015181840152602081019050613f53565b83811115613f7d576000848401525b50505050565b6000613f8e82613f16565b91506000821415613fa257613fa161408a565b5b600182039050919050565b60006002820490506001821680613fc557607f821691505b60208210811415613fd957613fd86140e8565b5b50919050565b613fe882614146565b810181811067ffffffffffffffff8211171561400757614006614117565b5b80604052505050565b600061401b82613f16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561404e5761404d61408a565b5b600182019050919050565b600061406482613f16565b915061406f83613f16565b92508261407f5761407e6140b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420776f756c6420657863656564206d617820737570706c792e000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206163746976652e000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4554482076616c756520646f6e2774206d617463682e00000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374696e6720746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742075706461746520696620616c7265616479207265616368656460008201527f20736f6c646f75742073746167652e0000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f4d6178206d696e74206174206f6e6563652065786365656465642e0000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976652e00000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61488881613e82565b811461489357600080fd5b50565b61489f81613e94565b81146148aa57600080fd5b50565b6148b681613ea0565b81146148c157600080fd5b50565b6148cd81613f16565b81146148d857600080fd5b50565b6148e481613f34565b81146148ef57600080fd5b5056fea264697066735822122033ad29ca86b32c35e6e78ceb67a87f10bf34109cea2838c33d56e4c8e5da7af664736f6c63430008040033
Deployed Bytecode Sourcemap
302:3048:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8352:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;370:41:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3195:152;;;;;;;;;;;;;:::i;:::-;;8557:157:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2975:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5800:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;1976:566:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;806:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;2698:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6132:98:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7770:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;418:48:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1131:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8777:311:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2828:340:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;562:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8107:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1369:576:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4251:370:11;4378:4;4423:25;4408:40;;;:11;:40;;;;:99;;;;4474:33;4459:48;;;:11;:48;;;;4408:99;:160;;;;4533:35;4518:50;;;:11;:50;;;;4408:160;:207;;;;4579:36;4603:11;4579:23;:36::i;:::-;4408:207;4394:221;;4251:370;;;:::o;5977:94::-;6031:13;6060:5;6053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5977:94;:::o;7502:204::-;7570:7;7594:16;7602:7;7594;:16::i;:::-;7586:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:15;:24;7692:7;7676:24;;;;;;;;;;;;;;;;;;;;;7669:31;;7502:204;;;:::o;7065:379::-;7134:13;7150:24;7166:7;7150:15;:24::i;:::-;7134:40;;7195:5;7189:11;;:2;:11;;;;7181:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7280:5;7264:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7289:37;7306:5;7313:12;:10;:12::i;:::-;7289:16;:37::i;:::-;7264:62;7248:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7410:28;7419:2;7423:7;7432:5;7410:8;:28::i;:::-;7065:379;;;:::o;2812:94::-;2865:7;2888:12;;2881:19;;2812:94;:::o;8352:142::-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;3443:744::-;3552:7;3587:16;3597:5;3587:9;:16::i;:::-;3579:5;:24;3571:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3649:22;3674:13;:11;:13::i;:::-;3649:38;;3694:19;3724:25;3774:9;3769:350;3793:14;3789:1;:18;3769:350;;;3823:31;3857:11;:14;3869:1;3857:14;;;;;;;;;;;3823:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3910:1;3884:28;;:9;:14;;;:28;;;3880:89;;3945:9;:14;;;3925:34;;3880:89;4002:5;3981:26;;:17;:26;;;3977:135;;;4039:5;4024:11;:20;4020:59;;;4066:1;4059:8;;;;;;;;;4020:59;4089:13;;;;;:::i;:::-;;;;3977:135;3769:350;3809:3;;;;;:::i;:::-;;;;3769:350;;;;4125:56;;;;;;;;;;:::i;:::-;;;;;;;;3443:744;;;;;:::o;370:41:12:-;;;:::o;3195:152::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3245:18:12::1;3266:21;3245:42;;3306:11;3298:29;;:41;3328:10;3298:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1318:1:0;3195:152:12:o:0;8557:157:11:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;2975:177::-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;5800:118::-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;4677:211::-;4741:7;4782:1;4765:19;;:5;:19;;;;4757:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4854:12;:19;4867:5;4854:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4846:36;;4839:43;;4677:211;;;:::o;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1976:566:12:-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;2086:1:12::1;2062:10;:20;;;;;;;;;;;;:25;;;2054:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2150:10;:24;;;;;;;;;;;;2137:37;;:9;:37;;;;2129:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2254:10;2225:39;;2241:9;2225:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;2217:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;2359:9;2330:38;;:10;:26;;;;;;;;;;;;:38;;;;:::i;:::-;2317:51;;:9;:51;;2309:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;2408:32;2418:10;2430:9;2408:32;;:9;:32::i;:::-;2472:10;2455:27;;:13;:11;:13::i;:::-;:27;2451:84;;;2522:1;2499:10;:20;;;:24;;;;;;;;;;;;;;;;;;2451:84;1701:1:1::0;2628:7;:22;;;;1976:566:12;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;806:28:12:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2698:122::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2799:13:12::1;;2784:12;:28;;;;;;;:::i;:::-;;2698:122:::0;;:::o;6132:98:11:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;7770:274::-;7873:12;:10;:12::i;:::-;7861:24;;:8;:24;;;;7853:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7970:8;7925:18;:32;7944:12;:10;:12::i;:::-;7925:32;;;;;;;;;;;;;;;:42;7958:8;7925:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;8019:8;7990:48;;8005:12;:10;:12::i;:::-;7990:48;;;8029:8;7990:48;;;;;;:::i;:::-;;;;;;;;7770:274;;:::o;418:48:12:-;;;:::o;1131:207::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1233:1:12::1;1209:10;:20;;;;;;;;;;;;:25;;;;1201:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;1320:10;1297;:20;;;:33;;;;;;;;;;;;;;;;;;1131:207:::0;:::o;8777:311:11:-;8914:28;8924:4;8930:2;8934:7;8914:9;:28::i;:::-;8965:48;8988:4;8994:2;8998:7;9007:5;8965:22;:48::i;:::-;8949:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;8777:311;;;;:::o;2828:340:12:-;2902:13;2936:16;2944:7;2936;:16::i;:::-;2928:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;3015:18;3036:10;:8;:10::i;:::-;3015:31;;3085:1;3070:4;3064:18;:22;:96;;;;;;;;;;;;;;;;;3113:4;3119:25;3136:7;3119:16;:25::i;:::-;3096:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3064:96;3057:103;;;2828:340;;;:::o;562:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13192:43:11:-;;;;:::o;8107:186::-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;1369:576:12:-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;1480:1:12::1;1456:10;:20;;;;;;;;;;;;:25;;;1448:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1540:10;:24;;;;;;;;;;;;1527:37;;:9;:37;;;;1519:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;1644:18;1615:47;;1631:9;1615:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:47;;1607:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;1754:9;1728:35;;:10;:23;;;;;;;;;;;;:35;;;;:::i;:::-;1715:48;;:9;:48;;1707:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;1803:32;1813:10;1825:9;1803:32;;:9;:32::i;:::-;1867:18;1850:35;;:13;:11;:13::i;:::-;:35;1846:92;;;1925:1;1902:10;:20;;;:24;;;;;;;;;;;;;;;;;;1846:92;1701:1:1::0;2628:7;:22;;;;1369:576:12;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:11:-;9384:4;9414:12;;9404:7;:22;9397:29;;9327:105;;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;13014:172:11:-;13138:2;13111:15;:24;13127:7;13111:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13172:7;13168:2;13152:28;;13161:5;13152:28;;;;;;;;;;;;13014:172;;;:::o;11379:1529::-;11476:35;11514:20;11526:7;11514:11;:20::i;:::-;11476:58;;11543:22;11585:13;:18;;;11569:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11638:12;:10;:12::i;:::-;11614:36;;:20;11626:7;11614:11;:20::i;:::-;:36;;;11569:81;:142;;;;11661:50;11678:13;:18;;;11698:12;:10;:12::i;:::-;11661:16;:50::i;:::-;11569:142;11543:169;;11737:17;11721:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11869:4;11847:26;;:13;:18;;;:26;;;11831:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11958:1;11944:16;;:2;:16;;;;11936:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;12011:43;12033:4;12039:2;12043:7;12052:1;12011:21;:43::i;:::-;12111:49;12128:1;12132:7;12141:13;:18;;;12111:8;:49::i;:::-;12199:1;12169:12;:18;12182:4;12169:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12235:1;12207:12;:16;12220:2;12207:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12266:43;;;;;;;;12281:2;12266:43;;;;;;12292:15;12266:43;;;;;12243:11;:20;12255:7;12243:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537:19;12569:1;12559:7;:11;;;;:::i;:::-;12537:33;;12622:1;12581:43;;:11;:24;12593:11;12581:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12577:236;;;12639:20;12647:11;12639:7;:20::i;:::-;12635:171;;;12699:97;;;;;;;;12726:13;:18;;;12699:97;;;;;;12757:13;:28;;;12699:97;;;;;12672:11;:24;12684:11;12672:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12635:171;12577:236;12845:7;12841:2;12826:27;;12835:4;12826:27;;;;;;;;;;;;12860:42;12881:4;12887:2;12891:7;12900:1;12860:20;:42::i;:::-;11379:1529;;;;;;:::o;5140:606::-;5216:21;;:::i;:::-;5257:16;5265:7;5257;:16::i;:::-;5249:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5329:26;5377:12;5366:7;:23;5362:93;;5446:1;5431:12;5421:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;5400:47;;5362:93;5468:12;5483:7;5468:22;;5463:212;5500:18;5492:4;:26;5463:212;;5537:31;5571:11;:17;5583:4;5571:17;;;;;;;;;;;5537:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5627:1;5601:28;;:9;:14;;;:28;;;5597:71;;5649:9;5642:16;;;;;;;5597:71;5463:212;5520:6;;;;;:::i;:::-;;;;5463:212;;;;5683:57;;;;;;;;;;:::i;:::-;;;;;;;;5140:606;;;;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2270:187;;:::o;9438:98:11:-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;14729:690::-;14866:4;14883:15;:2;:13;;;:15::i;:::-;14879:535;;;14938:2;14922:36;;;14959:12;:10;:12::i;:::-;14973:4;14979:7;14988:5;14922:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14909:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15170:1;15153:6;:13;:18;15149:215;;;15186:61;;;;;;;;;;:::i;:::-;;;;;;;;15149:215;15332:6;15326:13;15317:6;15313:2;15309:15;15302:38;14909:464;15054:45;;;15044:55;;;:6;:55;;;;15037:62;;;;;14879:535;15402:4;15395:11;;14729:690;;;;;;;:::o;2577:113:12:-;2637:13;2670:12;2663:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:113;:::o;328:703:8:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;15881:141:11:-;;;;;:::o;16408:140::-;;;;;:::o;9875:1272::-;9980:20;10003:12;;9980:35;;10044:1;10030:16;;:2;:16;;;;10022:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10221:21;10229:12;10221:7;:21::i;:::-;10220:22;10212:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:12;10291:8;:24;;10283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10363:61;10393:1;10397:2;10401:12;10415:8;10363:21;:61::i;:::-;10433:30;10466:12;:16;10479:2;10466:16;;;;;;;;;;;;;;;10433:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:119;;;;;;;;10558:8;10528:11;:19;;;:39;;;;:::i;:::-;10508:119;;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;10508:119;;;;;10489:12;:16;10502:2;10489:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:43;;;;;;;;10677:2;10662:43;;;;;;10688:15;10662:43;;;;;10634:11;:25;10646:12;10634:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:20;10737:12;10714:35;;10763:9;10758:281;10782:8;10778:1;:12;10758:281;;;10836:12;10832:2;10811:38;;10828:1;10811:38;;;;;;;;;;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;11017:14;;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;;11062:12;11047;:27;;;;11081:60;11110:1;11114:2;11118:12;11132:8;11081:20;:60::i;:::-;9875:1272;;;;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:135::-;1781:5;1819:6;1806:20;1797:29;;1835:31;1860:5;1835:31;:::i;:::-;1787:85;;;;:::o;1878:262::-;1937:6;1986:2;1974:9;1965:7;1961:23;1957:32;1954:2;;;2002:1;1999;1992:12;1954:2;2045:1;2070:53;2115:7;2106:6;2095:9;2091:22;2070:53;:::i;:::-;2060:63;;2016:117;1944:196;;;;:::o;2146:407::-;2214:6;2222;2271:2;2259:9;2250:7;2246:23;2242:32;2239:2;;;2287:1;2284;2277:12;2239:2;2330:1;2355:53;2400:7;2391:6;2380:9;2376:22;2355:53;:::i;:::-;2345:63;;2301:117;2457:2;2483:53;2528:7;2519:6;2508:9;2504:22;2483:53;:::i;:::-;2473:63;;2428:118;2229:324;;;;;:::o;2559:552::-;2636:6;2644;2652;2701:2;2689:9;2680:7;2676:23;2672:32;2669:2;;;2717:1;2714;2707:12;2669:2;2760:1;2785:53;2830:7;2821:6;2810:9;2806:22;2785:53;:::i;:::-;2775:63;;2731:117;2887:2;2913:53;2958:7;2949:6;2938:9;2934:22;2913:53;:::i;:::-;2903:63;;2858:118;3015:2;3041:53;3086:7;3077:6;3066:9;3062:22;3041:53;:::i;:::-;3031:63;;2986:118;2659:452;;;;;:::o;3117:809::-;3212:6;3220;3228;3236;3285:3;3273:9;3264:7;3260:23;3256:33;3253:2;;;3302:1;3299;3292:12;3253:2;3345:1;3370:53;3415:7;3406:6;3395:9;3391:22;3370:53;:::i;:::-;3360:63;;3316:117;3472:2;3498:53;3543:7;3534:6;3523:9;3519:22;3498:53;:::i;:::-;3488:63;;3443:118;3600:2;3626:53;3671:7;3662:6;3651:9;3647:22;3626:53;:::i;:::-;3616:63;;3571:118;3756:2;3745:9;3741:18;3728:32;3787:18;3779:6;3776:30;3773:2;;;3819:1;3816;3809:12;3773:2;3847:62;3901:7;3892:6;3881:9;3877:22;3847:62;:::i;:::-;3837:72;;3699:220;3243:683;;;;;;;:::o;3932:401::-;3997:6;4005;4054:2;4042:9;4033:7;4029:23;4025:32;4022:2;;;4070:1;4067;4060:12;4022:2;4113:1;4138:53;4183:7;4174:6;4163:9;4159:22;4138:53;:::i;:::-;4128:63;;4084:117;4240:2;4266:50;4308:7;4299:6;4288:9;4284:22;4266:50;:::i;:::-;4256:60;;4211:115;4012:321;;;;;:::o;4339:407::-;4407:6;4415;4464:2;4452:9;4443:7;4439:23;4435:32;4432:2;;;4480:1;4477;4470:12;4432:2;4523:1;4548:53;4593:7;4584:6;4573:9;4569:22;4548:53;:::i;:::-;4538:63;;4494:117;4650:2;4676:53;4721:7;4712:6;4701:9;4697:22;4676:53;:::i;:::-;4666:63;;4621:118;4422:324;;;;;:::o;4752:260::-;4810:6;4859:2;4847:9;4838:7;4834:23;4830:32;4827:2;;;4875:1;4872;4865:12;4827:2;4918:1;4943:52;4987:7;4978:6;4967:9;4963:22;4943:52;:::i;:::-;4933:62;;4889:116;4817:195;;;;:::o;5018:282::-;5087:6;5136:2;5124:9;5115:7;5111:23;5107:32;5104:2;;;5152:1;5149;5142:12;5104:2;5195:1;5220:63;5275:7;5266:6;5255:9;5251:22;5220:63;:::i;:::-;5210:73;;5166:127;5094:206;;;;:::o;5306:395::-;5377:6;5385;5434:2;5422:9;5413:7;5409:23;5405:32;5402:2;;;5450:1;5447;5440:12;5402:2;5521:1;5510:9;5506:17;5493:31;5551:18;5543:6;5540:30;5537:2;;;5583:1;5580;5573:12;5537:2;5619:65;5676:7;5667:6;5656:9;5652:22;5619:65;:::i;:::-;5601:83;;;;5464:230;5392:309;;;;;:::o;5707:262::-;5766:6;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5874:1;5899:53;5944:7;5935:6;5924:9;5920:22;5899:53;:::i;:::-;5889:63;;5845:117;5773:196;;;;:::o;5975:258::-;6032:6;6081:2;6069:9;6060:7;6056:23;6052:32;6049:2;;;6097:1;6094;6087:12;6049:2;6140:1;6165:51;6208:7;6199:6;6188:9;6184:22;6165:51;:::i;:::-;6155:61;;6111:115;6039:194;;;;:::o;6239:118::-;6326:24;6344:5;6326:24;:::i;:::-;6321:3;6314:37;6304:53;;:::o;6363:109::-;6444:21;6459:5;6444:21;:::i;:::-;6439:3;6432:34;6422:50;;:::o;6478:360::-;6564:3;6592:38;6624:5;6592:38;:::i;:::-;6646:70;6709:6;6704:3;6646:70;:::i;:::-;6639:77;;6725:52;6770:6;6765:3;6758:4;6751:5;6747:16;6725:52;:::i;:::-;6802:29;6824:6;6802:29;:::i;:::-;6797:3;6793:39;6786:46;;6568:270;;;;;:::o;6844:364::-;6932:3;6960:39;6993:5;6960:39;:::i;:::-;7015:71;7079:6;7074:3;7015:71;:::i;:::-;7008:78;;7095:52;7140:6;7135:3;7128:4;7121:5;7117:16;7095:52;:::i;:::-;7172:29;7194:6;7172:29;:::i;:::-;7167:3;7163:39;7156:46;;6936:272;;;;;:::o;7214:377::-;7320:3;7348:39;7381:5;7348:39;:::i;:::-;7403:89;7485:6;7480:3;7403:89;:::i;:::-;7396:96;;7501:52;7546:6;7541:3;7534:4;7527:5;7523:16;7501:52;:::i;:::-;7578:6;7573:3;7569:16;7562:23;;7324:267;;;;;:::o;7597:366::-;7739:3;7760:67;7824:2;7819:3;7760:67;:::i;:::-;7753:74;;7836:93;7925:3;7836:93;:::i;:::-;7954:2;7949:3;7945:12;7938:19;;7743:220;;;:::o;7969:366::-;8111:3;8132:67;8196:2;8191:3;8132:67;:::i;:::-;8125:74;;8208:93;8297:3;8208:93;:::i;:::-;8326:2;8321:3;8317:12;8310:19;;8115:220;;;:::o;8341:366::-;8483:3;8504:67;8568:2;8563:3;8504:67;:::i;:::-;8497:74;;8580:93;8669:3;8580:93;:::i;:::-;8698:2;8693:3;8689:12;8682:19;;8487:220;;;:::o;8713:366::-;8855:3;8876:67;8940:2;8935:3;8876:67;:::i;:::-;8869:74;;8952:93;9041:3;8952:93;:::i;:::-;9070:2;9065:3;9061:12;9054:19;;8859:220;;;:::o;9085:366::-;9227:3;9248:67;9312:2;9307:3;9248:67;:::i;:::-;9241:74;;9324:93;9413:3;9324:93;:::i;:::-;9442:2;9437:3;9433:12;9426:19;;9231:220;;;:::o;9457:366::-;9599:3;9620:67;9684:2;9679:3;9620:67;:::i;:::-;9613:74;;9696:93;9785:3;9696:93;:::i;:::-;9814:2;9809:3;9805:12;9798:19;;9603:220;;;:::o;9829:366::-;9971:3;9992:67;10056:2;10051:3;9992:67;:::i;:::-;9985:74;;10068:93;10157:3;10068:93;:::i;:::-;10186:2;10181:3;10177:12;10170:19;;9975:220;;;:::o;10201:366::-;10343:3;10364:67;10428:2;10423:3;10364:67;:::i;:::-;10357:74;;10440:93;10529:3;10440:93;:::i;:::-;10558:2;10553:3;10549:12;10542:19;;10347:220;;;:::o;10573:366::-;10715:3;10736:67;10800:2;10795:3;10736:67;:::i;:::-;10729:74;;10812:93;10901:3;10812:93;:::i;:::-;10930:2;10925:3;10921:12;10914:19;;10719:220;;;:::o;10945:366::-;11087:3;11108:67;11172:2;11167:3;11108:67;:::i;:::-;11101:74;;11184:93;11273:3;11184:93;:::i;:::-;11302:2;11297:3;11293:12;11286:19;;11091:220;;;:::o;11317:366::-;11459:3;11480:67;11544:2;11539:3;11480:67;:::i;:::-;11473:74;;11556:93;11645:3;11556:93;:::i;:::-;11674:2;11669:3;11665:12;11658:19;;11463:220;;;:::o;11689:366::-;11831:3;11852:67;11916:2;11911:3;11852:67;:::i;:::-;11845:74;;11928:93;12017:3;11928:93;:::i;:::-;12046:2;12041:3;12037:12;12030:19;;11835:220;;;:::o;12061:366::-;12203:3;12224:67;12288:2;12283:3;12224:67;:::i;:::-;12217:74;;12300:93;12389:3;12300:93;:::i;:::-;12418:2;12413:3;12409:12;12402:19;;12207:220;;;:::o;12433:400::-;12593:3;12614:84;12696:1;12691:3;12614:84;:::i;:::-;12607:91;;12707:93;12796:3;12707:93;:::i;:::-;12825:1;12820:3;12816:11;12809:18;;12597:236;;;:::o;12839:366::-;12981:3;13002:67;13066:2;13061:3;13002:67;:::i;:::-;12995:74;;13078:93;13167:3;13078:93;:::i;:::-;13196:2;13191:3;13187:12;13180:19;;12985:220;;;:::o;13211:366::-;13353:3;13374:67;13438:2;13433:3;13374:67;:::i;:::-;13367:74;;13450:93;13539:3;13450:93;:::i;:::-;13568:2;13563:3;13559:12;13552:19;;13357:220;;;:::o;13583:366::-;13725:3;13746:67;13810:2;13805:3;13746:67;:::i;:::-;13739:74;;13822:93;13911:3;13822:93;:::i;:::-;13940:2;13935:3;13931:12;13924:19;;13729:220;;;:::o;13955:366::-;14097:3;14118:67;14182:2;14177:3;14118:67;:::i;:::-;14111:74;;14194:93;14283:3;14194:93;:::i;:::-;14312:2;14307:3;14303:12;14296:19;;14101:220;;;:::o;14327:366::-;14469:3;14490:67;14554:2;14549:3;14490:67;:::i;:::-;14483:74;;14566:93;14655:3;14566:93;:::i;:::-;14684:2;14679:3;14675:12;14668:19;;14473:220;;;:::o;14699:366::-;14841:3;14862:67;14926:2;14921:3;14862:67;:::i;:::-;14855:74;;14938:93;15027:3;14938:93;:::i;:::-;15056:2;15051:3;15047:12;15040:19;;14845:220;;;:::o;15071:366::-;15213:3;15234:67;15298:2;15293:3;15234:67;:::i;:::-;15227:74;;15310:93;15399:3;15310:93;:::i;:::-;15428:2;15423:3;15419:12;15412:19;;15217:220;;;:::o;15443:366::-;15585:3;15606:67;15670:2;15665:3;15606:67;:::i;:::-;15599:74;;15682:93;15771:3;15682:93;:::i;:::-;15800:2;15795:3;15791:12;15784:19;;15589:220;;;:::o;15815:366::-;15957:3;15978:67;16042:2;16037:3;15978:67;:::i;:::-;15971:74;;16054:93;16143:3;16054:93;:::i;:::-;16172:2;16167:3;16163:12;16156:19;;15961:220;;;:::o;16187:366::-;16329:3;16350:67;16414:2;16409:3;16350:67;:::i;:::-;16343:74;;16426:93;16515:3;16426:93;:::i;:::-;16544:2;16539:3;16535:12;16528:19;;16333:220;;;:::o;16559:366::-;16701:3;16722:67;16786:2;16781:3;16722:67;:::i;:::-;16715:74;;16798:93;16887:3;16798:93;:::i;:::-;16916:2;16911:3;16907:12;16900:19;;16705:220;;;:::o;16931:366::-;17073:3;17094:67;17158:2;17153:3;17094:67;:::i;:::-;17087:74;;17170:93;17259:3;17170:93;:::i;:::-;17288:2;17283:3;17279:12;17272:19;;17077:220;;;:::o;17303:366::-;17445:3;17466:67;17530:2;17525:3;17466:67;:::i;:::-;17459:74;;17542:93;17631:3;17542:93;:::i;:::-;17660:2;17655:3;17651:12;17644:19;;17449:220;;;:::o;17675:366::-;17817:3;17838:67;17902:2;17897:3;17838:67;:::i;:::-;17831:74;;17914:93;18003:3;17914:93;:::i;:::-;18032:2;18027:3;18023:12;18016:19;;17821:220;;;:::o;18047:115::-;18132:23;18149:5;18132:23;:::i;:::-;18127:3;18120:36;18110:52;;:::o;18168:118::-;18255:24;18273:5;18255:24;:::i;:::-;18250:3;18243:37;18233:53;;:::o;18292:115::-;18377:23;18394:5;18377:23;:::i;:::-;18372:3;18365:36;18355:52;;:::o;18413:112::-;18496:22;18512:5;18496:22;:::i;:::-;18491:3;18484:35;18474:51;;:::o;18531:701::-;18812:3;18834:95;18925:3;18916:6;18834:95;:::i;:::-;18827:102;;18946:95;19037:3;19028:6;18946:95;:::i;:::-;18939:102;;19058:148;19202:3;19058:148;:::i;:::-;19051:155;;19223:3;19216:10;;18816:416;;;;;:::o;19238:222::-;19331:4;19369:2;19358:9;19354:18;19346:26;;19382:71;19450:1;19439:9;19435:17;19426:6;19382:71;:::i;:::-;19336:124;;;;:::o;19466:640::-;19661:4;19699:3;19688:9;19684:19;19676:27;;19713:71;19781:1;19770:9;19766:17;19757:6;19713:71;:::i;:::-;19794:72;19862:2;19851:9;19847:18;19838:6;19794:72;:::i;:::-;19876;19944:2;19933:9;19929:18;19920:6;19876:72;:::i;:::-;19995:9;19989:4;19985:20;19980:2;19969:9;19965:18;19958:48;20023:76;20094:4;20085:6;20023:76;:::i;:::-;20015:84;;19666:440;;;;;;;:::o;20112:210::-;20199:4;20237:2;20226:9;20222:18;20214:26;;20250:65;20312:1;20301:9;20297:17;20288:6;20250:65;:::i;:::-;20204:118;;;;:::o;20328:313::-;20441:4;20479:2;20468:9;20464:18;20456:26;;20528:9;20522:4;20518:20;20514:1;20503:9;20499:17;20492:47;20556:78;20629:4;20620:6;20556:78;:::i;:::-;20548:86;;20446:195;;;;:::o;20647:419::-;20813:4;20851:2;20840:9;20836:18;20828:26;;20900:9;20894:4;20890:20;20886:1;20875:9;20871:17;20864:47;20928:131;21054:4;20928:131;:::i;:::-;20920:139;;20818:248;;;:::o;21072:419::-;21238:4;21276:2;21265:9;21261:18;21253:26;;21325:9;21319:4;21315:20;21311:1;21300:9;21296:17;21289:47;21353:131;21479:4;21353:131;:::i;:::-;21345:139;;21243:248;;;:::o;21497:419::-;21663:4;21701:2;21690:9;21686:18;21678:26;;21750:9;21744:4;21740:20;21736:1;21725:9;21721:17;21714:47;21778:131;21904:4;21778:131;:::i;:::-;21770:139;;21668:248;;;:::o;21922:419::-;22088:4;22126:2;22115:9;22111:18;22103:26;;22175:9;22169:4;22165:20;22161:1;22150:9;22146:17;22139:47;22203:131;22329:4;22203:131;:::i;:::-;22195:139;;22093:248;;;:::o;22347:419::-;22513:4;22551:2;22540:9;22536:18;22528:26;;22600:9;22594:4;22590:20;22586:1;22575:9;22571:17;22564:47;22628:131;22754:4;22628:131;:::i;:::-;22620:139;;22518:248;;;:::o;22772:419::-;22938:4;22976:2;22965:9;22961:18;22953:26;;23025:9;23019:4;23015:20;23011:1;23000:9;22996:17;22989:47;23053:131;23179:4;23053:131;:::i;:::-;23045:139;;22943:248;;;:::o;23197:419::-;23363:4;23401:2;23390:9;23386:18;23378:26;;23450:9;23444:4;23440:20;23436:1;23425:9;23421:17;23414:47;23478:131;23604:4;23478:131;:::i;:::-;23470:139;;23368:248;;;:::o;23622:419::-;23788:4;23826:2;23815:9;23811:18;23803:26;;23875:9;23869:4;23865:20;23861:1;23850:9;23846:17;23839:47;23903:131;24029:4;23903:131;:::i;:::-;23895:139;;23793:248;;;:::o;24047:419::-;24213:4;24251:2;24240:9;24236:18;24228:26;;24300:9;24294:4;24290:20;24286:1;24275:9;24271:17;24264:47;24328:131;24454:4;24328:131;:::i;:::-;24320:139;;24218:248;;;:::o;24472:419::-;24638:4;24676:2;24665:9;24661:18;24653:26;;24725:9;24719:4;24715:20;24711:1;24700:9;24696:17;24689:47;24753:131;24879:4;24753:131;:::i;:::-;24745:139;;24643:248;;;:::o;24897:419::-;25063:4;25101:2;25090:9;25086:18;25078:26;;25150:9;25144:4;25140:20;25136:1;25125:9;25121:17;25114:47;25178:131;25304:4;25178:131;:::i;:::-;25170:139;;25068:248;;;:::o;25322:419::-;25488:4;25526:2;25515:9;25511:18;25503:26;;25575:9;25569:4;25565:20;25561:1;25550:9;25546:17;25539:47;25603:131;25729:4;25603:131;:::i;:::-;25595:139;;25493:248;;;:::o;25747:419::-;25913:4;25951:2;25940:9;25936:18;25928:26;;26000:9;25994:4;25990:20;25986:1;25975:9;25971:17;25964:47;26028:131;26154:4;26028:131;:::i;:::-;26020:139;;25918:248;;;:::o;26172:419::-;26338:4;26376:2;26365:9;26361:18;26353:26;;26425:9;26419:4;26415:20;26411:1;26400:9;26396:17;26389:47;26453:131;26579:4;26453:131;:::i;:::-;26445:139;;26343:248;;;:::o;26597:419::-;26763:4;26801:2;26790:9;26786:18;26778:26;;26850:9;26844:4;26840:20;26836:1;26825:9;26821:17;26814:47;26878:131;27004:4;26878:131;:::i;:::-;26870:139;;26768:248;;;:::o;27022:419::-;27188:4;27226:2;27215:9;27211:18;27203:26;;27275:9;27269:4;27265:20;27261:1;27250:9;27246:17;27239:47;27303:131;27429:4;27303:131;:::i;:::-;27295:139;;27193:248;;;:::o;27447:419::-;27613:4;27651:2;27640:9;27636:18;27628:26;;27700:9;27694:4;27690:20;27686:1;27675:9;27671:17;27664:47;27728:131;27854:4;27728:131;:::i;:::-;27720:139;;27618:248;;;:::o;27872:419::-;28038:4;28076:2;28065:9;28061:18;28053:26;;28125:9;28119:4;28115:20;28111:1;28100:9;28096:17;28089:47;28153:131;28279:4;28153:131;:::i;:::-;28145:139;;28043:248;;;:::o;28297:419::-;28463:4;28501:2;28490:9;28486:18;28478:26;;28550:9;28544:4;28540:20;28536:1;28525:9;28521:17;28514:47;28578:131;28704:4;28578:131;:::i;:::-;28570:139;;28468:248;;;:::o;28722:419::-;28888:4;28926:2;28915:9;28911:18;28903:26;;28975:9;28969:4;28965:20;28961:1;28950:9;28946:17;28939:47;29003:131;29129:4;29003:131;:::i;:::-;28995:139;;28893:248;;;:::o;29147:419::-;29313:4;29351:2;29340:9;29336:18;29328:26;;29400:9;29394:4;29390:20;29386:1;29375:9;29371:17;29364:47;29428:131;29554:4;29428:131;:::i;:::-;29420:139;;29318:248;;;:::o;29572:419::-;29738:4;29776:2;29765:9;29761:18;29753:26;;29825:9;29819:4;29815:20;29811:1;29800:9;29796:17;29789:47;29853:131;29979:4;29853:131;:::i;:::-;29845:139;;29743:248;;;:::o;29997:419::-;30163:4;30201:2;30190:9;30186:18;30178:26;;30250:9;30244:4;30240:20;30236:1;30225:9;30221:17;30214:47;30278:131;30404:4;30278:131;:::i;:::-;30270:139;;30168:248;;;:::o;30422:419::-;30588:4;30626:2;30615:9;30611:18;30603:26;;30675:9;30669:4;30665:20;30661:1;30650:9;30646:17;30639:47;30703:131;30829:4;30703:131;:::i;:::-;30695:139;;30593:248;;;:::o;30847:419::-;31013:4;31051:2;31040:9;31036:18;31028:26;;31100:9;31094:4;31090:20;31086:1;31075:9;31071:17;31064:47;31128:131;31254:4;31128:131;:::i;:::-;31120:139;;31018:248;;;:::o;31272:419::-;31438:4;31476:2;31465:9;31461:18;31453:26;;31525:9;31519:4;31515:20;31511:1;31500:9;31496:17;31489:47;31553:131;31679:4;31553:131;:::i;:::-;31545:139;;31443:248;;;:::o;31697:419::-;31863:4;31901:2;31890:9;31886:18;31878:26;;31950:9;31944:4;31940:20;31936:1;31925:9;31921:17;31914:47;31978:131;32104:4;31978:131;:::i;:::-;31970:139;;31868:248;;;:::o;32122:218::-;32213:4;32251:2;32240:9;32236:18;32228:26;;32264:69;32330:1;32319:9;32315:17;32306:6;32264:69;:::i;:::-;32218:122;;;;:::o;32346:222::-;32439:4;32477:2;32466:9;32462:18;32454:26;;32490:71;32558:1;32547:9;32543:17;32534:6;32490:71;:::i;:::-;32444:124;;;;:::o;32574:529::-;32739:4;32777:3;32766:9;32762:19;32754:27;;32791:67;32855:1;32844:9;32840:17;32831:6;32791:67;:::i;:::-;32868:70;32934:2;32923:9;32919:18;32910:6;32868:70;:::i;:::-;32948;33014:2;33003:9;32999:18;32990:6;32948:70;:::i;:::-;33028:68;33092:2;33081:9;33077:18;33068:6;33028:68;:::i;:::-;32744:359;;;;;;;:::o;33109:129::-;33143:6;33170:20;;:::i;:::-;33160:30;;33199:33;33227:4;33219:6;33199:33;:::i;:::-;33150:88;;;:::o;33244:75::-;33277:6;33310:2;33304:9;33294:19;;33284:35;:::o;33325:307::-;33386:4;33476:18;33468:6;33465:30;33462:2;;;33498:18;;:::i;:::-;33462:2;33536:29;33558:6;33536:29;:::i;:::-;33528:37;;33620:4;33614;33610:15;33602:23;;33391:241;;;:::o;33638:98::-;33689:6;33723:5;33717:12;33707:22;;33696:40;;;:::o;33742:99::-;33794:6;33828:5;33822:12;33812:22;;33801:40;;;:::o;33847:168::-;33930:11;33964:6;33959:3;33952:19;34004:4;33999:3;33995:14;33980:29;;33942:73;;;;:::o;34021:169::-;34105:11;34139:6;34134:3;34127:19;34179:4;34174:3;34170:14;34155:29;;34117:73;;;;:::o;34196:148::-;34298:11;34335:3;34320:18;;34310:34;;;;:::o;34350:273::-;34390:3;34409:20;34427:1;34409:20;:::i;:::-;34404:25;;34443:20;34461:1;34443:20;:::i;:::-;34438:25;;34565:1;34529:34;34525:42;34522:1;34519:49;34516:2;;;34571:18;;:::i;:::-;34516:2;34615:1;34612;34608:9;34601:16;;34394:229;;;;:::o;34629:305::-;34669:3;34688:20;34706:1;34688:20;:::i;:::-;34683:25;;34722:20;34740:1;34722:20;:::i;:::-;34717:25;;34876:1;34808:66;34804:74;34801:1;34798:81;34795:2;;;34882:18;;:::i;:::-;34795:2;34926:1;34923;34919:9;34912:16;;34673:261;;;;:::o;34940:185::-;34980:1;34997:20;35015:1;34997:20;:::i;:::-;34992:25;;35031:20;35049:1;35031:20;:::i;:::-;35026:25;;35070:1;35060:2;;35075:18;;:::i;:::-;35060:2;35117:1;35114;35110:9;35105:14;;34982:143;;;;:::o;35131:297::-;35170:7;35193:19;35210:1;35193:19;:::i;:::-;35188:24;;35226:19;35243:1;35226:19;:::i;:::-;35221:24;;35365:1;35345:18;35341:26;35338:1;35335:33;35330:1;35323:9;35316:17;35312:57;35309:2;;;35372:18;;:::i;:::-;35309:2;35420:1;35417;35413:9;35402:20;;35178:250;;;;:::o;35434:191::-;35474:4;35494:20;35512:1;35494:20;:::i;:::-;35489:25;;35528:20;35546:1;35528:20;:::i;:::-;35523:25;;35567:1;35564;35561:8;35558:2;;;35572:18;;:::i;:::-;35558:2;35617:1;35614;35610:9;35602:17;;35479:146;;;;:::o;35631:191::-;35671:4;35691:20;35709:1;35691:20;:::i;:::-;35686:25;;35725:20;35743:1;35725:20;:::i;:::-;35720:25;;35764:1;35761;35758:8;35755:2;;;35769:18;;:::i;:::-;35755:2;35814:1;35811;35807:9;35799:17;;35676:146;;;;:::o;35828:96::-;35865:7;35894:24;35912:5;35894:24;:::i;:::-;35883:35;;35873:51;;;:::o;35930:90::-;35964:7;36007:5;36000:13;35993:21;35982:32;;35972:48;;;:::o;36026:149::-;36062:7;36102:66;36095:5;36091:78;36080:89;;36070:105;;;:::o;36181:118::-;36218:7;36258:34;36251:5;36247:46;36236:57;;36226:73;;;:::o;36305:89::-;36341:7;36381:6;36374:5;36370:18;36359:29;;36349:45;;;:::o;36400:126::-;36437:7;36477:42;36470:5;36466:54;36455:65;;36445:81;;;:::o;36532:77::-;36569:7;36598:5;36587:16;;36577:32;;;:::o;36615:101::-;36651:7;36691:18;36684:5;36680:30;36669:41;;36659:57;;;:::o;36722:86::-;36757:7;36797:4;36790:5;36786:16;36775:27;;36765:43;;;:::o;36814:154::-;36898:6;36893:3;36888;36875:30;36960:1;36951:6;36946:3;36942:16;36935:27;36865:103;;;:::o;36974:307::-;37042:1;37052:113;37066:6;37063:1;37060:13;37052:113;;;37151:1;37146:3;37142:11;37136:18;37132:1;37127:3;37123:11;37116:39;37088:2;37085:1;37081:10;37076:15;;37052:113;;;37183:6;37180:1;37177:13;37174:2;;;37263:1;37254:6;37249:3;37245:16;37238:27;37174:2;37023:258;;;;:::o;37287:171::-;37326:3;37349:24;37367:5;37349:24;:::i;:::-;37340:33;;37395:4;37388:5;37385:15;37382:2;;;37403:18;;:::i;:::-;37382:2;37450:1;37443:5;37439:13;37432:20;;37330:128;;;:::o;37464:320::-;37508:6;37545:1;37539:4;37535:12;37525:22;;37592:1;37586:4;37582:12;37613:18;37603:2;;37669:4;37661:6;37657:17;37647:27;;37603:2;37731;37723:6;37720:14;37700:18;37697:38;37694:2;;;37750:18;;:::i;:::-;37694:2;37515:269;;;;:::o;37790:281::-;37873:27;37895:4;37873:27;:::i;:::-;37865:6;37861:40;38003:6;37991:10;37988:22;37967:18;37955:10;37952:34;37949:62;37946:2;;;38014:18;;:::i;:::-;37946:2;38054:10;38050:2;38043:22;37833:238;;;:::o;38077:233::-;38116:3;38139:24;38157:5;38139:24;:::i;:::-;38130:33;;38185:66;38178:5;38175:77;38172:2;;;38255:18;;:::i;:::-;38172:2;38302:1;38295:5;38291:13;38284:20;;38120:190;;;:::o;38316:176::-;38348:1;38365:20;38383:1;38365:20;:::i;:::-;38360:25;;38399:20;38417:1;38399:20;:::i;:::-;38394:25;;38438:1;38428:2;;38443:18;;:::i;:::-;38428:2;38484:1;38481;38477:9;38472:14;;38350:142;;;;:::o;38498:180::-;38546:77;38543:1;38536:88;38643:4;38640:1;38633:15;38667:4;38664:1;38657:15;38684:180;38732:77;38729:1;38722:88;38829:4;38826:1;38819:15;38853:4;38850:1;38843:15;38870:180;38918:77;38915:1;38908:88;39015:4;39012:1;39005:15;39039:4;39036:1;39029:15;39056:180;39104:77;39101:1;39094:88;39201:4;39198:1;39191:15;39225:4;39222:1;39215:15;39242:102;39283:6;39334:2;39330:7;39325:2;39318:5;39314:14;39310:28;39300:38;;39290:54;;;:::o;39350:221::-;39490:34;39486:1;39478:6;39474:14;39467:58;39559:4;39554:2;39546:6;39542:15;39535:29;39456:115;:::o;39577:179::-;39717:31;39713:1;39705:6;39701:14;39694:55;39683:73;:::o;39762:225::-;39902:34;39898:1;39890:6;39886:14;39879:58;39971:8;39966:2;39958:6;39954:15;39947:33;39868:119;:::o;39993:229::-;40133:34;40129:1;40121:6;40117:14;40110:58;40202:12;40197:2;40189:6;40185:15;40178:37;40099:123;:::o;40228:176::-;40368:28;40364:1;40356:6;40352:14;40345:52;40334:70;:::o;40410:222::-;40550:34;40546:1;40538:6;40534:14;40527:58;40619:5;40614:2;40606:6;40602:15;40595:30;40516:116;:::o;40638:224::-;40778:34;40774:1;40766:6;40762:14;40755:58;40847:7;40842:2;40834:6;40830:15;40823:32;40744:118;:::o;40868:172::-;41008:24;41004:1;40996:6;40992:14;40985:48;40974:66;:::o;41046:234::-;41186:34;41182:1;41174:6;41170:14;41163:58;41255:17;41250:2;41242:6;41238:15;41231:42;41152:128;:::o;41286:244::-;41426:34;41422:1;41414:6;41410:14;41403:58;41495:27;41490:2;41482:6;41478:15;41471:52;41392:138;:::o;41536:230::-;41676:34;41672:1;41664:6;41660:14;41653:58;41745:13;41740:2;41732:6;41728:15;41721:38;41642:124;:::o;41772:234::-;41912:34;41908:1;41900:6;41896:14;41889:58;41981:17;41976:2;41968:6;41964:15;41957:42;41878:128;:::o;42012:225::-;42152:34;42148:1;42140:6;42136:14;42129:58;42221:8;42216:2;42208:6;42204:15;42197:33;42118:119;:::o;42243:155::-;42383:7;42379:1;42371:6;42367:14;42360:31;42349:49;:::o;42404:182::-;42544:34;42540:1;42532:6;42528:14;42521:58;42510:76;:::o;42592:176::-;42732:28;42728:1;42720:6;42716:14;42709:52;42698:70;:::o;42774:237::-;42914:34;42910:1;42902:6;42898:14;42891:58;42983:20;42978:2;42970:6;42966:15;42959:45;42880:131;:::o;43017:221::-;43157:34;43153:1;43145:6;43141:14;43134:58;43226:4;43221:2;43213:6;43209:15;43202:29;43123:115;:::o;43244:238::-;43384:34;43380:1;43372:6;43368:14;43361:58;43453:21;43448:2;43440:6;43436:15;43429:46;43350:132;:::o;43488:179::-;43628:31;43624:1;43616:6;43612:14;43605:55;43594:73;:::o;43673:177::-;43813:29;43809:1;43801:6;43797:14;43790:53;43779:71;:::o;43856:220::-;43996:34;43992:1;43984:6;43980:14;43973:58;44065:3;44060:2;44052:6;44048:15;44041:28;43962:114;:::o;44082:172::-;44222:24;44218:1;44210:6;44206:14;44199:48;44188:66;:::o;44260:233::-;44400:34;44396:1;44388:6;44384:14;44377:58;44469:16;44464:2;44456:6;44452:15;44445:41;44366:127;:::o;44499:181::-;44639:33;44635:1;44627:6;44623:14;44616:57;44605:75;:::o;44686:234::-;44826:34;44822:1;44814:6;44810:14;44803:58;44895:17;44890:2;44882:6;44878:15;44871:42;44792:128;:::o;44926:232::-;45066:34;45062:1;45054:6;45050:14;45043:58;45135:15;45130:2;45122:6;45118:15;45111:40;45032:126;:::o;45164:221::-;45304:34;45300:1;45292:6;45288:14;45281:58;45373:4;45368:2;45360:6;45356:15;45349:29;45270:115;:::o;45391:122::-;45464:24;45482:5;45464:24;:::i;:::-;45457:5;45454:35;45444:2;;45503:1;45500;45493:12;45444:2;45434:79;:::o;45519:116::-;45589:21;45604:5;45589:21;:::i;:::-;45582:5;45579:32;45569:2;;45625:1;45622;45615:12;45569:2;45559:76;:::o;45641:120::-;45713:23;45730:5;45713:23;:::i;:::-;45706:5;45703:34;45693:2;;45751:1;45748;45741:12;45693:2;45683:78;:::o;45767:122::-;45840:24;45858:5;45840:24;:::i;:::-;45833:5;45830:35;45820:2;;45879:1;45876;45869:12;45820:2;45810:79;:::o;45895:118::-;45966:22;45982:5;45966:22;:::i;:::-;45959:5;45956:33;45946:2;;46003:1;46000;45993:12;45946:2;45936:77;:::o
Swarm Source
ipfs://33ad29ca86b32c35e6e78ceb67a87f10bf34109cea2838c33d56e4c8e5da7af6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.