ETH Price: $2,527.10 (-0.30%)
Gas: 0.94 Gwei

Token

The Doggos (DOGGO)
 

Overview

Max Total Supply

780 DOGGO

Holders

260

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 DOGGO
0x1bE570A8d38b47392c495964478f33339f18d760
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Doggos

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 13: Doggos.sol
// contracts/Doggos.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721Enumerable.sol";


contract Doggos is ERC721Enumerable {
    
    using Strings for uint256;
    bool public hasSaleStarted = false;
    bool public hasPreSale1Started = false; 
    bool public hasPreSale2Started = false;
    uint16[] private mintId;
    uint256 private MAX_RESERVE = 165; 
    uint256 private MAX_PRESALE1 = 500; 
    uint256 private MAX_PRESALE2 = 500; 
    uint256 public MINT_PRICE = 0.0555 ether; 
    uint256 public constant MAX_DOGGOS = 5555; 
    string private baseTokenURI = "";
    address DevAddress = 0x7fABe37ce4caEE5215dB182Bea81232098DaAFc5;
    
    mapping(address => bool) private addressInPreSale;
    mapping(address => uint256) private totalPreSale1Minted;
    mapping(address => uint256) private totalPreSale2Minted;
    
    constructor() ERC721("The Doggos", "DOGGO") { 
        initMintId();
    }

    function initMintId() internal {
         for (uint16 i = 1; i <= MAX_DOGGOS; i++){
            mintId.push(i);
         }
    }

   function mintDoggos(uint256 numofDOGGOS) public payable { 
        require(totalSupply() + numofDOGGOS <= MAX_DOGGOS - MAX_RESERVE, "Exceeds max DOGGOS mintable");
        require(hasSaleStarted == true, "Sales have not start");
        require(numofDOGGOS <= 10, "Exceeds max 10 DOGGOS per mint"); 
        require(msg.value >= MINT_PRICE * numofDOGGOS, "Value sent insufficient");
        
        for (uint256 i = 0; i < numofDOGGOS; i++) {
            _safeMint(msg.sender, getRandomId());
        }
    } 
    
     function preSale1Mint(uint256 numofDOGGOS) public payable {
        require(hasPreSale1Started == true, "Presales1 have not start");
        require(totalPreSale1Minted[msg.sender] + numofDOGGOS <= 2, "Exceeds supply of presale1 mintable."); 
        require(numofDOGGOS <= MAX_PRESALE1, "Exceeds max Presale1 DOGGOS mintable");
        require(totalSupply() + numofDOGGOS <= MAX_DOGGOS - MAX_RESERVE, "Exceeds max DOGGOS mintable");
        require(msg.value >= MINT_PRICE * numofDOGGOS, "Value sent insufficient");

        for (uint256 i; i < numofDOGGOS; i++) {
            _safeMint(msg.sender, getRandomId());
        }

        totalPreSale1Minted[msg.sender] += numofDOGGOS;
        MAX_PRESALE1 -= numofDOGGOS;
    }
    
    function preSale2Mint(uint256 numofDOGGOS) public payable {
        require(hasPreSale2Started == true, "Presales2 have not start");
        require(addressInPreSale[msg.sender] == true, "Address not whitelisted for presale2");
        require(totalPreSale2Minted[msg.sender] + numofDOGGOS <= 2, "Exceeds supply of presale2 mintable."); 
        require(numofDOGGOS <= MAX_PRESALE2, "Exceeds max Presale2 DOGGOS mintable");
        require(totalSupply() + numofDOGGOS <= MAX_DOGGOS - MAX_RESERVE, "Exceeds max DOGGOS mintable");
        require(msg.value >= MINT_PRICE * numofDOGGOS, "Value sent insufficient");

        for (uint256 i; i < numofDOGGOS; i++) {
            _safeMint(msg.sender, getRandomId());
        }

        totalPreSale2Minted[msg.sender] += numofDOGGOS;
        MAX_PRESALE2 -= numofDOGGOS;
    }
    
    function addWalletToPreSale(address[] memory _address) external onlyOwner {
        for(uint256 i = 0 ; i < _address.length ; i++){
            addressInPreSale[_address[i]] = true;
        }
    }
    
    function giveaways(address to, uint256 numofDOGGOS) public onlyOwner {
        require(totalSupply() + numofDOGGOS <= MAX_DOGGOS, "Exceeds Max DOGGOS");
        require(numofDOGGOS <= MAX_RESERVE, "Exceeds Max reserve");
        
        for (uint256 i = 0; i < numofDOGGOS; i++) {
            _safeMint(to, getRandomId());
        }
        MAX_RESERVE -= numofDOGGOS;
    }
    
    function giveawaysToMany(address[] memory recipients) external onlyOwner {
        require(totalSupply() + recipients.length <= MAX_DOGGOS, 'Exceeds Max DOGGOS');
        require(recipients.length <= MAX_RESERVE, "Exceeds Max reserve");
        
        for (uint256 i = 0; i < recipients.length; i++) {
            _safeMint(recipients[i], getRandomId());
        }
        MAX_RESERVE -= recipients.length;
    }
    
    function getRandomId() private returns (uint256) {
        uint256 random = _getRandomNumber(mintId.length);
        uint256 tokenId = uint256(mintId[random]);

        mintId[random] = mintId[mintId.length - 1];
        mintId.pop();

        return tokenId;
    }
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    function _getRandomNumber(uint256 _upper) private view returns (uint256) {
        uint256 random = uint256(
            keccak256(
                abi.encodePacked(
                    mintId.length,
                    blockhash(block.number - 1),
                    block.coinbase,
                    block.difficulty,
                    msg.sender
                )
            )
        );
        return random % _upper;
    }
    
    function getPrice() public view returns (uint256){
        return MINT_PRICE;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    
    function setBaseURI(string memory BaseURI) public onlyOwner {
        baseTokenURI = BaseURI;
    }
    
    function baseURI() external view returns (string memory) {  
        return baseTokenURI;
    }
    
    function setPrice(uint256 _newPrice) public onlyOwner() {  
        MINT_PRICE = _newPrice;
    }
    
    function flipSale() public onlyOwner {
        hasSaleStarted = !hasSaleStarted;
    }
    
    function flipPreSale1() public onlyOwner {
        hasPreSale1Started = !hasPreSale1Started;
    }
    
    function flipPreSale2() public onlyOwner {
        hasPreSale2Started = !hasPreSale2Started;
    }
    
    function withdrawAll() public onlyOwner {
        require(payable(DevAddress).send(address(this).balance / 1000 * 75));
        require(payable(msg.sender).send(address(this).balance));
    }
    
}

File 1 of 13: Address.sol
// 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;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 13: Context.sol
// 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 4 of 13: ERC165.sol
// 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;
    }
}

File 5 of 13: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
import "./IERC721.sol";
import "./IERC721Metadata.sol";
import "./IERC721Receiver.sol";
import "./ERC165.sol";
import "./Address.sol";
import "./Strings.sol";
import "./Ownable.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, Ownable {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

File 6 of 13: ERC721Enumerable.sol
// 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();
    }
}

File 7 of 13: IERC165.sol
// 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);
}

File 8 of 13: IERC721.sol
// 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;
}

File 9 of 13: IERC721Enumerable.sol
// 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);
}

File 10 of 13: IERC721Metadata.sol
// 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);
}

File 11 of 13: IERC721Receiver.sol
// 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);
}

