Source Code
Overview
ETH Balance
0.246 ETH
Eth Value
$487.70 (@ $1,982.52/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 194 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 18896196 | 818 days ago | IN | 0 ETH | 0.00032704 | ||||
| Set Approval For... | 15520908 | 1292 days ago | IN | 0 ETH | 0.00093031 | ||||
| Set Approval For... | 15238451 | 1337 days ago | IN | 0 ETH | 0.00271815 | ||||
| Set Approval For... | 15152600 | 1350 days ago | IN | 0 ETH | 0.00042025 | ||||
| Set Approval For... | 15128193 | 1354 days ago | IN | 0 ETH | 0.00116458 | ||||
| Transfer From | 14934870 | 1386 days ago | IN | 0 ETH | 0.00488887 | ||||
| Transfer From | 14876137 | 1396 days ago | IN | 0 ETH | 0.00217042 | ||||
| Transfer From | 14876120 | 1396 days ago | IN | 0 ETH | 0.0025786 | ||||
| Transfer From | 14876063 | 1396 days ago | IN | 0 ETH | 0.00202657 | ||||
| Set Approval For... | 14863385 | 1398 days ago | IN | 0 ETH | 0.00026939 | ||||
| Set Approval For... | 14811568 | 1407 days ago | IN | 0 ETH | 0.00273061 | ||||
| Transfer From | 14546483 | 1449 days ago | IN | 0 ETH | 0.00451091 | ||||
| Set Approval For... | 14508922 | 1455 days ago | IN | 0 ETH | 0.00210225 | ||||
| Safe Transfer Fr... | 14419338 | 1468 days ago | IN | 0 ETH | 0.00343302 | ||||
| Set Approval For... | 14376794 | 1475 days ago | IN | 0 ETH | 0.0006035 | ||||
| Transfer From | 14292011 | 1488 days ago | IN | 0 ETH | 0.00564127 | ||||
| Set Approval For... | 14184690 | 1505 days ago | IN | 0 ETH | 0.0022558 | ||||
| Transfer From | 14184688 | 1505 days ago | IN | 0 ETH | 0.00408755 | ||||
| Transfer From | 14184659 | 1505 days ago | IN | 0 ETH | 0.00368829 | ||||
| Set Approval For... | 14106397 | 1517 days ago | IN | 0 ETH | 0.00356537 | ||||
| Set Approval For... | 14048717 | 1526 days ago | IN | 0 ETH | 0.0047976 | ||||
| Transfer From | 14047469 | 1526 days ago | IN | 0 ETH | 0.01228174 | ||||
| Transfer From | 14042143 | 1527 days ago | IN | 0 ETH | 0.00808796 | ||||
| Set Approval For... | 14042099 | 1527 days ago | IN | 0 ETH | 0.00483746 | ||||
| Set Approval For... | 14039988 | 1527 days ago | IN | 0 ETH | 0.00525409 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Buffalos
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./SafeERC20.sol";
contract Buffalos is ERC721Enumerable, Ownable {
using SafeMath for uint256;
using Strings for uint256;
// Time of when the sale starts.
uint256 public blockStart;
// Maximum amount of Buffalos in existance.
uint256 public MAX_SUPPLY;
uint256 public cost;
uint256 public maxMintAmount;
uint256 public BASE_RATE = 10 ** 18;
address public artist;
address public txFeeToken;
string public baseURI;
// string public nftName;
// string public nftUnit;
string public uri;
string public metaDataExt = ".json";
bool public mintable = true;
bool public publicSale = false;
mapping(address => bool) public whitelisted;
mapping(address => uint256) public tokenBalance;
mapping(address => bool) public excludedList;
event BuffaloBought (address buyer, uint256 amount);
constructor(
string memory name,
string memory symbol,
string memory URI,
uint256 initialSupply,
uint256 startDate,
address _artist,
address _txFeeToken,
uint _txFeeAmount,
uint256 _limitPerAddress
) ERC721(name, symbol) {
setBaseURI(URI);
setBlockStart(startDate);
artist = _artist;
txFeeToken = _txFeeToken;
// excludedList[artist] = true;
BASE_RATE = _txFeeAmount * 10 ** 15;
maxMintAmount = _limitPerAddress;
MAX_SUPPLY = initialSupply;
// Mint 30 Buffalos for airdrop and gift purposes
}
// public
function getNFTPrice(uint256 amount) public view returns (uint256) {
return amount.mul(BASE_RATE);
}
function setExcluded(address excluded, bool status) external {
require(msg.sender == artist, 'artist only');
excludedList[excluded] = status;
}
function setBlockStart(uint256 startDate) public {
blockStart = startDate;
}
function updateBlockStart(uint256 startDate) onlyOwner public {
// require(block.timestamp <= blockStart, "Sale has already started.");
blockStart = startDate;
}
function getBlockStart() public view returns (uint256) {
return blockStart;
}
function getMaxSupply() public view returns (uint256) {
return MAX_SUPPLY;
}
// function ApproveContract() public {
// IERC20 token = IERC20(txFeeToken);
// token.approve(address(this), 1000 * 10 ** 18);
// }
/**
* @dev Mints yourself a Buffalo. Or more.
*/
function mint(uint256 numberofBuffalos) public payable {
// Some exceptions that need to be handled.
require(block.timestamp >= blockStart, "Exception 1: Sale has not started yet so you can't get a price yet.");
if(!publicSale) {
require(whitelisted[msg.sender], "Exception 2: Signer should be whitelisted.");
}
require(totalSupply() < MAX_SUPPLY, "Exception 3: Sale has already ended.");
require(numberofBuffalos > 0, "Exception 4: You cannot mint 0 Buffalos.");
require(SafeMath.add(totalSupply(), numberofBuffalos) <= MAX_SUPPLY, "Exception 5: Exceeds maximum Buffalos supply. Please try to mint less Buffalos.");
require(tokenBalance[msg.sender] < maxMintAmount, "Exception 6: Reached the limit for each user. You can't mint no more");
require(SafeMath.add(tokenBalance[msg.sender], numberofBuffalos) <= maxMintAmount, "Exception 7: Exceeds limit for each user. Please try to mint less Buffalos.");
// require(token.transferFrom(msg.sender, artist, getNFTPrice(numberofBuffalos)), "token transfer failed");
for(uint256 i=0; i<numberofBuffalos; i++) {
_safeMint(msg.sender, totalSupply());
tokenBalance[msg.sender] = SafeMath.add(tokenBalance[msg.sender], 1);
}
emit BuffaloBought(msg.sender, numberofBuffalos);
}
/**
* @dev Withdraw ether from this contract (Callable by owner only)
*/
function canMint(bool mintFlag) onlyOwner public {
mintable = mintFlag;
}
function withdraw(uint256 amount) onlyOwner public {
payable(artist).transfer(amount);
}
/**
* @dev Changes the base URI if we want to move things in the future (Callable by owner only)
*/
function changeBaseURI(string memory URI) onlyOwner public {
setBaseURI(URI);
}
/**
* @dev Changes max supply based on future drop dates (owner only)
*/
function changeMaxSupply(uint256 supply) onlyOwner public {
MAX_SUPPLY = supply;
}
function changePublicSaleState(bool flag) onlyOwner public {
publicSale = flag;
}
function updateMintPrice(uint256 price) onlyOwner public {
BASE_RATE = price * 10 ** 15;
}
function walletOfOwner(address _owner)
public
view
returns (uint256[] memory)
{
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory tokenIds = new uint256[](ownerTokenCount);
for (uint256 i; i < ownerTokenCount; i++) {
tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokenIds;
}
// internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function checkWhitelisted(address _user) public view returns (bool) {
return whitelisted[_user];
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, tokenId.toString(), metaDataExt))
: "";
}
//only owner
function setCost(uint256 _newCost) public onlyOwner {
cost = _newCost;
}
function setmaxMintAmount(uint256 _newmaxMintAmount) onlyOwner public {
maxMintAmount = _newmaxMintAmount;
}
function setBaseURI(string memory _newBaseURI) onlyOwner public {
baseURI = _newBaseURI;
}
function whitelistUser(address _user) onlyOwner public {
if(!whitelisted[_user]) tokenBalance[_user] = 0;
whitelisted[_user] = true;
}
function removeWhitelistUser(address _user) onlyOwner public {
whitelisted[_user] = false;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
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
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
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./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`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
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 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// SPDX-License-Identifier: MIT
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
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Migrations {
address public owner = msg.sender;
uint public last_completed_migration;
modifier restricted() {
require(
msg.sender == owner,
"This function is restricted to the contract's owner"
);
_;
}
function setCompleted(uint completed) public restricted {
last_completed_migration = completed;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./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() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// SPDX-License-Identifier: MIT
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);
}
}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"URI","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint256","name":"startDate","type":"uint256"},{"internalType":"address","name":"_artist","type":"address"},{"internalType":"address","name":"_txFeeToken","type":"address"},{"internalType":"uint256","name":"_txFeeAmount","type":"uint256"},{"internalType":"uint256","name":"_limitPerAddress","type":"uint256"}],"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":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuffaloBought","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":"BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"mintFlag","type":"bool"}],"name":"canMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"changePublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"checkWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlockStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metaDataExt","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberofBuffalos","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startDate","type":"uint256"}],"name":"setBlockStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"excluded","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"txFeeToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startDate","type":"uint256"}],"name":"updateBlockStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"updateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
670de0b6b3a7640000600f5560c06040526005608081905264173539b7b760d91b60a09081526200003491601491906200020a565b506015805461ff001960ff199091166001171690553480156200005657600080fd5b506040516200343238038062003432833981016040819052620000799162000378565b885189908990620000929060009060208501906200020a565b508051620000a89060019060208401906200020a565b505050620000c5620000bf6200013860201b60201c565b6200013c565b620000d0876200018e565b620000db85620001f6565b601080546001600160a01b038087166001600160a01b03199283161790925560118054928616929091169190911790556200011e8266038d7ea4c6800062000487565b600f55600e55505050600c91909155506200050692505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200019862000138565b6001600160a01b0316620001ab620001fb565b6001600160a01b031614620001dd5760405162461bcd60e51b8152600401620001d49062000452565b60405180910390fd5b8051620001f29060129060208401906200020a565b5050565b600b55565b600a546001600160a01b031690565b8280546200021890620004b3565b90600052602060002090601f0160209004810192826200023c576000855562000287565b82601f106200025757805160ff191683800117855562000287565b8280016001018555821562000287579182015b82811115620002875782518255916020019190600101906200026a565b506200029592915062000299565b5090565b5b808211156200029557600081556001016200029a565b80516001600160a01b0381168114620002c857600080fd5b919050565b600082601f830112620002de578081fd5b81516001600160401b0380821115620002fb57620002fb620004f0565b6040516020601f8401601f1916820181018381118382101715620003235762000323620004f0565b60405283825285840181018710156200033a578485fd5b8492505b838310156200035d57858301810151828401820152918201916200033e565b838311156200036e57848185840101525b5095945050505050565b60008060008060008060008060006101208a8c03121562000397578485fd5b89516001600160401b0380821115620003ae578687fd5b620003bc8d838e01620002cd565b9a5060208c0151915080821115620003d2578687fd5b620003e08d838e01620002cd565b995060408c0151915080821115620003f6578687fd5b50620004058c828d01620002cd565b97505060608a0151955060808a015194506200042460a08b01620002b0565b93506200043460c08b01620002b0565b925060e08a015191506101008a015190509295985092959850929598565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615620004ae57634e487b7160e01b81526011600452602481fd5b500290565b600281046001821680620004c857607f821691505b60208210811415620004ea57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612f1c80620005166000396000f3fe6080604052600436106103345760003560e01c80634c0f38c2116101ab5780638da5cb5b116100f7578063c87b56dd11610095578063e985e9c51161006f578063e985e9c5146108f2578063eac989f814610912578063eedc966a14610927578063f2fde38b1461094757610334565b8063c87b56dd14610892578063d936547e146108b2578063e2db1a30146108d257610334565b8063a0712d68116100d1578063a0712d681461081f578063a22cb46514610832578063ab2d5ccd14610852578063b88d4fde1461087257610334565b80638da5cb5b146107d557806392976179146107ea57806395d89b411461080a57610334565b80636b870e4411610164578063715018a61161013e578063715018a61461077657806377c567a71461078b5780637b2feaaa146107a05780637f00c7a6146107b557610334565b80636b870e441461072c5780636c0360eb1461074157806370a082311461075657610334565b80634c0f38c2146106775780634e80f0f11461068c5780634f6ccce7146106ac57806355f804b3146106cc5780635600d2fa146106ec5780636352211e1461070c57610334565b80632f745c591161028557806342842e0e1161022357806344a0d68a116101fd57806344a0d68a1461060257806346e8597a146106225780634a4c560d146106425780634bf365df1461066257610334565b806342842e0e146105a0578063438b6300146105c057806343bc1612146105ed57610334565b806333bc1c5c1161025f57806333bc1c5c1461053657806339a0c6f91461054b578063404c7cdd1461056b57806341910f901461058b57610334565b80632f745c59146104e157806330cc7ae01461050157806332cb6b0c1461052157610334565b806318160ddd116102f257806323b872dd116102cc57806323b872dd1461046c57806325ae270b1461048c5780632836be24146104a15780632e1a7d4d146104c157610334565b806318160ddd1461042257806320d8dad014610437578063239c70ae1461045757610334565b8062728e461461033957806301ffc9a71461035b57806306fdde0314610391578063081812fc146103b3578063095ea7b3146103e057806313faede614610400575b600080fd5b34801561034557600080fd5b506103596103543660046123fe565b610967565b005b34801561036757600080fd5b5061037b610376366004612380565b6109c6565b60405161038891906125b2565b60405180910390f35b34801561039d57600080fd5b506103a66109f3565b60405161038891906125bd565b3480156103bf57600080fd5b506103d36103ce3660046123fe565b610a85565b6040516103889190612504565b3480156103ec57600080fd5b506103596103fb36600461233d565b610ac8565b34801561040c57600080fd5b50610415610b60565b6040516103889190612d81565b34801561042e57600080fd5b50610415610b66565b34801561044357600080fd5b5061037b610452366004612214565b610b6c565b34801561046357600080fd5b50610415610b8a565b34801561047857600080fd5b50610359610487366004612260565b610b90565b34801561049857600080fd5b50610415610bc8565b3480156104ad57600080fd5b506103596104bc366004612314565b610bce565b3480156104cd57600080fd5b506103596104dc3660046123fe565b610c23565b3480156104ed57600080fd5b506104156104fc36600461233d565b610ca0565b34801561050d57600080fd5b5061035961051c366004612214565b610cf2565b34801561052d57600080fd5b50610415610d52565b34801561054257600080fd5b5061037b610d58565b34801561055757600080fd5b506103596105663660046123b8565b610d66565b34801561057757600080fd5b506103596105863660046123fe565b610db1565b34801561059757600080fd5b50610415610df5565b3480156105ac57600080fd5b506103596105bb366004612260565b610dfb565b3480156105cc57600080fd5b506105e06105db366004612214565b610e16565b604051610388919061256e565b3480156105f957600080fd5b506103d3610ed4565b34801561060e57600080fd5b5061035961061d3660046123fe565b610ee3565b34801561062e57600080fd5b5061035961063d3660046123fe565b610f27565b34801561064e57600080fd5b5061035961065d366004612214565b610f6b565b34801561066e57600080fd5b5061037b611008565b34801561068357600080fd5b50610415611011565b34801561069857600080fd5b506103596106a7366004612366565b611017565b3480156106b857600080fd5b506104156106c73660046123fe565b611069565b3480156106d857600080fd5b506103596106e73660046123b8565b6110c4565b3480156106f857600080fd5b5061037b610707366004612214565b611116565b34801561071857600080fd5b506103d36107273660046123fe565b61112b565b34801561073857600080fd5b506103a6611160565b34801561074d57600080fd5b506103a66111ee565b34801561076257600080fd5b50610415610771366004612214565b6111fb565b34801561078257600080fd5b5061035961123f565b34801561079757600080fd5b506103d361128a565b3480156107ac57600080fd5b50610415611299565b3480156107c157600080fd5b506103596107d03660046123fe565b61129f565b3480156107e157600080fd5b506103d36112e3565b3480156107f657600080fd5b506104156108053660046123fe565b6112f2565b34801561081657600080fd5b506103a6611309565b61035961082d3660046123fe565b611318565b34801561083e57600080fd5b5061035961084d366004612314565b6114f3565b34801561085e57600080fd5b5061035961086d366004612366565b6115c1565b34801561087e57600080fd5b5061035961088d36600461229b565b61161a565b34801561089e57600080fd5b506103a66108ad3660046123fe565b611659565b3480156108be57600080fd5b5061037b6108cd366004612214565b6116df565b3480156108de57600080fd5b506103596108ed3660046123fe565b610f66565b3480156108fe57600080fd5b5061037b61090d36600461222e565b6116f4565b34801561091e57600080fd5b506103a6611722565b34801561093357600080fd5b50610415610942366004612214565b61172f565b34801561095357600080fd5b50610359610962366004612214565b611741565b61096f6117af565b6001600160a01b03166109806112e3565b6001600160a01b0316146109af5760405162461bcd60e51b81526004016109a690612b61565b60405180910390fd5b6109c08166038d7ea4c68000612dc2565b600f5550565b60006001600160e01b0319821663780e9d6360e01b14806109eb57506109eb826117b3565b90505b919050565b606060008054610a0290612e24565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e90612e24565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b6000610a90826117f3565b610aac5760405162461bcd60e51b81526004016109a690612b15565b506000908152600460205260409020546001600160a01b031690565b6000610ad38261112b565b9050806001600160a01b0316836001600160a01b03161415610b075760405162461bcd60e51b81526004016109a690612c2e565b806001600160a01b0316610b196117af565b6001600160a01b03161480610b355750610b358161090d6117af565b610b515760405162461bcd60e51b81526004016109a690612987565b610b5b8383611810565b505050565b600d5481565b60085490565b6001600160a01b031660009081526016602052604090205460ff1690565b600e5481565b610ba1610b9b6117af565b8261187e565b610bbd5760405162461bcd60e51b81526004016109a690612c6f565b610b5b838383611903565b600b5490565b6010546001600160a01b03163314610bf85760405162461bcd60e51b81526004016109a69061282a565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b610c2b6117af565b6001600160a01b0316610c3c6112e3565b6001600160a01b031614610c625760405162461bcd60e51b81526004016109a690612b61565b6010546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610c9c573d6000803e3d6000fd5b5050565b6000610cab836111fb565b8210610cc95760405162461bcd60e51b81526004016109a690612682565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610cfa6117af565b6001600160a01b0316610d0b6112e3565b6001600160a01b031614610d315760405162461bcd60e51b81526004016109a690612b61565b6001600160a01b03166000908152601660205260409020805460ff19169055565b600c5481565b601554610100900460ff1681565b610d6e6117af565b6001600160a01b0316610d7f6112e3565b6001600160a01b031614610da55760405162461bcd60e51b81526004016109a690612b61565b610dae816110c4565b50565b610db96117af565b6001600160a01b0316610dca6112e3565b6001600160a01b031614610df05760405162461bcd60e51b81526004016109a690612b61565b600c55565b600f5481565b610b5b8383836040518060200160405280600081525061161a565b60606000610e23836111fb565b905060008167ffffffffffffffff811115610e4e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e77578160200160208202803683370190505b50905060005b82811015610ecc57610e8f8582610ca0565b828281518110610eaf57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ec481612e5f565b915050610e7d565b509392505050565b6010546001600160a01b031681565b610eeb6117af565b6001600160a01b0316610efc6112e3565b6001600160a01b031614610f225760405162461bcd60e51b81526004016109a690612b61565b600d55565b610f2f6117af565b6001600160a01b0316610f406112e3565b6001600160a01b031614610f665760405162461bcd60e51b81526004016109a690612b61565b600b55565b610f736117af565b6001600160a01b0316610f846112e3565b6001600160a01b031614610faa5760405162461bcd60e51b81526004016109a690612b61565b6001600160a01b03811660009081526016602052604090205460ff16610fe4576001600160a01b0381166000908152601760205260408120555b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b60155460ff1681565b600c5490565b61101f6117af565b6001600160a01b03166110306112e3565b6001600160a01b0316146110565760405162461bcd60e51b81526004016109a690612b61565b6015805460ff1916911515919091179055565b6000611073610b66565b82106110915760405162461bcd60e51b81526004016109a690612cc0565b600882815481106110b257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6110cc6117af565b6001600160a01b03166110dd6112e3565b6001600160a01b0316146111035760405162461bcd60e51b81526004016109a690612b61565b8051610c9c9060129060208401906120e4565b60186020526000908152604090205460ff1681565b6000818152600260205260408120546001600160a01b0316806109eb5760405162461bcd60e51b81526004016109a690612a2e565b6014805461116d90612e24565b80601f016020809104026020016040519081016040528092919081815260200182805461119990612e24565b80156111e65780601f106111bb576101008083540402835291602001916111e6565b820191906000526020600020905b8154815290600101906020018083116111c957829003601f168201915b505050505081565b6012805461116d90612e24565b60006001600160a01b0382166112235760405162461bcd60e51b81526004016109a6906129e4565b506001600160a01b031660009081526003602052604090205490565b6112476117af565b6001600160a01b03166112586112e3565b6001600160a01b03161461127e5760405162461bcd60e51b81526004016109a690612b61565b6112886000611a30565b565b6011546001600160a01b031681565b600b5481565b6112a76117af565b6001600160a01b03166112b86112e3565b6001600160a01b0316146112de5760405162461bcd60e51b81526004016109a690612b61565b600e55565b600a546001600160a01b031690565b60006109eb600f5483611a8290919063ffffffff16565b606060018054610a0290612e24565b600b5442101561133a5760405162461bcd60e51b81526004016109a690612a77565b601554610100900460ff16611378573360009081526016602052604090205460ff166113785760405162461bcd60e51b81526004016109a69061279c565b600c54611383610b66565b106113a05760405162461bcd60e51b81526004016109a6906127e6565b600081116113c05760405162461bcd60e51b81526004016109a6906125d0565b600c546113d46113ce610b66565b83611a8e565b11156113f25760405162461bcd60e51b81526004016109a690612d0c565b600e5433600090815260176020526040902054106114225760405162461bcd60e51b81526004016109a690612618565b600e543360009081526017602052604090205461143f9083611a8e565b111561145d5760405162461bcd60e51b81526004016109a6906128ca565b60005b818110156114b65761147933611474610b66565b611a9a565b33600090815260176020526040902054611494906001611a8e565b33600090815260176020526040902055806114ae81612e5f565b915050611460565b507f152a3f66f8394a939d9860354eb635f358dd886f139a26e3accff04f6d6a132333826040516114e8929190612555565b60405180910390a150565b6114fb6117af565b6001600160a01b0316826001600160a01b0316141561152c5760405162461bcd60e51b81526004016109a690612893565b80600560006115396117af565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561157d6117af565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b591906125b2565b60405180910390a35050565b6115c96117af565b6001600160a01b03166115da6112e3565b6001600160a01b0316146116005760405162461bcd60e51b81526004016109a690612b61565b601580549115156101000261ff0019909216919091179055565b61162b6116256117af565b8361187e565b6116475760405162461bcd60e51b81526004016109a690612c6f565b61165384848484611ab4565b50505050565b6060611664826117f3565b6116805760405162461bcd60e51b81526004016109a690612bdf565b600061168a611ae7565b905060008151116116aa57604051806020016040528060008152506116d8565b806116b484611af6565b60146040516020016116c893929190612442565b6040516020818303038152906040525b9392505050565b60166020526000908152604090205460ff1681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6013805461116d90612e24565b60176020526000908152604090205481565b6117496117af565b6001600160a01b031661175a6112e3565b6001600160a01b0316146117805760405162461bcd60e51b81526004016109a690612b61565b6001600160a01b0381166117a65760405162461bcd60e51b81526004016109a69061271f565b610dae81611a30565b3390565b60006001600160e01b031982166380ac58cd60e01b14806117e457506001600160e01b03198216635b5e139f60e01b145b806109eb57506109eb82611c11565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118458261112b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611889826117f3565b6118a55760405162461bcd60e51b81526004016109a69061293b565b60006118b08361112b565b9050806001600160a01b0316846001600160a01b031614806118eb5750836001600160a01b03166118e084610a85565b6001600160a01b0316145b806118fb57506118fb81856116f4565b949350505050565b826001600160a01b03166119168261112b565b6001600160a01b03161461193c5760405162461bcd60e51b81526004016109a690612b96565b6001600160a01b0382166119625760405162461bcd60e51b81526004016109a69061284f565b61196d838383611c2a565b611978600082611810565b6001600160a01b03831660009081526003602052604081208054600192906119a1908490612de1565b90915550506001600160a01b03821660009081526003602052604081208054600192906119cf908490612d96565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006116d88284612dc2565b60006116d88284612d96565b610c9c828260405180602001604052806000815250611cb3565b611abf848484611903565b611acb84848484611ce6565b6116535760405162461bcd60e51b81526004016109a6906126cd565b606060128054610a0290612e24565b606081611b1b57506040805180820190915260018152600360fc1b60208201526109ee565b8160005b8115611b455780611b2f81612e5f565b9150611b3e9050600a83612dae565b9150611b1f565b60008167ffffffffffffffff811115611b6e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b98576020820181803683370190505b5090505b84156118fb57611bad600183612de1565b9150611bba600a86612e7a565b611bc5906030612d96565b60f81b818381518110611be857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c0a600a86612dae565b9450611b9c565b6001600160e01b031981166301ffc9a760e01b14919050565b611c35838383610b5b565b6001600160a01b038316611c5157611c4c81611e01565b611c74565b816001600160a01b0316836001600160a01b031614611c7457611c748382611e45565b6001600160a01b038216611c9057611c8b81611ee2565b610b5b565b826001600160a01b0316826001600160a01b031614610b5b57610b5b8282611fbb565b611cbd8383611fff565b611cca6000848484611ce6565b610b5b5760405162461bcd60e51b81526004016109a6906126cd565b6000611cfa846001600160a01b03166120de565b15611df657836001600160a01b031663150b7a02611d166117af565b8786866040518563ffffffff1660e01b8152600401611d389493929190612518565b602060405180830381600087803b158015611d5257600080fd5b505af1925050508015611d82575060408051601f3d908101601f19168201909252611d7f9181019061239c565b60015b611ddc573d808015611db0576040519150601f19603f3d011682016040523d82523d6000602084013e611db5565b606091505b508051611dd45760405162461bcd60e51b81526004016109a6906126cd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118fb565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611e52846111fb565b611e5c9190612de1565b600083815260076020526040902054909150808214611eaf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ef490600190612de1565b60008381526009602052604081205460088054939450909284908110611f2a57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611f5957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f9f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611fc6836111fb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120255760405162461bcd60e51b81526004016109a690612ae0565b61202e816117f3565b1561204b5760405162461bcd60e51b81526004016109a690612765565b61205760008383611c2a565b6001600160a01b0382166000908152600360205260408120805460019290612080908490612d96565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546120f090612e24565b90600052602060002090601f0160209004810192826121125760008555612158565b82601f1061212b57805160ff1916838001178555612158565b82800160010185558215612158579182015b8281111561215857825182559160200191906001019061213d565b50612164929150612168565b5090565b5b808211156121645760008155600101612169565b600067ffffffffffffffff8084111561219857612198612eba565b604051601f8501601f1916810160200182811182821017156121bc576121bc612eba565b6040528481529150818385018610156121d457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146109ee57600080fd5b803580151581146109ee57600080fd5b600060208284031215612225578081fd5b6116d8826121ed565b60008060408385031215612240578081fd5b612249836121ed565b9150612257602084016121ed565b90509250929050565b600080600060608486031215612274578081fd5b61227d846121ed565b925061228b602085016121ed565b9150604084013590509250925092565b600080600080608085870312156122b0578081fd5b6122b9856121ed565b93506122c7602086016121ed565b925060408501359150606085013567ffffffffffffffff8111156122e9578182fd5b8501601f810187136122f9578182fd5b6123088782356020840161217d565b91505092959194509250565b60008060408385031215612326578182fd5b61232f836121ed565b915061225760208401612204565b6000806040838503121561234f578182fd5b612358836121ed565b946020939093013593505050565b600060208284031215612377578081fd5b6116d882612204565b600060208284031215612391578081fd5b81356116d881612ed0565b6000602082840312156123ad578081fd5b81516116d881612ed0565b6000602082840312156123c9578081fd5b813567ffffffffffffffff8111156123df578182fd5b8201601f810184136123ef578182fd5b6118fb8482356020840161217d565b60006020828403121561240f578081fd5b5035919050565b6000815180845261242e816020860160208601612df8565b601f01601f19169290920160200192915050565b6000845160206124558285838a01612df8565b8551918401916124688184848a01612df8565b855492019183906002810460018083168061248457607f831692505b8583108114156124a257634e487b7160e01b88526022600452602488fd5b8080156124b657600181146124c7576124f3565b60ff198516885283880195506124f3565b6124d08b612d8a565b895b858110156124eb5781548a8201529084019088016124d2565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061254b90830184612416565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b818110156125a65783518352928401929184019160010161258a565b50909695505050505050565b901515815260200190565b6000602082526116d86020830184612416565b60208082526028908201527f457863657074696f6e20343a20596f752063616e6e6f74206d696e74203020426040820152673ab33330b637b99760c11b606082015260800190565b60208082526044908201527f457863657074696f6e20363a205265616368656420746865206c696d6974206660408201527f6f72206561636820757365722e20596f752063616e2774206d696e74206e6f206060820152636d6f726560e01b608082015260a00190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602a908201527f457863657074696f6e20323a205369676e65722073686f756c6420626520776860408201526934ba32b634b9ba32b21760b11b606082015260800190565b60208082526024908201527f457863657074696f6e20333a2053616c652068617320616c726561647920656e6040820152633232b21760e11b606082015260800190565b6020808252600b908201526a617274697374206f6e6c7960a81b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252604b908201527f457863657074696f6e20373a2045786365656473206c696d697420666f72206560408201527f61636820757365722e20506c656173652074727920746f206d696e74206c657360608201526a3990213ab33330b637b99760a91b608082015260a00190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526043908201527f457863657074696f6e20313a2053616c6520686173206e6f742073746172746560408201527f642079657420736f20796f752063616e2774206765742061207072696365207960608201526232ba1760e91b608082015260a00190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252604f908201527f457863657074696f6e20353a2045786365656473206d6178696d756d2042756660408201527f66616c6f7320737570706c792e20506c656173652074727920746f206d696e7460608201526e103632b9b990213ab33330b637b99760891b608082015260a00190565b90815260200190565b60009081526020902090565b60008219821115612da957612da9612e8e565b500190565b600082612dbd57612dbd612ea4565b500490565b6000816000190483118215151615612ddc57612ddc612e8e565b500290565b600082821015612df357612df3612e8e565b500390565b60005b83811015612e13578181015183820152602001612dfb565b838111156116535750506000910152565b600281046001821680612e3857607f821691505b60208210811415612e5957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e7357612e73612e8e565b5060010190565b600082612e8957612e89612ea4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dae57600080fdfea264697066735822122021ecd8fefcb6f6314ca5bd6e2ed0503881df229eeead4d994f1292a3efdb798364736f6c634300080000330000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001880000000000000000000000000000000000000000000000000000000061be7f77000000000000000000000000f394575a7e60ee7016369fc733b6b768b506a5c70000000000000000000000003ae4921b4e8fe6dddef35b8e2459fe1938a252b300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000d4661746566756c20596f7574680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024659000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e70417a4e4148464734667457766475797a784b6576657a6741424e5750446d3434477837574455784c6b7a2f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103345760003560e01c80634c0f38c2116101ab5780638da5cb5b116100f7578063c87b56dd11610095578063e985e9c51161006f578063e985e9c5146108f2578063eac989f814610912578063eedc966a14610927578063f2fde38b1461094757610334565b8063c87b56dd14610892578063d936547e146108b2578063e2db1a30146108d257610334565b8063a0712d68116100d1578063a0712d681461081f578063a22cb46514610832578063ab2d5ccd14610852578063b88d4fde1461087257610334565b80638da5cb5b146107d557806392976179146107ea57806395d89b411461080a57610334565b80636b870e4411610164578063715018a61161013e578063715018a61461077657806377c567a71461078b5780637b2feaaa146107a05780637f00c7a6146107b557610334565b80636b870e441461072c5780636c0360eb1461074157806370a082311461075657610334565b80634c0f38c2146106775780634e80f0f11461068c5780634f6ccce7146106ac57806355f804b3146106cc5780635600d2fa146106ec5780636352211e1461070c57610334565b80632f745c591161028557806342842e0e1161022357806344a0d68a116101fd57806344a0d68a1461060257806346e8597a146106225780634a4c560d146106425780634bf365df1461066257610334565b806342842e0e146105a0578063438b6300146105c057806343bc1612146105ed57610334565b806333bc1c5c1161025f57806333bc1c5c1461053657806339a0c6f91461054b578063404c7cdd1461056b57806341910f901461058b57610334565b80632f745c59146104e157806330cc7ae01461050157806332cb6b0c1461052157610334565b806318160ddd116102f257806323b872dd116102cc57806323b872dd1461046c57806325ae270b1461048c5780632836be24146104a15780632e1a7d4d146104c157610334565b806318160ddd1461042257806320d8dad014610437578063239c70ae1461045757610334565b8062728e461461033957806301ffc9a71461035b57806306fdde0314610391578063081812fc146103b3578063095ea7b3146103e057806313faede614610400575b600080fd5b34801561034557600080fd5b506103596103543660046123fe565b610967565b005b34801561036757600080fd5b5061037b610376366004612380565b6109c6565b60405161038891906125b2565b60405180910390f35b34801561039d57600080fd5b506103a66109f3565b60405161038891906125bd565b3480156103bf57600080fd5b506103d36103ce3660046123fe565b610a85565b6040516103889190612504565b3480156103ec57600080fd5b506103596103fb36600461233d565b610ac8565b34801561040c57600080fd5b50610415610b60565b6040516103889190612d81565b34801561042e57600080fd5b50610415610b66565b34801561044357600080fd5b5061037b610452366004612214565b610b6c565b34801561046357600080fd5b50610415610b8a565b34801561047857600080fd5b50610359610487366004612260565b610b90565b34801561049857600080fd5b50610415610bc8565b3480156104ad57600080fd5b506103596104bc366004612314565b610bce565b3480156104cd57600080fd5b506103596104dc3660046123fe565b610c23565b3480156104ed57600080fd5b506104156104fc36600461233d565b610ca0565b34801561050d57600080fd5b5061035961051c366004612214565b610cf2565b34801561052d57600080fd5b50610415610d52565b34801561054257600080fd5b5061037b610d58565b34801561055757600080fd5b506103596105663660046123b8565b610d66565b34801561057757600080fd5b506103596105863660046123fe565b610db1565b34801561059757600080fd5b50610415610df5565b3480156105ac57600080fd5b506103596105bb366004612260565b610dfb565b3480156105cc57600080fd5b506105e06105db366004612214565b610e16565b604051610388919061256e565b3480156105f957600080fd5b506103d3610ed4565b34801561060e57600080fd5b5061035961061d3660046123fe565b610ee3565b34801561062e57600080fd5b5061035961063d3660046123fe565b610f27565b34801561064e57600080fd5b5061035961065d366004612214565b610f6b565b34801561066e57600080fd5b5061037b611008565b34801561068357600080fd5b50610415611011565b34801561069857600080fd5b506103596106a7366004612366565b611017565b3480156106b857600080fd5b506104156106c73660046123fe565b611069565b3480156106d857600080fd5b506103596106e73660046123b8565b6110c4565b3480156106f857600080fd5b5061037b610707366004612214565b611116565b34801561071857600080fd5b506103d36107273660046123fe565b61112b565b34801561073857600080fd5b506103a6611160565b34801561074d57600080fd5b506103a66111ee565b34801561076257600080fd5b50610415610771366004612214565b6111fb565b34801561078257600080fd5b5061035961123f565b34801561079757600080fd5b506103d361128a565b3480156107ac57600080fd5b50610415611299565b3480156107c157600080fd5b506103596107d03660046123fe565b61129f565b3480156107e157600080fd5b506103d36112e3565b3480156107f657600080fd5b506104156108053660046123fe565b6112f2565b34801561081657600080fd5b506103a6611309565b61035961082d3660046123fe565b611318565b34801561083e57600080fd5b5061035961084d366004612314565b6114f3565b34801561085e57600080fd5b5061035961086d366004612366565b6115c1565b34801561087e57600080fd5b5061035961088d36600461229b565b61161a565b34801561089e57600080fd5b506103a66108ad3660046123fe565b611659565b3480156108be57600080fd5b5061037b6108cd366004612214565b6116df565b3480156108de57600080fd5b506103596108ed3660046123fe565b610f66565b3480156108fe57600080fd5b5061037b61090d36600461222e565b6116f4565b34801561091e57600080fd5b506103a6611722565b34801561093357600080fd5b50610415610942366004612214565b61172f565b34801561095357600080fd5b50610359610962366004612214565b611741565b61096f6117af565b6001600160a01b03166109806112e3565b6001600160a01b0316146109af5760405162461bcd60e51b81526004016109a690612b61565b60405180910390fd5b6109c08166038d7ea4c68000612dc2565b600f5550565b60006001600160e01b0319821663780e9d6360e01b14806109eb57506109eb826117b3565b90505b919050565b606060008054610a0290612e24565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e90612e24565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b6000610a90826117f3565b610aac5760405162461bcd60e51b81526004016109a690612b15565b506000908152600460205260409020546001600160a01b031690565b6000610ad38261112b565b9050806001600160a01b0316836001600160a01b03161415610b075760405162461bcd60e51b81526004016109a690612c2e565b806001600160a01b0316610b196117af565b6001600160a01b03161480610b355750610b358161090d6117af565b610b515760405162461bcd60e51b81526004016109a690612987565b610b5b8383611810565b505050565b600d5481565b60085490565b6001600160a01b031660009081526016602052604090205460ff1690565b600e5481565b610ba1610b9b6117af565b8261187e565b610bbd5760405162461bcd60e51b81526004016109a690612c6f565b610b5b838383611903565b600b5490565b6010546001600160a01b03163314610bf85760405162461bcd60e51b81526004016109a69061282a565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b610c2b6117af565b6001600160a01b0316610c3c6112e3565b6001600160a01b031614610c625760405162461bcd60e51b81526004016109a690612b61565b6010546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610c9c573d6000803e3d6000fd5b5050565b6000610cab836111fb565b8210610cc95760405162461bcd60e51b81526004016109a690612682565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610cfa6117af565b6001600160a01b0316610d0b6112e3565b6001600160a01b031614610d315760405162461bcd60e51b81526004016109a690612b61565b6001600160a01b03166000908152601660205260409020805460ff19169055565b600c5481565b601554610100900460ff1681565b610d6e6117af565b6001600160a01b0316610d7f6112e3565b6001600160a01b031614610da55760405162461bcd60e51b81526004016109a690612b61565b610dae816110c4565b50565b610db96117af565b6001600160a01b0316610dca6112e3565b6001600160a01b031614610df05760405162461bcd60e51b81526004016109a690612b61565b600c55565b600f5481565b610b5b8383836040518060200160405280600081525061161a565b60606000610e23836111fb565b905060008167ffffffffffffffff811115610e4e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e77578160200160208202803683370190505b50905060005b82811015610ecc57610e8f8582610ca0565b828281518110610eaf57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ec481612e5f565b915050610e7d565b509392505050565b6010546001600160a01b031681565b610eeb6117af565b6001600160a01b0316610efc6112e3565b6001600160a01b031614610f225760405162461bcd60e51b81526004016109a690612b61565b600d55565b610f2f6117af565b6001600160a01b0316610f406112e3565b6001600160a01b031614610f665760405162461bcd60e51b81526004016109a690612b61565b600b55565b610f736117af565b6001600160a01b0316610f846112e3565b6001600160a01b031614610faa5760405162461bcd60e51b81526004016109a690612b61565b6001600160a01b03811660009081526016602052604090205460ff16610fe4576001600160a01b0381166000908152601760205260408120555b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b60155460ff1681565b600c5490565b61101f6117af565b6001600160a01b03166110306112e3565b6001600160a01b0316146110565760405162461bcd60e51b81526004016109a690612b61565b6015805460ff1916911515919091179055565b6000611073610b66565b82106110915760405162461bcd60e51b81526004016109a690612cc0565b600882815481106110b257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6110cc6117af565b6001600160a01b03166110dd6112e3565b6001600160a01b0316146111035760405162461bcd60e51b81526004016109a690612b61565b8051610c9c9060129060208401906120e4565b60186020526000908152604090205460ff1681565b6000818152600260205260408120546001600160a01b0316806109eb5760405162461bcd60e51b81526004016109a690612a2e565b6014805461116d90612e24565b80601f016020809104026020016040519081016040528092919081815260200182805461119990612e24565b80156111e65780601f106111bb576101008083540402835291602001916111e6565b820191906000526020600020905b8154815290600101906020018083116111c957829003601f168201915b505050505081565b6012805461116d90612e24565b60006001600160a01b0382166112235760405162461bcd60e51b81526004016109a6906129e4565b506001600160a01b031660009081526003602052604090205490565b6112476117af565b6001600160a01b03166112586112e3565b6001600160a01b03161461127e5760405162461bcd60e51b81526004016109a690612b61565b6112886000611a30565b565b6011546001600160a01b031681565b600b5481565b6112a76117af565b6001600160a01b03166112b86112e3565b6001600160a01b0316146112de5760405162461bcd60e51b81526004016109a690612b61565b600e55565b600a546001600160a01b031690565b60006109eb600f5483611a8290919063ffffffff16565b606060018054610a0290612e24565b600b5442101561133a5760405162461bcd60e51b81526004016109a690612a77565b601554610100900460ff16611378573360009081526016602052604090205460ff166113785760405162461bcd60e51b81526004016109a69061279c565b600c54611383610b66565b106113a05760405162461bcd60e51b81526004016109a6906127e6565b600081116113c05760405162461bcd60e51b81526004016109a6906125d0565b600c546113d46113ce610b66565b83611a8e565b11156113f25760405162461bcd60e51b81526004016109a690612d0c565b600e5433600090815260176020526040902054106114225760405162461bcd60e51b81526004016109a690612618565b600e543360009081526017602052604090205461143f9083611a8e565b111561145d5760405162461bcd60e51b81526004016109a6906128ca565b60005b818110156114b65761147933611474610b66565b611a9a565b33600090815260176020526040902054611494906001611a8e565b33600090815260176020526040902055806114ae81612e5f565b915050611460565b507f152a3f66f8394a939d9860354eb635f358dd886f139a26e3accff04f6d6a132333826040516114e8929190612555565b60405180910390a150565b6114fb6117af565b6001600160a01b0316826001600160a01b0316141561152c5760405162461bcd60e51b81526004016109a690612893565b80600560006115396117af565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561157d6117af565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b591906125b2565b60405180910390a35050565b6115c96117af565b6001600160a01b03166115da6112e3565b6001600160a01b0316146116005760405162461bcd60e51b81526004016109a690612b61565b601580549115156101000261ff0019909216919091179055565b61162b6116256117af565b8361187e565b6116475760405162461bcd60e51b81526004016109a690612c6f565b61165384848484611ab4565b50505050565b6060611664826117f3565b6116805760405162461bcd60e51b81526004016109a690612bdf565b600061168a611ae7565b905060008151116116aa57604051806020016040528060008152506116d8565b806116b484611af6565b60146040516020016116c893929190612442565b6040516020818303038152906040525b9392505050565b60166020526000908152604090205460ff1681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6013805461116d90612e24565b60176020526000908152604090205481565b6117496117af565b6001600160a01b031661175a6112e3565b6001600160a01b0316146117805760405162461bcd60e51b81526004016109a690612b61565b6001600160a01b0381166117a65760405162461bcd60e51b81526004016109a69061271f565b610dae81611a30565b3390565b60006001600160e01b031982166380ac58cd60e01b14806117e457506001600160e01b03198216635b5e139f60e01b145b806109eb57506109eb82611c11565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118458261112b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611889826117f3565b6118a55760405162461bcd60e51b81526004016109a69061293b565b60006118b08361112b565b9050806001600160a01b0316846001600160a01b031614806118eb5750836001600160a01b03166118e084610a85565b6001600160a01b0316145b806118fb57506118fb81856116f4565b949350505050565b826001600160a01b03166119168261112b565b6001600160a01b03161461193c5760405162461bcd60e51b81526004016109a690612b96565b6001600160a01b0382166119625760405162461bcd60e51b81526004016109a69061284f565b61196d838383611c2a565b611978600082611810565b6001600160a01b03831660009081526003602052604081208054600192906119a1908490612de1565b90915550506001600160a01b03821660009081526003602052604081208054600192906119cf908490612d96565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006116d88284612dc2565b60006116d88284612d96565b610c9c828260405180602001604052806000815250611cb3565b611abf848484611903565b611acb84848484611ce6565b6116535760405162461bcd60e51b81526004016109a6906126cd565b606060128054610a0290612e24565b606081611b1b57506040805180820190915260018152600360fc1b60208201526109ee565b8160005b8115611b455780611b2f81612e5f565b9150611b3e9050600a83612dae565b9150611b1f565b60008167ffffffffffffffff811115611b6e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b98576020820181803683370190505b5090505b84156118fb57611bad600183612de1565b9150611bba600a86612e7a565b611bc5906030612d96565b60f81b818381518110611be857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c0a600a86612dae565b9450611b9c565b6001600160e01b031981166301ffc9a760e01b14919050565b611c35838383610b5b565b6001600160a01b038316611c5157611c4c81611e01565b611c74565b816001600160a01b0316836001600160a01b031614611c7457611c748382611e45565b6001600160a01b038216611c9057611c8b81611ee2565b610b5b565b826001600160a01b0316826001600160a01b031614610b5b57610b5b8282611fbb565b611cbd8383611fff565b611cca6000848484611ce6565b610b5b5760405162461bcd60e51b81526004016109a6906126cd565b6000611cfa846001600160a01b03166120de565b15611df657836001600160a01b031663150b7a02611d166117af565b8786866040518563ffffffff1660e01b8152600401611d389493929190612518565b602060405180830381600087803b158015611d5257600080fd5b505af1925050508015611d82575060408051601f3d908101601f19168201909252611d7f9181019061239c565b60015b611ddc573d808015611db0576040519150601f19603f3d011682016040523d82523d6000602084013e611db5565b606091505b508051611dd45760405162461bcd60e51b81526004016109a6906126cd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118fb565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611e52846111fb565b611e5c9190612de1565b600083815260076020526040902054909150808214611eaf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ef490600190612de1565b60008381526009602052604081205460088054939450909284908110611f2a57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611f5957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f9f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611fc6836111fb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120255760405162461bcd60e51b81526004016109a690612ae0565b61202e816117f3565b1561204b5760405162461bcd60e51b81526004016109a690612765565b61205760008383611c2a565b6001600160a01b0382166000908152600360205260408120805460019290612080908490612d96565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546120f090612e24565b90600052602060002090601f0160209004810192826121125760008555612158565b82601f1061212b57805160ff1916838001178555612158565b82800160010185558215612158579182015b8281111561215857825182559160200191906001019061213d565b50612164929150612168565b5090565b5b808211156121645760008155600101612169565b600067ffffffffffffffff8084111561219857612198612eba565b604051601f8501601f1916810160200182811182821017156121bc576121bc612eba565b6040528481529150818385018610156121d457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146109ee57600080fd5b803580151581146109ee57600080fd5b600060208284031215612225578081fd5b6116d8826121ed565b60008060408385031215612240578081fd5b612249836121ed565b9150612257602084016121ed565b90509250929050565b600080600060608486031215612274578081fd5b61227d846121ed565b925061228b602085016121ed565b9150604084013590509250925092565b600080600080608085870312156122b0578081fd5b6122b9856121ed565b93506122c7602086016121ed565b925060408501359150606085013567ffffffffffffffff8111156122e9578182fd5b8501601f810187136122f9578182fd5b6123088782356020840161217d565b91505092959194509250565b60008060408385031215612326578182fd5b61232f836121ed565b915061225760208401612204565b6000806040838503121561234f578182fd5b612358836121ed565b946020939093013593505050565b600060208284031215612377578081fd5b6116d882612204565b600060208284031215612391578081fd5b81356116d881612ed0565b6000602082840312156123ad578081fd5b81516116d881612ed0565b6000602082840312156123c9578081fd5b813567ffffffffffffffff8111156123df578182fd5b8201601f810184136123ef578182fd5b6118fb8482356020840161217d565b60006020828403121561240f578081fd5b5035919050565b6000815180845261242e816020860160208601612df8565b601f01601f19169290920160200192915050565b6000845160206124558285838a01612df8565b8551918401916124688184848a01612df8565b855492019183906002810460018083168061248457607f831692505b8583108114156124a257634e487b7160e01b88526022600452602488fd5b8080156124b657600181146124c7576124f3565b60ff198516885283880195506124f3565b6124d08b612d8a565b895b858110156124eb5781548a8201529084019088016124d2565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061254b90830184612416565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b818110156125a65783518352928401929184019160010161258a565b50909695505050505050565b901515815260200190565b6000602082526116d86020830184612416565b60208082526028908201527f457863657074696f6e20343a20596f752063616e6e6f74206d696e74203020426040820152673ab33330b637b99760c11b606082015260800190565b60208082526044908201527f457863657074696f6e20363a205265616368656420746865206c696d6974206660408201527f6f72206561636820757365722e20596f752063616e2774206d696e74206e6f206060820152636d6f726560e01b608082015260a00190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602a908201527f457863657074696f6e20323a205369676e65722073686f756c6420626520776860408201526934ba32b634b9ba32b21760b11b606082015260800190565b60208082526024908201527f457863657074696f6e20333a2053616c652068617320616c726561647920656e6040820152633232b21760e11b606082015260800190565b6020808252600b908201526a617274697374206f6e6c7960a81b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252604b908201527f457863657074696f6e20373a2045786365656473206c696d697420666f72206560408201527f61636820757365722e20506c656173652074727920746f206d696e74206c657360608201526a3990213ab33330b637b99760a91b608082015260a00190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526043908201527f457863657074696f6e20313a2053616c6520686173206e6f742073746172746560408201527f642079657420736f20796f752063616e2774206765742061207072696365207960608201526232ba1760e91b608082015260a00190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252604f908201527f457863657074696f6e20353a2045786365656473206d6178696d756d2042756660408201527f66616c6f7320737570706c792e20506c656173652074727920746f206d696e7460608201526e103632b9b990213ab33330b637b99760891b608082015260a00190565b90815260200190565b60009081526020902090565b60008219821115612da957612da9612e8e565b500190565b600082612dbd57612dbd612ea4565b500490565b6000816000190483118215151615612ddc57612ddc612e8e565b500290565b600082821015612df357612df3612e8e565b500390565b60005b83811015612e13578181015183820152602001612dfb565b838111156116535750506000910152565b600281046001821680612e3857607f821691505b60208210811415612e5957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e7357612e73612e8e565b5060010190565b600082612e8957612e89612ea4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dae57600080fdfea264697066735822122021ecd8fefcb6f6314ca5bd6e2ed0503881df229eeead4d994f1292a3efdb798364736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001880000000000000000000000000000000000000000000000000000000061be7f77000000000000000000000000f394575a7e60ee7016369fc733b6b768b506a5c70000000000000000000000003ae4921b4e8fe6dddef35b8e2459fe1938a252b300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000d4661746566756c20596f7574680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024659000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e70417a4e4148464734667457766475797a784b6576657a6741424e5750446d3434477837574455784c6b7a2f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Fateful Youth
Arg [1] : symbol (string): FY
Arg [2] : URI (string): https://gateway.pinata.cloud/ipfs/QmNpAzNAHFG4ftWvduyzxKevezgABNWPDm44Gx7WDUxLkz/
Arg [3] : initialSupply (uint256): 392
Arg [4] : startDate (uint256): 1639874423
Arg [5] : _artist (address): 0xF394575a7e60EE7016369fC733B6B768b506A5C7
Arg [6] : _txFeeToken (address): 0x3Ae4921B4E8FE6DDdef35B8e2459FE1938a252B3
Arg [7] : _txFeeAmount (uint256): 1
Arg [8] : _limitPerAddress (uint256): 3
-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000188
Arg [4] : 0000000000000000000000000000000000000000000000000000000061be7f77
Arg [5] : 000000000000000000000000f394575a7e60ee7016369fc733b6b768b506a5c7
Arg [6] : 0000000000000000000000003ae4921b4e8fe6dddef35b8e2459fe1938a252b3
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [10] : 4661746566756c20596f75746800000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 4659000000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [14] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [15] : 732f516d4e70417a4e4148464734667457766475797a784b6576657a6741424e
Arg [16] : 5750446d3434477837574455784c6b7a2f000000000000000000000000000000
Deployed Bytecode Sourcemap
182:6710:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5018:104;;;;;;;;;;-1:-1:-1;5018:104:1;;;;;:::i;:::-;;:::i;:::-;;909:222:5;;;;;;;;;;-1:-1:-1;909:222:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3398:401::-;;;;;;;;;;-1:-1:-1;3398:401:4;;;;;:::i;:::-;;:::i;459:19:1:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1534:111:5:-;;;;;;;;;;;;;:::i;5661:112:1:-;;;;;;;;;;-1:-1:-1;5661:112:1;;;;;:::i;:::-;;:::i;485:28::-;;;;;;;;;;;;;:::i;4724:330:4:-;;;;;;;;;;-1:-1:-1;4724:330:4;;;;;:::i;:::-;;:::i;2367:92:1:-;;;;;;;;;;;;;:::i;1903:166::-;;;;;;;;;;-1:-1:-1;1903:166:1;;;;;:::i;:::-;;:::i;4400:102::-;;;;;;;;;;-1:-1:-1;4400:102:1;;;;;:::i;:::-;;:::i;1210:253:5:-;;;;;;;;;;-1:-1:-1;1210:253:5;;;;;:::i;:::-;;:::i;6781:106:1:-;;;;;;;;;;-1:-1:-1;6781:106:1;;;;;:::i;:::-;;:::i;427:25::-;;;;;;;;;;;;;:::i;822:30::-;;;;;;;;;;;;;:::i;4625:92::-;;;;;;;;;;-1:-1:-1;4625:92:1;;;;;:::i;:::-;;:::i;4811:96::-;;;;;;;;;;-1:-1:-1;4811:96:1;;;;;:::i;:::-;;:::i;520:35::-;;;;;;;;;;;;;:::i;5120:179:4:-;;;;;;;;;;-1:-1:-1;5120:179:4;;;;;:::i;:::-;;:::i;5130:390:1:-;;;;;;;;;;-1:-1:-1;5130:390:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;568:21::-;;;;;;;;;;;;;:::i;6280:86::-;;;;;;;;;;-1:-1:-1;6280:86:1;;;;;:::i;:::-;;:::i;2175:184::-;;;;;;;;;;-1:-1:-1;2175:184:1;;;;;:::i;:::-;;:::i;6616:157::-;;;;;;;;;;-1:-1:-1;6616:157:1;;;;;:::i;:::-;;:::i;788:27::-;;;;;;;;;;;;;:::i;2467:91::-;;;;;;;;;;;;;:::i;4305:87::-;;;;;;;;;;-1:-1:-1;4305:87:1;;;;;:::i;:::-;;:::i;1717:230:5:-;;;;;;;;;;-1:-1:-1;1717:230:5;;;;;:::i;:::-;;:::i;6504:104:1:-;;;;;;;;;;-1:-1:-1;6504:104:1;;;;;:::i;:::-;;:::i;965:44::-;;;;;;;;;;-1:-1:-1;965:44:1;;;;;:::i;:::-;;:::i;2052:235:4:-;;;;;;;;;;-1:-1:-1;2052:235:4;;;;;:::i;:::-;;:::i;744:35:1:-;;;;;;;;;;;;;:::i;630:21::-;;;;;;;;;;;;;:::i;1790:205:4:-;;;;;;;;;;-1:-1:-1;1790:205:4;;;;;:::i;:::-;;:::i;1598:92:13:-;;;;;;;;;;;;;:::i;596:25:1:-;;;;;;;;;;;;;:::i;343:::-;;;;;;;;;;;;;:::i;6374:122::-;;;;;;;;;;-1:-1:-1;6374:122:1;;;;;:::i;:::-;;:::i;966:85:13:-;;;;;;;;;;;;;:::i;1781:114:1:-;;;;;;;;;;-1:-1:-1;1781:114:1;;;;;:::i;:::-;;:::i;2511:102:4:-;;;;;;;;;;;;;:::i;2790:1413:1:-;;;;;;:::i;:::-;;:::i;4144:290:4:-;;;;;;;;;;-1:-1:-1;4144:290:4;;;;;:::i;:::-;;:::i;4915:95:1:-;;;;;;;;;;-1:-1:-1;4915:95:1;;;;;:::i;:::-;;:::i;5365:320:4:-;;;;;;;;;;-1:-1:-1;5365:320:4;;;;;:::i;:::-;;:::i;5781:473:1:-;;;;;;;;;;-1:-1:-1;5781:473:1;;;;;:::i;:::-;;:::i;861:43::-;;;;;;;;;;-1:-1:-1;861:43:1;;;;;:::i;:::-;;:::i;2077:90::-;;;;;;;;;;-1:-1:-1;2077:90:1;;;;;:::i;:::-;;:::i;4500:162:4:-;;;;;;;;;;-1:-1:-1;4500:162:4;;;;;:::i;:::-;;:::i;720:17:1:-;;;;;;;;;;;;;:::i;911:47::-;;;;;;;;;;-1:-1:-1;911:47:1;;;;;:::i;:::-;;:::i;1839:189:13:-;;;;;;;;;;-1:-1:-1;1839:189:13;;;;;:::i;:::-;;:::i;5018:104:1:-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;;;;;;;;;5098:16:1::1;:5:::0;5106:8:::1;5098:16;:::i;:::-;5086:9;:28:::0;-1:-1:-1;5018:104:1:o;909:222:5:-;1011:4;-1:-1:-1;;;;;;1034:50:5;;-1:-1:-1;;;1034:50:5;;:90;;;1088:36;1112:11;1088:23;:36::i;:::-;1027:97;;909:222;;;;:::o;2349:98:4:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;-1:-1:-1;;;3955:73:4;;;;;;;:::i;:::-;-1:-1:-1;4046:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:4;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:4;:2;-1:-1:-1;;;;;3535:11:4;;;3527:57;;;;-1:-1:-1;;;3527:57:4;;;;;;;:::i;:::-;3632:5;-1:-1:-1;;;;;3616:21:4;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3616:21:4;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:4;;;;;;;:::i;:::-;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;459:19:1:-;;;;:::o;1534:111:5:-;1621:10;:17;1534:111;:::o;5661:112:1:-;-1:-1:-1;;;;;5747:18:1;5723:4;5747:18;;;:11;:18;;;;;;;;;5661:112::o;485:28::-;;;;:::o;4724:330:4:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:4;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;2367:92:1:-;2441:10;;2367:92;:::o;1903:166::-;1997:6;;-1:-1:-1;;;;;1997:6:1;1983:10;:20;1975:44;;;;-1:-1:-1;;;1975:44:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;2030:22:1;;;;;;;;:12;:22;;;;;:31;;-1:-1:-1;;2030:31:1;;;;;;;;;;1903:166::o;4400:102::-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;4470:6:1::1;::::0;4462:32:::1;::::0;-1:-1:-1;;;;;4470:6:1;;::::1;::::0;4462:32;::::1;;;::::0;4487:6;;4470::::1;4462:32:::0;4470:6;4462:32;4487:6;4470;4462:32;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;4400:102:::0;:::o;1210:253:5:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1430:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;6781:106:1:-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;6853:18:1::1;6874:5;6853:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;6853:26:1::1;::::0;;6781:106::o;427:25::-;;;;:::o;822:30::-;;;;;;;;;:::o;4625:92::-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;4694:15:1::1;4705:3;4694:10;:15::i;:::-;4625:92:::0;:::o;4811:96::-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;4880:10:1::1;:19:::0;4811:96::o;520:35::-;;;;:::o;5120:179:4:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;5130:390:1:-;5217:16;5251:23;5277:17;5287:6;5277:9;:17::i;:::-;5251:43;;5305:25;5347:15;5333:30;;;;;;-1:-1:-1;;;5333:30:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5333:30:1;;5305:58;;5379:9;5374:113;5394:15;5390:1;:19;5374:113;;;5445:30;5465:6;5473:1;5445:19;:30::i;:::-;5431:8;5440:1;5431:11;;;;;;-1:-1:-1;;;5431:11:1;;;;;;;;;;;;;;;;;;:44;5411:3;;;;:::i;:::-;;;;5374:113;;;-1:-1:-1;5504:8:1;5130:390;-1:-1:-1;;;5130:390:1:o;568:21::-;;;-1:-1:-1;;;;;568:21:1;;:::o;6280:86::-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;6343:4:1::1;:15:::0;6280:86::o;2175:184::-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;2329:10:1::1;:22:::0;2175:184::o;6616:157::-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;6686:18:1;::::1;;::::0;;;:11:::1;:18;::::0;;;;;::::1;;6682:47;;-1:-1:-1::0;;;;;6706:19:1;::::1;6728:1;6706:19:::0;;;:12:::1;:19;::::0;;;;:23;6682:47:::1;-1:-1:-1::0;;;;;6740:18:1::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;6740:25:1::1;6761:4;6740:25;::::0;;6616:157::o;788:27::-;;;;;;:::o;2467:91::-;2540:10;;2467:91;:::o;4305:87::-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;4365:8:1::1;:19:::0;;-1:-1:-1;;4365:19:1::1;::::0;::::1;;::::0;;;::::1;::::0;;4305:87::o;1717:230:5:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:5;;;;;;;:::i;:::-;1923:10;1934:5;1923:17;;;;;;-1:-1:-1;;;1923:17:5;;;;;;;;;;;;;;;;;1916:24;;1717:230;;;:::o;6504:104:1:-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;6579:21:1;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;965:44::-:0;;;;;;;;;;;;;;;:::o;2052:235:4:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:4;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:4;;;;;;;:::i;744:35:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;630:21::-;;;;;;;:::i;1790:205:4:-;1862:7;-1:-1:-1;;;;;1889:19:4;;1881:74;;;;-1:-1:-1;;;1881:74:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1972:16:4;;;;;:9;:16;;;;;;;1790:205::o;1598:92:13:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;596:25:1:-;;;-1:-1:-1;;;;;596:25:1;;:::o;343:::-;;;;:::o;6374:122::-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;6455:13:1::1;:33:::0;6374:122::o;966:85:13:-;1038:6;;-1:-1:-1;;;;;1038:6:13;966:85;:::o;1781:114:1:-;1839:7;1866:21;1877:9;;1866:6;:10;;:21;;;;:::i;2511:102:4:-;2567:13;2599:7;2592:14;;;;;:::i;2790:1413:1:-;2936:10;;2917:15;:29;;2909:109;;;;-1:-1:-1;;;2909:109:1;;;;;;;:::i;:::-;3033:10;;;;;;;3029:121;;3080:10;3068:23;;;;:11;:23;;;;;;;;3060:78;;;;-1:-1:-1;;;3060:78:1;;;;;;;:::i;:::-;3184:10;;3168:13;:11;:13::i;:::-;:26;3160:75;;;;-1:-1:-1;;;3160:75:1;;;;;;;:::i;:::-;3273:1;3254:16;:20;3246:73;;;;-1:-1:-1;;;3246:73:1;;;;;;;:::i;:::-;3387:10;;3338:45;3351:13;:11;:13::i;:::-;3366:16;3338:12;:45::i;:::-;:59;;3330:151;;;;-1:-1:-1;;;3330:151:1;;;;;;;:::i;:::-;3529:13;;3515:10;3502:24;;;;:12;:24;;;;;;:40;3494:121;;;;-1:-1:-1;;;3494:121:1;;;;;;;:::i;:::-;3700:13;;3666:10;3653:24;;;;:12;:24;;;;;;3640:56;;3679:16;3640:12;:56::i;:::-;:73;;3632:161;;;;-1:-1:-1;;;3632:161:1;;;;;;;:::i;:::-;3953:9;3949:188;3968:16;3966:1;:18;3949:188;;;4006:36;4016:10;4028:13;:11;:13::i;:::-;4006:9;:36::i;:::-;4110:10;4097:24;;;;:12;:24;;;;;;4084:41;;4123:1;4084:12;:41::i;:::-;4070:10;4057:24;;;;:12;:24;;;;;:68;3986:3;;;;:::i;:::-;;;;3949:188;;;;4152:43;4166:10;4178:16;4152:43;;;;;;;:::i;:::-;;;;;;;;2790:1413;:::o;4144:290:4:-;4258:12;:10;:12::i;:::-;-1:-1:-1;;;;;4246:24:4;:8;-1:-1:-1;;;;;4246:24:4;;;4238:62;;;;-1:-1:-1;;;4238:62:4;;;;;;;:::i;:::-;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;-1:-1:-1;;;;;4311:32:4;;;;;;;;;;;;;;;;;-1:-1:-1;4311:32:4;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:4;;;;;;;;;;;4394:12;:10;:12::i;:::-;-1:-1:-1;;;;;4379:48:4;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;4915:95:1:-;1189:12:13;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;4985:10:1::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;4985:17:1;;::::1;::::0;;;::::1;::::0;;4915:95::o;5365:320:4:-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:4;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;5781:473:1:-;5899:13;5948:16;5956:7;5948;:16::i;:::-;5930:105;;;;-1:-1:-1;;;5930:105:1;;;;;;;:::i;:::-;6048:28;6079:10;:8;:10::i;:::-;6048:41;;6138:1;6113:14;6107:28;:32;:139;;;;;;;;;;;;;;;;;6179:14;6195:18;:7;:16;:18::i;:::-;6215:11;6162:65;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6107:139;6100:146;5781:473;-1:-1:-1;;;5781:473:1:o;861:43::-;;;;;;;;;;;;;;;:::o;4500:162:4:-;-1:-1:-1;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162::o;720:17:1:-;;;;;;;:::i;911:47::-;;;;;;;;;;;;;:::o;1839:189:13:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:13;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:13;;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:13;::::1;1919:73;;;;-1:-1:-1::0;;;1919:73:13::1;;;;;;;:::i;:::-;2002:19;2012:8;2002:9;:19::i;587:96:2:-:0;666:10;587:96;:::o;1431:300:4:-;1533:4;-1:-1:-1;;;;;;1568:40:4;;-1:-1:-1;;;1568:40:4;;:104;;-1:-1:-1;;;;;;;1624:48:4;;-1:-1:-1;;;1624:48:4;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;7157:125::-;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;:30;;;7157:125::o;11008:171::-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:4;-1:-1:-1;;;;;11082:29:4;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:4;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;-1:-1:-1;;;7549:73:4;;;;;;;:::i;:::-;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:4;:7;-1:-1:-1;;;;;7689:16:4;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:4;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:4;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7681:96;7440:344;-1:-1:-1;;;;7440:344:4:o;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:4;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:4;;10456:85;;;;-1:-1:-1;;;10456:85:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;10559:16:4;;10551:65;;;;-1:-1:-1;;;10551:65:4;;;;;;;:::i;:::-;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:4;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:4;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:4;-1:-1:-1;;;;;10826:21:4;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;2034:169:13:-;2108:6;;;-1:-1:-1;;;;;2124:17:13;;;-1:-1:-1;;;;;;2124:17:13;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2034:169;;:::o;3382:96:15:-;3440:7;3466:5;3470:1;3466;:5;:::i;2672:96::-;2730:7;2756:5;2760:1;2756;:5;:::i;8114:108:4:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;6547:307::-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:4;;;;;;;:::i;5545:108:1:-;5605:13;5638:7;5631:14;;;;;:::i;275:703:16:-;331:13;548:10;544:51;;-1:-1:-1;574:10:16;;;;;;;;;;;;-1:-1:-1;;;574:10:16;;;;;;544:51;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:16;;-1:-1:-1;720:2:16;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:16;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:16;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:16;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:16;;;;;;;;-1:-1:-1;919:11:16;928:2;919:11;;:::i;:::-;;;791:150;;763:155:3;-1:-1:-1;;;;;;871:40:3;;-1:-1:-1;;;871:40:3;763:155;;;:::o;2543:572:5:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;-1:-1:-1;;;;;2742:18:5;;2738:183;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:5;:4;-1:-1:-1;;;;;2837:10:5;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:5;;2930:179;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;-1:-1:-1;;;;;3032:10:5;:2;-1:-1:-1;;;;;3032:10:5;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;8443:311:4:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:4;;;;;;;:::i;11732:778::-;11882:4;11902:15;:2;-1:-1:-1;;;;;11902:13:4;;:15::i;:::-;11898:606;;;11953:2;-1:-1:-1;;;;;11937:36:4;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:4;;;;;;;;-1:-1:-1;;11937:72:4;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12176:13:4;;12172:266;;12218:60;;-1:-1:-1;;;12218:60:4;;;;;;;:::i;12172:266::-;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;-1:-1:-1;;;;;;12059:51:4;-1:-1:-1;;;12059:51:4;;-1:-1:-1;12052:58:4;;11898:606;-1:-1:-1;12489:4:4;11732:778;;;;;;:::o;3821:161:5:-;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:5;;;5069:323;;-1:-1:-1;;;;;5139:18:5;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:5;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:5;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:5;;6106:46;;6551:26;;;;-1:-1:-1;;;6551:26:5;;;;;;;;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;-1:-1:-1;;;6588:22:5;;;;;;;;;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;-1:-1:-1;;;6895:16:5;;;;;;;;;;;;;;;;;;;;;;;;;;5857:1061;;;;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:5:o;9076:372:4:-;-1:-1:-1;;;;;9155:16:4;;9147:61;;;;-1:-1:-1;;;9147:61:4;;;;;;;:::i;:::-;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;-1:-1:-1;;;9218:58:4;;;;;;;:::i;:::-;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:4;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:4;-1:-1:-1;;;;;9371:21:4;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;718:377:0:-;1034:20;1080:8;;;718:377::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:17;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:17;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:17;473:16;;;470:25;-1:-1:-1;467:2:17;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:17;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:17;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:17:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:17;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:17;;4335:120;-1:-1:-1;4335:120:17:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:17;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:17:o;4724:1532::-;;4986:6;4980:13;5012:4;5025:51;5069:6;5064:3;5059:2;5051:6;5047:15;5025:51;:::i;:::-;5139:13;;5098:16;;;;5161:55;5139:13;5098:16;5183:15;;;5161:55;:::i;:::-;5307:13;;5238:20;;;5278:3;;5384:1;5369:17;;5405:1;5441:18;;;;5468:2;;5546:4;5536:8;5532:19;5520:31;;5468:2;5609;5599:8;5596:16;5576:18;5573:40;5570:2;;;-1:-1:-1;;;5636:33:17;;5692:4;5689:1;5682:15;5722:4;5643:3;5710:17;5570:2;5753:18;5780:110;;;;5904:1;5899:332;;;;5746:485;;5780:110;-1:-1:-1;;5815:24:17;;5801:39;;5860:20;;;;-1:-1:-1;5780:110:17;;5899:332;5935:39;5967:6;5935:39;:::i;:::-;5996:3;6012:169;6026:8;6023:1;6020:15;6012:169;;;6108:14;;6093:13;;;6086:37;6151:16;;;;6043:10;;6012:169;;;6016:3;;6212:8;6205:5;6201:20;6194:27;;5746:485;-1:-1:-1;6247:3:17;;4956:1300;-1:-1:-1;;;;;;;;;;;4956:1300:17:o;6261:203::-;-1:-1:-1;;;;;6425:32:17;;;;6407:51;;6395:2;6380:18;;6362:102::o;6469:490::-;-1:-1:-1;;;;;6738:15:17;;;6720:34;;6790:15;;6785:2;6770:18;;6763:43;6837:2;6822:18;;6815:34;;;6885:3;6880:2;6865:18;;6858:31;;;6469:490;;6906:47;;6933:19;;6925:6;6906:47;:::i;:::-;6898:55;6672:287;-1:-1:-1;;;;;;6672:287:17:o;6964:274::-;-1:-1:-1;;;;;7156:32:17;;;;7138:51;;7220:2;7205:18;;7198:34;7126:2;7111:18;;7093:145::o;7243:635::-;7414:2;7466:21;;;7536:13;;7439:18;;;7558:22;;;7243:635;;7414:2;7637:15;;;;7611:2;7596:18;;;7243:635;7683:169;7697:6;7694:1;7691:13;7683:169;;;7758:13;;7746:26;;7827:15;;;;7792:12;;;;7719:1;7712:9;7683:169;;;-1:-1:-1;7869:3:17;;7394:484;-1:-1:-1;;;;;;7394:484:17:o;7883:187::-;8048:14;;8041:22;8023:41;;8011:2;7996:18;;7978:92::o;8075:221::-;;8224:2;8213:9;8206:21;8244:46;8286:2;8275:9;8271:18;8263:6;8244:46;:::i;8301:404::-;8503:2;8485:21;;;8542:2;8522:18;;;8515:30;8581:34;8576:2;8561:18;;8554:62;-1:-1:-1;;;8647:2:17;8632:18;;8625:38;8695:3;8680:19;;8475:230::o;8710:472::-;8912:2;8894:21;;;8951:2;8931:18;;;8924:30;8990:34;8985:2;8970:18;;8963:62;9061:34;9056:2;9041:18;;9034:62;-1:-1:-1;;;9127:3:17;9112:19;;9105:35;9172:3;9157:19;;8884:298::o;9187:407::-;9389:2;9371:21;;;9428:2;9408:18;;;9401:30;9467:34;9462:2;9447:18;;9440:62;-1:-1:-1;;;9533:2:17;9518:18;;9511:41;9584:3;9569:19;;9361:233::o;9599:414::-;9801:2;9783:21;;;9840:2;9820:18;;;9813:30;9879:34;9874:2;9859:18;;9852:62;-1:-1:-1;;;9945:2:17;9930:18;;9923:48;10003:3;9988:19;;9773:240::o;10018:402::-;10220:2;10202:21;;;10259:2;10239:18;;;10232:30;10298:34;10293:2;10278:18;;10271:62;-1:-1:-1;;;10364:2:17;10349:18;;10342:36;10410:3;10395:19;;10192:228::o;10425:352::-;10627:2;10609:21;;;10666:2;10646:18;;;10639:30;10705;10700:2;10685:18;;10678:58;10768:2;10753:18;;10599:178::o;10782:406::-;10984:2;10966:21;;;11023:2;11003:18;;;10996:30;11062:34;11057:2;11042:18;;11035:62;-1:-1:-1;;;11128:2:17;11113:18;;11106:40;11178:3;11163:19;;10956:232::o;11193:400::-;11395:2;11377:21;;;11434:2;11414:18;;;11407:30;11473:34;11468:2;11453:18;;11446:62;-1:-1:-1;;;11539:2:17;11524:18;;11517:34;11583:3;11568:19;;11367:226::o;11598:335::-;11800:2;11782:21;;;11839:2;11819:18;;;11812:30;-1:-1:-1;;;11873:2:17;11858:18;;11851:41;11924:2;11909:18;;11772:161::o;11938:400::-;12140:2;12122:21;;;12179:2;12159:18;;;12152:30;12218:34;12213:2;12198:18;;12191:62;-1:-1:-1;;;12284:2:17;12269:18;;12262:34;12328:3;12313:19;;12112:226::o;12343:349::-;12545:2;12527:21;;;12584:2;12564:18;;;12557:30;12623:27;12618:2;12603:18;;12596:55;12683:2;12668:18;;12517:175::o;12697:479::-;12899:2;12881:21;;;12938:2;12918:18;;;12911:30;12977:34;12972:2;12957:18;;12950:62;13048:34;13043:2;13028:18;;13021:62;-1:-1:-1;;;13114:3:17;13099:19;;13092:42;13166:3;13151:19;;12871:305::o;13181:408::-;13383:2;13365:21;;;13422:2;13402:18;;;13395:30;13461:34;13456:2;13441:18;;13434:62;-1:-1:-1;;;13527:2:17;13512:18;;13505:42;13579:3;13564:19;;13355:234::o;13594:420::-;13796:2;13778:21;;;13835:2;13815:18;;;13808:30;13874:34;13869:2;13854:18;;13847:62;13945:26;13940:2;13925:18;;13918:54;14004:3;13989:19;;13768:246::o;14019:406::-;14221:2;14203:21;;;14260:2;14240:18;;;14233:30;14299:34;14294:2;14279:18;;14272:62;-1:-1:-1;;;14365:2:17;14350:18;;14343:40;14415:3;14400:19;;14193:232::o;14430:405::-;14632:2;14614:21;;;14671:2;14651:18;;;14644:30;14710:34;14705:2;14690:18;;14683:62;-1:-1:-1;;;14776:2:17;14761:18;;14754:39;14825:3;14810:19;;14604:231::o;14840:471::-;15042:2;15024:21;;;15081:2;15061:18;;;15054:30;15120:34;15115:2;15100:18;;15093:62;15191:34;15186:2;15171:18;;15164:62;-1:-1:-1;;;15257:3:17;15242:19;;15235:34;15301:3;15286:19;;15014:297::o;15316:356::-;15518:2;15500:21;;;15537:18;;;15530:30;15596:34;15591:2;15576:18;;15569:62;15663:2;15648:18;;15490:182::o;15677:408::-;15879:2;15861:21;;;15918:2;15898:18;;;15891:30;15957:34;15952:2;15937:18;;15930:62;-1:-1:-1;;;16023:2:17;16008:18;;16001:42;16075:3;16060:19;;15851:234::o;16090:356::-;16292:2;16274:21;;;16311:18;;;16304:30;16370:34;16365:2;16350:18;;16343:62;16437:2;16422:18;;16264:182::o;16451:405::-;16653:2;16635:21;;;16692:2;16672:18;;;16665:30;16731:34;16726:2;16711:18;;16704:62;-1:-1:-1;;;16797:2:17;16782:18;;16775:39;16846:3;16831:19;;16625:231::o;16861:411::-;17063:2;17045:21;;;17102:2;17082:18;;;17075:30;17141:34;17136:2;17121:18;;17114:62;-1:-1:-1;;;17207:2:17;17192:18;;17185:45;17262:3;17247:19;;17035:237::o;17277:397::-;17479:2;17461:21;;;17518:2;17498:18;;;17491:30;17557:34;17552:2;17537:18;;17530:62;-1:-1:-1;;;17623:2:17;17608:18;;17601:31;17664:3;17649:19;;17451:223::o;17679:413::-;17881:2;17863:21;;;17920:2;17900:18;;;17893:30;17959:34;17954:2;17939:18;;17932:62;-1:-1:-1;;;18025:2:17;18010:18;;18003:47;18082:3;18067:19;;17853:239::o;18097:408::-;18299:2;18281:21;;;18338:2;18318:18;;;18311:30;18377:34;18372:2;18357:18;;18350:62;-1:-1:-1;;;18443:2:17;18428:18;;18421:42;18495:3;18480:19;;18271:234::o;18510:483::-;18712:2;18694:21;;;18751:2;18731:18;;;18724:30;18790:34;18785:2;18770:18;;18763:62;18861:34;18856:2;18841:18;;18834:62;-1:-1:-1;;;18927:3:17;18912:19;;18905:46;18983:3;18968:19;;18684:309::o;18998:177::-;19144:25;;;19132:2;19117:18;;19099:76::o;19180:129::-;;19248:17;;;19298:4;19282:21;;;19238:71::o;19314:128::-;;19385:1;19381:6;19378:1;19375:13;19372:2;;;19391:18;;:::i;:::-;-1:-1:-1;19427:9:17;;19362:80::o;19447:120::-;;19513:1;19503:2;;19518:18;;:::i;:::-;-1:-1:-1;19552:9:17;;19493:74::o;19572:168::-;;19678:1;19674;19670:6;19666:14;19663:1;19660:21;19655:1;19648:9;19641:17;19637:45;19634:2;;;19685:18;;:::i;:::-;-1:-1:-1;19725:9:17;;19624:116::o;19745:125::-;;19813:1;19810;19807:8;19804:2;;;19818:18;;:::i;:::-;-1:-1:-1;19855:9:17;;19794:76::o;19875:258::-;19947:1;19957:113;19971:6;19968:1;19965:13;19957:113;;;20047:11;;;20041:18;20028:11;;;20021:39;19993:2;19986:10;19957:113;;;20088:6;20085:1;20082:13;20079:2;;;-1:-1:-1;;20123:1:17;20105:16;;20098:27;19928:205::o;20138:380::-;20223:1;20213:12;;20270:1;20260:12;;;20281:2;;20335:4;20327:6;20323:17;20313:27;;20281:2;20388;20380:6;20377:14;20357:18;20354:38;20351:2;;;20434:10;20429:3;20425:20;20422:1;20415:31;20469:4;20466:1;20459:15;20497:4;20494:1;20487:15;20351:2;;20193:325;;;:::o;20523:135::-;;-1:-1:-1;;20583:17:17;;20580:2;;;20603:18;;:::i;:::-;-1:-1:-1;20650:1:17;20639:13;;20570:88::o;20663:112::-;;20721:1;20711:2;;20726:18;;:::i;:::-;-1:-1:-1;20760:9:17;;20701:74::o;20780:127::-;20841:10;20836:3;20832:20;20829:1;20822:31;20872:4;20869:1;20862:15;20896:4;20893:1;20886:15;20912:127;20973:10;20968:3;20964:20;20961:1;20954:31;21004:4;21001:1;20994:15;21028:4;21025:1;21018:15;21044:127;21105:10;21100:3;21096:20;21093:1;21086:31;21136:4;21133:1;21126:15;21160:4;21157:1;21150:15;21176:133;-1:-1:-1;;;;;;21252:32:17;;21242:43;;21232:2;;21299:1;21296;21289:12
Swarm Source
ipfs://21ecd8fefcb6f6314ca5bd6e2ed0503881df229eeead4d994f1292a3efdb7983
Loading...
Loading
Loading...
Loading
Net Worth in USD
$487.70
Net Worth in ETH
0.246
Token Allocations
ETH
100.00%
Multichain Portfolio | 32 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,982.52 | 0.246 | $487.7 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.