ETH Price: $2,453.17 (+2.17%)

Token

The Doggos Artdrops (TDA)
 

Overview

Max Total Supply

122 TDA

Holders

38

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
madella.eth
0xcc2705A3447C022924d07caaF65EfC092CeD2Bfd
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:
DoggosArtdrops

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 11: DoggosArtdrops.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Strings.sol";
import "./ERC1155.sol";
import "./Ownable.sol";

abstract contract Doggos {
  function tokenOfOwnerByIndex(address owner, uint256 index) external virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256);
}

contract DoggosArtdrops is Ownable, ERC1155 {
    
    Doggos private doggo;
    using Strings for uint256;
    
    bool public hasClaimStarted = false;
    bool public hasSaleStarted = false;
    bool[100][5556]private doggoTokenCheck;
    
    uint256[100] public seriesSupply;
    uint256 private totalTokenSupply = 0;
    uint256 public dropSeries = 1;
    uint256 public MINT_PRICE = 0.7 ether;
    uint256 private constant MAX_DROP = 777;
    
    string public name = "The Doggos Artdrops";
    string public symbol = "TDA";
    address doggosAddress = 0x88ED28549Eb66cB5a4580fb3C54148Ce2d5c7F0f;

    constructor() ERC1155("") {
        doggo = Doggos(doggosAddress);
    }
    
    function doggoTokenStatus(uint256 tokenId) public view returns (bool) { 
        return doggoTokenCheck[tokenId][dropSeries];
    }
    
    function mintDrops(uint256 numofDoggos) public payable { 
        require(seriesSupply[dropSeries] + numofDoggos <= MAX_DROP, "Exceeds max Drop mintable");
        require(hasSaleStarted == true, "Sales have not start");
        require(numofDoggos <= 20, "Max mint of 20 Drop");
        require(msg.value >= MINT_PRICE * numofDoggos, "Value sent insufficient");
        
        _mint(msg.sender, dropSeries, numofDoggos, "");
        seriesSupply[dropSeries] += numofDoggos;
        totalTokenSupply += numofDoggos;
    } 
    
    function claimDrop(uint256 numofDoggos) public {  
        require(hasClaimStarted == true, "Claiming has not start");
        require(seriesSupply[dropSeries] + numofDoggos <= MAX_DROP, "Exceeds max Drop mintable"); 
        require(numofDoggos <= 20, "Exceeds max Drop claimable");
        
        uint256 balance = doggo.balanceOf(msg.sender);
        uint256 index = 0;
        
        for (uint256 i = 0; i < numofDoggos; i++) {
            for (uint256 j = index; j < balance; j++){  
                if (doggoTokenCheck[doggo.tokenOfOwnerByIndex(msg.sender, j)][dropSeries] == false) {
                    doggoTokenCheck[doggo.tokenOfOwnerByIndex(msg.sender, j)][dropSeries] = true;
                     _mint(msg.sender, dropSeries, 1, ""); 
                     seriesSupply[dropSeries] += 1;
                     totalTokenSupply += 1;
                     index = j + 1;
                     j = balance;
                }
            }
        }
    }
    
    function checkClaimableQty() public view returns (uint256){  
        uint256 balance = doggo.balanceOf(msg.sender);
        uint256 mintcount = 0;
        
        for (uint256 i = 0; i < balance; i++){
            if (doggoTokenCheck[doggo.tokenOfOwnerByIndex(msg.sender, i)][dropSeries] ==  false) {
                mintcount = mintcount + 1;
            }
        }
        return mintcount;
    }
    
    function giveaways(address to, uint256 numofDoggos) public onlyOwner {
        require(seriesSupply[dropSeries] + numofDoggos <= MAX_DROP, "Exceeds max drop mintable");
        
        _mint(to, dropSeries, numofDoggos, "");
        seriesSupply[dropSeries] += numofDoggos;
        totalTokenSupply += numofDoggos;
    }
    
    function giveawaysToMany(address[] memory recipients) external onlyOwner {
        require(seriesSupply[dropSeries] + recipients.length <= MAX_DROP, 'Exceeds max drop mintable');
        
        for (uint256 i = 0; i < recipients.length; i++) {
            _mint(recipients[i], dropSeries, 1, ""); 
            seriesSupply[dropSeries] += 1;
            totalTokenSupply += 1;
        }
    }
    
    function uri(uint256 tokenId) public view override returns (string memory) {
      string memory baseURI = ERC1155.uri(tokenId);
      return string(abi.encodePacked(baseURI, Strings.toString(tokenId)));
    }

    function setURI(string memory newURI) public onlyOwner {
      _setURI(newURI);
    }
    
    function setDropSeries (uint256 id) public onlyOwner {
        require(id < 100, "Exceeds DropSeries ID");
        dropSeries = id;
    }
    
    function totalSupply() public view returns (uint256) {
        return totalTokenSupply; 
    }
    
    function getPrice() public view returns (uint256){
        return MINT_PRICE;
    }
    
    function setPrice(uint256 newPrice) public onlyOwner() {  
        MINT_PRICE = newPrice;
    }
    
    function flipSale() public onlyOwner {
        hasSaleStarted = !hasSaleStarted;
    }
    
    function flipClaim() public onlyOwner {
        hasClaimStarted = !hasClaimStarted;
    }
    
    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
   
}

File 1 of 11: 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 11: 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) {
        return msg.data;
    }
}