File 12 of 13: Ownable.sol
// 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_DOGGOS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"addWalletToPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSale1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSale2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numofDOGGOS","type":"uint256"}],"name":"giveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"giveawaysToMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasPreSale1Started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPreSale2Started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numofDOGGOS","type":"uint256"}],"name":"mintDoggos","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numofDOGGOS","type":"uint256"}],"name":"preSale1Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numofDOGGOS","type":"uint256"}],"name":"preSale2Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"BaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600b805462ffffff1916905560a5600d556101f4600e819055600f5566c52cf4b908c00060105560a06040819052600060808190526200004291601191620001d8565b50601280546001600160a01b031916737fabe37ce4caee5215db182bea81232098daafc51790553480156200007657600080fd5b506040518060400160405280600a81526020016954686520446f67676f7360b01b81525060405180604001604052806005815260200164444f47474f60d81b8152506000620000ca6200015360201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350815162000129906001906020850190620001d8565b5080516200013f906002906020840190620001d8565b506200014d91505062000157565b620002ec565b3390565b60015b6115b38161ffff1611620001d557600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c760108204018054600f9092166002026101000a61ffff818102199093169284160291909117905580620001cc81620002bb565b9150506200015a565b50565b828054620001e6906200027e565b90600052602060002090601f0160209004810192826200020a576000855562000255565b82601f106200022557805160ff191683800117855562000255565b8280016001018555821562000255579182015b828111156200025557825182559160200191906001019062000238565b506200026392915062000267565b5090565b5b8082111562000263576000815560010162000268565b600181811c908216806200029357607f821691505b60208210811415620002b557634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415620002e257634e487b7160e01b600052601160045260246000fd5b6001019392505050565b612d1a80620002fc6000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e5780639b7752e2116100ab578063c4d8c97f1161006f578063c4d8c97f1461062e578063c87b56dd14610641578063e985e9c514610661578063f2fde38b146106aa578063f6afa28f146106ca57600080fd5b80639b7752e214610598578063a22cb465146105b8578063b88d4fde146105d8578063c002d23d146105f8578063c312c5c41461060e57600080fd5b80638da5cb5b116100f25780638da5cb5b1461051157806390bdc8fc1461052f57806391b7f5ed1461054e57806395d89b411461056e57806398d5fdca1461058357600080fd5b8063715018a6146104855780637ba5e6211461049a5780638462151c146104af578063853828b6146104dc57806385b7cc7f146104f157600080fd5b806323b872dd116101bc5780634f6ccce7116101805780634f6ccce7146103f057806355f804b3146104105780636352211e146104305780636c0360eb1461045057806370a082311461046557600080fd5b806323b872dd146103655780632f745c591461038557806338dbe8bf146103a557806342842e0e146103ba5780634bb7c4d5146103da57600080fd5b80630de8a77b116102035780630de8a77b146102e657806318160ddd1461030657806319fe52c4146103255780631a582424146103385780631c8b232d1461034b57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612869565b6106df565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61070a565b60405161026191906129e1565b34801561029857600080fd5b506102ac6102a73660046128ec565b61079c565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461278b565b610836565b005b3480156102f257600080fd5b506102e461030136600461278b565b61094c565b34801561031257600080fd5b506009545b604051908152602001610261565b6102e46103333660046128ec565b610a62565b6102e46103463660046128ec565b610c6d565b34801561035757600080fd5b50600b546102559060ff1681565b34801561037157600080fd5b506102e4610380366004612697565b610da7565b34801561039157600080fd5b506103176103a036600461278b565b610dd8565b3480156103b157600080fd5b506102e4610e6e565b3480156103c657600080fd5b506102e46103d5366004612697565b610eb7565b3480156103e657600080fd5b506103176115b381565b3480156103fc57600080fd5b5061031761040b3660046128ec565b610ed2565b34801561041c57600080fd5b506102e461042b3660046128a3565b610f65565b34801561043c57600080fd5b506102ac61044b3660046128ec565b610fa2565b34801561045c57600080fd5b5061027f611019565b34801561047157600080fd5b50610317610480366004612649565b611028565b34801561049157600080fd5b506102e46110af565b3480156104a657600080fd5b506102e4611123565b3480156104bb57600080fd5b506104cf6104ca366004612649565b611161565b604051610261919061299d565b3480156104e857600080fd5b506102e4611220565b3480156104fd57600080fd5b50600b546102559062010000900460ff1681565b34801561051d57600080fd5b506000546001600160a01b03166102ac565b34801561053b57600080fd5b50600b5461025590610100900460ff1681565b34801561055a57600080fd5b506102e46105693660046128ec565b6112b6565b34801561057a57600080fd5b5061027f6112e5565b34801561058f57600080fd5b50601054610317565b3480156105a457600080fd5b506102e46105b33660046127b5565b6112f4565b3480156105c457600080fd5b506102e46105d336600461274f565b611386565b3480156105e457600080fd5b506102e46105f33660046126d3565b61144b565b34801561060457600080fd5b5061031760105481565b34801561061a57600080fd5b506102e46106293660046127b5565b611483565b6102e461063c3660046128ec565b6115a8565b34801561064d57600080fd5b5061027f61065c3660046128ec565b61181b565b34801561066d57600080fd5b5061025561067c366004612664565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106b657600080fd5b506102e46106c5366004612649565b6118f6565b3480156106d657600080fd5b506102e46119e0565b60006001600160e01b0319821663780e9d6360e01b1480610704575061070482611a27565b92915050565b60606001805461071990612bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461074590612bf9565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661081a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084182610fa2565b9050806001600160a01b0316836001600160a01b031614156108af5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610811565b336001600160a01b03821614806108cb57506108cb813361067c565b61093d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610811565b6109478383611a77565b505050565b6000546001600160a01b031633146109765760405162461bcd60e51b815260040161081190612ab4565b6115b38161098360095490565b61098d9190612b6b565b11156109d05760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820444f47474f5360701b6044820152606401610811565b600d54811115610a185760405162461bcd60e51b815260206004820152601360248201527245786365656473204d6178207265736572766560681b6044820152606401610811565b60005b81811015610a4657610a3483610a2f611ae5565b611c04565b80610a3e81612c2e565b915050610a1b565b5080600d6000828254610a599190612bb6565b90915550505050565b600b5460ff610100909104161515600114610abf5760405162461bcd60e51b815260206004820152601860248201527f50726573616c6573312068617665206e6f7420737461727400000000000000006044820152606401610811565b33600090815260146020526040902054600290610add908390612b6b565b1115610b375760405162461bcd60e51b8152602060048201526024808201527f4578636565647320737570706c79206f662070726573616c6531206d696e74616044820152633136329760e11b6064820152608401610811565b600e54811115610b955760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d61782050726573616c653120444f47474f53206d696e7460448201526361626c6560e01b6064820152608401610811565b600d54610ba4906115b3612bb6565b81610bae60095490565b610bb89190612b6b565b1115610bd65760405162461bcd60e51b815260040161081190612a46565b80601054610be49190612b97565b341015610c035760405162461bcd60e51b815260040161081190612a7d565b60005b81811015610c2c57610c1a33610a2f611ae5565b80610c2481612c2e565b915050610c06565b503360009081526014602052604081208054839290610c4c908490612b6b565b9250508190555080600e6000828254610c659190612bb6565b909155505050565b600d54610c7c906115b3612bb6565b81610c8660095490565b610c909190612b6b565b1115610cae5760405162461bcd60e51b815260040161081190612a46565b600b5460ff161515600114610cfc5760405162461bcd60e51b815260206004820152601460248201527314d85b195cc81a185d99481b9bdd081cdd185c9d60621b6044820152606401610811565b600a811115610d4d5760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d617820313020444f47474f5320706572206d696e7400006044820152606401610811565b80601054610d5b9190612b97565b341015610d7a5760405162461bcd60e51b815260040161081190612a7d565b60005b81811015610da357610d9133610a2f611ae5565b80610d9b81612c2e565b915050610d7d565b5050565b610db13382611c1e565b610dcd5760405162461bcd60e51b815260040161081190612ae9565b610947838383611d15565b6000610de383611028565b8210610e455760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610811565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610e985760405162461bcd60e51b815260040161081190612ab4565b600b805462ff0000198116620100009182900460ff1615909102179055565b6109478383836040518060200160405280600081525061144b565b6000610edd60095490565b8210610f405760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610811565b60098281548110610f5357610f53612c9f565b90600052602060002001549050919050565b6000546001600160a01b03163314610f8f5760405162461bcd60e51b815260040161081190612ab4565b8051610da390601190602084019061253c565b6000818152600360205260408120546001600160a01b0316806107045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610811565b60606011805461071990612bf9565b60006001600160a01b0382166110935760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610811565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146110d95760405162461bcd60e51b815260040161081190612ab4565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461114d5760405162461bcd60e51b815260040161081190612ab4565b600b805460ff19811660ff90911615179055565b6060600061116e83611028565b90508061118f5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156111aa576111aa612cb5565b6040519080825280602002602001820160405280156111d3578160200160208202803683370190505b50905060005b82811015611187576111eb8582610dd8565b8282815181106111fd576111fd612c9f565b60209081029190910101528061121281612c2e565b9150506111d9565b50919050565b6000546001600160a01b0316331461124a5760405162461bcd60e51b815260040161081190612ab4565b6012546001600160a01b03166108fc6112656103e847612b83565b61127090604b612b97565b6040518115909202916000818181858888f1935050505061129057600080fd5b60405133904780156108fc02916000818181858888f193505050506112b457600080fd5b565b6000546001600160a01b031633146112e05760405162461bcd60e51b815260040161081190612ab4565b601055565b60606002805461071990612bf9565b6000546001600160a01b0316331461131e5760405162461bcd60e51b815260040161081190612ab4565b60005b8151811015610da35760016013600084848151811061134257611342612c9f565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061137e81612c2e565b915050611321565b6001600160a01b0382163314156113df5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610811565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114553383611c1e565b6114715760405162461bcd60e51b815260040161081190612ae9565b61147d84848484611ec0565b50505050565b6000546001600160a01b031633146114ad5760405162461bcd60e51b815260040161081190612ab4565b6115b381516114bb60095490565b6114c59190612b6b565b11156115085760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820444f47474f5360701b6044820152606401610811565b600d54815111156115515760405162461bcd60e51b815260206004820152601360248201527245786365656473204d6178207265736572766560681b6044820152606401610811565b60005b81518110156115945761158282828151811061157257611572612c9f565b6020026020010151610a2f611ae5565b8061158c81612c2e565b915050611554565b508051600d6000828254610c659190612bb6565b600b5462010000900460ff1615156001146116055760405162461bcd60e51b815260206004820152601860248201527f50726573616c6573322068617665206e6f7420737461727400000000000000006044820152606401610811565b3360009081526013602052604090205460ff1615156001146116755760405162461bcd60e51b8152602060048201526024808201527f41646472657373206e6f742077686974656c697374656420666f72207072657360448201526330b6329960e11b6064820152608401610811565b33600090815260156020526040902054600290611693908390612b6b565b11156116ed5760405162461bcd60e51b8152602060048201526024808201527f4578636565647320737570706c79206f662070726573616c6532206d696e74616044820152633136329760e11b6064820152608401610811565b600f5481111561174b5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d61782050726573616c653220444f47474f53206d696e7460448201526361626c6560e01b6064820152608401610811565b600d5461175a906115b3612bb6565b8161176460095490565b61176e9190612b6b565b111561178c5760405162461bcd60e51b815260040161081190612a46565b8060105461179a9190612b97565b3410156117b95760405162461bcd60e51b815260040161081190612a7d565b60005b818110156117e2576117d033610a2f611ae5565b806117da81612c2e565b9150506117bc565b503360009081526015602052604081208054839290611802908490612b6b565b9250508190555080600f6000828254610c659190612bb6565b6000818152600360205260409020546060906001600160a01b031661189a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610811565b60006118a4611019565b905060008151116118c457604051806020016040528060008152506118ef565b806118ce84611ef3565b6040516020016118df929190612931565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146119205760405162461bcd60e51b815260040161081190612ab4565b6001600160a01b0381166119855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610811565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611a0a5760405162461bcd60e51b815260040161081190612ab4565b600b805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b1480611a5857506001600160e01b03198216635b5e139f60e01b145b8061070457506301ffc9a760e01b6001600160e01b0319831614610704565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aac82610fa2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611af6600c80549050611ff1565b90506000600c8281548110611b0d57611b0d612c9f565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050600c6001600c80549050611b4b9190612bb6565b81548110611b5b57611b5b612c9f565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600c8381548110611b9257611b92612c9f565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600c805480611bd257611bd2612c89565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905592915050565b610da3828260405180602001604052806000815250612066565b6000818152600360205260408120546001600160a01b0316611c975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610811565b6000611ca283610fa2565b9050806001600160a01b0316846001600160a01b03161480611cdd5750836001600160a01b0316611cd28461079c565b6001600160a01b0316145b80611d0d57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d2882610fa2565b6001600160a01b031614611d905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610811565b6001600160a01b038216611df25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610811565b611dfd838383612099565b611e08600082611a77565b6001600160a01b0383166000908152600460205260408120805460019290611e31908490612bb6565b90915550506001600160a01b0382166000908152600460205260408120805460019290611e5f908490612b6b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611ecb848484611d15565b611ed784848484612151565b61147d5760405162461bcd60e51b8152600401610811906129f4565b606081611f175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f415780611f2b81612c2e565b9150611f3a9050600a83612b83565b9150611f1b565b60008167ffffffffffffffff811115611f5c57611f5c612cb5565b6040519080825280601f01601f191660200182016040528015611f86576020820181803683370190505b5090505b8415611d0d57611f9b600183612bb6565b9150611fa8600a86612c49565b611fb3906030612b6b565b60f81b818381518110611fc857611fc8612c9f565b60200101906001600160f81b031916908160001a905350611fea600a86612b83565b9450611f8a565b600c546000908190612004600143612bb6565b6040805160208101939093529040908201526bffffffffffffffffffffffff1941606090811b82168184015244607484015233901b16609482015260a80160408051601f19818403018152919052805160209091012090506118ef8382612c49565b612070838361225e565b61207d6000848484612151565b6109475760405162461bcd60e51b8152600401610811906129f4565b6001600160a01b0383166120f4576120ef81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612117565b816001600160a01b0316836001600160a01b0316146121175761211783826123ac565b6001600160a01b03821661212e5761094781612449565b826001600160a01b0316826001600160a01b0316146109475761094782826124f8565b60006001600160a01b0384163b1561225357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612195903390899088908890600401612960565b602060405180830381600087803b1580156121af57600080fd5b505af19250505080156121df575060408051601f3d908101601f191682019092526121dc91810190612886565b60015b612239573d80801561220d576040519150601f19603f3d011682016040523d82523d6000602084013e612212565b606091505b5080516122315760405162461bcd60e51b8152600401610811906129f4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d0d565b506001949350505050565b6001600160a01b0382166122b45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610811565b6000818152600360205260409020546001600160a01b0316156123195760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610811565b61232560008383612099565b6001600160a01b038216600090815260046020526040812080546001929061234e908490612b6b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016123b984611028565b6123c39190612bb6565b600083815260086020526040902054909150808214612416576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061245b90600190612bb6565b6000838152600a60205260408120546009805493945090928490811061248357612483612c9f565b9060005260206000200154905080600983815481106124a4576124a4612c9f565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806124dc576124dc612c89565b6001900381819060005260206000200160009055905550505050565b600061250383611028565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461254890612bf9565b90600052602060002090601f01602090048101928261256a57600085556125b0565b82601f1061258357805160ff19168380011785556125b0565b828001600101855582156125b0579182015b828111156125b0578251825591602001919060010190612595565b506125bc9291506125c0565b5090565b5b808211156125bc57600081556001016125c1565b600067ffffffffffffffff8311156125ef576125ef612cb5565b612602601f8401601f1916602001612b3a565b905082815283838301111561261657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461264457600080fd5b919050565b60006020828403121561265b57600080fd5b6118ef8261262d565b6000806040838503121561267757600080fd5b6126808361262d565b915061268e6020840161262d565b90509250929050565b6000806000606084860312156126ac57600080fd5b6126b58461262d565b92506126c36020850161262d565b9150604084013590509250925092565b600080600080608085870312156126e957600080fd5b6126f28561262d565b93506127006020860161262d565b925060408501359150606085013567ffffffffffffffff81111561272357600080fd5b8501601f8101871361273457600080fd5b612743878235602084016125d5565b91505092959194509250565b6000806040838503121561276257600080fd5b61276b8361262d565b91506020830135801515811461278057600080fd5b809150509250929050565b6000806040838503121561279e57600080fd5b6127a78361262d565b946020939093013593505050565b600060208083850312156127c857600080fd5b823567ffffffffffffffff808211156127e057600080fd5b818501915085601f8301126127f457600080fd5b81358181111561280657612806612cb5565b8060051b9150612817848301612b3a565b8181528481019084860184860187018a101561283257600080fd5b600095505b8386101561285c576128488161262d565b835260019590950194918601918601612837565b5098975050505050505050565b60006020828403121561287b57600080fd5b81356118ef81612ccb565b60006020828403121561289857600080fd5b81516118ef81612ccb565b6000602082840312156128b557600080fd5b813567ffffffffffffffff8111156128cc57600080fd5b8201601f810184136128dd57600080fd5b611d0d848235602084016125d5565b6000602082840312156128fe57600080fd5b5035919050565b6000815180845261291d816020860160208601612bcd565b601f01601f19169290920160200192915050565b60008351612943818460208801612bcd565b835190830190612957818360208801612bcd565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061299390830184612905565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129d5578351835292840192918401916001016129b9565b50909695505050505050565b6020815260006118ef6020830184612905565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601b908201527f45786365656473206d617820444f47474f53206d696e7461626c650000000000604082015260600190565b60208082526017908201527f56616c75652073656e7420696e73756666696369656e74000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612b6357612b63612cb5565b604052919050565b60008219821115612b7e57612b7e612c5d565b500190565b600082612b9257612b92612c73565b500490565b6000816000190483118215151615612bb157612bb1612c5d565b500290565b600082821015612bc857612bc8612c5d565b500390565b60005b83811015612be8578181015183820152602001612bd0565b8381111561147d5750506000910152565b600181811c90821680612c0d57607f821691505b6020821081141561121a57634e487b7160e01b600052602260045260246000fd5b6000600019821415612c4257612c42612c5d565b5060010190565b600082612c5857612c58612c73565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612ce157600080fd5b5056fea264697066735822122021438e2449c0a0c328d6d6f980d85e7beb0092fa9b5d4a3add78517c243d16c664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e5780639b7752e2116100ab578063c4d8c97f1161006f578063c4d8c97f1461062e578063c87b56dd14610641578063e985e9c514610661578063f2fde38b146106aa578063f6afa28f146106ca57600080fd5b80639b7752e214610598578063a22cb465146105b8578063b88d4fde146105d8578063c002d23d146105f8578063c312c5c41461060e57600080fd5b80638da5cb5b116100f25780638da5cb5b1461051157806390bdc8fc1461052f57806391b7f5ed1461054e57806395d89b411461056e57806398d5fdca1461058357600080fd5b8063715018a6146104855780637ba5e6211461049a5780638462151c146104af578063853828b6146104dc57806385b7cc7f146104f157600080fd5b806323b872dd116101bc5780634f6ccce7116101805780634f6ccce7146103f057806355f804b3146104105780636352211e146104305780636c0360eb1461045057806370a082311461046557600080fd5b806323b872dd146103655780632f745c591461038557806338dbe8bf146103a557806342842e0e146103ba5780634bb7c4d5146103da57600080fd5b80630de8a77b116102035780630de8a77b146102e657806318160ddd1461030657806319fe52c4146103255780631a582424146103385780631c8b232d1461034b57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612869565b6106df565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61070a565b60405161026191906129e1565b34801561029857600080fd5b506102ac6102a73660046128ec565b61079c565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461278b565b610836565b005b3480156102f257600080fd5b506102e461030136600461278b565b61094c565b34801561031257600080fd5b506009545b604051908152602001610261565b6102e46103333660046128ec565b610a62565b6102e46103463660046128ec565b610c6d565b34801561035757600080fd5b50600b546102559060ff1681565b34801561037157600080fd5b506102e4610380366004612697565b610da7565b34801561039157600080fd5b506103176103a036600461278b565b610dd8565b3480156103b157600080fd5b506102e4610e6e565b3480156103c657600080fd5b506102e46103d5366004612697565b610eb7565b3480156103e657600080fd5b506103176115b381565b3480156103fc57600080fd5b5061031761040b3660046128ec565b610ed2565b34801561041c57600080fd5b506102e461042b3660046128a3565b610f65565b34801561043c57600080fd5b506102ac61044b3660046128ec565b610fa2565b34801561045c57600080fd5b5061027f611019565b34801561047157600080fd5b50610317610480366004612649565b611028565b34801561049157600080fd5b506102e46110af565b3480156104a657600080fd5b506102e4611123565b3480156104bb57600080fd5b506104cf6104ca366004612649565b611161565b604051610261919061299d565b3480156104e857600080fd5b506102e4611220565b3480156104fd57600080fd5b50600b546102559062010000900460ff1681565b34801561051d57600080fd5b506000546001600160a01b03166102ac565b34801561053b57600080fd5b50600b5461025590610100900460ff1681565b34801561055a57600080fd5b506102e46105693660046128ec565b6112b6565b34801561057a57600080fd5b5061027f6112e5565b34801561058f57600080fd5b50601054610317565b3480156105a457600080fd5b506102e46105b33660046127b5565b6112f4565b3480156105c457600080fd5b506102e46105d336600461274f565b611386565b3480156105e457600080fd5b506102e46105f33660046126d3565b61144b565b34801561060457600080fd5b5061031760105481565b34801561061a57600080fd5b506102e46106293660046127b5565b611483565b6102e461063c3660046128ec565b6115a8565b34801561064d57600080fd5b5061027f61065c3660046128ec565b61181b565b34801561066d57600080fd5b5061025561067c366004612664565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106b657600080fd5b506102e46106c5366004612649565b6118f6565b3480156106d657600080fd5b506102e46119e0565b60006001600160e01b0319821663780e9d6360e01b1480610704575061070482611a27565b92915050565b60606001805461071990612bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461074590612bf9565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661081a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084182610fa2565b9050806001600160a01b0316836001600160a01b031614156108af5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610811565b336001600160a01b03821614806108cb57506108cb813361067c565b61093d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610811565b6109478383611a77565b505050565b6000546001600160a01b031633146109765760405162461bcd60e51b815260040161081190612ab4565b6115b38161098360095490565b61098d9190612b6b565b11156109d05760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820444f47474f5360701b6044820152606401610811565b600d54811115610a185760405162461bcd60e51b815260206004820152601360248201527245786365656473204d6178207265736572766560681b6044820152606401610811565b60005b81811015610a4657610a3483610a2f611ae5565b611c04565b80610a3e81612c2e565b915050610a1b565b5080600d6000828254610a599190612bb6565b90915550505050565b600b5460ff610100909104161515600114610abf5760405162461bcd60e51b815260206004820152601860248201527f50726573616c6573312068617665206e6f7420737461727400000000000000006044820152606401610811565b33600090815260146020526040902054600290610add908390612b6b565b1115610b375760405162461bcd60e51b8152602060048201526024808201527f4578636565647320737570706c79206f662070726573616c6531206d696e74616044820152633136329760e11b6064820152608401610811565b600e54811115610b955760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d61782050726573616c653120444f47474f53206d696e7460448201526361626c6560e01b6064820152608401610811565b600d54610ba4906115b3612bb6565b81610bae60095490565b610bb89190612b6b565b1115610bd65760405162461bcd60e51b815260040161081190612a46565b80601054610be49190612b97565b341015610c035760405162461bcd60e51b815260040161081190612a7d565b60005b81811015610c2c57610c1a33610a2f611ae5565b80610c2481612c2e565b915050610c06565b503360009081526014602052604081208054839290610c4c908490612b6b565b9250508190555080600e6000828254610c659190612bb6565b909155505050565b600d54610c7c906115b3612bb6565b81610c8660095490565b610c909190612b6b565b1115610cae5760405162461bcd60e51b815260040161081190612a46565b600b5460ff161515600114610cfc5760405162461bcd60e51b815260206004820152601460248201527314d85b195cc81a185d99481b9bdd081cdd185c9d60621b6044820152606401610811565b600a811115610d4d5760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d617820313020444f47474f5320706572206d696e7400006044820152606401610811565b80601054610d5b9190612b97565b341015610d7a5760405162461bcd60e51b815260040161081190612a7d565b60005b81811015610da357610d9133610a2f611ae5565b80610d9b81612c2e565b915050610d7d565b5050565b610db13382611c1e565b610dcd5760405162461bcd60e51b815260040161081190612ae9565b610947838383611d15565b6000610de383611028565b8210610e455760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610811565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610e985760405162461bcd60e51b815260040161081190612ab4565b600b805462ff0000198116620100009182900460ff1615909102179055565b6109478383836040518060200160405280600081525061144b565b6000610edd60095490565b8210610f405760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610811565b60098281548110610f5357610f53612c9f565b90600052602060002001549050919050565b6000546001600160a01b03163314610f8f5760405162461bcd60e51b815260040161081190612ab4565b8051610da390601190602084019061253c565b6000818152600360205260408120546001600160a01b0316806107045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610811565b60606011805461071990612bf9565b60006001600160a01b0382166110935760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610811565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146110d95760405162461bcd60e51b815260040161081190612ab4565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461114d5760405162461bcd60e51b815260040161081190612ab4565b600b805460ff19811660ff90911615179055565b6060600061116e83611028565b90508061118f5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156111aa576111aa612cb5565b6040519080825280602002602001820160405280156111d3578160200160208202803683370190505b50905060005b82811015611187576111eb8582610dd8565b8282815181106111fd576111fd612c9f565b60209081029190910101528061121281612c2e565b9150506111d9565b50919050565b6000546001600160a01b0316331461124a5760405162461bcd60e51b815260040161081190612ab4565b6012546001600160a01b03166108fc6112656103e847612b83565b61127090604b612b97565b6040518115909202916000818181858888f1935050505061129057600080fd5b60405133904780156108fc02916000818181858888f193505050506112b457600080fd5b565b6000546001600160a01b031633146112e05760405162461bcd60e51b815260040161081190612ab4565b601055565b60606002805461071990612bf9565b6000546001600160a01b0316331461131e5760405162461bcd60e51b815260040161081190612ab4565b60005b8151811015610da35760016013600084848151811061134257611342612c9f565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061137e81612c2e565b915050611321565b6001600160a01b0382163314156113df5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610811565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114553383611c1e565b6114715760405162461bcd60e51b815260040161081190612ae9565b61147d84848484611ec0565b50505050565b6000546001600160a01b031633146114ad5760405162461bcd60e51b815260040161081190612ab4565b6115b381516114bb60095490565b6114c59190612b6b565b11156115085760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820444f47474f5360701b6044820152606401610811565b600d54815111156115515760405162461bcd60e51b815260206004820152601360248201527245786365656473204d6178207265736572766560681b6044820152606401610811565b60005b81518110156115945761158282828151811061157257611572612c9f565b6020026020010151610a2f611ae5565b8061158c81612c2e565b915050611554565b508051600d6000828254610c659190612bb6565b600b5462010000900460ff1615156001146116055760405162461bcd60e51b815260206004820152601860248201527f50726573616c6573322068617665206e6f7420737461727400000000000000006044820152606401610811565b3360009081526013602052604090205460ff1615156001146116755760405162461bcd60e51b8152602060048201526024808201527f41646472657373206e6f742077686974656c697374656420666f72207072657360448201526330b6329960e11b6064820152608401610811565b33600090815260156020526040902054600290611693908390612b6b565b11156116ed5760405162461bcd60e51b8152602060048201526024808201527f4578636565647320737570706c79206f662070726573616c6532206d696e74616044820152633136329760e11b6064820152608401610811565b600f5481111561174b5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d61782050726573616c653220444f47474f53206d696e7460448201526361626c6560e01b6064820152608401610811565b600d5461175a906115b3612bb6565b8161176460095490565b61176e9190612b6b565b111561178c5760405162461bcd60e51b815260040161081190612a46565b8060105461179a9190612b97565b3410156117b95760405162461bcd60e51b815260040161081190612a7d565b60005b818110156117e2576117d033610a2f611ae5565b806117da81612c2e565b9150506117bc565b503360009081526015602052604081208054839290611802908490612b6b565b9250508190555080600f6000828254610c659190612bb6565b6000818152600360205260409020546060906001600160a01b031661189a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610811565b60006118a4611019565b905060008151116118c457604051806020016040528060008152506118ef565b806118ce84611ef3565b6040516020016118df929190612931565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146119205760405162461bcd60e51b815260040161081190612ab4565b6001600160a01b0381166119855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610811565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611a0a5760405162461bcd60e51b815260040161081190612ab4565b600b805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b1480611a5857506001600160e01b03198216635b5e139f60e01b145b8061070457506301ffc9a760e01b6001600160e01b0319831614610704565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aac82610fa2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611af6600c80549050611ff1565b90506000600c8281548110611b0d57611b0d612c9f565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050600c6001600c80549050611b4b9190612bb6565b81548110611b5b57611b5b612c9f565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600c8381548110611b9257611b92612c9f565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600c805480611bd257611bd2612c89565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905592915050565b610da3828260405180602001604052806000815250612066565b6000818152600360205260408120546001600160a01b0316611c975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610811565b6000611ca283610fa2565b9050806001600160a01b0316846001600160a01b03161480611cdd5750836001600160a01b0316611cd28461079c565b6001600160a01b0316145b80611d0d57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d2882610fa2565b6001600160a01b031614611d905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610811565b6001600160a01b038216611df25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610811565b611dfd838383612099565b611e08600082611a77565b6001600160a01b0383166000908152600460205260408120805460019290611e31908490612bb6565b90915550506001600160a01b0382166000908152600460205260408120805460019290611e5f908490612b6b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611ecb848484611d15565b611ed784848484612151565b61147d5760405162461bcd60e51b8152600401610811906129f4565b606081611f175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f415780611f2b81612c2e565b9150611f3a9050600a83612b83565b9150611f1b565b60008167ffffffffffffffff811115611f5c57611f5c612cb5565b6040519080825280601f01601f191660200182016040528015611f86576020820181803683370190505b5090505b8415611d0d57611f9b600183612bb6565b9150611fa8600a86612c49565b611fb3906030612b6b565b60f81b818381518110611fc857611fc8612c9f565b60200101906001600160f81b031916908160001a905350611fea600a86612b83565b9450611f8a565b600c546000908190612004600143612bb6565b6040805160208101939093529040908201526bffffffffffffffffffffffff1941606090811b82168184015244607484015233901b16609482015260a80160408051601f19818403018152919052805160209091012090506118ef8382612c49565b612070838361225e565b61207d6000848484612151565b6109475760405162461bcd60e51b8152600401610811906129f4565b6001600160a01b0383166120f4576120ef81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612117565b816001600160a01b0316836001600160a01b0316146121175761211783826123ac565b6001600160a01b03821661212e5761094781612449565b826001600160a01b0316826001600160a01b0316146109475761094782826124f8565b60006001600160a01b0384163b1561225357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612195903390899088908890600401612960565b602060405180830381600087803b1580156121af57600080fd5b505af19250505080156121df575060408051601f3d908101601f191682019092526121dc91810190612886565b60015b612239573d80801561220d576040519150601f19603f3d011682016040523d82523d6000602084013e612212565b606091505b5080516122315760405162461bcd60e51b8152600401610811906129f4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d0d565b506001949350505050565b6001600160a01b0382166122b45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610811565b6000818152600360205260409020546001600160a01b0316156123195760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610811565b61232560008383612099565b6001600160a01b038216600090815260046020526040812080546001929061234e908490612b6b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016123b984611028565b6123c39190612bb6565b600083815260086020526040902054909150808214612416576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061245b90600190612bb6565b6000838152600a60205260408120546009805493945090928490811061248357612483612c9f565b9060005260206000200154905080600983815481106124a4576124a4612c9f565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806124dc576124dc612c89565b6001900381819060005260206000200160009055905550505050565b600061250383611028565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461254890612bf9565b90600052602060002090601f01602090048101928261256a57600085556125b0565b82601f1061258357805160ff19168380011785556125b0565b828001600101855582156125b0579182015b828111156125b0578251825591602001919060010190612595565b506125bc9291506125c0565b5090565b5b808211156125bc57600081556001016125c1565b600067ffffffffffffffff8311156125ef576125ef612cb5565b612602601f8401601f1916602001612b3a565b905082815283838301111561261657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461264457600080fd5b919050565b60006020828403121561265b57600080fd5b6118ef8261262d565b6000806040838503121561267757600080fd5b6126808361262d565b915061268e6020840161262d565b90509250929050565b6000806000606084860312156126ac57600080fd5b6126b58461262d565b92506126c36020850161262d565b9150604084013590509250925092565b600080600080608085870312156126e957600080fd5b6126f28561262d565b93506127006020860161262d565b925060408501359150606085013567ffffffffffffffff81111561272357600080fd5b8501601f8101871361273457600080fd5b612743878235602084016125d5565b91505092959194509250565b6000806040838503121561276257600080fd5b61276b8361262d565b91506020830135801515811461278057600080fd5b809150509250929050565b6000806040838503121561279e57600080fd5b6127a78361262d565b946020939093013593505050565b600060208083850312156127c857600080fd5b823567ffffffffffffffff808211156127e057600080fd5b818501915085601f8301126127f457600080fd5b81358181111561280657612806612cb5565b8060051b9150612817848301612b3a565b8181528481019084860184860187018a101561283257600080fd5b600095505b8386101561285c576128488161262d565b835260019590950194918601918601612837565b5098975050505050505050565b60006020828403121561287b57600080fd5b81356118ef81612ccb565b60006020828403121561289857600080fd5b81516118ef81612ccb565b6000602082840312156128b557600080fd5b813567ffffffffffffffff8111156128cc57600080fd5b8201601f810184136128dd57600080fd5b611d0d848235602084016125d5565b6000602082840312156128fe57600080fd5b5035919050565b6000815180845261291d816020860160208601612bcd565b601f01601f19169290920160200192915050565b60008351612943818460208801612bcd565b835190830190612957818360208801612bcd565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061299390830184612905565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129d5578351835292840192918401916001016129b9565b50909695505050505050565b6020815260006118ef6020830184612905565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601b908201527f45786365656473206d617820444f47474f53206d696e7461626c650000000000604082015260600190565b60208082526017908201527f56616c75652073656e7420696e73756666696369656e74000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612b6357612b63612cb5565b604052919050565b60008219821115612b7e57612b7e612c5d565b500190565b600082612b9257612b92612c73565b500490565b6000816000190483118215151615612bb157612bb1612c5d565b500290565b600082821015612bc857612bc8612c5d565b500390565b60005b83811015612be8578181015183820152602001612bd0565b8381111561147d5750506000910152565b600181811c90821680612c0d57607f821691505b6020821081141561121a57634e487b7160e01b600052602260045260246000fd5b6000600019821415612c4257612c42612c5d565b5060010190565b600082612c5857612c58612c73565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612ce157600080fd5b5056fea264697066735822122021438e2449c0a0c328d6d6f980d85e7beb0092fa9b5d4a3add78517c243d16c664736f6c63430008070033