File 4 of 11: ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./IERC1155MetadataURI.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 5 of 11: 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 6 of 11: IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 7 of 11: IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 8 of 11: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 11: 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 10 of 11: 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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkClaimableQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numofDoggos","type":"uint256"}],"name":"claimDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"doggoTokenStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dropSeries","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","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":"hasClaimStarted","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":"account","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":"mintDrops","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seriesSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"setDropSeries","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setURI","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6004805461ffff60a01b19169055600061573955600161573a556709b6e64a8ec6000061573b5560c0604052601360808190527f54686520446f67676f732041727464726f70730000000000000000000000000060a0908152620000689161573c919062000184565b506040805180820190915260038082526254444160e81b6020909201918252620000969161573d9162000184565b5061573e80546001600160a01b0319167388ed28549eb66cb5a4580fb3c54148ce2d5c7f0f179055348015620000cb57600080fd5b50604080516020810190915260008152620000e6336200011b565b620000f1816200016b565b5061573e54600480546001600160a01b0319166001600160a01b0390921691909117905562000267565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516200018090600390602084019062000184565b5050565b82805462000192906200022a565b90600052602060002090601f016020900481019282620001b6576000855562000201565b82601f10620001d157805160ff191683800117855562000201565b8280016001018555821562000201579182015b8281111562000201578251825591602001919060010190620001e4565b506200020f92915062000213565b5090565b5b808211156200020f576000815560010162000214565b600181811c908216806200023f57607f821691505b602082108114156200026157634e487b7160e01b600052602260045260246000fd5b50919050565b612a1a80620002776000396000f3fe6080604052600436106101e25760003560e01c80638da5cb5b11610102578063c1362cf111610095578063e985e9c511610064578063e985e9c51461052c578063f242432a14610575578063f2fde38b14610595578063fdcdaf03146105b557600080fd5b8063c1362cf1146104b9578063c312c5c4146104cc578063d39bc484146104ec578063d4ac0ac01461050c57600080fd5b8063a22cb465116100d1578063a22cb4651461044d578063aa473fcd1461046d578063b367cf411461048d578063c002d23d146104a257600080fd5b80638da5cb5b146103da57806391b7f5ed1461040257806395d89b411461042257806398d5fdca1461043757600080fd5b80632eb2c2d61161017a578063717bf33611610149578063717bf3361461037c57806375bf81d61461039d5780637ba5e621146103bd578063853828b6146103d257600080fd5b80632eb2c2d6146103055780634e1273f4146103255780635e0bd4ee14610352578063715018a61461036757600080fd5b80630de8a77b116101b65780630de8a77b1461028e5780630e89341c146102ae57806318160ddd146102ce5780631c8b232d146102e457600080fd5b8062fdd58e146101e757806301ffc9a71461021a57806302fe53051461024a57806306fdde031461026c575b600080fd5b3480156101f357600080fd5b50610207610202366004612376565b6105cc565b6040519081526020015b60405180910390f35b34801561022657600080fd5b5061023a610235366004612439565b610665565b6040519015158152602001610211565b34801561025657600080fd5b5061026a610265366004612473565b6106b7565b005b34801561027857600080fd5b506102816106ed565b6040516102119190612668565b34801561029a57600080fd5b5061026a6102a9366004612376565b61077c565b3480156102ba57600080fd5b506102816102c93660046124bc565b610880565b3480156102da57600080fd5b5061573954610207565b3480156102f057600080fd5b5060045461023a90600160a81b900460ff1681565b34801561031157600080fd5b5061026a61032036600461222b565b6108c1565b34801561033157600080fd5b506103456103403660046123d5565b610958565b6040516102119190612627565b34801561035e57600080fd5b5061026a610a82565b34801561037357600080fd5b5061026a610acd565b34801561038857600080fd5b5060045461023a90600160a01b900460ff1681565b3480156103a957600080fd5b5061026a6103b83660046124bc565b610b03565b3480156103c957600080fd5b5061026a610ef6565b61026a610f41565b3480156103e657600080fd5b506000546040516001600160a01b039091168152602001610211565b34801561040e57600080fd5b5061026a61041d3660046124bc565b610f8f565b34801561042e57600080fd5b50610281610fbf565b34801561044357600080fd5b5061573b54610207565b34801561045957600080fd5b5061026a61046836600461233a565b610fcd565b34801561047957600080fd5b5061026a6104883660046124bc565b6110a4565b34801561049957600080fd5b5061020761111c565b3480156104ae57600080fd5b5061020761573b5481565b61026a6104c73660046124bc565b61129d565b3480156104d857600080fd5b5061026a6104e73660046123a0565b611470565b3480156104f857600080fd5b5061023a6105073660046124bc565b6115b0565b34801561051857600080fd5b506102076105273660046124bc565b6115fa565b34801561053857600080fd5b5061023a6105473660046121f8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b34801561058157600080fd5b5061026a6105903660046122d5565b611612565b3480156105a157600080fd5b5061026a6105b03660046121dd565b611699565b3480156105c157600080fd5b5061020761573a5481565b60006001600160a01b03831661063d5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061069657506001600160e01b031982166303a24d0760e21b145b806106b157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146106e15760405162461bcd60e51b815260040161063490612752565b6106ea81611731565b50565b61573c80546106fb90612839565b80601f016020809104026020016040519081016040528092919081815260200182805461072790612839565b80156107745780601f1061074957610100808354040283529160200191610774565b820191906000526020600020905b81548152906001019060200180831161075757829003601f168201915b505050505081565b6000546001600160a01b031633146107a65760405162461bcd60e51b815260040161063490612752565b610309816156d561573a54606481106107c1576107c16128fc565b01546107cd91906127ab565b11156108175760405162461bcd60e51b815260206004820152601960248201527845786365656473206d61782064726f70206d696e7461626c6560381b6044820152606401610634565b6108358261573a548360405180602001604052806000815250611744565b806156d561573a546064811061084d5761084d6128fc565b01600082825461085d91906127ab565b9250508190555080615739600082825461087791906127ab565b90915550505050565b6060600061088d83611850565b905080610899846118e4565b6040516020016108aa929190612555565b604051602081830303815290604052915050919050565b6001600160a01b0385163314806108dd57506108dd8533610547565b6109445760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610634565b61095185858585856119ea565b5050505050565b606081518351146109bd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610634565b6000835167ffffffffffffffff8111156109d9576109d9612912565b604051908082528060200260200182016040528015610a02578160200160208202803683370190505b50905060005b8451811015610a7a57610a4d858281518110610a2657610a266128fc565b6020026020010151858381518110610a4057610a406128fc565b60200260200101516105cc565b828281518110610a5f57610a5f6128fc565b6020908102919091010152610a73816128a1565b9050610a08565b509392505050565b6000546001600160a01b03163314610aac5760405162461bcd60e51b815260040161063490612752565b6004805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000546001600160a01b03163314610af75760405162461bcd60e51b815260040161063490612752565b610b016000611bca565b565b600454600160a01b900460ff161515600114610b5a5760405162461bcd60e51b815260206004820152601660248201527510db185a5b5a5b99c81a185cc81b9bdd081cdd185c9d60521b6044820152606401610634565b610309816156d561573a5460648110610b7557610b756128fc565b0154610b8191906127ab565b1115610bcb5760405162461bcd60e51b815260206004820152601960248201527845786365656473206d61782044726f70206d696e7461626c6560381b6044820152606401610634565b6014811115610c1c5760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d61782044726f7020636c61696d61626c650000000000006044820152606401610634565b600480546040516370a0823160e01b815233928101929092526000916001600160a01b03909116906370a082319060240160206040518083038186803b158015610c6557600080fd5b505afa158015610c79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9d91906124d5565b90506000805b83811015610ef057815b83811015610edd5760048054604051632f745c5960e01b81523392810192909252602482018390526005916001600160a01b0390911690632f745c599060440160206040518083038186803b158015610d0557600080fd5b505afa158015610d19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3d91906124d5565b6115b48110610d4e57610d4e6128fc565b6004020161573a5460648110610d6657610d666128fc565b602081049091015460ff601f9092166101000a900416610ecb5760048054604051632f745c5960e01b81523392810192909252602482018390526001916005916001600160a01b031690632f745c599060440160206040518083038186803b158015610dd157600080fd5b505afa158015610de5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0991906124d5565b6115b48110610e1a57610e1a6128fc565b6004020161573a5460648110610e3257610e326128fc565b602091828204019190066101000a81548160ff021916908315150217905550610e703361573a54600160405180602001604052806000815250611744565b60016156d561573a5460648110610e8957610e896128fc565b016000828254610e9991906127ab565b9250508190555060016157396000828254610eb491906127ab565b90915550610ec590508160016127ab565b92508390505b80610ed5816128a1565b915050610cad565b5080610ee8816128a1565b915050610ca3565b50505050565b6000546001600160a01b03163314610f205760405162461bcd60e51b815260040161063490612752565b6004805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6000546001600160a01b03163314610f6b5760405162461bcd60e51b815260040161063490612752565b60405133904780156108fc02916000818181858888f19350505050610b0157600080fd5b6000546001600160a01b03163314610fb95760405162461bcd60e51b815260040161063490612752565b61573b55565b61573d80546106fb90612839565b336001600160a01b03831614156110385760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610634565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146110ce5760405162461bcd60e51b815260040161063490612752565b606481106111165760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc8111c9bdc14d95c9a595cc81251605a1b6044820152606401610634565b61573a55565b600480546040516370a0823160e01b8152339281019290925260009182916001600160a01b0316906370a082319060240160206040518083038186803b15801561116557600080fd5b505afa158015611179573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119d91906124d5565b90506000805b828110156112965760048054604051632f745c5960e01b81523392810192909252602482018390526005916001600160a01b0390911690632f745c599060440160206040518083038186803b1580156111fb57600080fd5b505afa15801561120f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123391906124d5565b6115b48110611244576112446128fc565b6004020161573a546064811061125c5761125c6128fc565b602081049091015460ff601f9092166101000a900416611284576112818260016127ab565b91505b8061128e816128a1565b9150506111a3565b5092915050565b610309816156d561573a54606481106112b8576112b86128fc565b01546112c491906127ab565b111561130e5760405162461bcd60e51b815260206004820152601960248201527845786365656473206d61782044726f70206d696e7461626c6560381b6044820152606401610634565b600454600160a81b900460ff1615156001146113635760405162461bcd60e51b815260206004820152601460248201527314d85b195cc81a185d99481b9bdd081cdd185c9d60621b6044820152606401610634565b60148111156113aa5760405162461bcd60e51b815260206004820152601360248201527204d6178206d696e74206f662032302044726f7606c1b6044820152606401610634565b8061573b546113b991906127d7565b3410156114085760405162461bcd60e51b815260206004820152601760248201527f56616c75652073656e7420696e73756666696369656e740000000000000000006044820152606401610634565b6114263361573a548360405180602001604052806000815250611744565b806156d561573a546064811061143e5761143e6128fc565b01600082825461144e91906127ab565b9250508190555080615739600082825461146891906127ab565b909155505050565b6000546001600160a01b0316331461149a5760405162461bcd60e51b815260040161063490612752565b61030981516156d561573a54606481106114b6576114b66128fc565b01546114c291906127ab565b111561150c5760405162461bcd60e51b815260206004820152601960248201527845786365656473206d61782064726f70206d696e7461626c6560381b6044820152606401610634565b60005b81518110156115ac5761155082828151811061152d5761152d6128fc565b602002602001015161573a54600160405180602001604052806000815250611744565b60016156d561573a5460648110611569576115696128fc565b01600082825461157991906127ab565b925050819055506001615739600082825461159491906127ab565b909155508190506115a4816128a1565b91505061150f565b5050565b60006005826115b481106115c6576115c66128fc565b6004020161573a54606481106115de576115de6128fc565b602081049091015460ff601f9092166101000a90041692915050565b6156d5816064811061160b57600080fd5b0154905081565b6001600160a01b03851633148061162e575061162e8533610547565b61168c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610634565b6109518585858585611c1a565b6000546001600160a01b031633146116c35760405162461bcd60e51b815260040161063490612752565b6001600160a01b0381166117285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610634565b6106ea81611bca565b80516115ac906003906020840190611fbb565b6001600160a01b0384166117a45760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610634565b336117be816000876117b588611d3b565b61095188611d3b565b60008481526001602090815260408083206001600160a01b0389168452909152812080548592906117f09084906127ab565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461095181600087878787611d86565b60606003805461185f90612839565b80601f016020809104026020016040519081016040528092919081815260200182805461188b90612839565b80156118d85780601f106118ad576101008083540402835291602001916118d8565b820191906000526020600020905b8154815290600101906020018083116118bb57829003601f168201915b50505050509050919050565b6060816119085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611932578061191c816128a1565b915061192b9050600a836127c3565b915061190c565b60008167ffffffffffffffff81111561194d5761194d612912565b6040519080825280601f01601f191660200182016040528015611977576020820181803683370190505b5090505b84156119e25761198c6001836127f6565b9150611999600a866128bc565b6119a49060306127ab565b60f81b8183815181106119b9576119b96128fc565b60200101906001600160f81b031916908160001a9053506119db600a866127c3565b945061197b565b949350505050565b8151835114611a4c5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610634565b6001600160a01b038416611a725760405162461bcd60e51b8152600401610634906126c3565b3360005b8451811015611b5c576000858281518110611a9357611a936128fc565b602002602001015190506000858381518110611ab157611ab16128fc565b60209081029190910181015160008481526001835260408082206001600160a01b038e168352909352919091205490915081811015611b025760405162461bcd60e51b815260040161063490612708565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611b419084906127ab565b9250508190555050505080611b55906128a1565b9050611a76565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611bac92919061263a565b60405180910390a4611bc2818787878787611ef1565b505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038416611c405760405162461bcd60e51b8152600401610634906126c3565b33611c508187876117b588611d3b565b60008481526001602090815260408083206001600160a01b038a16845290915290205483811015611c935760405162461bcd60e51b815260040161063490612708565b60008581526001602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611cd29084906127ab565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d32828888888888611d86565b50505050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611d7557611d756128fc565b602090810291909101015292915050565b6001600160a01b0384163b15611bc25760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611dca90899089908890889088906004016125e2565b602060405180830381600087803b158015611de457600080fd5b505af1925050508015611e14575060408051601f3d908101601f19168201909252611e1191810190612456565b60015b611ec157611e20612928565b806308c379a01415611e5a5750611e35612944565b80611e405750611e5c565b8060405162461bcd60e51b81526004016106349190612668565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610634565b6001600160e01b0319811663f23a6e6160e01b14611d325760405162461bcd60e51b81526004016106349061267b565b6001600160a01b0384163b15611bc25760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611f359089908990889088908890600401612584565b602060405180830381600087803b158015611f4f57600080fd5b505af1925050508015611f7f575060408051601f3d908101601f19168201909252611f7c91810190612456565b60015b611f8b57611e20612928565b6001600160e01b0319811663bc197c8160e01b14611d325760405162461bcd60e51b81526004016106349061267b565b828054611fc790612839565b90600052602060002090601f016020900481019282611fe9576000855561202f565b82601f1061200257805160ff191683800117855561202f565b8280016001018555821561202f579182015b8281111561202f578251825591602001919060010190612014565b5061203b92915061203f565b5090565b5b8082111561203b5760008155600101612040565b600067ffffffffffffffff83111561206e5761206e612912565b604051612085601f8501601f191660200182612874565b80915083815284848401111561209a57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146120c957600080fd5b919050565b600082601f8301126120df57600080fd5b813560206120ec82612787565b6040516120f98282612874565b8381528281019150858301600585901b8701840188101561211957600080fd5b60005b8581101561213f5761212d826120b2565b8452928401929084019060010161211c565b5090979650505050505050565b600082601f83011261215d57600080fd5b8135602061216a82612787565b6040516121778282612874565b8381528281019150858301600585901b8701840188101561219757600080fd5b60005b8581101561213f5781358452928401929084019060010161219a565b600082601f8301126121c757600080fd5b6121d683833560208501612054565b9392505050565b6000602082840312156121ef57600080fd5b6121d6826120b2565b6000806040838503121561220b57600080fd5b612214836120b2565b9150612222602084016120b2565b90509250929050565b600080600080600060a0868803121561224357600080fd5b61224c866120b2565b945061225a602087016120b2565b9350604086013567ffffffffffffffff8082111561227757600080fd5b61228389838a0161214c565b9450606088013591508082111561229957600080fd5b6122a589838a0161214c565b935060808801359150808211156122bb57600080fd5b506122c8888289016121b6565b9150509295509295909350565b600080600080600060a086880312156122ed57600080fd5b6122f6866120b2565b9450612304602087016120b2565b93506040860135925060608601359150608086013567ffffffffffffffff81111561232e57600080fd5b6122c8888289016121b6565b6000806040838503121561234d57600080fd5b612356836120b2565b91506020830135801515811461236b57600080fd5b809150509250929050565b6000806040838503121561238957600080fd5b612392836120b2565b946020939093013593505050565b6000602082840312156123b257600080fd5b813567ffffffffffffffff8111156123c957600080fd5b6119e2848285016120ce565b600080604083850312156123e857600080fd5b823567ffffffffffffffff8082111561240057600080fd5b61240c868387016120ce565b9350602085013591508082111561242257600080fd5b5061242f8582860161214c565b9150509250929050565b60006020828403121561244b57600080fd5b81356121d6816129ce565b60006020828403121561246857600080fd5b81516121d6816129ce565b60006020828403121561248557600080fd5b813567ffffffffffffffff81111561249c57600080fd5b8201601f810184136124ad57600080fd5b6119e284823560208401612054565b6000602082840312156124ce57600080fd5b5035919050565b6000602082840312156124e757600080fd5b5051919050565b600081518084526020808501945080840160005b8381101561251e57815187529582019590820190600101612502565b509495945050505050565b6000815180845261254181602086016020860161280d565b601f01601f19169290920160200192915050565b6000835161256781846020880161280d565b83519083019061257b81836020880161280d565b01949350505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906125b0908301866124ee565b82810360608401526125c281866124ee565b905082810360808401526125d68185612529565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061261c90830184612529565b979650505050505050565b6020815260006121d660208301846124ee565b60408152600061264d60408301856124ee565b828103602084015261265f81856124ee565b95945050505050565b6020815260006121d66020830184612529565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156127a1576127a1612912565b5060051b60200190565b600082198211156127be576127be6128d0565b500190565b6000826127d2576127d26128e6565b500490565b60008160001904831182151516156127f1576127f16128d0565b500290565b600082821015612808576128086128d0565b500390565b60005b83811015612828578181015183820152602001612810565b83811115610ef05750506000910152565b600181811c9082168061284d57607f821691505b6020821081141561286e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff8111828210171561289a5761289a612912565b6040525050565b60006000198214156128b5576128b56128d0565b5060010190565b6000826128cb576128cb6128e6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156129415760046000803e5060005160e01c5b90565b600060443d10156129525790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561298257505050505090565b828501915081518181111561299a5750505050505090565b843d87010160208285010111156129b45750505050505090565b6129c360208286010187612874565b509095945050505050565b6001600160e01b0319811681146106ea57600080fdfea26469706673582212205a1394a4dba0153035b36db4053a58d7d20f73cff04b4b88698434cd0ba2daa964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e25760003560e01c80638da5cb5b11610102578063c1362cf111610095578063e985e9c511610064578063e985e9c51461052c578063f242432a14610575578063f2fde38b14610595578063fdcdaf03146105b557600080fd5b8063c1362cf1146104b9578063c312c5c4146104cc578063d39bc484146104ec578063d4ac0ac01461050c57600080fd5b8063a22cb465116100d1578063a22cb4651461044d578063aa473fcd1461046d578063b367cf411461048d578063c002d23d146104a257600080fd5b80638da5cb5b146103da57806391b7f5ed1461040257806395d89b411461042257806398d5fdca1461043757600080fd5b80632eb2c2d61161017a578063717bf33611610149578063717bf3361461037c57806375bf81d61461039d5780637ba5e621146103bd578063853828b6146103d257600080fd5b80632eb2c2d6146103055780634e1273f4146103255780635e0bd4ee14610352578063715018a61461036757600080fd5b80630de8a77b116101b65780630de8a77b1461028e5780630e89341c146102ae57806318160ddd146102ce5780631c8b232d146102e457600080fd5b8062fdd58e146101e757806301ffc9a71461021a57806302fe53051461024a57806306fdde031461026c575b600080fd5b3480156101f357600080fd5b50610207610202366004612376565b6105cc565b6040519081526020015b60405180910390f35b34801561022657600080fd5b5061023a610235366004612439565b610665565b6040519015158152602001610211565b34801561025657600080fd5b5061026a610265366004612473565b6106b7565b005b34801561027857600080fd5b506102816106ed565b6040516102119190612668565b34801561029a57600080fd5b5061026a6102a9366004612376565b61077c565b3480156102ba57600080fd5b506102816102c93660046124bc565b610880565b3480156102da57600080fd5b5061573954610207565b3480156102f057600080fd5b5060045461023a90600160a81b900460ff1681565b34801561031157600080fd5b5061026a61032036600461222b565b6108c1565b34801561033157600080fd5b506103456103403660046123d5565b610958565b6040516102119190612627565b34801561035e57600080fd5b5061026a610a82565b34801561037357600080fd5b5061026a610acd565b34801561038857600080fd5b5060045461023a90600160a01b900460ff1681565b3480156103a957600080fd5b5061026a6103b83660046124bc565b610b03565b3480156103c957600080fd5b5061026a610ef6565b61026a610f41565b3480156103e657600080fd5b506000546040516001600160a01b039091168152602001610211565b34801561040e57600080fd5b5061026a61041d3660046124bc565b610f8f565b34801561042e57600080fd5b50610281610fbf565b34801561044357600080fd5b5061573b54610207565b34801561045957600080fd5b5061026a61046836600461233a565b610fcd565b34801561047957600080fd5b5061026a6104883660046124bc565b6110a4565b34801561049957600080fd5b5061020761111c565b3480156104ae57600080fd5b5061020761573b5481565b61026a6104c73660046124bc565b61129d565b3480156104d857600080fd5b5061026a6104e73660046123a0565b611470565b3480156104f857600080fd5b5061023a6105073660046124bc565b6115b0565b34801561051857600080fd5b506102076105273660046124bc565b6115fa565b34801561053857600080fd5b5061023a6105473660046121f8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b34801561058157600080fd5b5061026a6105903660046122d5565b611612565b3480156105a157600080fd5b5061026a6105b03660046121dd565b611699565b3480156105c157600080fd5b5061020761573a5481565b60006001600160a01b03831661063d5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061069657506001600160e01b031982166303a24d0760e21b145b806106b157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146106e15760405162461bcd60e51b815260040161063490612752565b6106ea81611731565b50565b61573c80546106fb90612839565b80601f016020809104026020016040519081016040528092919081815260200182805461072790612839565b80156107745780601f1061074957610100808354040283529160200191610774565b820191906000526020600020905b81548152906001019060200180831161075757829003601f168201915b505050505081565b6000546001600160a01b031633146107a65760405162461bcd60e51b815260040161063490612752565b610309816156d561573a54606481106107c1576107c16128fc565b01546107cd91906127ab565b11156108175760405162461bcd60e51b815260206004820152601960248201527845786365656473206d61782064726f70206d696e7461626c6560381b6044820152606401610634565b6108358261573a548360405180602001604052806000815250611744565b806156d561573a546064811061084d5761084d6128fc565b01600082825461085d91906127ab565b9250508190555080615739600082825461087791906127ab565b90915550505050565b6060600061088d83611850565b905080610899846118e4565b6040516020016108aa929190612555565b604051602081830303815290604052915050919050565b6001600160a01b0385163314806108dd57506108dd8533610547565b6109445760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610634565b61095185858585856119ea565b5050505050565b606081518351146109bd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610634565b6000835167ffffffffffffffff8111156109d9576109d9612912565b604051908082528060200260200182016040528015610a02578160200160208202803683370190505b50905060005b8451811015610a7a57610a4d858281518110610a2657610a266128fc565b6020026020010151858381518110610a4057610a406128fc565b60200260200101516105cc565b828281518110610a5f57610a5f6128fc565b6020908102919091010152610a73816128a1565b9050610a08565b509392505050565b6000546001600160a01b03163314610aac5760405162461bcd60e51b815260040161063490612752565b6004805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000546001600160a01b03163314610af75760405162461bcd60e51b815260040161063490612752565b610b016000611bca565b565b600454600160a01b900460ff161515600114610b5a5760405162461bcd60e51b815260206004820152601660248201527510db185a5b5a5b99c81a185cc81b9bdd081cdd185c9d60521b6044820152606401610634565b610309816156d561573a5460648110610b7557610b756128fc565b0154610b8191906127ab565b1115610bcb5760405162461bcd60e51b815260206004820152601960248201527845786365656473206d61782044726f70206d696e7461626c6560381b6044820152606401610634565b6014811115610c1c5760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d61782044726f7020636c61696d61626c650000000000006044820152606401610634565b600480546040516370a0823160e01b815233928101929092526000916001600160a01b03909116906370a082319060240160206040518083038186803b158015610c6557600080fd5b505afa158015610c79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9d91906124d5565b90506000805b83811015610ef057815b83811015610edd5760048054604051632f745c5960e01b81523392810192909252602482018390526005916001600160a01b0390911690632f745c599060440160206040518083038186803b158015610d0557600080fd5b505afa158015610d19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3d91906124d5565b6115b48110610d4e57610d4e6128fc565b6004020161573a5460648110610d6657610d666128fc565b602081049091015460ff601f9092166101000a900416610ecb5760048054604051632f745c5960e01b81523392810192909252602482018390526001916005916001600160a01b031690632f745c599060440160206040518083038186803b158015610dd157600080fd5b505afa158015610de5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0991906124d5565b6115b48110610e1a57610e1a6128fc565b6004020161573a5460648110610e3257610e326128fc565b602091828204019190066101000a81548160ff021916908315150217905550610e703361573a54600160405180602001604052806000815250611744565b60016156d561573a5460648110610e8957610e896128fc565b016000828254610e9991906127ab565b9250508190555060016157396000828254610eb491906127ab565b90915550610ec590508160016127ab565b92508390505b80610ed5816128a1565b915050610cad565b5080610ee8816128a1565b915050610ca3565b50505050565b6000546001600160a01b03163314610f205760405162461bcd60e51b815260040161063490612752565b6004805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6000546001600160a01b03163314610f6b5760405162461bcd60e51b815260040161063490612752565b60405133904780156108fc02916000818181858888f19350505050610b0157600080fd5b6000546001600160a01b03163314610fb95760405162461bcd60e51b815260040161063490612752565b61573b55565b61573d80546106fb90612839565b336001600160a01b03831614156110385760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610634565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146110ce5760405162461bcd60e51b815260040161063490612752565b606481106111165760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc8111c9bdc14d95c9a595cc81251605a1b6044820152606401610634565b61573a55565b600480546040516370a0823160e01b8152339281019290925260009182916001600160a01b0316906370a082319060240160206040518083038186803b15801561116557600080fd5b505afa158015611179573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119d91906124d5565b90506000805b828110156112965760048054604051632f745c5960e01b81523392810192909252602482018390526005916001600160a01b0390911690632f745c599060440160206040518083038186803b1580156111fb57600080fd5b505afa15801561120f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123391906124d5565b6115b48110611244576112446128fc565b6004020161573a546064811061125c5761125c6128fc565b602081049091015460ff601f9092166101000a900416611284576112818260016127ab565b91505b8061128e816128a1565b9150506111a3565b5092915050565b610309816156d561573a54606481106112b8576112b86128fc565b01546112c491906127ab565b111561130e5760405162461bcd60e51b815260206004820152601960248201527845786365656473206d61782044726f70206d696e7461626c6560381b6044820152606401610634565b600454600160a81b900460ff1615156001146113635760405162461bcd60e51b815260206004820152601460248201527314d85b195cc81a185d99481b9bdd081cdd185c9d60621b6044820152606401610634565b60148111156113aa5760405162461bcd60e51b815260206004820152601360248201527204d6178206d696e74206f662032302044726f7606c1b6044820152606401610634565b8061573b546113b991906127d7565b3410156114085760405162461bcd60e51b815260206004820152601760248201527f56616c75652073656e7420696e73756666696369656e740000000000000000006044820152606401610634565b6114263361573a548360405180602001604052806000815250611744565b806156d561573a546064811061143e5761143e6128fc565b01600082825461144e91906127ab565b9250508190555080615739600082825461146891906127ab565b909155505050565b6000546001600160a01b0316331461149a5760405162461bcd60e51b815260040161063490612752565b61030981516156d561573a54606481106114b6576114b66128fc565b01546114c291906127ab565b111561150c5760405162461bcd60e51b815260206004820152601960248201527845786365656473206d61782064726f70206d696e7461626c6560381b6044820152606401610634565b60005b81518110156115ac5761155082828151811061152d5761152d6128fc565b602002602001015161573a54600160405180602001604052806000815250611744565b60016156d561573a5460648110611569576115696128fc565b01600082825461157991906127ab565b925050819055506001615739600082825461159491906127ab565b909155508190506115a4816128a1565b91505061150f565b5050565b60006005826115b481106115c6576115c66128fc565b6004020161573a54606481106115de576115de6128fc565b602081049091015460ff601f9092166101000a90041692915050565b6156d5816064811061160b57600080fd5b0154905081565b6001600160a01b03851633148061162e575061162e8533610547565b61168c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610634565b6109518585858585611c1a565b6000546001600160a01b031633146116c35760405162461bcd60e51b815260040161063490612752565b6001600160a01b0381166117285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610634565b6106ea81611bca565b80516115ac906003906020840190611fbb565b6001600160a01b0384166117a45760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610634565b336117be816000876117b588611d3b565b61095188611d3b565b60008481526001602090815260408083206001600160a01b0389168452909152812080548592906117f09084906127ab565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461095181600087878787611d86565b60606003805461185f90612839565b80601f016020809104026020016040519081016040528092919081815260200182805461188b90612839565b80156118d85780601f106118ad576101008083540402835291602001916118d8565b820191906000526020600020905b8154815290600101906020018083116118bb57829003601f168201915b50505050509050919050565b6060816119085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611932578061191c816128a1565b915061192b9050600a836127c3565b915061190c565b60008167ffffffffffffffff81111561194d5761194d612912565b6040519080825280601f01601f191660200182016040528015611977576020820181803683370190505b5090505b84156119e25761198c6001836127f6565b9150611999600a866128bc565b6119a49060306127ab565b60f81b8183815181106119b9576119b96128fc565b60200101906001600160f81b031916908160001a9053506119db600a866127c3565b945061197b565b949350505050565b8151835114611a4c5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610634565b6001600160a01b038416611a725760405162461bcd60e51b8152600401610634906126c3565b3360005b8451811015611b5c576000858281518110611a9357611a936128fc565b602002602001015190506000858381518110611ab157611ab16128fc565b60209081029190910181015160008481526001835260408082206001600160a01b038e168352909352919091205490915081811015611b025760405162461bcd60e51b815260040161063490612708565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611b419084906127ab565b9250508190555050505080611b55906128a1565b9050611a76565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611bac92919061263a565b60405180910390a4611bc2818787878787611ef1565b505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038416611c405760405162461bcd60e51b8152600401610634906126c3565b33611c508187876117b588611d3b565b60008481526001602090815260408083206001600160a01b038a16845290915290205483811015611c935760405162461bcd60e51b815260040161063490612708565b60008581526001602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611cd29084906127ab565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d32828888888888611d86565b50505050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611d7557611d756128fc565b602090810291909101015292915050565b6001600160a01b0384163b15611bc25760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611dca90899089908890889088906004016125e2565b602060405180830381600087803b158015611de457600080fd5b505af1925050508015611e14575060408051601f3d908101601f19168201909252611e1191810190612456565b60015b611ec157611e20612928565b806308c379a01415611e5a5750611e35612944565b80611e405750611e5c565b8060405162461bcd60e51b81526004016106349190612668565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610634565b6001600160e01b0319811663f23a6e6160e01b14611d325760405162461bcd60e51b81526004016106349061267b565b6001600160a01b0384163b15611bc25760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611f359089908990889088908890600401612584565b602060405180830381600087803b158015611f4f57600080fd5b505af1925050508015611f7f575060408051601f3d908101601f19168201909252611f7c91810190612456565b60015b611f8b57611e20612928565b6001600160e01b0319811663bc197c8160e01b14611d325760405162461bcd60e51b81526004016106349061267b565b828054611fc790612839565b90600052602060002090601f016020900481019282611fe9576000855561202f565b82601f1061200257805160ff191683800117855561202f565b8280016001018555821561202f579182015b8281111561202f578251825591602001919060010190612014565b5061203b92915061203f565b5090565b5b8082111561203b5760008155600101612040565b600067ffffffffffffffff83111561206e5761206e612912565b604051612085601f8501601f191660200182612874565b80915083815284848401111561209a57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146120c957600080fd5b919050565b600082601f8301126120df57600080fd5b813560206120ec82612787565b6040516120f98282612874565b8381528281019150858301600585901b8701840188101561211957600080fd5b60005b8581101561213f5761212d826120b2565b8452928401929084019060010161211c565b5090979650505050505050565b600082601f83011261215d57600080fd5b8135602061216a82612787565b6040516121778282612874565b8381528281019150858301600585901b8701840188101561219757600080fd5b60005b8581101561213f5781358452928401929084019060010161219a565b600082601f8301126121c757600080fd5b6121d683833560208501612054565b9392505050565b6000602082840312156121ef57600080fd5b6121d6826120b2565b6000806040838503121561220b57600080fd5b612214836120b2565b9150612222602084016120b2565b90509250929050565b600080600080600060a0868803121561224357600080fd5b61224c866120b2565b945061225a602087016120b2565b9350604086013567ffffffffffffffff8082111561227757600080fd5b61228389838a0161214c565b9450606088013591508082111561229957600080fd5b6122a589838a0161214c565b935060808801359150808211156122bb57600080fd5b506122c8888289016121b6565b9150509295509295909350565b600080600080600060a086880312156122ed57600080fd5b6122f6866120b2565b9450612304602087016120b2565b93506040860135925060608601359150608086013567ffffffffffffffff81111561232e57600080fd5b6122c8888289016121b6565b6000806040838503121561234d57600080fd5b612356836120b2565b91506020830135801515811461236b57600080fd5b809150509250929050565b6000806040838503121561238957600080fd5b612392836120b2565b946020939093013593505050565b6000602082840312156123b257600080fd5b813567ffffffffffffffff8111156123c957600080fd5b6119e2848285016120ce565b600080604083850312156123e857600080fd5b823567ffffffffffffffff8082111561240057600080fd5b61240c868387016120ce565b9350602085013591508082111561242257600080fd5b5061242f8582860161214c565b9150509250929050565b60006020828403121561244b57600080fd5b81356121d6816129ce565b60006020828403121561246857600080fd5b81516121d6816129ce565b60006020828403121561248557600080fd5b813567ffffffffffffffff81111561249c57600080fd5b8201601f810184136124ad57600080fd5b6119e284823560208401612054565b6000602082840312156124ce57600080fd5b5035919050565b6000602082840312156124e757600080fd5b5051919050565b600081518084526020808501945080840160005b8381101561251e57815187529582019590820190600101612502565b509495945050505050565b6000815180845261254181602086016020860161280d565b601f01601f19169290920160200192915050565b6000835161256781846020880161280d565b83519083019061257b81836020880161280d565b01949350505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906125b0908301866124ee565b82810360608401526125c281866124ee565b905082810360808401526125d68185612529565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061261c90830184612529565b979650505050505050565b6020815260006121d660208301846124ee565b60408152600061264d60408301856124ee565b828103602084015261265f81856124ee565b95945050505050565b6020815260006121d66020830184612529565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156127a1576127a1612912565b5060051b60200190565b600082198211156127be576127be6128d0565b500190565b6000826127d2576127d26128e6565b500490565b60008160001904831182151516156127f1576127f16128d0565b500290565b600082821015612808576128086128d0565b500390565b60005b83811015612828578181015183820152602001612810565b83811115610ef05750506000910152565b600181811c9082168061284d57607f821691505b6020821081141561286e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff8111828210171561289a5761289a612912565b6040525050565b60006000198214156128b5576128b56128d0565b5060010190565b6000826128cb576128cb6128e6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156129415760046000803e5060005160e01c5b90565b600060443d10156129525790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561298257505050505090565b828501915081518181111561299a5750505050505090565b843d87010160208285010111156129b45750505050505090565b6129c360208286010187612874565b509095945050505050565b6001600160e01b0319811681146106ea57600080fdfea26469706673582212205a1394a4dba0153035b36db4053a58d7d20f73cff04b4b88698434cd0ba2daa964736f6c63430008070033

Deployed Bytecode Sourcemap

349:4697:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2122:231:3;;;;;;;;;;-1:-1:-1;2122:231:3;;;;;:::i;:::-;;:::i;:::-;;;19746:25:11;;;19734:2;19719:18;2122:231:3;;;;;;;;1145:310;;;;;;;;;;-1:-1:-1;1145:310:3;;;;;:::i;:::-;;:::i;:::-;;;11249:14:11;;11242:22;11224:41;;11212:2;11197:18;1145:310:3;11084:187:11;4147:87:2;;;;;;;;;;-1:-1:-1;4147:87:2;;;;;:::i;:::-;;:::i;:::-;;819:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3175:327::-;;;;;;;;;;-1:-1:-1;3175:327:2;;;;;:::i;:::-;;:::i;3927:212::-;;;;;;;;;;-1:-1:-1;3927:212:2;;;;;:::i;:::-;;:::i;4398:96::-;;;;;;;;;;-1:-1:-1;4469:16:2;;4398:96;;513:34;;;;;;;;;;-1:-1:-1;513:34:2;;;;-1:-1:-1;;;513:34:2;;;;;;4217:442:3;;;;;;;;;;-1:-1:-1;4217:442:3;;;;;:::i;:::-;;:::i;2519:524::-;;;;;;;;;;-1:-1:-1;2519:524:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4812:91:2:-;;;;;;;;;;;;;:::i;1650:94:9:-;;;;;;;;;;;;;:::i;471:35:2:-;;;;;;;;;;-1:-1:-1;471:35:2;;;;-1:-1:-1;;;471:35:2;;;;;;1754:986;;;;;;;;;;-1:-1:-1;1754:986:2;;;;;:::i;:::-;;:::i;4712:88::-;;;;;;;;;;;;;:::i;4915:123::-;;;:::i;999:87:9:-;;;;;;;;;;-1:-1:-1;1045:7:9;1072:6;999:87;;-1:-1:-1;;;;;1072:6:9;;;8611:51:11;;8599:2;8584:18;999:87:9;8465:203:11;4603:97:2;;;;;;;;;;-1:-1:-1;4603:97:2;;;;;:::i;:::-;;:::i;868:28::-;;;;;;;;;;;;;:::i;4506:85::-;;;;;;;;;;-1:-1:-1;4573:10:2;;4506:85;;3116:311:3;;;;;;;;;;-1:-1:-1;3116:311:3;;;;;:::i;:::-;;:::i;4246:140:2:-;;;;;;;;;;-1:-1:-1;4246:140:2;;;;;:::i;:::-;;:::i;2752:411::-;;;;;;;;;;;;;:::i;723:37::-;;;;;;;;;;;;;;;;1209:532;;;;;;:::i;:::-;;:::i;3514:401::-;;;;;;;;;;-1:-1:-1;3514:401:2;;;;;:::i;:::-;;:::i;1064:133::-;;;;;;;;;;-1:-1:-1;1064:133:2;;;;;:::i;:::-;;:::i;605:32::-;;;;;;;;;;-1:-1:-1;605:32:2;;;;;:::i;:::-;;:::i;3499:168:3:-;;;;;;;;;;-1:-1:-1;3499:168:3;;;;;:::i;:::-;-1:-1:-1;;;;;3622:27:3;;;3598:4;3622:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3499:168;3739:401;;;;;;;;;;-1:-1:-1;3739:401:3;;;;;:::i;:::-;;:::i;1899:192:9:-;;;;;;;;;;-1:-1:-1;1899:192:9;;;;;:::i;:::-;;:::i;687:29:2:-;;;;;;;;;;;;;;;;2122:231:3;2208:7;-1:-1:-1;;;;;2236:21:3;;2228:77;;;;-1:-1:-1;;;2228:77:3;;12532:2:11;2228:77:3;;;12514:21:11;12571:2;12551:18;;;12544:30;12610:34;12590:18;;;12583:62;-1:-1:-1;;;12661:18:11;;;12654:41;12712:19;;2228:77:3;;;;;;;;;-1:-1:-1;2323:13:3;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;2323:22:3;;;;;;;;;;;;2122:231::o;1145:310::-;1247:4;-1:-1:-1;;;;;;1284:41:3;;-1:-1:-1;;;1284:41:3;;:110;;-1:-1:-1;;;;;;;1342:52:3;;-1:-1:-1;;;1342:52:3;1284:110;:163;;;-1:-1:-1;;;;;;;;;;896:40:4;;;1411:36:3;1264:183;1145:310;-1:-1:-1;;1145:310:3:o;4147:87:2:-;1045:7:9;1072:6;-1:-1:-1;;;;;1072:6:9;682:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;4211:15:2::1;4219:6;4211:7;:15::i;:::-;4147:87:::0;:::o;819:42::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3175:327::-;1045:7:9;1072:6;-1:-1:-1;;;;;1072:6:9;682:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;803:3:2::1;3290:11;3263:12;3276:10;;3263:24;;;;;;;:::i;:::-;;;:38;;;;:::i;:::-;:50;;3255:88;;;::::0;-1:-1:-1;;;3255:88:2;;14817:2:11;3255:88:2::1;::::0;::::1;14799:21:11::0;14856:2;14836:18;;;14829:30;-1:-1:-1;;;14875:18:11;;;14868:55;14940:18;;3255:88:2::1;14615:349:11::0;3255:88:2::1;3364:38;3370:2;3374:10;;3386:11;3364:38;;;;;;;;;;;::::0;:5:::1;:38::i;:::-;3441:11;3413:12;3426:10;;3413:24;;;;;;;:::i;:::-;;;:39;;;;;;;:::i;:::-;;;;;;;;3483:11;3463:16;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;3175:327:2:o;3927:212::-;3987:13;4011:21;4035:20;4047:7;4035:11;:20::i;:::-;4011:44;;4095:7;4104:25;4121:7;4104:16;:25::i;:::-;4078:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4064:67;;;3927:212;;;:::o;4217:442:3:-;-1:-1:-1;;;;;4450:20:3;;682:10:1;4450:20:3;;:60;;-1:-1:-1;4474:36:3;4491:4;682:10:1;3499:168:3;:::i;4474:36::-;4428:160;;;;-1:-1:-1;;;4428:160:3;;16632:2:11;4428:160:3;;;16614:21:11;16671:2;16651:18;;;16644:30;16710:34;16690:18;;;16683:62;-1:-1:-1;;;16761:18:11;;;16754:48;16819:19;;4428:160:3;16430:414:11;4428:160:3;4599:52;4622:4;4628:2;4632:3;4637:7;4646:4;4599:22;:52::i;:::-;4217:442;;;;;:::o;2519:524::-;2675:16;2736:3;:10;2717:8;:15;:29;2709:83;;;;-1:-1:-1;;;2709:83:3;;18581:2:11;2709:83:3;;;18563:21:11;18620:2;18600:18;;;18593:30;18659:34;18639:18;;;18632:62;-1:-1:-1;;;18710:18:11;;;18703:39;18759:19;;2709:83:3;18379:405:11;2709:83:3;2805:30;2852:8;:15;2838:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2838:30:3;;2805:63;;2886:9;2881:122;2905:8;:15;2901:1;:19;2881:122;;;2961:30;2971:8;2980:1;2971:11;;;;;;;;:::i;:::-;;;;;;;2984:3;2988:1;2984:6;;;;;;;;:::i;:::-;;;;;;;2961:9;:30::i;:::-;2942:13;2956:1;2942:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2922:3;;;:::i;:::-;;;2881:122;;;-1:-1:-1;3022:13:3;2519:524;-1:-1:-1;;;2519:524:3:o;4812:91:2:-;1045:7:9;1072:6;-1:-1:-1;;;;;1072:6:9;682:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;4880:15:2::1;::::0;;-1:-1:-1;;;;4861:34:2;::::1;-1:-1:-1::0;;;4880:15:2;;;::::1;;;4879:16;4861:34:::0;;::::1;;::::0;;4812:91::o;1650:94:9:-;1045:7;1072:6;-1:-1:-1;;;;;1072:6:9;682:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;1754:986:2:-;1822:15;;-1:-1:-1;;;1822:15:2;;;;:23;;1841:4;1822:23;1814:58;;;;-1:-1:-1;;;1814:58:2;;14056:2:11;1814:58:2;;;14038:21:11;14095:2;14075:18;;;14068:30;-1:-1:-1;;;14114:18:11;;;14107:52;14176:18;;1814:58:2;13854:346:11;1814:58:2;803:3;1918:11;1891:12;1904:10;;1891:24;;;;;;;:::i;:::-;;;:38;;;;:::i;:::-;:50;;1883:88;;;;-1:-1:-1;;;1883:88:2;;15872:2:11;1883:88:2;;;15854:21:11;15911:2;15891:18;;;15884:30;-1:-1:-1;;;15930:18:11;;;15923:55;15995:18;;1883:88:2;15670:349:11;1883:88:2;2006:2;1991:11;:17;;1983:56;;;;-1:-1:-1;;;1983:56:2;;13701:2:11;1983:56:2;;;13683:21:11;13740:2;13720:18;;;13713:30;13779:28;13759:18;;;13752:56;13825:18;;1983:56:2;13499:350:11;1983:56:2;2078:5;;;:27;;-1:-1:-1;;;2078:27:2;;2094:10;2078:27;;;8611:51:11;;;;2060:15:2;;-1:-1:-1;;;;;2078:5:2;;;;:15;;8584:18:11;;2078:27:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2060:45;;2116:13;2159:9;2154:579;2178:11;2174:1;:15;2154:579;;;2228:5;2211:511;2239:7;2235:1;:11;2211:511;;;2293:5;;;:40;;-1:-1:-1;;;2293:40:2;;2319:10;2293:40;;;10243:51:11;;;;10310:18;;;10303:34;;;2277:15:2;;-1:-1:-1;;;;;2293:5:2;;;;:25;;10216:18:11;;2293:40:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2277:57;;;;;;;:::i;:::-;;;;2335:10;;2277:69;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2273:434;;2396:5;;;:40;;-1:-1:-1;;;2396:40:2;;2422:10;2396:40;;;10243:51:11;;;;10310:18;;;10303:34;;;2452:4:2;;2380:15;;-1:-1:-1;;;;;2396:5:2;;:25;;10216:18:11;;2396:40:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2380:57;;;;;;;:::i;:::-;;;;2438:10;;2380:69;;;;;;;:::i;:::-;;;;;;;;;;:76;;;;;;;;;;;;;;;;;;2480:36;2486:10;2498;;2510:1;2480:36;;;;;;;;;;;;:5;:36::i;:::-;2569:1;2541:12;2554:10;;2541:24;;;;;;;:::i;:::-;;;:29;;;;;;;:::i;:::-;;;;;;;;2614:1;2594:16;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;2647:5:2;;-1:-1:-1;2647:1:2;2651;2647:5;:::i;:::-;2639:13;;2680:7;2676:11;;2273:434;2248:3;;;;:::i;:::-;;;;2211:511;;;-1:-1:-1;2191:3:2;;;;:::i;:::-;;;;2154:579;;;;1801:939;;1754:986;:::o;4712:88::-;1045:7:9;1072:6;-1:-1:-1;;;;;1072:6:9;682:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;4778:14:2::1;::::0;;-1:-1:-1;;;;4760:32:2;::::1;-1:-1:-1::0;;;4778:14:2;;;::::1;;;4777:15;4760:32:::0;;::::1;;::::0;;4712:88::o;4915:123::-;1045:7:9;1072:6;-1:-1:-1;;;;;1072:6:9;682:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;4982:47:2::1;::::0;4990:10:::1;::::0;5007:21:::1;4982:47:::0;::::1;;;::::0;::::1;::::0;;;5007:21;4990:10;4982:47;::::1;;;;;;4974:56;;;::::0;::::1;4603:97:::0;1045:7:9;1072:6;-1:-1:-1;;;;;1072:6:9;682:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;4671:10:2::1;:21:::0;4603:97::o;868:28::-;;;;;;;:::i;3116:311:3:-;682:10:1;-1:-1:-1;;;;;3219:24:3;;;;3211:78;;;;-1:-1:-1;;;3211:78:3;;18171:2:11;3211:78:3;;;18153:21:11;18210:2;18190:18;;;18183:30;18249:34;18229:18;;;18222:62;-1:-1:-1;;;18300:18:11;;;18293:39;18349:19;;3211:78:3;17969:405:11;3211:78:3;682:10:1;3302:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;3302:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;3302:53:3;;;;;;;;;;3371:48;;11224:41:11;;;3302:42:3;;682:10:1;3371:48:3;;11197:18:11;3371:48:3;;;;;;;3116:311;;:::o;4246:140:2:-;1045:7:9;1072:6;-1:-1:-1;;;;;1072:6:9;682:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;4323:3:2::1;4318:2;:8;4310:42;;;::::0;-1:-1:-1;;;4310:42:2;;13351:2:11;4310:42:2::1;::::0;::::1;13333:21:11::0;13390:2;13370:18;;;13363:30;-1:-1:-1;;;13409:18:11;;;13402:51;13470:18;;4310:42:2::1;13149:345:11::0;4310:42:2::1;4363:10;:15:::0;4246:140::o;2752:411::-;2841:5;;;:27;;-1:-1:-1;;;2841:27:2;;2857:10;2841:27;;;8611:51:11;;;;2802:7:2;;;;-1:-1:-1;;;;;2841:5:2;;:15;;8584:18:11;;2841:27:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2823:45;;2879:17;2926:9;2921:208;2945:7;2941:1;:11;2921:208;;;2993:5;;;:40;;-1:-1:-1;;;2993:40:2;;3019:10;2993:40;;;10243:51:11;;;;10310:18;;;10303:34;;;2977:15:2;;-1:-1:-1;;;;;2993:5:2;;;;:25;;10216:18:11;;2993:40:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2977:57;;;;;;;:::i;:::-;;;;3035:10;;2977:69;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2973:145;;3089:13;:9;3101:1;3089:13;:::i;:::-;3077:25;;2973:145;2954:3;;;;:::i;:::-;;;;2921:208;;;-1:-1:-1;3146:9:2;2752:411;-1:-1:-1;;2752:411:2:o;1209:532::-;803:3;1311:11;1284:12;1297:10;;1284:24;;;;;;;:::i;:::-;;;:38;;;;:::i;:::-;:50;;1276:88;;;;-1:-1:-1;;;1276:88:2;;15872:2:11;1276:88:2;;;15854:21:11;15911:2;15891:18;;;15884:30;-1:-1:-1;;;15930:18:11;;;15923:55;15995:18;;1276:88:2;15670:349:11;1276:88:2;1383:14;;-1:-1:-1;;;1383:14:2;;;;:22;;1401:4;1383:22;1375:55;;;;-1:-1:-1;;;1375:55:2;;15523:2:11;1375:55:2;;;15505:21:11;15562:2;15542:18;;;15535:30;-1:-1:-1;;;15581:18:11;;;15574:50;15641:18;;1375:55:2;15321:344:11;1375:55:2;1464:2;1449:11;:17;;1441:49;;;;-1:-1:-1;;;1441:49:2;;17051:2:11;1441:49:2;;;17033:21:11;17090:2;17070:18;;;17063:30;-1:-1:-1;;;17109:18:11;;;17102:49;17168:18;;1441:49:2;16849:343:11;1441:49:2;1535:11;1522:10;;:24;;;;:::i;:::-;1509:9;:37;;1501:73;;;;-1:-1:-1;;;1501:73:2;;15171:2:11;1501:73:2;;;15153:21:11;15210:2;15190:18;;;15183:30;15249:25;15229:18;;;15222:53;15292:18;;1501:73:2;14969:347:11;1501:73:2;1595:46;1601:10;1613;;1625:11;1595:46;;;;;;;;;;;;:5;:46::i;:::-;1680:11;1652:12;1665:10;;1652:24;;;;;;;:::i;:::-;;;:39;;;;;;;:::i;:::-;;;;;;;;1722:11;1702:16;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;;1209:532:2:o;3514:401::-;1045:7:9;1072:6;-1:-1:-1;;;;;1072:6:9;682:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;803:3:2::1;3633:10;:17;3606:12;3619:10;;3606:24;;;;;;;:::i;:::-;;;:44;;;;:::i;:::-;:56;;3598:94;;;::::0;-1:-1:-1;;;3598:94:2;;14817:2:11;3598:94:2::1;::::0;::::1;14799:21:11::0;14856:2;14836:18;;;14829:30;-1:-1:-1;;;14875:18:11;;;14868:55;14940:18;;3598:94:2::1;14615:349:11::0;3598:94:2::1;3718:9;3713:195;3737:10;:17;3733:1;:21;3713:195;;;3776:39;3782:10;3793:1;3782:13;;;;;;;;:::i;:::-;;;;;;;3797:10;;3809:1;3776:39;;;;;;;;;;;::::0;:5:::1;:39::i;:::-;3859:1;3831:12;3844:10;;3831:24;;;;;;;:::i;:::-;;;:29;;;;;;;:::i;:::-;;;;;;;;3895:1;3875:16;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;3756:3:2;;-1:-1:-1;3756:3:2::1;::::0;::::1;:::i;:::-;;;;3713:195;;;;3514:401:::0;:::o;1064:133::-;1128:4;1153:15;1169:7;1153:24;;;;;;;:::i;:::-;;;;1178:10;;1153:36;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1064:133;-1:-1:-1;;1064:133:2:o;605:32::-;;;;;;;;;;;;;;;-1:-1:-1;605:32:2;:::o;3739:401:3:-;-1:-1:-1;;;;;3947:20:3;;682:10:1;3947:20:3;;:60;;-1:-1:-1;3971:36:3;3988:4;682:10:1;3499:168:3;:::i;3971:36::-;3925:151;;;;-1:-1:-1;;;3925:151:3;;14407:2:11;3925:151:3;;;14389:21:11;14446:2;14426:18;;;14419:30;14485:34;14465:18;;;14458:62;-1:-1:-1;;;14536:18:11;;;14529:39;14585:19;;3925:151:3;14205:405:11;3925:151:3;4087:45;4105:4;4111:2;4115;4119:6;4127:4;4087:17;:45::i;1899:192:9:-;1045:7;1072:6;-1:-1:-1;;;;;1072:6:9;682:10:1;1219:23:9;1211:68;;;;-1:-1:-1;;;1211:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:9;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:9;;12944:2:11;1980:73:9::1;::::0;::::1;12926:21:11::0;12983:2;12963:18;;;12956:30;13022:34;13002:18;;;12995:62;-1:-1:-1;;;13073:18:11;;;13066:36;13119:19;;1980:73:9::1;12742:402:11::0;1980:73:9::1;2064:19;2074:8;2064:9;:19::i;8219:88:3:-:0;8286:13;;;;:4;;:13;;;;;:::i;8708:599::-;-1:-1:-1;;;;;8866:21:3;;8858:67;;;;-1:-1:-1;;;8858:67:3;;19400:2:11;8858:67:3;;;19382:21:11;19439:2;19419:18;;;19412:30;19478:34;19458:18;;;19451:62;-1:-1:-1;;;19529:18:11;;;19522:31;19570:19;;8858:67:3;19198:397:11;8858:67:3;682:10:1;8982:107:3;682:10:1;8938:16:3;9025:7;9034:21;9052:2;9034:17;:21::i;:::-;9057:25;9075:6;9057:17;:25::i;8982:107::-;9102:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;9102:22:3;;;;;;;;;:32;;9128:6;;9102:13;:32;;9128:6;;9102:32;:::i;:::-;;;;-1:-1:-1;;9150:57:3;;;19956:25:11;;;20012:2;19997:18;;19990:34;;;-1:-1:-1;;;;;9150:57:3;;;;9183:1;;9150:57;;;;;;19929:18:11;9150:57:3;;;;;;;9220:79;9251:8;9269:1;9273:7;9282:2;9286:6;9294:4;9220:30;:79::i;1866:105::-;1926:13;1959:4;1952:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1866:105;;;:::o;288:723:10:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:10;;;;;;;;;;;;-1:-1:-1;;;592:10:10;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:10;;-1:-1:-1;744:2:10;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:10;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:10;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:10;;;;;;;;-1:-1:-1;949:11:10;958:2;949:11;;:::i;:::-;;;818:154;;;996:6;288:723;-1:-1:-1;;;;288:723:10:o;6301:1074:3:-;6528:7;:14;6514:3;:10;:28;6506:81;;;;-1:-1:-1;;;6506:81:3;;18991:2:11;6506:81:3;;;18973:21:11;19030:2;19010:18;;;19003:30;19069:34;19049:18;;;19042:62;-1:-1:-1;;;19120:18:11;;;19113:38;19168:19;;6506:81:3;18789:404:11;6506:81:3;-1:-1:-1;;;;;6606:16:3;;6598:66;;;;-1:-1:-1;;;6598:66:3;;;;;;;:::i;:::-;682:10:1;6677:16:3;6794:421;6818:3;:10;6814:1;:14;6794:421;;;6850:10;6863:3;6867:1;6863:6;;;;;;;;:::i;:::-;;;;;;;6850:19;;6884:14;6901:7;6909:1;6901:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6928:19;6950:13;;;:9;:13;;;;;;-1:-1:-1;;;;;6950:19:3;;;;;;;;;;;;6901:10;;-1:-1:-1;6992:21:3;;;;6984:76;;;;-1:-1:-1;;;6984:76:3;;;;;;;:::i;:::-;7104:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;7104:19:3;;;;;;;;;;7126:20;;;7104:42;;7176:17;;;;;;;:27;;7126:20;;7104:13;7176:27;;7126:20;;7176:27;:::i;:::-;;;;;;;;6835:380;;;6830:3;;;;:::i;:::-;;;6794:421;;;;7262:2;-1:-1:-1;;;;;7232:47:3;7256:4;-1:-1:-1;;;;;7232:47:3;7246:8;-1:-1:-1;;;;;7232:47:3;;7266:3;7271:7;7232:47;;;;;;;:::i;:::-;;;;;;;;7292:75;7328:8;7338:4;7344:2;7348:3;7353:7;7362:4;7292:35;:75::i;:::-;6495:880;6301:1074;;;;;:::o;2099:173:9:-;2155:16;2174:6;;-1:-1:-1;;;;;2191:17:9;;;-1:-1:-1;;;;;;2191:17:9;;;;;;2224:40;;2174:6;;;;;;;2224:40;;2155:16;2224:40;2144:128;2099:173;:::o;5123:820:3:-;-1:-1:-1;;;;;5311:16:3;;5303:66;;;;-1:-1:-1;;;5303:66:3;;;;;;;:::i;:::-;682:10:1;5426:96:3;682:10:1;5457:4:3;5463:2;5467:21;5485:2;5467:17;:21::i;5426:96::-;5535:19;5557:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;5557:19:3;;;;;;;;;;5595:21;;;;5587:76;;;;-1:-1:-1;;;5587:76:3;;;;;;;:::i;:::-;5699:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;5699:19:3;;;;;;;;;;5721:20;;;5699:42;;5763:17;;;;;;;:27;;5721:20;;5699:13;5763:27;;5721:20;;5763:27;:::i;:::-;;;;-1:-1:-1;;5808:46:3;;;19956:25:11;;;20012:2;19997:18;;19990:34;;;-1:-1:-1;;;;;5808:46:3;;;;;;;;;;;;;;19929:18:11;5808:46:3;;;;;;;5867:68;5898:8;5908:4;5914:2;5918;5922:6;5930:4;5867:30;:68::i;:::-;5292:651;;5123:820;;;;;:::o;15211:198::-;15331:16;;;15345:1;15331:16;;;;;;;;;15277;;15306:22;;15331:16;;;;;;;;;;;;-1:-1:-1;15331:16:3;15306:41;;15369:7;15358:5;15364:1;15358:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;15396:5;15211:198;-1:-1:-1;;15211:198:3:o;13638:744::-;-1:-1:-1;;;;;13853:13:3;;1110:20:0;1149:8;13849:526:3;;13889:72;;-1:-1:-1;;;13889:72:3;;-1:-1:-1;;;;;13889:38:3;;;;;:72;;13928:8;;13938:4;;13944:2;;13948:6;;13956:4;;13889:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13889:72:3;;;;;;;;-1:-1:-1;;13889:72:3;;;;;;;;;;;;:::i;:::-;;;13885:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;14237:6;14230:14;;-1:-1:-1;;;14230:14:3;;;;;;;;:::i;13885:479::-;;;14286:62;;-1:-1:-1;;;14286:62:3;;11702:2:11;14286:62:3;;;11684:21:11;11741:2;11721:18;;;11714:30;11780:34;11760:18;;;11753:62;-1:-1:-1;;;11831:18:11;;;11824:50;11891:19;;14286:62:3;11500:416:11;13885:479:3;-1:-1:-1;;;;;;14011:55:3;;-1:-1:-1;;;14011:55:3;14007:154;;14091:50;;-1:-1:-1;;;14091:50:3;;;;;;;:::i;14390:813::-;-1:-1:-1;;;;;14630:13:3;;1110:20:0;1149:8;14626:570:3;;14666:79;;-1:-1:-1;;;14666:79:3;;-1:-1:-1;;;;;14666:43:3;;;;;:79;;14710:8;;14720:4;;14726:3;;14731:7;;14740:4;;14666:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14666:79:3;;;;;;;;-1:-1:-1;;14666:79:3;;;;;;;;;;;;:::i;:::-;;;14662:523;;;;:::i;:::-;-1:-1:-1;;;;;;14827:60:3;;-1:-1:-1;;;14827:60:3;14823:159;;14912:50;;-1:-1:-1;;;14912:50:3;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:11;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:11;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:11;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:741::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:11;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:11;;;1175:1;1172;1165:12;1118:61;1197:1;1207:169;1221:2;1218:1;1215:9;1207:169;;;1278:23;1297:3;1278:23;:::i;:::-;1266:36;;1322:12;;;;1354;;;;1239:1;1232:9;1207:169;;;-1:-1:-1;1394:6:11;;665:741;-1:-1:-1;;;;;;;665:741:11:o;1411:735::-;1465:5;1518:3;1511:4;1503:6;1499:17;1495:27;1485:55;;1536:1;1533;1526:12;1485:55;1572:6;1559:20;1598:4;1621:43;1661:2;1621:43;:::i;:::-;1693:2;1687:9;1705:31;1733:2;1725:6;1705:31;:::i;:::-;1771:18;;;1805:15;;;;-1:-1:-1;1840:15:11;;;1890:1;1886:10;;;1874:23;;1870:32;;1867:41;-1:-1:-1;1864:61:11;;;1921:1;1918;1911:12;1864:61;1943:1;1953:163;1967:2;1964:1;1961:9;1953:163;;;2024:17;;2012:30;;2062:12;;;;2094;;;;1985:1;1978:9;1953:163;;2151:220;2193:5;2246:3;2239:4;2231:6;2227:17;2223:27;2213:55;;2264:1;2261;2254:12;2213:55;2286:79;2361:3;2352:6;2339:20;2332:4;2324:6;2320:17;2286:79;:::i;:::-;2277:88;2151:220;-1:-1:-1;;;2151:220:11:o;2376:186::-;2435:6;2488:2;2476:9;2467:7;2463:23;2459:32;2456:52;;;2504:1;2501;2494:12;2456:52;2527:29;2546:9;2527:29;:::i;2567:260::-;2635:6;2643;2696:2;2684:9;2675:7;2671:23;2667:32;2664:52;;;2712:1;2709;2702:12;2664:52;2735:29;2754:9;2735:29;:::i;:::-;2725:39;;2783:38;2817:2;2806:9;2802:18;2783:38;:::i;:::-;2773:48;;2567:260;;;;;:::o;2832:943::-;2986:6;2994;3002;3010;3018;3071:3;3059:9;3050:7;3046:23;3042:33;3039:53;;;3088:1;3085;3078:12;3039:53;3111:29;3130:9;3111:29;:::i;:::-;3101:39;;3159:38;3193:2;3182:9;3178:18;3159:38;:::i;:::-;3149:48;;3248:2;3237:9;3233:18;3220:32;3271:18;3312:2;3304:6;3301:14;3298:34;;;3328:1;3325;3318:12;3298:34;3351:61;3404:7;3395:6;3384:9;3380:22;3351:61;:::i;:::-;3341:71;;3465:2;3454:9;3450:18;3437:32;3421:48;;3494:2;3484:8;3481:16;3478:36;;;3510:1;3507;3500:12;3478:36;3533:63;3588:7;3577:8;3566:9;3562:24;3533:63;:::i;:::-;3523:73;;3649:3;3638:9;3634:19;3621:33;3605:49;;3679:2;3669:8;3666:16;3663:36;;;3695:1;3692;3685:12;3663:36;;3718:51;3761:7;3750:8;3739:9;3735:24;3718:51;:::i;:::-;3708:61;;;2832:943;;;;;;;;:::o;3780:606::-;3884:6;3892;3900;3908;3916;3969:3;3957:9;3948:7;3944:23;3940:33;3937:53;;;3986:1;3983;3976:12;3937:53;4009:29;4028:9;4009:29;:::i;:::-;3999:39;;4057:38;4091:2;4080:9;4076:18;4057:38;:::i;:::-;4047:48;;4142:2;4131:9;4127:18;4114:32;4104:42;;4193:2;4182:9;4178:18;4165:32;4155:42;;4248:3;4237:9;4233:19;4220:33;4276:18;4268:6;4265:30;4262:50;;;4308:1;4305;4298:12;4262:50;4331:49;4372:7;4363:6;4352:9;4348:22;4331:49;:::i;4391:347::-;4456:6;4464;4517:2;4505:9;4496:7;4492:23;4488:32;4485:52;;;4533:1;4530;4523:12;4485:52;4556:29;4575:9;4556:29;:::i;:::-;4546:39;;4635:2;4624:9;4620:18;4607:32;4682:5;4675:13;4668:21;4661:5;4658:32;4648:60;;4704:1;4701;4694:12;4648:60;4727:5;4717:15;;;4391:347;;;;;:::o;4743:254::-;4811:6;4819;4872:2;4860:9;4851:7;4847:23;4843:32;4840:52;;;4888:1;4885;4878:12;4840:52;4911:29;4930:9;4911:29;:::i;:::-;4901:39;4987:2;4972:18;;;;4959:32;;-1:-1:-1;;;4743:254:11:o;5002:348::-;5086:6;5139:2;5127:9;5118:7;5114:23;5110:32;5107:52;;;5155:1;5152;5145:12;5107:52;5195:9;5182:23;5228:18;5220:6;5217:30;5214:50;;;5260:1;5257;5250:12;5214:50;5283:61;5336:7;5327:6;5316:9;5312:22;5283:61;:::i;5355:595::-;5473:6;5481;5534:2;5522:9;5513:7;5509:23;5505:32;5502:52;;;5550:1;5547;5540:12;5502:52;5590:9;5577:23;5619:18;5660:2;5652:6;5649:14;5646:34;;;5676:1;5673;5666:12;5646:34;5699:61;5752:7;5743:6;5732:9;5728:22;5699:61;:::i;:::-;5689:71;;5813:2;5802:9;5798:18;5785:32;5769:48;;5842:2;5832:8;5829:16;5826:36;;;5858:1;5855;5848:12;5826:36;;5881:63;5936:7;5925:8;5914:9;5910:24;5881:63;:::i;:::-;5871:73;;;5355:595;;;;;:::o;5955:245::-;6013:6;6066:2;6054:9;6045:7;6041:23;6037:32;6034:52;;;6082:1;6079;6072:12;6034:52;6121:9;6108:23;6140:30;6164:5;6140:30;:::i;6205:249::-;6274:6;6327:2;6315:9;6306:7;6302:23;6298:32;6295:52;;;6343:1;6340;6333:12;6295:52;6375:9;6369:16;6394:30;6418:5;6394:30;:::i;6459:450::-;6528:6;6581:2;6569:9;6560:7;6556:23;6552:32;6549:52;;;6597:1;6594;6587:12;6549:52;6637:9;6624:23;6670:18;6662:6;6659:30;6656:50;;;6702:1;6699;6692:12;6656:50;6725:22;;6778:4;6770:13;;6766:27;-1:-1:-1;6756:55:11;;6807:1;6804;6797:12;6756:55;6830:73;6895:7;6890:2;6877:16;6872:2;6868;6864:11;6830:73;:::i;6914:180::-;6973:6;7026:2;7014:9;7005:7;7001:23;6997:32;6994:52;;;7042:1;7039;7032:12;6994:52;-1:-1:-1;7065:23:11;;6914:180;-1:-1:-1;6914:180:11:o;7099:184::-;7169:6;7222:2;7210:9;7201:7;7197:23;7193:32;7190:52;;;7238:1;7235;7228:12;7190:52;-1:-1:-1;7261:16:11;;7099:184;-1:-1:-1;7099:184:11:o;7288:435::-;7341:3;7379:5;7373:12;7406:6;7401:3;7394:19;7432:4;7461:2;7456:3;7452:12;7445:19;;7498:2;7491:5;7487:14;7519:1;7529:169;7543:6;7540:1;7537:13;7529:169;;;7604:13;;7592:26;;7638:12;;;;7673:15;;;;7565:1;7558:9;7529:169;;;-1:-1:-1;7714:3:11;;7288:435;-1:-1:-1;;;;;7288:435:11:o;7728:257::-;7769:3;7807:5;7801:12;7834:6;7829:3;7822:19;7850:63;7906:6;7899:4;7894:3;7890:14;7883:4;7876:5;7872:16;7850:63;:::i;:::-;7967:2;7946:15;-1:-1:-1;;7942:29:11;7933:39;;;;7974:4;7929:50;;7728:257;-1:-1:-1;;7728:257:11:o;7990:470::-;8169:3;8207:6;8201:13;8223:53;8269:6;8264:3;8257:4;8249:6;8245:17;8223:53;:::i;:::-;8339:13;;8298:16;;;;8361:57;8339:13;8298:16;8395:4;8383:17;;8361:57;:::i;:::-;8434:20;;7990:470;-1:-1:-1;;;;7990:470:11:o;8673:826::-;-1:-1:-1;;;;;9070:15:11;;;9052:34;;9122:15;;9117:2;9102:18;;9095:43;9032:3;9169:2;9154:18;;9147:31;;;8995:4;;9201:57;;9238:19;;9230:6;9201:57;:::i;:::-;9306:9;9298:6;9294:22;9289:2;9278:9;9274:18;9267:50;9340:44;9377:6;9369;9340:44;:::i;:::-;9326:58;;9433:9;9425:6;9421:22;9415:3;9404:9;9400:19;9393:51;9461:32;9486:6;9478;9461:32;:::i;:::-;9453:40;8673:826;-1:-1:-1;;;;;;;;8673:826:11:o;9504:560::-;-1:-1:-1;;;;;9801:15:11;;;9783:34;;9853:15;;9848:2;9833:18;;9826:43;9900:2;9885:18;;9878:34;;;9943:2;9928:18;;9921:34;;;9763:3;9986;9971:19;;9964:32;;;9726:4;;10013:45;;10038:19;;10030:6;10013:45;:::i;:::-;10005:53;9504:560;-1:-1:-1;;;;;;;9504:560:11:o;10348:261::-;10527:2;10516:9;10509:21;10490:4;10547:56;10599:2;10588:9;10584:18;10576:6;10547:56;:::i;10614:465::-;10871:2;10860:9;10853:21;10834:4;10897:56;10949:2;10938:9;10934:18;10926:6;10897:56;:::i;:::-;11001:9;10993:6;10989:22;10984:2;10973:9;10969:18;10962:50;11029:44;11066:6;11058;11029:44;:::i;:::-;11021:52;10614:465;-1:-1:-1;;;;;10614:465:11:o;11276:219::-;11425:2;11414:9;11407:21;11388:4;11445:44;11485:2;11474:9;11470:18;11462:6;11445:44;:::i;11921:404::-;12123:2;12105:21;;;12162:2;12142:18;;;12135:30;12201:34;12196:2;12181:18;;12174:62;-1:-1:-1;;;12267:2:11;12252:18;;12245:38;12315:3;12300:19;;11921:404::o;16024:401::-;16226:2;16208:21;;;16265:2;16245:18;;;16238:30;16304:34;16299:2;16284:18;;16277:62;-1:-1:-1;;;16370:2:11;16355:18;;16348:35;16415:3;16400:19;;16024:401::o;17197:406::-;17399:2;17381:21;;;17438:2;17418:18;;;17411:30;17477:34;17472:2;17457:18;;17450:62;-1:-1:-1;;;17543:2:11;17528:18;;17521:40;17593:3;17578:19;;17197:406::o;17608:356::-;17810:2;17792:21;;;17829:18;;;17822:30;17888:34;17883:2;17868:18;;17861:62;17955:2;17940:18;;17608:356::o;20035:183::-;20095:4;20128:18;20120:6;20117:30;20114:56;;;20150:18;;:::i;:::-;-1:-1:-1;20195:1:11;20191:14;20207:4;20187:25;;20035:183::o;20223:128::-;20263:3;20294:1;20290:6;20287:1;20284:13;20281:39;;;20300:18;;:::i;:::-;-1:-1:-1;20336:9:11;;20223:128::o;20356:120::-;20396:1;20422;20412:35;;20427:18;;:::i;:::-;-1:-1:-1;20461:9:11;;20356:120::o;20481:168::-;20521:7;20587:1;20583;20579:6;20575:14;20572:1;20569:21;20564:1;20557:9;20550:17;20546:45;20543:71;;;20594:18;;:::i;:::-;-1:-1:-1;20634:9:11;;20481:168::o;20654:125::-;20694:4;20722:1;20719;20716:8;20713:34;;;20727:18;;:::i;:::-;-1:-1:-1;20764:9:11;;20654:125::o;20784:258::-;20856:1;20866:113;20880:6;20877:1;20874:13;20866:113;;;20956:11;;;20950:18;20937:11;;;20930:39;20902:2;20895:10;20866:113;;;20997:6;20994:1;20991:13;20988:48;;;-1:-1:-1;;21032:1:11;21014:16;;21007:27;20784:258::o;21047:380::-;21126:1;21122:12;;;;21169;;;21190:61;;21244:4;21236:6;21232:17;21222:27;;21190:61;21297:2;21289:6;21286:14;21266:18;21263:38;21260:161;;;21343:10;21338:3;21334:20;21331:1;21324:31;21378:4;21375:1;21368:15;21406:4;21403:1;21396:15;21260:161;;21047:380;;;:::o;21432:249::-;21542:2;21523:13;;-1:-1:-1;;21519:27:11;21507:40;;21577:18;21562:34;;21598:22;;;21559:62;21556:88;;;21624:18;;:::i;:::-;21660:2;21653:22;-1:-1:-1;;21432:249:11:o;21686:135::-;21725:3;-1:-1:-1;;21746:17:11;;21743:43;;;21766:18;;:::i;:::-;-1:-1:-1;21813:1:11;21802:13;;21686:135::o;21826:112::-;21858:1;21884;21874:35;;21889:18;;:::i;:::-;-1:-1:-1;21923:9:11;;21826:112::o;21943:127::-;22004:10;21999:3;21995:20;21992:1;21985:31;22035:4;22032:1;22025:15;22059:4;22056:1;22049:15;22075:127;22136:10;22131:3;22127:20;22124:1;22117:31;22167:4;22164:1;22157:15;22191:4;22188:1;22181:15;22207:127;22268:10;22263:3;22259:20;22256:1;22249:31;22299:4;22296:1;22289:15;22323:4;22320:1;22313:15;22339:127;22400:10;22395:3;22391:20;22388:1;22381:31;22431:4;22428:1;22421:15;22455:4;22452:1;22445:15;22471:179;22506:3;22548:1;22530:16;22527:23;22524:120;;;22594:1;22591;22588;22573:23;-1:-1:-1;22631:1:11;22625:8;22620:3;22616:18;22524:120;22471:179;:::o;22655:671::-;22694:3;22736:4;22718:16;22715:26;22712:39;;;22655:671;:::o;22712:39::-;22778:2;22772:9;-1:-1:-1;;22843:16:11;22839:25;;22836:1;22772:9;22815:50;22894:4;22888:11;22918:16;22953:18;23024:2;23017:4;23009:6;23005:17;23002:25;22997:2;22989:6;22986:14;22983:45;22980:58;;;23031:5;;;;;22655:671;:::o;22980:58::-;23068:6;23062:4;23058:17;23047:28;;23104:3;23098:10;23131:2;23123:6;23120:14;23117:27;;;23137:5;;;;;;22655:671;:::o;23117:27::-;23221:2;23202:16;23196:4;23192:27;23188:36;23181:4;23172:6;23167:3;23163:16;23159:27;23156:69;23153:82;;;23228:5;;;;;;22655:671;:::o;23153:82::-;23244:57;23295:4;23286:6;23278;23274:19;23270:30;23264:4;23244:57;:::i;:::-;-1:-1:-1;23317:3:11;;22655:671;-1:-1:-1;;;;;22655:671:11:o;23331:131::-;-1:-1:-1;;;;;;23405:32:11;;23395:43;;23385:71;;23452:1;23449;23442:12

Swarm Source

ipfs://5a1394a4dba0153035b36db4053a58d7d20f73cff04b4b88698434cd0ba2daa9
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.