Deployed Bytecode Sourcemap

125:6500:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;937:237:5;;;;;;;;;;-1:-1:-1;937:237:5;;;;;:::i;:::-;;:::i;:::-;;;7577:14:13;;7570:22;7552:41;;7540:2;7525:18;937:237:5;;;;;;;;2453:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3913:221::-;;;;;;;;;;-1:-1:-1;3913:221:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6238:32:13;;;6220:51;;6208:2;6193:18;3913:221:4;6074:203:13;3450:397:4;;;;;;;;;;-1:-1:-1;3450:397:4;;;;;:::i;:::-;;:::i;:::-;;3455:383:2;;;;;;;;;;-1:-1:-1;3455:383:2;;;;;:::i;:::-;;:::i;1590:113:5:-;;;;;;;;;;-1:-1:-1;1678:10:5;:17;1590:113;;;20023:25:13;;;20011:2;19996:18;1590:113:5;19877:177:13;1646:738:2;;;;;;:::i;:::-;;:::i;1114:518::-;;;;;;:::i;:::-;;:::i;206:34::-;;;;;;;;;;-1:-1:-1;206:34:2;;;;;;;;4803:305:4;;;;;;;;;;-1:-1:-1;4803:305:4;;;;;:::i;:::-;;:::i;1258:256:5:-;;;;;;;;;;-1:-1:-1;1258:256:5;;;;;:::i;:::-;;:::i;6310:100:2:-;;;;;;;;;;;;;:::i;5179:151:4:-;;;;;;;;;;-1:-1:-1;5179:151:4;;;;;:::i;:::-;;:::i;541:41:2:-;;;;;;;;;;;;578:4;541:41;;1780:233:5;;;;;;;;;;-1:-1:-1;1780:233:5;;;;;:::i;:::-;;:::i;5765:101:2:-;;;;;;;;;;-1:-1:-1;5765:101:2;;;;;:::i;:::-;;:::i;2147:239:4:-;;;;;;;;;;-1:-1:-1;2147:239:4;;;;;:::i;:::-;;:::i;5878:97:2:-;;;;;;;;;;;;;:::i;1877:208:4:-;;;;;;;;;;-1:-1:-1;1877:208:4;;;;;:::i;:::-;;:::i;1746:148:11:-;;;;;;;;;;;;;:::i;6098:88:2:-;;;;;;;;;;;;;:::i;4569:502::-;;;;;;;;;;-1:-1:-1;4569:502:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6422:194::-;;;;;;;;;;;;;:::i;293:38::-;;;;;;;;;;-1:-1:-1;293:38:2;;;;;;;;;;;1095:87:11;;;;;;;;;;-1:-1:-1;1141:7:11;1168:6;-1:-1:-1;;;;;1168:6:11;1095:87;;247:38:2;;;;;;;;;;-1:-1:-1;247:38:2;;;;;;;;;;;5987:99;;;;;;;;;;-1:-1:-1;5987:99:2;;;;;:::i;:::-;;:::i;2622:104:4:-;;;;;;;;;;;;;:::i;5543:85:2:-;;;;;;;;;;-1:-1:-1;5610:10:2;;5543:85;;3242:201;;;;;;;;;;-1:-1:-1;3242:201:2;;;;;:::i;:::-;;:::i;4206:295:4:-;;;;;;;;;;-1:-1:-1;4206:295:4;;;;;:::i;:::-;;:::i;5401:285::-;;;;;;;;;;-1:-1:-1;5401:285:4;;;;;:::i;:::-;;:::i;493:40:2:-;;;;;;;;;;;;;;;;3850:422;;;;;;;;;;-1:-1:-1;3850:422:2;;;;;:::i;:::-;;:::i;2396:834::-;;;;;;:::i;:::-;;:::i;2797:360:4:-;;;;;;;;;;-1:-1:-1;2797:360:4;;;;;:::i;:::-;;:::i;4572:164::-;;;;;;;;;;-1:-1:-1;4572:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;4693:25:4;;;4669:4;4693:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4572:164;2049:244:11;;;;;;;;;;-1:-1:-1;2049:244:11;;;;;:::i;:::-;;:::i;6198:100:2:-;;;;;;;;;;;;;:::i;937:237:5:-;1039:4;-1:-1:-1;;;;;;1063:50:5;;-1:-1:-1;;;1063:50:5;;:103;;;1130:36;1154:11;1130:23;:36::i;:::-;1056:110;937:237;-1:-1:-1;;937:237:5:o;2453:100:4:-;2507:13;2540:5;2533:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2453:100;:::o;3913:221::-;3989:7;7242:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7242:16:4;4009:73;;;;-1:-1:-1;;;4009:73:4;;15678:2:13;4009:73:4;;;15660:21:13;15717:2;15697:18;;;15690:30;15756:34;15736:18;;;15729:62;-1:-1:-1;;;15807:18:13;;;15800:42;15859:19;;4009:73:4;;;;;;;;;-1:-1:-1;4102:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4102:24:4;;3913:221::o;3450:397::-;3531:13;3547:23;3562:7;3547:14;:23::i;:::-;3531:39;;3595:5;-1:-1:-1;;;;;3589:11:4;:2;-1:-1:-1;;;;;3589:11:4;;;3581:57;;;;-1:-1:-1;;;3581:57:4;;17683:2:13;3581:57:4;;;17665:21:13;17722:2;17702:18;;;17695:30;17761:34;17741:18;;;17734:62;-1:-1:-1;;;17812:18:13;;;17805:31;17853:19;;3581:57:4;17481:397:13;3581:57:4;681:10:1;-1:-1:-1;;;;;3659:21:4;;;;:62;;-1:-1:-1;3684:37:4;3701:5;681:10:1;4572:164:4;:::i;3684:37::-;3651:154;;;;-1:-1:-1;;;3651:154:4;;13718:2:13;3651:154:4;;;13700:21:13;13757:2;13737:18;;;13730:30;13796:34;13776:18;;;13769:62;13867:26;13847:18;;;13840:54;13911:19;;3651:154:4;13516:420:13;3651:154:4;3818:21;3827:2;3831:7;3818:8;:21::i;:::-;3520:327;3450:397;;:::o;3455:383:2:-;1141:7:11;1168:6;-1:-1:-1;;;;;1168:6:11;681:10:1;1315:23:11;1307:68;;;;-1:-1:-1;;;1307:68:11;;;;;;;:::i;:::-;578:4:2::1;3559:11;3543:13;1678:10:5::0;:17;;1590:113;3543:13:2::1;:27;;;;:::i;:::-;:41;;3535:72;;;::::0;-1:-1:-1;;;3535:72:2;;10737:2:13;3535:72:2::1;::::0;::::1;10719:21:13::0;10776:2;10756:18;;;10749:30;-1:-1:-1;;;10795:18:13;;;10788:48;10853:18;;3535:72:2::1;10535:342:13::0;3535:72:2::1;3641:11;;3626;:26;;3618:58;;;::::0;-1:-1:-1;;;3618:58:2;;10389:2:13;3618:58:2::1;::::0;::::1;10371:21:13::0;10428:2;10408:18;;;10401:30;-1:-1:-1;;;10447:18:13;;;10440:49;10506:18;;3618:58:2::1;10187:343:13::0;3618:58:2::1;3702:9;3697:97;3721:11;3717:1;:15;3697:97;;;3754:28;3764:2;3768:13;:11;:13::i;:::-;3754:9;:28::i;:::-;3734:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3697:97;;;;3819:11;3804;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;3455:383:2:o;1646:738::-;1723:18;;;;;;;;:26;;:18;:26;1715:63;;;;-1:-1:-1;;;1715:63:2;;14964:2:13;1715:63:2;;;14946:21:13;15003:2;14983:18;;;14976:30;15042:26;15022:18;;;15015:54;15086:18;;1715:63:2;14762:348:13;1715:63:2;1817:10;1797:31;;;;:19;:31;;;;;;1846:1;;1797:45;;1831:11;;1797:45;:::i;:::-;:50;;1789:99;;;;-1:-1:-1;;;1789:99:2;;8801:2:13;1789:99:2;;;8783:21:13;8840:2;8820:18;;;8813:30;8879:34;8859:18;;;8852:62;-1:-1:-1;;;8930:18:13;;;8923:34;8974:19;;1789:99:2;8599:400:13;1789:99:2;1923:12;;1908:11;:27;;1900:76;;;;-1:-1:-1;;;1900:76:2;;19321:2:13;1900:76:2;;;19303:21:13;19360:2;19340:18;;;19333:30;19399:34;19379:18;;;19372:62;-1:-1:-1;;;19450:18:13;;;19443:34;19494:19;;1900:76:2;19119:400:13;1900:76:2;2039:11;;2026:24;;578:4;2026:24;:::i;:::-;2011:11;1995:13;1678:10:5;:17;;1590:113;1995:13:2;:27;;;;:::i;:::-;:55;;1987:95;;;;-1:-1:-1;;;1987:95:2;;;;;;;:::i;:::-;2127:11;2114:10;;:24;;;;:::i;:::-;2101:9;:37;;2093:73;;;;-1:-1:-1;;;2093:73:2;;;;;;;:::i;:::-;2184:9;2179:101;2199:11;2195:1;:15;2179:101;;;2232:36;2242:10;2254:13;:11;:13::i;2232:36::-;2212:3;;;;:::i;:::-;;;;2179:101;;;-1:-1:-1;2312:10:2;2292:31;;;;:19;:31;;;;;:46;;2327:11;;2292:31;:46;;2327:11;;2292:46;:::i;:::-;;;;;;;;2365:11;2349:12;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;;1646:738:2:o;1114:518::-;1234:11;;1221:24;;578:4;1221:24;:::i;:::-;1206:11;1190:13;1678:10:5;:17;;1590:113;1190:13:2;:27;;;;:::i;:::-;:55;;1182:95;;;;-1:-1:-1;;;1182:95:2;;;;;;;:::i;:::-;1296:14;;;;:22;;:14;:22;1288:55;;;;-1:-1:-1;;;1288:55:2;;13369:2:13;1288:55:2;;;13351:21:13;13408:2;13388:18;;;13381:30;-1:-1:-1;;;13427:18:13;;;13420:50;13487:18;;1288:55:2;13167:344:13;1288:55:2;1377:2;1362:11;:17;;1354:60;;;;-1:-1:-1;;;1354:60:2;;8030:2:13;1354:60:2;;;8012:21:13;8069:2;8049:18;;;8042:30;8108:32;8088:18;;;8081:60;8158:18;;1354:60:2;7828:354:13;1354:60:2;1460:11;1447:10;;:24;;;;:::i;:::-;1434:9;:37;;1426:73;;;;-1:-1:-1;;;1426:73:2;;;;;;;:::i;:::-;1525:9;1520:105;1544:11;1540:1;:15;1520:105;;;1577:36;1587:10;1599:13;:11;:13::i;1577:36::-;1557:3;;;;:::i;:::-;;;;1520:105;;;;1114:518;:::o;4803:305:4:-;4964:41;681:10:1;4997:7:4;4964:18;:41::i;:::-;4956:103;;;;-1:-1:-1;;;4956:103:4;;;;;;;:::i;:::-;5072:28;5082:4;5088:2;5092:7;5072:9;:28::i;1258:256:5:-;1355:7;1391:23;1408:5;1391:16;:23::i;:::-;1383:5;:31;1375:87;;;;-1:-1:-1;;;1375:87:5;;8389:2:13;1375:87:5;;;8371:21:13;8428:2;8408:18;;;8401:30;8467:34;8447:18;;;8440:62;-1:-1:-1;;;8518:18:13;;;8511:41;8569:19;;1375:87:5;8187:407:13;1375:87:5;-1:-1:-1;;;;;;1480:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1258:256::o;6310:100:2:-;1141:7:11;1168:6;-1:-1:-1;;;;;1168:6:11;681:10:1;1315:23:11;1307:68;;;;-1:-1:-1;;;1307:68:11;;;;;;;:::i;:::-;6384:18:2::1;::::0;;-1:-1:-1;;6362:40:2;::::1;6384:18:::0;;;;::::1;;;6383:19;6362:40:::0;;::::1;;::::0;;6310:100::o;5179:151:4:-;5283:39;5300:4;5306:2;5310:7;5283:39;;;;;;;;;;;;:16;:39::i;1780:233:5:-;1855:7;1891:30;1678:10;:17;;1590:113;1891:30;1883:5;:38;1875:95;;;;-1:-1:-1;;;1875:95:5;;18503:2:13;1875:95:5;;;18485:21:13;18542:2;18522:18;;;18515:30;18581:34;18561:18;;;18554:62;-1:-1:-1;;;18632:18:13;;;18625:42;18684:19;;1875:95:5;18301:408:13;1875:95:5;1988:10;1999:5;1988:17;;;;;;;;:::i;:::-;;;;;;;;;1981:24;;1780:233;;;:::o;5765:101:2:-;1141:7:11;1168:6;-1:-1:-1;;;;;1168:6:11;681:10:1;1315:23:11;1307:68;;;;-1:-1:-1;;;1307:68:11;;;;;;;:::i;:::-;5836:22:2;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;2147:239:4:-:0;2219:7;2255:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2255:16:4;2290:19;2282:73;;;;-1:-1:-1;;;2282:73:4;;14554:2:13;2282:73:4;;;14536:21:13;14593:2;14573:18;;;14566:30;14632:34;14612:18;;;14605:62;-1:-1:-1;;;14683:18:13;;;14676:39;14732:19;;2282:73:4;14352:405:13;5878:97:2;5920:13;5955:12;5948:19;;;;;:::i;1877:208:4:-;1949:7;-1:-1:-1;;;;;1977:19:4;;1969:74;;;;-1:-1:-1;;;1969:74:4;;14143:2:13;1969:74:4;;;14125:21:13;14182:2;14162:18;;;14155:30;14221:34;14201:18;;;14194:62;-1:-1:-1;;;14272:18:13;;;14265:40;14322:19;;1969:74:4;13941:406:13;1969:74:4;-1:-1:-1;;;;;;2061:16:4;;;;;:9;:16;;;;;;;1877:208::o;1746:148:11:-;1141:7;1168:6;-1:-1:-1;;;;;1168:6:11;681:10:1;1315:23:11;1307:68;;;;-1:-1:-1;;;1307:68:11;;;;;;;:::i;:::-;1853:1:::1;1837:6:::0;;1816:40:::1;::::0;-1:-1:-1;;;;;1837:6:11;;::::1;::::0;1816:40:::1;::::0;1853:1;;1816:40:::1;1884:1;1867:19:::0;;-1:-1:-1;;;;;;1867:19:11::1;::::0;;1746:148::o;6098:88:2:-;1141:7:11;1168:6;-1:-1:-1;;;;;1168:6:11;681:10:1;1315:23:11;1307:68;;;;-1:-1:-1;;;1307:68:11;;;;;;;:::i;:::-;6164:14:2::1;::::0;;-1:-1:-1;;6146:32:2;::::1;6164:14;::::0;;::::1;6163:15;6146:32;::::0;;6098:88::o;4569:502::-;4630:16;4660:18;4681:17;4691:6;4681:9;:17::i;:::-;4660:38;-1:-1:-1;4713:15:2;4709:355;;4752:16;;;4766:1;4752:16;;;;;;;;;;;-1:-1:-1;4745:23:2;4569:502;-1:-1:-1;;;4569:502:2:o;4709:355::-;4801:23;4841:10;4827:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4827:25:2;;4801:51;;4867:13;4895:130;4919:10;4911:5;:18;4895:130;;;4975:34;4995:6;5003:5;4975:19;:34::i;:::-;4959:6;4966:5;4959:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;4931:7;;;;:::i;:::-;;;;4895:130;;4709:355;4649:422;4569:502;;;:::o;6422:194::-;1141:7:11;1168:6;-1:-1:-1;;;;;1168:6:11;681:10:1;1315:23:11;1307:68;;;;-1:-1:-1;;;1307:68:11;;;;;;;:::i;:::-;6489:10:2::1;::::0;-1:-1:-1;;;;;6489:10:2::1;6481:59;6506:28;6530:4;6506:21;:28;:::i;:::-;:33;::::0;6537:2:::1;6506:33;:::i;:::-;6481:59;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;6473:68;;;::::0;::::1;;6560:47;::::0;6568:10:::1;::::0;6585:21:::1;6560:47:::0;::::1;;;::::0;::::1;::::0;;;6585:21;6568:10;6560:47;::::1;;;;;;6552:56;;;::::0;::::1;;6422:194::o:0;5987:99::-;1141:7:11;1168:6;-1:-1:-1;;;;;1168:6:11;681:10:1;1315:23:11;1307:68;;;;-1:-1:-1;;;1307:68:11;;;;;;;:::i;:::-;6056:10:2::1;:22:::0;5987:99::o;2622:104:4:-;2678:13;2711:7;2704:14;;;;;:::i;3242:201:2:-;1141:7:11;1168:6;-1:-1:-1;;;;;1168:6:11;681:10:1;1315:23:11;1307:68;;;;-1:-1:-1;;;1307:68:11;;;;;;;:::i;:::-;3331:9:2::1;3327:109;3351:8;:15;3347:1;:19;3327:109;;;3420:4;3388:16;:29;3405:8;3414:1;3405:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;3388:29:2::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;3388:29:2;:36;;-1:-1:-1;;3388:36:2::1;::::0;::::1;;::::0;;;::::1;::::0;;3369:3;::::1;::::0;::::1;:::i;:::-;;;;3327:109;;4206:295:4::0;-1:-1:-1;;;;;4309:24:4;;681:10:1;4309:24:4;;4301:62;;;;-1:-1:-1;;;4301:62:4;;12250:2:13;4301:62:4;;;12232:21:13;12289:2;12269:18;;;12262:30;12328:27;12308:18;;;12301:55;12373:18;;4301:62:4;12048:349:13;4301:62:4;681:10:1;4376:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4376:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4376:53:4;;;;;;;;;;4445:48;;7552:41:13;;;4376:42:4;;681:10:1;4445:48:4;;7525:18:13;4445:48:4;;;;;;;4206:295;;:::o;5401:285::-;5533:41;681:10:1;5566:7:4;5533:18;:41::i;:::-;5525:103;;;;-1:-1:-1;;;5525:103:4;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5401:285;;;;:::o;3850:422:2:-;1141:7:11;1168:6;-1:-1:-1;;;;;1168:6:11;681:10:1;1315:23:11;1307:68;;;;-1:-1:-1;;;1307:68:11;;;;;;;:::i;:::-;578:4:2::1;3958:10;:17;3942:13;1678:10:5::0;:17;;1590:113;3942:13:2::1;:33;;;;:::i;:::-;:47;;3934:78;;;::::0;-1:-1:-1;;;3934:78:2;;10737:2:13;3934:78:2::1;::::0;::::1;10719:21:13::0;10776:2;10756:18;;;10749:30;-1:-1:-1;;;10795:18:13;;;10788:48;10853:18;;3934:78:2::1;10535:342:13::0;3934:78:2::1;4052:11;;4031:10;:17;:32;;4023:64;;;::::0;-1:-1:-1;;;4023:64:2;;10389:2:13;4023:64:2::1;::::0;::::1;10371:21:13::0;10428:2;10408:18;;;10401:30;-1:-1:-1;;;10447:18:13;;;10440:49;10506:18;;4023:64:2::1;10187:343:13::0;4023:64:2::1;4113:9;4108:114;4132:10;:17;4128:1;:21;4108:114;;;4171:39;4181:10;4192:1;4181:13;;;;;;;;:::i;:::-;;;;;;;4196;:11;:13::i;4171:39::-;4151:3:::0;::::1;::::0;::::1;:::i;:::-;;;;4108:114;;;;4247:10;:17;4232:11;;:32;;;;;;;:::i;2396:834::-:0;2473:18;;;;;;;:26;;2495:4;2473:26;2465:63;;;;-1:-1:-1;;;2465:63:2;;19726:2:13;2465:63:2;;;19708:21:13;19765:2;19745:18;;;19738:30;19804:26;19784:18;;;19777:54;19848:18;;2465:63:2;19524:348:13;2465:63:2;2564:10;2547:28;;;;:16;:28;;;;;;;;:36;;:28;:36;2539:85;;;;-1:-1:-1;;;2539:85:2;;11084:2:13;2539:85:2;;;11066:21:13;11123:2;11103:18;;;11096:30;11162:34;11142:18;;;11135:62;-1:-1:-1;;;11213:18:13;;;11206:34;11257:19;;2539:85:2;10882:400:13;2539:85:2;2663:10;2643:31;;;;:19;:31;;;;;;2692:1;;2643:45;;2677:11;;2643:45;:::i;:::-;:50;;2635:99;;;;-1:-1:-1;;;2635:99:2;;18916:2:13;2635:99:2;;;18898:21:13;18955:2;18935:18;;;18928:30;18994:34;18974:18;;;18967:62;-1:-1:-1;;;19045:18:13;;;19038:34;19089:19;;2635:99:2;18714:400:13;2635:99:2;2769:12;;2754:11;:27;;2746:76;;;;-1:-1:-1;;;2746:76:2;;16091:2:13;2746:76:2;;;16073:21:13;16130:2;16110:18;;;16103:30;16169:34;16149:18;;;16142:62;-1:-1:-1;;;16220:18:13;;;16213:34;16264:19;;2746:76:2;15889:400:13;2746:76:2;2885:11;;2872:24;;578:4;2872:24;:::i;:::-;2857:11;2841:13;1678:10:5;:17;;1590:113;2841:13:2;:27;;;;:::i;:::-;:55;;2833:95;;;;-1:-1:-1;;;2833:95:2;;;;;;;:::i;:::-;2973:11;2960:10;;:24;;;;:::i;:::-;2947:9;:37;;2939:73;;;;-1:-1:-1;;;2939:73:2;;;;;;;:::i;:::-;3030:9;3025:101;3045:11;3041:1;:15;3025:101;;;3078:36;3088:10;3100:13;:11;:13::i;3078:36::-;3058:3;;;;:::i;:::-;;;;3025:101;;;-1:-1:-1;3158:10:2;3138:31;;;;:19;:31;;;;;:46;;3173:11;;3138:31;:46;;3173:11;;3138:46;:::i;:::-;;;;;;;;3211:11;3195:12;;:27;;;;;;;:::i;2797:360:4:-;7218:4;7242:16;;;:7;:16;;;;;;2870:13;;-1:-1:-1;;;;;7242:16:4;2896:76;;;;-1:-1:-1;;;2896:76:4;;17267:2:13;2896:76:4;;;17249:21:13;17306:2;17286:18;;;17279:30;17345:34;17325:18;;;17318:62;-1:-1:-1;;;17396:18:13;;;17389:45;17451:19;;2896:76:4;17065:411:13;2896:76:4;2985:21;3009:10;:8;:10::i;:::-;2985:34;;3061:1;3043:7;3037:21;:25;:112;;;;;;;;;;;;;;;;;3102:7;3111:18;:7;:16;:18::i;:::-;3085:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3037:112;3030:119;2797:360;-1:-1:-1;;;2797:360:4:o;2049:244:11:-;1141:7;1168:6;-1:-1:-1;;;;;1168:6:11;681:10:1;1315:23:11;1307:68;;;;-1:-1:-1;;;1307:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;2138:22:11;::::1;2130:73;;;::::0;-1:-1:-1;;;2130:73:11;;9625:2:13;2130:73:11::1;::::0;::::1;9607:21:13::0;9664:2;9644:18;;;9637:30;9703:34;9683:18;;;9676:62;-1:-1:-1;;;9754:18:13;;;9747:36;9800:19;;2130:73:11::1;9423:402:13::0;2130:73:11::1;2240:6;::::0;;2219:38:::1;::::0;-1:-1:-1;;;;;2219:38:11;;::::1;::::0;2240:6;::::1;::::0;2219:38:::1;::::0;::::1;2268:6;:17:::0;;-1:-1:-1;;;;;;2268:17:11::1;-1:-1:-1::0;;;;;2268:17:11;;;::::1;::::0;;;::::1;::::0;;2049:244::o;6198:100:2:-;1141:7:11;1168:6;-1:-1:-1;;;;;1168:6:11;681:10:1;1315:23:11;1307:68;;;;-1:-1:-1;;;1307:68:11;;;;;;;:::i;:::-;6272:18:2::1;::::0;;-1:-1:-1;;6250:40:2;::::1;6272:18;::::0;;;::::1;;;6271:19;6250:40:::0;;::::1;;::::0;;6198:100::o;1521:292:4:-;1623:4;-1:-1:-1;;;;;;1647:40:4;;-1:-1:-1;;;1647:40:4;;:105;;-1:-1:-1;;;;;;;1704:48:4;;-1:-1:-1;;;1704:48:4;1647:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:3;;;1769:36:4;787:157:3;11030:174:4;11105:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11105:29:4;-1:-1:-1;;;;;11105:29:4;;;;;;;;:24;;11159:23;11105:24;11159:14;:23::i;:::-;-1:-1:-1;;;;;11150:46:4;;;;;;;;;;;11030:174;;:::o;4284:273:2:-;4324:7;4344:14;4361:31;4378:6;:13;;;;4361:16;:31::i;:::-;4344:48;;4403:15;4429:6;4436;4429:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;4421:23;;4403:41;;4474:6;4497:1;4481:6;:13;;;;:17;;;;:::i;:::-;4474:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;4457:6;4464;4457:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;4510:6;:12;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;4510:12:2;;;;;;;;;;;;;;;;;;;;;;;;4542:7;4284:273;-1:-1:-1;;4284:273:2:o;8137:110:4:-;8213:26;8223:2;8227:7;8213:26;;;;;;;;;;;;:9;:26::i;7447:348::-;7540:4;7242:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7242:16:4;7557:73;;;;-1:-1:-1;;;7557:73:4;;12956:2:13;7557:73:4;;;12938:21:13;12995:2;12975:18;;;12968:30;13034:34;13014:18;;;13007:62;-1:-1:-1;;;13085:18:13;;;13078:42;13137:19;;7557:73:4;12754:408:13;7557:73:4;7641:13;7657:23;7672:7;7657:14;:23::i;:::-;7641:39;;7710:5;-1:-1:-1;;;;;7699:16:4;:7;-1:-1:-1;;;;;7699:16:4;;:51;;;;7743:7;-1:-1:-1;;;;;7719:31:4;:20;7731:7;7719:11;:20::i;:::-;-1:-1:-1;;;;;7719:31:4;;7699:51;:87;;;-1:-1:-1;;;;;;4693:25:4;;;4669:4;4693:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7754:32;7691:96;7447:348;-1:-1:-1;;;;7447:348:4:o;10368:544::-;10493:4;-1:-1:-1;;;;;10466:31:4;:23;10481:7;10466:14;:23::i;:::-;-1:-1:-1;;;;;10466:31:4;;10458:85;;;;-1:-1:-1;;;10458:85:4;;16857:2:13;10458:85:4;;;16839:21:13;16896:2;16876:18;;;16869:30;16935:34;16915:18;;;16908:62;-1:-1:-1;;;16986:18:13;;;16979:39;17035:19;;10458:85:4;16655:405:13;10458:85:4;-1:-1:-1;;;;;10562:16:4;;10554:65;;;;-1:-1:-1;;;10554:65:4;;11845:2:13;10554:65:4;;;11827:21:13;11884:2;11864:18;;;11857:30;11923:34;11903:18;;;11896:62;-1:-1:-1;;;11974:18:13;;;11967:34;12018:19;;10554:65:4;11643:400:13;10554:65:4;10632:39;10653:4;10659:2;10663:7;10632:20;:39::i;:::-;10736:29;10753:1;10757:7;10736:8;:29::i;:::-;-1:-1:-1;;;;;10778:15:4;;;;;;:9;:15;;;;;:20;;10797:1;;10778:15;:20;;10797:1;;10778:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10809:13:4;;;;;;:9;:13;;;;;:18;;10826:1;;10809:13;:18;;10826:1;;10809:18;:::i;:::-;;;;-1:-1:-1;;10838:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10838:21:4;-1:-1:-1;;;;;10838:21:4;;;;;;;;;10877:27;;10838:16;;10877:27;;;;;;;10368:544;;;:::o;6568:272::-;6682:28;6692:4;6698:2;6702:7;6682:9;:28::i;:::-;6729:48;6752:4;6758:2;6762:7;6771:5;6729:22;:48::i;:::-;6721:111;;;;-1:-1:-1;;;6721:111:4;;;;;;;:::i;284:723:12:-;340:13;561:10;557:53;;-1:-1:-1;;588:10:12;;;;;;;;;;;;-1:-1:-1;;;588:10:12;;;;;284:723::o;557:53::-;635:5;620:12;676:78;683:9;;676:78;;709:8;;;;:::i;:::-;;-1:-1:-1;732:10:12;;-1:-1:-1;740:2:12;732:10;;:::i;:::-;;;676:78;;;764:19;796:6;786:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;786:17:12;;764:39;;814:154;821:10;;814:154;;848:11;858:1;848:11;;:::i;:::-;;-1:-1:-1;917:10:12;925:2;917:5;:10;:::i;:::-;904:24;;:2;:24;:::i;:::-;891:39;;874:6;881;874:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;874:56:12;;;;;;;;-1:-1:-1;945:11:12;954:2;945:11;;:::i;:::-;;;814:154;;5083:448:2;5273:6;:13;5147:7;;;;5319:16;5334:1;5319:12;:16;:::i;:::-;5234:230;;;;;;5780:19:13;;;;5309:27:2;;5815:12:13;;;5808:28;-1:-1:-1;;5359:14:2;5924:2:13;5920:15;;;5916:24;;5902:12;;;5895:46;5396:16:2;5957:12:13;;;5950:28;5435:10:2;6013:15:13;;6009:24;5994:13;;;5987:47;6050:13;;5234:230:2;;;-1:-1:-1;;5234:230:2;;;;;;;;;5206:273;;5234:230;5206:273;;;;;-1:-1:-1;5508:15:2;5517:6;5206:273;5508:15;:::i;8474:250:4:-;8570:18;8576:2;8580:7;8570:5;:18::i;:::-;8607:54;8638:1;8642:2;8646:7;8655:5;8607:22;:54::i;:::-;8599:117;;;;-1:-1:-1;;;8599:117:4;;;;;;;:::i;2626:555:5:-;-1:-1:-1;;;;;2798:18:5;;2794:187;;2833:40;2865:7;4008:10;:17;;3981:24;;;;:15;:24;;;;;:44;;;4036:24;;;;;;;;;;;;3904:164;2833:40;2794:187;;;2903:2;-1:-1:-1;;;;;2895:10:5;:4;-1:-1:-1;;;;;2895:10:5;;2891:90;;2922:47;2955:4;2961:7;2922:32;:47::i;:::-;-1:-1:-1;;;;;2995:16:5;;2991:183;;3028:45;3065:7;3028:36;:45::i;2991:183::-;3101:4;-1:-1:-1;;;;;3095:10:5;:2;-1:-1:-1;;;;;3095:10:5;;3091:83;;3122:40;3150:2;3154:7;3122:27;:40::i;11769:843:4:-;11890:4;-1:-1:-1;;;;;11916:13:4;;1110:20:0;1149:8;11912:693:4;;11952:72;;-1:-1:-1;;;11952:72:4;;-1:-1:-1;;;;;11952:36:4;;;;;:72;;681:10:1;;12003:4:4;;12009:7;;12018:5;;11952:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11952:72:4;;;;;;;;-1:-1:-1;;11952:72:4;;;;;;;;;;;;:::i;:::-;;;11948:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12198:13:4;;12194:341;;12241:60;;-1:-1:-1;;;12241:60:4;;;;;;;:::i;12194:341::-;12485:6;12479:13;12470:6;12466:2;12462:15;12455:38;11948:602;-1:-1:-1;;;;;;12075:55:4;-1:-1:-1;;;12075:55:4;;-1:-1:-1;12068:62:4;;11912:693;-1:-1:-1;12589:4:4;11769:843;;;;;;:::o;9060:382::-;-1:-1:-1;;;;;9140:16:4;;9132:61;;;;-1:-1:-1;;;9132:61:4;;15317:2:13;9132:61:4;;;15299:21:13;;;15336:18;;;15329:30;15395:34;15375:18;;;15368:62;15447:18;;9132:61:4;15115:356:13;9132:61:4;7218:4;7242:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7242:16:4;:30;9204:58;;;;-1:-1:-1;;;9204:58:4;;10032:2:13;9204:58:4;;;10014:21:13;10071:2;10051:18;;;10044:30;10110;10090:18;;;10083:58;10158:18;;9204:58:4;9830:352:13;9204:58:4;9275:45;9304:1;9308:2;9312:7;9275:20;:45::i;:::-;-1:-1:-1;;;;;9333:13:4;;;;;;:9;:13;;;;;:18;;9350:1;;9333:13;:18;;9350:1;;9333:18;:::i;:::-;;;;-1:-1:-1;;9362:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9362:21:4;-1:-1:-1;;;;;9362:21:4;;;;;;;;9401:33;;9362:16;;;9401:33;;9362:16;;9401:33;9060:382;;:::o;4695:988:5:-;4961:22;5011:1;4986:22;5003:4;4986:16;:22::i;:::-;:26;;;;:::i;:::-;5023:18;5044:26;;;:17;:26;;;;;;4961:51;;-1:-1:-1;5177:28:5;;;5173:328;;-1:-1:-1;;;;;5244:18:5;;5222:19;5244:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5295:30;;;;;;:44;;;5412:30;;:17;:30;;;;;:43;;;5173:328;-1:-1:-1;5597:26:5;;;;:17;:26;;;;;;;;5590:33;;;-1:-1:-1;;;;;5641:18:5;;;;;:12;:18;;;;;:34;;;;;;;5634:41;4695:988::o;5978:1079::-;6256:10;:17;6231:22;;6256:21;;6276:1;;6256:21;:::i;:::-;6288:18;6309:24;;;:15;:24;;;;;;6682:10;:26;;6231:46;;-1:-1:-1;6309:24:5;;6231:46;;6682:26;;;;;;:::i;:::-;;;;;;;;;6660:48;;6746:11;6721:10;6732;6721:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6826:28;;;:15;:28;;;;;;;:41;;;6998:24;;;;;6991:31;7033:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6049:1008;;;5978:1079;:::o;3482:221::-;3567:14;3584:20;3601:2;3584:16;:20::i;:::-;-1:-1:-1;;;;;3615:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3660:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3482:221:5:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:13;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:13;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:13;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:13;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:13:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:13;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:13;2674:963;-1:-1:-1;;;;;;;;2674:963:13:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:13;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:13;;4601:180;-1:-1:-1;4601:180:13:o;4786:257::-;4827:3;4865:5;4859:12;4892:6;4887:3;4880:19;4908:63;4964:6;4957:4;4952:3;4948:14;4941:4;4934:5;4930:16;4908:63;:::i;:::-;5025:2;5004:15;-1:-1:-1;;5000:29:13;4991:39;;;;5032:4;4987:50;;4786:257;-1:-1:-1;;4786:257:13:o;5048:470::-;5227:3;5265:6;5259:13;5281:53;5327:6;5322:3;5315:4;5307:6;5303:17;5281:53;:::i;:::-;5397:13;;5356:16;;;;5419:57;5397:13;5356:16;5453:4;5441:17;;5419:57;:::i;:::-;5492:20;;5048:470;-1:-1:-1;;;;5048:470:13:o;6282:488::-;-1:-1:-1;;;;;6551:15:13;;;6533:34;;6603:15;;6598:2;6583:18;;6576:43;6650:2;6635:18;;6628:34;;;6698:3;6693:2;6678:18;;6671:31;;;6476:4;;6719:45;;6744:19;;6736:6;6719:45;:::i;:::-;6711:53;6282:488;-1:-1:-1;;;;;;6282:488:13:o;6775:632::-;6946:2;6998:21;;;7068:13;;6971:18;;;7090:22;;;6917:4;;6946:2;7169:15;;;;7143:2;7128:18;;;6917:4;7212:169;7226:6;7223:1;7220:13;7212:169;;;7287:13;;7275:26;;7356:15;;;;7321:12;;;;7248:1;7241:9;7212:169;;;-1:-1:-1;7398:3:13;;6775:632;-1:-1:-1;;;;;;6775:632:13:o;7604:219::-;7753:2;7742:9;7735:21;7716:4;7773:44;7813:2;7802:9;7798:18;7790:6;7773:44;:::i;9004:414::-;9206:2;9188:21;;;9245:2;9225:18;;;9218:30;9284:34;9279:2;9264:18;;9257:62;-1:-1:-1;;;9350:2:13;9335:18;;9328:48;9408:3;9393:19;;9004:414::o;11287:351::-;11489:2;11471:21;;;11528:2;11508:18;;;11501:30;11567:29;11562:2;11547:18;;11540:57;11629:2;11614:18;;11287:351::o;12402:347::-;12604:2;12586:21;;;12643:2;12623:18;;;12616:30;12682:25;12677:2;12662:18;;12655:53;12740:2;12725:18;;12402:347::o;16294:356::-;16496:2;16478:21;;;16515:18;;;16508:30;16574:34;16569:2;16554:18;;16547:62;16641:2;16626:18;;16294:356::o;17883:413::-;18085:2;18067:21;;;18124:2;18104:18;;;18097:30;18163:34;18158:2;18143:18;;18136:62;-1:-1:-1;;;18229:2:13;18214:18;;18207:47;18286:3;18271:19;;17883:413::o;20059:275::-;20130:2;20124:9;20195:2;20176:13;;-1:-1:-1;;20172:27:13;20160:40;;20230:18;20215:34;;20251:22;;;20212:62;20209:88;;;20277:18;;:::i;:::-;20313:2;20306:22;20059:275;;-1:-1:-1;20059:275:13:o;20339:128::-;20379:3;20410:1;20406:6;20403:1;20400:13;20397:39;;;20416:18;;:::i;:::-;-1:-1:-1;20452:9:13;;20339:128::o;20472:120::-;20512:1;20538;20528:35;;20543:18;;:::i;:::-;-1:-1:-1;20577:9:13;;20472:120::o;20597:168::-;20637:7;20703:1;20699;20695:6;20691:14;20688:1;20685:21;20680:1;20673:9;20666:17;20662:45;20659:71;;;20710:18;;:::i;:::-;-1:-1:-1;20750:9:13;;20597:168::o;20770:125::-;20810:4;20838:1;20835;20832:8;20829:34;;;20843:18;;:::i;:::-;-1:-1:-1;20880:9:13;;20770:125::o;20900:258::-;20972:1;20982:113;20996:6;20993:1;20990:13;20982:113;;;21072:11;;;21066:18;21053:11;;;21046:39;21018:2;21011:10;20982:113;;;21113:6;21110:1;21107:13;21104:48;;;-1:-1:-1;;21148:1:13;21130:16;;21123:27;20900:258::o;21163:380::-;21242:1;21238:12;;;;21285;;;21306:61;;21360:4;21352:6;21348:17;21338:27;;21306:61;21413:2;21405:6;21402:14;21382:18;21379:38;21376:161;;;21459:10;21454:3;21450:20;21447:1;21440:31;21494:4;21491:1;21484:15;21522:4;21519:1;21512:15;21548:135;21587:3;-1:-1:-1;;21608:17:13;;21605:43;;;21628:18;;:::i;:::-;-1:-1:-1;21675:1:13;21664:13;;21548:135::o;21688:112::-;21720:1;21746;21736:35;;21751:18;;:::i;:::-;-1:-1:-1;21785:9:13;;21688:112::o;21805:127::-;21866:10;21861:3;21857:20;21854:1;21847:31;21897:4;21894:1;21887:15;21921:4;21918:1;21911:15;21937:127;21998:10;21993:3;21989:20;21986:1;21979:31;22029:4;22026:1;22019:15;22053:4;22050:1;22043:15;22069:127;22130:10;22125:3;22121:20;22118:1;22111:31;22161:4;22158:1;22151:15;22185:4;22182:1;22175:15;22201:127;22262:10;22257:3;22253:20;22250:1;22243:31;22293:4;22290:1;22283:15;22317:4;22314:1;22307:15;22333:127;22394:10;22389:3;22385:20;22382:1;22375:31;22425:4;22422:1;22415:15;22449:4;22446:1;22439:15;22465:131;-1:-1:-1;;;;;;22539:32:13;;22529:43;;22519:71;;22586:1;22583;22576:12;22519:71;22465:131;:::o

Swarm Source

ipfs://21438e2449c0a0c328d6d6f980d85e7beb0092fa9b5d4a3add78517c243d16c6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.