ETH Price: $3,309.67 (-1.02%)
Gas: 2 Gwei

Token

AVIUS OBSCURIS (AVO)
 

Overview

Max Total Supply

3,333 AVO

Holders

352

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 AVO
0xde751313e2c79e9d41ba4399f7f32eca1afb1aa5
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:
AVIUS

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-22
*/

// File: newAvaContract.sol

/**
 *Submitted for verification at Etherscan.io on 2022-09-22
*/

// File: @openzeppelin/contracts/utils/Strings.sol


pragma solidity ^0.8.0;

/*
    Fully commented standard ERC721 Distilled from OpenZeppelin Docs
    Base for Building ERC721 by Martin McConnell
    All the utility without the fluff.
*/


interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

interface IERC721 is IERC165 {
    //@dev Emitted when `tokenId` token is transferred from `from` to `to`.
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    //@dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    //@dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    //@dev Returns the number of tokens in ``owner``'s account.
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from,address to,uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    //@dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

interface IERC721Metadata is IERC721 {
    //@dev Returns the token collection name.
    function name() external view returns (string memory);

    //@dev Returns the token collection symbol.
    function symbol() external view returns (string memory);

    //@dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Addr: cant send val, rcpt revert");
    }

    /**
     * @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, "Addr: low-level call value fail");
    }

    /**
     * @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, "Addr: insufficient balance call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @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), "Addr: static call non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Addr: low-level del 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), "Addr: delegate call non-contract");

        (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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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 0x address");
        _setOwner(newOwner);
    }

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

abstract contract Functional {
    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }
    
    bool private _reentryKey = false;
    modifier reentryLock {
        require(!_reentryKey, "attempt reenter locked function");
        _reentryKey = true;
        _;
        _reentryKey = false;
    }
}

contract ERC721 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
    function balanceOf(address owner) external view returns (uint256 balance){}
    function ownerOf(uint256 tokenId) external view returns (address owner){}
    function safeTransferFrom(address from,address to,uint256 tokenId) external{}
    function transferFrom(address from, address to, uint256 tokenId) external{}
    function approve(address to, uint256 tokenId) external{}
    function getApproved(uint256 tokenId) external view returns (address operator){}
    function setApprovalForAll(address operator, bool _approved) external{}
    function isApprovedForAll(address owner, address operator) external view returns (bool){}
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external{}
}

// ******************************************************************************************************************************
// **************************************************  Start of Main Contract ***************************************************
// ******************************************************************************************************************************

contract AVIUS is IERC721, Ownable, Functional {

    using Address for address;
    
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;
    
    // URI Root Location for Json Files
    string private _baseURI;

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

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

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

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    
    // Specific Functionality
    bool public mintActive;
	uint256 private _maxSupply;
    uint256 public numberMinted;
    uint256 public maxPerTxn;
	bool private _revealed;
    uint256 public nftprice;
    
    mapping(address => uint256) private _mintTracker;
    address nftOwnerAddress      = payable(0x89AC334A1C882217916CB90f2A45cBA88cE35a52);
    
    //whitelist for holders
    ERC721 CC; ///Elephants of Chameleons
   
    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor() {
        _name = "AVIUS OBSCURIS";
        _symbol = "AVO";
        _baseURI = "https://aviusanimae.xyz/metadata/";
        //_baseURI = "http://localhost:3000/";
        
        //CC = ERC721(0x45eeEd78125386e49dc80c5640d8eACf1Ef4ca89);
        CC = ERC721(0x0eDA3c383F13C36db1c96bD9c56f715B09b9E350); // AVA Burn token on etherscan
        _maxSupply = 3333;
    }

    //@dev See {IERC165-supportsInterface}. Interfaces Supported by this Standard
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return  interfaceId == type(IERC721).interfaceId ||
                interfaceId == type(IERC721Metadata).interfaceId ||
                interfaceId == type(IERC165).interfaceId ||
                interfaceId == AVIUS.onERC721Received.selector;
    }
    
    // Standard Withdraw function for the owner to pull the contract
    function withdraw() external onlyOwner {
        uint256 sendAmount = address(this).balance;
        (bool success, ) = nftOwnerAddress.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }
    
	function Mint(uint256 qty) external payable reentryLock {
		//require(CC.balanceOf(_msgSender()) > 0, "must have Master");
		require(mintActive, "Mint Not Active");
        require(numberMinted + qty <= _maxSupply, "Max supply exceeded");
        require(msg.value >= 0, "Wrong Eth Amount");
    	nftprice = msg.value;
		uint256 mintSeedValue = numberMinted;
		numberMinted += qty;
		
		for(uint256 i = 1; i <= qty; i++) {
        	_safeMint(_msgSender(), mintSeedValue + i);
        }
	}
   
    // allows holders to burn their own tokens if desired
    function burn(uint256 tokenID, uint256 tokenIDTwo) external {
        require(_msgSender() == (CC).ownerOf(tokenID), "Only token owner can call burn");
        require(_msgSender() == (CC).ownerOf(tokenIDTwo), "Only token owner can call burn");
        (CC).transferFrom(msg.sender, address(0x000000000000000000000000000000000000dEaD), tokenID);
        (CC).transferFrom(msg.sender, address(0x000000000000000000000000000000000000dEaD), tokenIDTwo);
    }
    
    //////////////////////////////////////////////////////////////
    //////////////////// Setters and Getters /////////////////////
    //////////////////////////////////////////////////////////////
	function reveal() external onlyOwner {
		_revealed = true;
	}

	function changeMaxSupply( uint256 newValue ) external onlyOwner {
		_maxSupply = newValue;
	}

	function hide() external onlyOwner {
		_revealed = false;
	}

    function setMaxMintThreshold(uint256 maxMints) external onlyOwner {
        maxPerTxn = maxMints;
    }
    
    function setBaseURI(string memory newURI) public onlyOwner {
        _baseURI = newURI;
    }
    
    function activateMint() public onlyOwner {
        mintActive = true;
    }
    
    function deactivateMint() public onlyOwner {
        mintActive = false;
    }
   
    function totalSupply() external view returns (uint256) {
        return numberMinted; //stupid bs for etherscan's call
    }
    
    function getBalance(address tokenAddress) view external returns (uint256) {
        //return _balances[tokenAddress]; //shows 0 on etherscan due to overflow error
        return _balances[tokenAddress] / (10**15); //temporary fix to report in finneys
    }

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

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

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

        require(
            msg.sender == owner || isApprovedForAll(owner, msg.sender),
            "ERC721: caller !owner/!approved"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved nonexistent tkn");
        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[msg.sender][operator] = approved;
        emit ApprovalForAll(msg.sender, operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: txfr !owner/approved");
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: txfr !owner/approved");
        _safeTransfer(from, to, tokenId, _data);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("txfr to non ERC721Reciever");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
    
    // *********************** ERC721 Token Receiver **********************
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received() external pure returns(bytes4) {
        //InterfaceID=0x150b7a02
        return this.onERC721Received.selector;
    }

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

    // **************************************** Metadata Standard Functions **********
    //@dev Returns the token collection name.
    function name() external view returns (string memory){
        return _name;
    }

    //@dev Returns the token collection symbol.
    function symbol() external view returns (string memory){
        return _symbol;
    }

    //@dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
    function tokenURI(uint256 tokenId) external view returns (string memory){
        require(_exists(tokenId), "ERC721Metadata: URI 0x0 token");
        string memory tokenuri;
        if (_revealed){
        	tokenuri = string(abi.encodePacked(_baseURI, toString(tokenId), ".json"));
		} else {
			tokenuri = string(abi.encodePacked(_baseURI, "mystery.json"));
		}
        return tokenuri;
    }
    
    function contractURI() public view returns (string memory) {
            return string(abi.encodePacked(_baseURI,"contract.json"));
    }
    // *******************************************************************************

    receive() external payable {}
    
    fallback() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"activateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint256","name":"tokenIDTwo","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hide","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMints","type":"uint256"}],"name":"setMaxMintThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260008060146101000a81548160ff0219169083151502179055507389ac334a1c882217916cb90f2a45cba88ce35a52600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008057600080fd5b50620000a162000095620001d360201b60201c565b620001db60201b60201c565b6040518060400160405280600e81526020017f4156495553204f4253435552495300000000000000000000000000000000000081525060019080519060200190620000ee9291906200029f565b506040518060400160405280600381526020017f41564f0000000000000000000000000000000000000000000000000000000000815250600290805190602001906200013c9291906200029f565b506040518060600160405280602181526020016200436960219139600390805190602001906200016e9291906200029f565b50730eda3c383f13c36db1c96bd9c56f715b09b9e350601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d05600981905550620003b4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ad906200037e565b90600052602060002090601f016020900481019282620002d157600085556200031d565b82601f10620002ec57805160ff19168380011785556200031d565b828001600101855582156200031d579182015b828111156200031c578251825591602001919060010190620002ff565b5b5090506200032c919062000330565b5090565b5b808211156200034b57600081600090555060010162000331565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200039757607f821691505b60208210811415620003ae57620003ad6200034f565b5b50919050565b613fa580620003c46000396000f3fe6080604052600436106101fd5760003560e01c806370a082311161010d578063b62a7625116100a0578063d78c06fa1161006f578063d78c06fa146106a8578063e8a3d485146106d1578063e985e9c5146106fc578063f2fde38b14610739578063f8b2cb4f1461076257610204565b8063b62a762514610614578063b88d4fde1461062b578063c87b56dd14610654578063c91c04621461069157610204565b8063a22cb465116100dc578063a22cb46514610580578063a475b5dd146105a9578063a8fcc417146105c0578063b390c0ab146105eb57610204565b806370a08231146104d6578063715018a6146105135780638da5cb5b1461052a57806395d89b411461055557610204565b80632e56f71e1161019057806342842e0e1161015f57806342842e0e146103f157806349a772b51461041a57806355f804b3146104455780636352211e1461046e5780636fe3edef146104ab57610204565b80632e56f71e1461036f5780633cb51994146103865780633ccfd60b146103b1578063404c7cdd146103c857610204565b8063095ea7b3116101cc578063095ea7b3146102c757806318160ddd146102f057806323b872dd1461031b57806325fd90f31461034457610204565b806301ffc9a71461020657806306fdde0314610243578063078837031461026e578063081812fc1461028a57610204565b3661020457005b005b34801561021257600080fd5b5061022d60048036038101906102289190612990565b61079f565b60405161023a91906129d8565b60405180910390f35b34801561024f57600080fd5b50610258610928565b6040516102659190612a8c565b60405180910390f35b61028860048036038101906102839190612ae4565b6109ba565b005b34801561029657600080fd5b506102b160048036038101906102ac9190612ae4565b610b8d565b6040516102be9190612b52565b60405180910390f35b3480156102d357600080fd5b506102ee60048036038101906102e99190612b99565b610c12565b005b3480156102fc57600080fd5b50610305610d1c565b6040516103129190612be8565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190612c03565b610d26565b005b34801561035057600080fd5b50610359610d7f565b60405161036691906129d8565b60405180910390f35b34801561037b57600080fd5b50610384610d92565b005b34801561039257600080fd5b5061039b610e2b565b6040516103a89190612be8565b60405180910390f35b3480156103bd57600080fd5b506103c6610e31565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612ae4565b610f84565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612c03565b61100a565b005b34801561042657600080fd5b5061042f61102a565b60405161043c9190612be8565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190612d8b565b611030565b005b34801561047a57600080fd5b5061049560048036038101906104909190612ae4565b6110c6565b6040516104a29190612b52565b60405180910390f35b3480156104b757600080fd5b506104c0611178565b6040516104cd9190612be8565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612dd4565b61117e565b60405161050a9190612be8565b60405180910390f35b34801561051f57600080fd5b50610528611236565b005b34801561053657600080fd5b5061053f6112be565b60405161054c9190612b52565b60405180910390f35b34801561056157600080fd5b5061056a6112e7565b6040516105779190612a8c565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190612e2d565b611379565b005b3480156105b557600080fd5b506105be6114e5565b005b3480156105cc57600080fd5b506105d561157e565b6040516105e29190612e7c565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612e97565b61158d565b005b34801561062057600080fd5b506106296118d7565b005b34801561063757600080fd5b50610652600480360381019061064d9190612f78565b611970565b005b34801561066057600080fd5b5061067b60048036038101906106769190612ae4565b6119cb565b6040516106889190612a8c565b60405180910390f35b34801561069d57600080fd5b506106a6611a8b565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190612ae4565b611b24565b005b3480156106dd57600080fd5b506106e6611baa565b6040516106f39190612a8c565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190612ffb565b611bd2565b60405161073091906129d8565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190612dd4565b611c66565b005b34801561076e57600080fd5b5061078960048036038101906107849190612dd4565b611d5e565b6040516107969190612be8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d257507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610921575063a8fcc41760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600180546109379061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546109639061306a565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b5050505050905090565b600060149054906101000a900460ff1615610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a01906130e8565b60405180910390fd5b6001600060146101000a81548160ff021916908315150217905550600860009054906101000a900460ff16610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90613154565b60405180910390fd5b60095481600a54610a8591906131a3565b1115610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90613245565b60405180910390fd5b6000341015610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b01906132b1565b60405180910390fd5b34600d819055506000600a54905081600a6000828254610b2a91906131a3565b925050819055506000600190505b828111610b6e57610b5b610b4a611db9565b8284610b5691906131a3565b611dc1565b8080610b66906132d1565b915050610b38565b505060008060146101000a81548160ff02191690831515021790555050565b6000610b9882611ddf565b610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90613366565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1d826110c6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c85906133d2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610cce5750610ccd8133611bd2565b5b610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d049061343e565b60405180910390fd5b610d178383611e4b565b505050565b6000600a54905090565b610d303382611f04565b610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d66906134aa565b60405180910390fd5b610d7a838383611fe2565b505050565b600860009054906101000a900460ff1681565b610d9a611db9565b73ffffffffffffffffffffffffffffffffffffffff16610db86112be565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590613516565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550565b600b5481565b610e39611db9565b73ffffffffffffffffffffffffffffffffffffffff16610e576112be565b73ffffffffffffffffffffffffffffffffffffffff1614610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490613516565b60405180910390fd5b60004790506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610efa90613567565b60006040518083038185875af1925050503d8060008114610f37576040519150601f19603f3d011682016040523d82523d6000602084013e610f3c565b606091505b5050905080610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f77906135c8565b60405180910390fd5b5050565b610f8c611db9565b73ffffffffffffffffffffffffffffffffffffffff16610faa6112be565b73ffffffffffffffffffffffffffffffffffffffff1614611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790613516565b60405180910390fd5b8060098190555050565b61102583838360405180602001604052806000815250611970565b505050565b600a5481565b611038611db9565b73ffffffffffffffffffffffffffffffffffffffff166110566112be565b73ffffffffffffffffffffffffffffffffffffffff16146110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a390613516565b60405180910390fd5b80600390805190602001906110c2929190612881565b5050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690613634565b60405180910390fd5b80915050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e6906136a0565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61123e611db9565b73ffffffffffffffffffffffffffffffffffffffff1661125c6112be565b73ffffffffffffffffffffffffffffffffffffffff16146112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990613516565b60405180910390fd5b6112bc600061223e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112f69061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546113229061306a565b801561136f5780601f106113445761010080835404028352916020019161136f565b820191906000526020600020905b81548152906001019060200180831161135257829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df9061370c565b60405180910390fd5b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d991906129d8565b60405180910390a35050565b6114ed611db9565b73ffffffffffffffffffffffffffffffffffffffff1661150b6112be565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613516565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b600063a8fcc41760e01b905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016115e89190612be8565b602060405180830381865afa158015611605573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116299190613741565b73ffffffffffffffffffffffffffffffffffffffff16611647611db9565b73ffffffffffffffffffffffffffffffffffffffff161461169d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611694906137ba565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004016116f89190612be8565b602060405180830381865afa158015611715573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117399190613741565b73ffffffffffffffffffffffffffffffffffffffff16611757611db9565b73ffffffffffffffffffffffffffffffffffffffff16146117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a4906137ba565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead856040518463ffffffff1660e01b815260040161180e939291906137da565b600060405180830381600087803b15801561182857600080fd5b505af115801561183c573d6000803e3d6000fd5b50505050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead846040518463ffffffff1660e01b81526004016118a1939291906137da565b600060405180830381600087803b1580156118bb57600080fd5b505af11580156118cf573d6000803e3d6000fd5b505050505050565b6118df611db9565b73ffffffffffffffffffffffffffffffffffffffff166118fd6112be565b73ffffffffffffffffffffffffffffffffffffffff1614611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90613516565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b61197a3383611f04565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906134aa565b60405180910390fd5b6119c584848484612302565b50505050565b60606119d682611ddf565b611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c9061385d565b60405180910390fd5b6060600c60009054906101000a900460ff1615611a5e576003611a378461235e565b604051602001611a48929190613999565b6040516020818303038152906040529050611a82565b6003604051602001611a709190613a14565b60405160208183030381529060405290505b80915050919050565b611a93611db9565b73ffffffffffffffffffffffffffffffffffffffff16611ab16112be565b73ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90613516565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b611b2c611db9565b73ffffffffffffffffffffffffffffffffffffffff16611b4a6112be565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790613516565b60405180910390fd5b80600b8190555050565b60606003604051602001611bbe9190613a82565b604051602081830303815290604052905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c6e611db9565b73ffffffffffffffffffffffffffffffffffffffff16611c8c6112be565b73ffffffffffffffffffffffffffffffffffffffff1614611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd990613516565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4990613af0565b60405180910390fd5b611d5b8161223e565b50565b600066038d7ea4c68000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db29190613b3f565b9050919050565b600033905090565b611ddb8282604051806020016040528060008152506124bf565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ebe836110c6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f0f82611ddf565b611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613bbc565b60405180910390fd5b6000611f59836110c6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fc857508373ffffffffffffffffffffffffffffffffffffffff16611fb084610b8d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fd95750611fd88185611bd2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612002826110c6565b73ffffffffffffffffffffffffffffffffffffffff1614612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90613c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90613c94565b60405180910390fd5b6120d383838361251a565b6120de600082611e4b565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212e9190613cb4565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218591906131a3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61230d848484611fe2565b6123198484848461251f565b612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f90613d34565b60405180910390fd5b50505050565b606060008214156123a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ba565b600082905060005b600082146123d85780806123c1906132d1565b915050600a826123d19190613b3f565b91506123ae565b60008167ffffffffffffffff8111156123f4576123f3612c60565b5b6040519080825280601f01601f1916602001820160405280156124265781602001600182028036833780820191505090505b5090505b600085146124b35760018261243f9190613cb4565b9150600a8561244e9190613d54565b603061245a91906131a3565b60f81b8183815181106124705761246f613d85565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ac9190613b3f565b945061242a565b8093505050505b919050565b6124c983836126a0565b6124d6600084848461251f565b612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90613d34565b60405180910390fd5b505050565b505050565b60006125408473ffffffffffffffffffffffffffffffffffffffff1661286e565b15612693578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b81526004016125849493929190613e09565b6020604051808303816000875af19250505080156125c057506040513d601f19601f820116820180604052508101906125bd9190613e6a565b60015b612643573d80600081146125f0576040519150601f19603f3d011682016040523d82523d6000602084013e6125f5565b606091505b5060008151141561263b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263290613d34565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612698565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270790613ee3565b60405180910390fd5b61271981611ddf565b15612759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275090613f4f565b60405180910390fd5b6127656000838361251a565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b591906131a3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461288d9061306a565b90600052602060002090601f0160209004810192826128af57600085556128f6565b82601f106128c857805160ff19168380011785556128f6565b828001600101855582156128f6579182015b828111156128f55782518255916020019190600101906128da565b5b5090506129039190612907565b5090565b5b80821115612920576000816000905550600101612908565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61296d81612938565b811461297857600080fd5b50565b60008135905061298a81612964565b92915050565b6000602082840312156129a6576129a561292e565b5b60006129b48482850161297b565b91505092915050565b60008115159050919050565b6129d2816129bd565b82525050565b60006020820190506129ed60008301846129c9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a2d578082015181840152602081019050612a12565b83811115612a3c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a5e826129f3565b612a6881856129fe565b9350612a78818560208601612a0f565b612a8181612a42565b840191505092915050565b60006020820190508181036000830152612aa68184612a53565b905092915050565b6000819050919050565b612ac181612aae565b8114612acc57600080fd5b50565b600081359050612ade81612ab8565b92915050565b600060208284031215612afa57612af961292e565b5b6000612b0884828501612acf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b3c82612b11565b9050919050565b612b4c81612b31565b82525050565b6000602082019050612b676000830184612b43565b92915050565b612b7681612b31565b8114612b8157600080fd5b50565b600081359050612b9381612b6d565b92915050565b60008060408385031215612bb057612baf61292e565b5b6000612bbe85828601612b84565b9250506020612bcf85828601612acf565b9150509250929050565b612be281612aae565b82525050565b6000602082019050612bfd6000830184612bd9565b92915050565b600080600060608486031215612c1c57612c1b61292e565b5b6000612c2a86828701612b84565b9350506020612c3b86828701612b84565b9250506040612c4c86828701612acf565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9882612a42565b810181811067ffffffffffffffff82111715612cb757612cb6612c60565b5b80604052505050565b6000612cca612924565b9050612cd68282612c8f565b919050565b600067ffffffffffffffff821115612cf657612cf5612c60565b5b612cff82612a42565b9050602081019050919050565b82818337600083830152505050565b6000612d2e612d2984612cdb565b612cc0565b905082815260208101848484011115612d4a57612d49612c5b565b5b612d55848285612d0c565b509392505050565b600082601f830112612d7257612d71612c56565b5b8135612d82848260208601612d1b565b91505092915050565b600060208284031215612da157612da061292e565b5b600082013567ffffffffffffffff811115612dbf57612dbe612933565b5b612dcb84828501612d5d565b91505092915050565b600060208284031215612dea57612de961292e565b5b6000612df884828501612b84565b91505092915050565b612e0a816129bd565b8114612e1557600080fd5b50565b600081359050612e2781612e01565b92915050565b60008060408385031215612e4457612e4361292e565b5b6000612e5285828601612b84565b9250506020612e6385828601612e18565b9150509250929050565b612e7681612938565b82525050565b6000602082019050612e916000830184612e6d565b92915050565b60008060408385031215612eae57612ead61292e565b5b6000612ebc85828601612acf565b9250506020612ecd85828601612acf565b9150509250929050565b600067ffffffffffffffff821115612ef257612ef1612c60565b5b612efb82612a42565b9050602081019050919050565b6000612f1b612f1684612ed7565b612cc0565b905082815260208101848484011115612f3757612f36612c5b565b5b612f42848285612d0c565b509392505050565b600082601f830112612f5f57612f5e612c56565b5b8135612f6f848260208601612f08565b91505092915050565b60008060008060808587031215612f9257612f9161292e565b5b6000612fa087828801612b84565b9450506020612fb187828801612b84565b9350506040612fc287828801612acf565b925050606085013567ffffffffffffffff811115612fe357612fe2612933565b5b612fef87828801612f4a565b91505092959194509250565b600080604083850312156130125761301161292e565b5b600061302085828601612b84565b925050602061303185828601612b84565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061308257607f821691505b602082108114156130965761309561303b565b5b50919050565b7f617474656d7074207265656e746572206c6f636b65642066756e6374696f6e00600082015250565b60006130d2601f836129fe565b91506130dd8261309c565b602082019050919050565b60006020820190508181036000830152613101816130c5565b9050919050565b7f4d696e74204e6f74204163746976650000000000000000000000000000000000600082015250565b600061313e600f836129fe565b915061314982613108565b602082019050919050565b6000602082019050818103600083015261316d81613131565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131ae82612aae565b91506131b983612aae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131ee576131ed613174565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b600061322f6013836129fe565b915061323a826131f9565b602082019050919050565b6000602082019050818103600083015261325e81613222565b9050919050565b7f57726f6e672045746820416d6f756e7400000000000000000000000000000000600082015250565b600061329b6010836129fe565b91506132a682613265565b602082019050919050565b600060208201905081810360008301526132ca8161328e565b9050919050565b60006132dc82612aae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561330f5761330e613174565b5b600182019050919050565b7f4552433732313a20617070726f766564206e6f6e6578697374656e7420746b6e600082015250565b60006133506020836129fe565b915061335b8261331a565b602082019050919050565b6000602082019050818103600083015261337f81613343565b9050919050565b7f4552433732313a20617070726f76616c2063757272656e74206f776e65720000600082015250565b60006133bc601e836129fe565b91506133c782613386565b602082019050919050565b600060208201905081810360008301526133eb816133af565b9050919050565b7f4552433732313a2063616c6c657220216f776e65722f21617070726f76656400600082015250565b6000613428601f836129fe565b9150613433826133f2565b602082019050919050565b600060208201905081810360008301526134578161341b565b9050919050565b7f4552433732313a207478667220216f776e65722f617070726f76656400000000600082015250565b6000613494601c836129fe565b915061349f8261345e565b602082019050919050565b600060208201905081810360008301526134c381613487565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135006020836129fe565b915061350b826134ca565b602082019050919050565b6000602082019050818103600083015261352f816134f3565b9050919050565b600081905092915050565b50565b6000613551600083613536565b915061355c82613541565b600082019050919050565b600061357282613544565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006135b26018836129fe565b91506135bd8261357c565b602082019050919050565b600060208201905081810360008301526135e1816135a5565b9050919050565b7f4552433732313a206f776e207175657279206e6f6e657869737420746b6e0000600082015250565b600061361e601e836129fe565b9150613629826135e8565b602082019050919050565b6000602082019050818103600083015261364d81613611565b9050919050565b7f4552433732313a2062616c2071727920666f72207a65726f2061646472657373600082015250565b600061368a6020836129fe565b915061369582613654565b602082019050919050565b600060208201905081810360008301526136b98161367d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136f66019836129fe565b9150613701826136c0565b602082019050919050565b60006020820190508181036000830152613725816136e9565b9050919050565b60008151905061373b81612b6d565b92915050565b6000602082840312156137575761375661292e565b5b60006137658482850161372c565b91505092915050565b7f4f6e6c7920746f6b656e206f776e65722063616e2063616c6c206275726e0000600082015250565b60006137a4601e836129fe565b91506137af8261376e565b602082019050919050565b600060208201905081810360008301526137d381613797565b9050919050565b60006060820190506137ef6000830186612b43565b6137fc6020830185612b43565b6138096040830184612bd9565b949350505050565b7f4552433732314d657461646174613a205552492030783020746f6b656e000000600082015250565b6000613847601d836129fe565b915061385282613811565b602082019050919050565b600060208201905081810360008301526138768161383a565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138aa8161306a565b6138b4818661387d565b945060018216600081146138cf57600181146138e057613913565b60ff19831686528186019350613913565b6138e985613888565b60005b8381101561390b578154818901526001820191506020810190506138ec565b838801955050505b50505092915050565b6000613927826129f3565b613931818561387d565b9350613941818560208601612a0f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061398360058361387d565b915061398e8261394d565b600582019050919050565b60006139a5828561389d565b91506139b1828461391c565b91506139bc82613976565b91508190509392505050565b7f6d7973746572792e6a736f6e0000000000000000000000000000000000000000600082015250565b60006139fe600c8361387d565b9150613a09826139c8565b600c82019050919050565b6000613a20828461389d565b9150613a2b826139f1565b915081905092915050565b7f636f6e74726163742e6a736f6e00000000000000000000000000000000000000600082015250565b6000613a6c600d8361387d565b9150613a7782613a36565b600d82019050919050565b6000613a8e828461389d565b9150613a9982613a5f565b915081905092915050565b7f4f776e61626c653a206e6577206f776e65722069732030782061646472657373600082015250565b6000613ada6020836129fe565b9150613ae582613aa4565b602082019050919050565b60006020820190508181036000830152613b0981613acd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b4a82612aae565b9150613b5583612aae565b925082613b6557613b64613b10565b5b828204905092915050565b7f4552433732313a206f70207175657279206e6f6e6578697374656e7420746b6e600082015250565b6000613ba66020836129fe565b9150613bb182613b70565b602082019050919050565b60006020820190508181036000830152613bd581613b99565b9050919050565b7f4552433732313a207478667220746f6b656e206e6f74206f776e656400000000600082015250565b6000613c12601c836129fe565b9150613c1d82613bdc565b602082019050919050565b60006020820190508181036000830152613c4181613c05565b9050919050565b7f4552433732313a207478667220746f2030783020616464726573730000000000600082015250565b6000613c7e601b836129fe565b9150613c8982613c48565b602082019050919050565b60006020820190508181036000830152613cad81613c71565b9050919050565b6000613cbf82612aae565b9150613cca83612aae565b925082821015613cdd57613cdc613174565b5b828203905092915050565b7f7478667220746f206e6f6e204552433732315265636965766572000000000000600082015250565b6000613d1e601a836129fe565b9150613d2982613ce8565b602082019050919050565b60006020820190508181036000830152613d4d81613d11565b9050919050565b6000613d5f82612aae565b9150613d6a83612aae565b925082613d7a57613d79613b10565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613ddb82613db4565b613de58185613dbf565b9350613df5818560208601612a0f565b613dfe81612a42565b840191505092915050565b6000608082019050613e1e6000830187612b43565b613e2b6020830186612b43565b613e386040830185612bd9565b8181036060830152613e4a8184613dd0565b905095945050505050565b600081519050613e6481612964565b92915050565b600060208284031215613e8057613e7f61292e565b5b6000613e8e84828501613e55565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ecd6020836129fe565b9150613ed882613e97565b602082019050919050565b60006020820190508181036000830152613efc81613ec0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f39601c836129fe565b9150613f4482613f03565b602082019050919050565b60006020820190508181036000830152613f6881613f2c565b905091905056fea2646970667358221220206aa55551947a359132ab6eeb5df0f70905208aae40dcb6616b3b777532fcfb64736f6c634300080a003368747470733a2f2f6176697573616e696d61652e78797a2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c806370a082311161010d578063b62a7625116100a0578063d78c06fa1161006f578063d78c06fa146106a8578063e8a3d485146106d1578063e985e9c5146106fc578063f2fde38b14610739578063f8b2cb4f1461076257610204565b8063b62a762514610614578063b88d4fde1461062b578063c87b56dd14610654578063c91c04621461069157610204565b8063a22cb465116100dc578063a22cb46514610580578063a475b5dd146105a9578063a8fcc417146105c0578063b390c0ab146105eb57610204565b806370a08231146104d6578063715018a6146105135780638da5cb5b1461052a57806395d89b411461055557610204565b80632e56f71e1161019057806342842e0e1161015f57806342842e0e146103f157806349a772b51461041a57806355f804b3146104455780636352211e1461046e5780636fe3edef146104ab57610204565b80632e56f71e1461036f5780633cb51994146103865780633ccfd60b146103b1578063404c7cdd146103c857610204565b8063095ea7b3116101cc578063095ea7b3146102c757806318160ddd146102f057806323b872dd1461031b57806325fd90f31461034457610204565b806301ffc9a71461020657806306fdde0314610243578063078837031461026e578063081812fc1461028a57610204565b3661020457005b005b34801561021257600080fd5b5061022d60048036038101906102289190612990565b61079f565b60405161023a91906129d8565b60405180910390f35b34801561024f57600080fd5b50610258610928565b6040516102659190612a8c565b60405180910390f35b61028860048036038101906102839190612ae4565b6109ba565b005b34801561029657600080fd5b506102b160048036038101906102ac9190612ae4565b610b8d565b6040516102be9190612b52565b60405180910390f35b3480156102d357600080fd5b506102ee60048036038101906102e99190612b99565b610c12565b005b3480156102fc57600080fd5b50610305610d1c565b6040516103129190612be8565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190612c03565b610d26565b005b34801561035057600080fd5b50610359610d7f565b60405161036691906129d8565b60405180910390f35b34801561037b57600080fd5b50610384610d92565b005b34801561039257600080fd5b5061039b610e2b565b6040516103a89190612be8565b60405180910390f35b3480156103bd57600080fd5b506103c6610e31565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612ae4565b610f84565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612c03565b61100a565b005b34801561042657600080fd5b5061042f61102a565b60405161043c9190612be8565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190612d8b565b611030565b005b34801561047a57600080fd5b5061049560048036038101906104909190612ae4565b6110c6565b6040516104a29190612b52565b60405180910390f35b3480156104b757600080fd5b506104c0611178565b6040516104cd9190612be8565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612dd4565b61117e565b60405161050a9190612be8565b60405180910390f35b34801561051f57600080fd5b50610528611236565b005b34801561053657600080fd5b5061053f6112be565b60405161054c9190612b52565b60405180910390f35b34801561056157600080fd5b5061056a6112e7565b6040516105779190612a8c565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190612e2d565b611379565b005b3480156105b557600080fd5b506105be6114e5565b005b3480156105cc57600080fd5b506105d561157e565b6040516105e29190612e7c565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612e97565b61158d565b005b34801561062057600080fd5b506106296118d7565b005b34801561063757600080fd5b50610652600480360381019061064d9190612f78565b611970565b005b34801561066057600080fd5b5061067b60048036038101906106769190612ae4565b6119cb565b6040516106889190612a8c565b60405180910390f35b34801561069d57600080fd5b506106a6611a8b565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190612ae4565b611b24565b005b3480156106dd57600080fd5b506106e6611baa565b6040516106f39190612a8c565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190612ffb565b611bd2565b60405161073091906129d8565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190612dd4565b611c66565b005b34801561076e57600080fd5b5061078960048036038101906107849190612dd4565b611d5e565b6040516107969190612be8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d257507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610921575063a8fcc41760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600180546109379061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546109639061306a565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b5050505050905090565b600060149054906101000a900460ff1615610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a01906130e8565b60405180910390fd5b6001600060146101000a81548160ff021916908315150217905550600860009054906101000a900460ff16610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90613154565b60405180910390fd5b60095481600a54610a8591906131a3565b1115610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90613245565b60405180910390fd5b6000341015610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b01906132b1565b60405180910390fd5b34600d819055506000600a54905081600a6000828254610b2a91906131a3565b925050819055506000600190505b828111610b6e57610b5b610b4a611db9565b8284610b5691906131a3565b611dc1565b8080610b66906132d1565b915050610b38565b505060008060146101000a81548160ff02191690831515021790555050565b6000610b9882611ddf565b610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90613366565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1d826110c6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c85906133d2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610cce5750610ccd8133611bd2565b5b610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d049061343e565b60405180910390fd5b610d178383611e4b565b505050565b6000600a54905090565b610d303382611f04565b610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d66906134aa565b60405180910390fd5b610d7a838383611fe2565b505050565b600860009054906101000a900460ff1681565b610d9a611db9565b73ffffffffffffffffffffffffffffffffffffffff16610db86112be565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590613516565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550565b600b5481565b610e39611db9565b73ffffffffffffffffffffffffffffffffffffffff16610e576112be565b73ffffffffffffffffffffffffffffffffffffffff1614610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490613516565b60405180910390fd5b60004790506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610efa90613567565b60006040518083038185875af1925050503d8060008114610f37576040519150601f19603f3d011682016040523d82523d6000602084013e610f3c565b606091505b5050905080610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f77906135c8565b60405180910390fd5b5050565b610f8c611db9565b73ffffffffffffffffffffffffffffffffffffffff16610faa6112be565b73ffffffffffffffffffffffffffffffffffffffff1614611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790613516565b60405180910390fd5b8060098190555050565b61102583838360405180602001604052806000815250611970565b505050565b600a5481565b611038611db9565b73ffffffffffffffffffffffffffffffffffffffff166110566112be565b73ffffffffffffffffffffffffffffffffffffffff16146110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a390613516565b60405180910390fd5b80600390805190602001906110c2929190612881565b5050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690613634565b60405180910390fd5b80915050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e6906136a0565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61123e611db9565b73ffffffffffffffffffffffffffffffffffffffff1661125c6112be565b73ffffffffffffffffffffffffffffffffffffffff16146112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990613516565b60405180910390fd5b6112bc600061223e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112f69061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546113229061306a565b801561136f5780601f106113445761010080835404028352916020019161136f565b820191906000526020600020905b81548152906001019060200180831161135257829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df9061370c565b60405180910390fd5b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d991906129d8565b60405180910390a35050565b6114ed611db9565b73ffffffffffffffffffffffffffffffffffffffff1661150b6112be565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613516565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b600063a8fcc41760e01b905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016115e89190612be8565b602060405180830381865afa158015611605573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116299190613741565b73ffffffffffffffffffffffffffffffffffffffff16611647611db9565b73ffffffffffffffffffffffffffffffffffffffff161461169d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611694906137ba565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004016116f89190612be8565b602060405180830381865afa158015611715573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117399190613741565b73ffffffffffffffffffffffffffffffffffffffff16611757611db9565b73ffffffffffffffffffffffffffffffffffffffff16146117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a4906137ba565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead856040518463ffffffff1660e01b815260040161180e939291906137da565b600060405180830381600087803b15801561182857600080fd5b505af115801561183c573d6000803e3d6000fd5b50505050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead846040518463ffffffff1660e01b81526004016118a1939291906137da565b600060405180830381600087803b1580156118bb57600080fd5b505af11580156118cf573d6000803e3d6000fd5b505050505050565b6118df611db9565b73ffffffffffffffffffffffffffffffffffffffff166118fd6112be565b73ffffffffffffffffffffffffffffffffffffffff1614611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90613516565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b61197a3383611f04565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906134aa565b60405180910390fd5b6119c584848484612302565b50505050565b60606119d682611ddf565b611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c9061385d565b60405180910390fd5b6060600c60009054906101000a900460ff1615611a5e576003611a378461235e565b604051602001611a48929190613999565b6040516020818303038152906040529050611a82565b6003604051602001611a709190613a14565b60405160208183030381529060405290505b80915050919050565b611a93611db9565b73ffffffffffffffffffffffffffffffffffffffff16611ab16112be565b73ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90613516565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b611b2c611db9565b73ffffffffffffffffffffffffffffffffffffffff16611b4a6112be565b73ffffffffffffffffffffffffffffffffffffffff1614611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790613516565b60405180910390fd5b80600b8190555050565b60606003604051602001611bbe9190613a82565b604051602081830303815290604052905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c6e611db9565b73ffffffffffffffffffffffffffffffffffffffff16611c8c6112be565b73ffffffffffffffffffffffffffffffffffffffff1614611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd990613516565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4990613af0565b60405180910390fd5b611d5b8161223e565b50565b600066038d7ea4c68000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db29190613b3f565b9050919050565b600033905090565b611ddb8282604051806020016040528060008152506124bf565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ebe836110c6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f0f82611ddf565b611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613bbc565b60405180910390fd5b6000611f59836110c6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fc857508373ffffffffffffffffffffffffffffffffffffffff16611fb084610b8d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fd95750611fd88185611bd2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612002826110c6565b73ffffffffffffffffffffffffffffffffffffffff1614612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90613c28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90613c94565b60405180910390fd5b6120d383838361251a565b6120de600082611e4b565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212e9190613cb4565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218591906131a3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61230d848484611fe2565b6123198484848461251f565b612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f90613d34565b60405180910390fd5b50505050565b606060008214156123a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ba565b600082905060005b600082146123d85780806123c1906132d1565b915050600a826123d19190613b3f565b91506123ae565b60008167ffffffffffffffff8111156123f4576123f3612c60565b5b6040519080825280601f01601f1916602001820160405280156124265781602001600182028036833780820191505090505b5090505b600085146124b35760018261243f9190613cb4565b9150600a8561244e9190613d54565b603061245a91906131a3565b60f81b8183815181106124705761246f613d85565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124ac9190613b3f565b945061242a565b8093505050505b919050565b6124c983836126a0565b6124d6600084848461251f565b612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90613d34565b60405180910390fd5b505050565b505050565b60006125408473ffffffffffffffffffffffffffffffffffffffff1661286e565b15612693578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b81526004016125849493929190613e09565b6020604051808303816000875af19250505080156125c057506040513d601f19601f820116820180604052508101906125bd9190613e6a565b60015b612643573d80600081146125f0576040519150601f19603f3d011682016040523d82523d6000602084013e6125f5565b606091505b5060008151141561263b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263290613d34565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612698565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270790613ee3565b60405180910390fd5b61271981611ddf565b15612759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275090613f4f565b60405180910390fd5b6127656000838361251a565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b591906131a3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461288d9061306a565b90600052602060002090601f0160209004810192826128af57600085556128f6565b82601f106128c857805160ff19168380011785556128f6565b828001600101855582156128f6579182015b828111156128f55782518255916020019190600101906128da565b5b5090506129039190612907565b5090565b5b80821115612920576000816000905550600101612908565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61296d81612938565b811461297857600080fd5b50565b60008135905061298a81612964565b92915050565b6000602082840312156129a6576129a561292e565b5b60006129b48482850161297b565b91505092915050565b60008115159050919050565b6129d2816129bd565b82525050565b60006020820190506129ed60008301846129c9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a2d578082015181840152602081019050612a12565b83811115612a3c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a5e826129f3565b612a6881856129fe565b9350612a78818560208601612a0f565b612a8181612a42565b840191505092915050565b60006020820190508181036000830152612aa68184612a53565b905092915050565b6000819050919050565b612ac181612aae565b8114612acc57600080fd5b50565b600081359050612ade81612ab8565b92915050565b600060208284031215612afa57612af961292e565b5b6000612b0884828501612acf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b3c82612b11565b9050919050565b612b4c81612b31565b82525050565b6000602082019050612b676000830184612b43565b92915050565b612b7681612b31565b8114612b8157600080fd5b50565b600081359050612b9381612b6d565b92915050565b60008060408385031215612bb057612baf61292e565b5b6000612bbe85828601612b84565b9250506020612bcf85828601612acf565b9150509250929050565b612be281612aae565b82525050565b6000602082019050612bfd6000830184612bd9565b92915050565b600080600060608486031215612c1c57612c1b61292e565b5b6000612c2a86828701612b84565b9350506020612c3b86828701612b84565b9250506040612c4c86828701612acf565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9882612a42565b810181811067ffffffffffffffff82111715612cb757612cb6612c60565b5b80604052505050565b6000612cca612924565b9050612cd68282612c8f565b919050565b600067ffffffffffffffff821115612cf657612cf5612c60565b5b612cff82612a42565b9050602081019050919050565b82818337600083830152505050565b6000612d2e612d2984612cdb565b612cc0565b905082815260208101848484011115612d4a57612d49612c5b565b5b612d55848285612d0c565b509392505050565b600082601f830112612d7257612d71612c56565b5b8135612d82848260208601612d1b565b91505092915050565b600060208284031215612da157612da061292e565b5b600082013567ffffffffffffffff811115612dbf57612dbe612933565b5b612dcb84828501612d5d565b91505092915050565b600060208284031215612dea57612de961292e565b5b6000612df884828501612b84565b91505092915050565b612e0a816129bd565b8114612e1557600080fd5b50565b600081359050612e2781612e01565b92915050565b60008060408385031215612e4457612e4361292e565b5b6000612e5285828601612b84565b9250506020612e6385828601612e18565b9150509250929050565b612e7681612938565b82525050565b6000602082019050612e916000830184612e6d565b92915050565b60008060408385031215612eae57612ead61292e565b5b6000612ebc85828601612acf565b9250506020612ecd85828601612acf565b9150509250929050565b600067ffffffffffffffff821115612ef257612ef1612c60565b5b612efb82612a42565b9050602081019050919050565b6000612f1b612f1684612ed7565b612cc0565b905082815260208101848484011115612f3757612f36612c5b565b5b612f42848285612d0c565b509392505050565b600082601f830112612f5f57612f5e612c56565b5b8135612f6f848260208601612f08565b91505092915050565b60008060008060808587031215612f9257612f9161292e565b5b6000612fa087828801612b84565b9450506020612fb187828801612b84565b9350506040612fc287828801612acf565b925050606085013567ffffffffffffffff811115612fe357612fe2612933565b5b612fef87828801612f4a565b91505092959194509250565b600080604083850312156130125761301161292e565b5b600061302085828601612b84565b925050602061303185828601612b84565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061308257607f821691505b602082108114156130965761309561303b565b5b50919050565b7f617474656d7074207265656e746572206c6f636b65642066756e6374696f6e00600082015250565b60006130d2601f836129fe565b91506130dd8261309c565b602082019050919050565b60006020820190508181036000830152613101816130c5565b9050919050565b7f4d696e74204e6f74204163746976650000000000000000000000000000000000600082015250565b600061313e600f836129fe565b915061314982613108565b602082019050919050565b6000602082019050818103600083015261316d81613131565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131ae82612aae565b91506131b983612aae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131ee576131ed613174565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b600061322f6013836129fe565b915061323a826131f9565b602082019050919050565b6000602082019050818103600083015261325e81613222565b9050919050565b7f57726f6e672045746820416d6f756e7400000000000000000000000000000000600082015250565b600061329b6010836129fe565b91506132a682613265565b602082019050919050565b600060208201905081810360008301526132ca8161328e565b9050919050565b60006132dc82612aae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561330f5761330e613174565b5b600182019050919050565b7f4552433732313a20617070726f766564206e6f6e6578697374656e7420746b6e600082015250565b60006133506020836129fe565b915061335b8261331a565b602082019050919050565b6000602082019050818103600083015261337f81613343565b9050919050565b7f4552433732313a20617070726f76616c2063757272656e74206f776e65720000600082015250565b60006133bc601e836129fe565b91506133c782613386565b602082019050919050565b600060208201905081810360008301526133eb816133af565b9050919050565b7f4552433732313a2063616c6c657220216f776e65722f21617070726f76656400600082015250565b6000613428601f836129fe565b9150613433826133f2565b602082019050919050565b600060208201905081810360008301526134578161341b565b9050919050565b7f4552433732313a207478667220216f776e65722f617070726f76656400000000600082015250565b6000613494601c836129fe565b915061349f8261345e565b602082019050919050565b600060208201905081810360008301526134c381613487565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135006020836129fe565b915061350b826134ca565b602082019050919050565b6000602082019050818103600083015261352f816134f3565b9050919050565b600081905092915050565b50565b6000613551600083613536565b915061355c82613541565b600082019050919050565b600061357282613544565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006135b26018836129fe565b91506135bd8261357c565b602082019050919050565b600060208201905081810360008301526135e1816135a5565b9050919050565b7f4552433732313a206f776e207175657279206e6f6e657869737420746b6e0000600082015250565b600061361e601e836129fe565b9150613629826135e8565b602082019050919050565b6000602082019050818103600083015261364d81613611565b9050919050565b7f4552433732313a2062616c2071727920666f72207a65726f2061646472657373600082015250565b600061368a6020836129fe565b915061369582613654565b602082019050919050565b600060208201905081810360008301526136b98161367d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136f66019836129fe565b9150613701826136c0565b602082019050919050565b60006020820190508181036000830152613725816136e9565b9050919050565b60008151905061373b81612b6d565b92915050565b6000602082840312156137575761375661292e565b5b60006137658482850161372c565b91505092915050565b7f4f6e6c7920746f6b656e206f776e65722063616e2063616c6c206275726e0000600082015250565b60006137a4601e836129fe565b91506137af8261376e565b602082019050919050565b600060208201905081810360008301526137d381613797565b9050919050565b60006060820190506137ef6000830186612b43565b6137fc6020830185612b43565b6138096040830184612bd9565b949350505050565b7f4552433732314d657461646174613a205552492030783020746f6b656e000000600082015250565b6000613847601d836129fe565b915061385282613811565b602082019050919050565b600060208201905081810360008301526138768161383a565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138aa8161306a565b6138b4818661387d565b945060018216600081146138cf57600181146138e057613913565b60ff19831686528186019350613913565b6138e985613888565b60005b8381101561390b578154818901526001820191506020810190506138ec565b838801955050505b50505092915050565b6000613927826129f3565b613931818561387d565b9350613941818560208601612a0f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061398360058361387d565b915061398e8261394d565b600582019050919050565b60006139a5828561389d565b91506139b1828461391c565b91506139bc82613976565b91508190509392505050565b7f6d7973746572792e6a736f6e0000000000000000000000000000000000000000600082015250565b60006139fe600c8361387d565b9150613a09826139c8565b600c82019050919050565b6000613a20828461389d565b9150613a2b826139f1565b915081905092915050565b7f636f6e74726163742e6a736f6e00000000000000000000000000000000000000600082015250565b6000613a6c600d8361387d565b9150613a7782613a36565b600d82019050919050565b6000613a8e828461389d565b9150613a9982613a5f565b915081905092915050565b7f4f776e61626c653a206e6577206f776e65722069732030782061646472657373600082015250565b6000613ada6020836129fe565b9150613ae582613aa4565b602082019050919050565b60006020820190508181036000830152613b0981613acd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b4a82612aae565b9150613b5583612aae565b925082613b6557613b64613b10565b5b828204905092915050565b7f4552433732313a206f70207175657279206e6f6e6578697374656e7420746b6e600082015250565b6000613ba66020836129fe565b9150613bb182613b70565b602082019050919050565b60006020820190508181036000830152613bd581613b99565b9050919050565b7f4552433732313a207478667220746f6b656e206e6f74206f776e656400000000600082015250565b6000613c12601c836129fe565b9150613c1d82613bdc565b602082019050919050565b60006020820190508181036000830152613c4181613c05565b9050919050565b7f4552433732313a207478667220746f2030783020616464726573730000000000600082015250565b6000613c7e601b836129fe565b9150613c8982613c48565b602082019050919050565b60006020820190508181036000830152613cad81613c71565b9050919050565b6000613cbf82612aae565b9150613cca83612aae565b925082821015613cdd57613cdc613174565b5b828203905092915050565b7f7478667220746f206e6f6e204552433732315265636965766572000000000000600082015250565b6000613d1e601a836129fe565b9150613d2982613ce8565b602082019050919050565b60006020820190508181036000830152613d4d81613d11565b9050919050565b6000613d5f82612aae565b9150613d6a83612aae565b925082613d7a57613d79613b10565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613ddb82613db4565b613de58185613dbf565b9350613df5818560208601612a0f565b613dfe81612a42565b840191505092915050565b6000608082019050613e1e6000830187612b43565b613e2b6020830186612b43565b613e386040830185612bd9565b8181036060830152613e4a8184613dd0565b905095945050505050565b600081519050613e6481612964565b92915050565b600060208284031215613e8057613e7f61292e565b5b6000613e8e84828501613e55565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ecd6020836129fe565b9150613ed882613e97565b602082019050919050565b60006020820190508181036000830152613efc81613ec0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f39601c836129fe565b9150613f4482613f03565b602082019050919050565b60006020820190508181036000830152613f6881613f2c565b905091905056fea2646970667358221220206aa55551947a359132ab6eeb5df0f70905208aae40dcb6616b3b777532fcfb64736f6c634300080a0033

Deployed Bytecode Sourcemap

17747:17090:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19501:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33798:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20175:500;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23509:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23071:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22060:126;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24379:314;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18490:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21969:80;;;;;;;;;;;;;:::i;:::-;;18583:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19938:228;;;;;;;;;;;;;:::i;:::-;;21486:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24764:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18549:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21773:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22781:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18640:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22521:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14888:94;;;;;;;;;;;;;:::i;:::-;;14237:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33939:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23788:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21418:63;;;;;;;;;;;;;:::i;:::-;;32809:148;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20745:460;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21586:62;;;;;;;;;;;;;:::i;:::-;;25020:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34114:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21880:77;;;;;;;;;;;;;:::i;:::-;;21656:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34528:139;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24148:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15137:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22198:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19501:355;19586:4;19626:25;19611:40;;;:11;:40;;;;:109;;;;19687:33;19672:48;;;:11;:48;;;;19611:109;:170;;;;19756:25;19741:40;;;:11;:40;;;;19611:170;:237;;;;19817:31;;;19802:46;;;:11;:46;;;;19611:237;19603:245;;19501:355;;;:::o;33798:84::-;33837:13;33869:5;33862:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33798:84;:::o;20175:500::-;16171:11;;;;;;;;;;;16170:12;16162:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;16243:4;16229:11;;:18;;;;;;;;;;;;;;;;;;20310:10:::1;;;;;;;;;;;20302:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;20381:10;;20374:3;20359:12;;:18;;;;:::i;:::-;:32;;20351:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;20447:1;20434:9;:14;;20426:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;20488:9;20477:8;:20;;;;20502:21;20526:12;;20502:36;;20559:3;20543:12;;:19;;;;;;;:::i;:::-;;;;;;;;20575:9;20587:1;20575:13;;20571:100;20595:3;20590:1;:8;20571:100;;20617:42;20627:12;:10;:12::i;:::-;20657:1;20641:13;:17;;;;:::i;:::-;20617:9;:42::i;:::-;20600:3;;;;;:::i;:::-;;;;20571:100;;;;20231:444;16284:5:::0;16270:11;;:19;;;;;;;;;;;;;;;;;;20175:500;:::o;23509:207::-;23585:7;23613:16;23621:7;23613;:16::i;:::-;23605:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;23684:15;:24;23700:7;23684:24;;;;;;;;;;;;;;;;;;;;;23677:31;;23509:207;;;:::o;23071:372::-;23152:13;23168:16;23176:7;23168;:16::i;:::-;23152:32;;23209:5;23203:11;;:2;:11;;;;23195:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;23298:5;23284:19;;:10;:19;;;:58;;;;23307:35;23324:5;23331:10;23307:16;:35::i;:::-;23284:58;23262:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;23414:21;23423:2;23427:7;23414:8;:21::i;:::-;23141:302;23071:372;;:::o;22060:126::-;22106:7;22133:12;;22126:19;;22060:126;:::o;24379:314::-;24574:39;24593:10;24605:7;24574:18;:39::i;:::-;24566:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;24657:28;24667:4;24673:2;24677:7;24657:9;:28::i;:::-;24379:314;;;:::o;18490:22::-;;;;;;;;;;;;;:::o;21969:80::-;14468:12;:10;:12::i;:::-;14457:23;;:7;:5;:7::i;:::-;:23;;;14449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22036:5:::1;22023:10;;:18;;;;;;;;;;;;;;;;;;21969:80::o:0;18583:24::-;;;;:::o;19938:228::-;14468:12;:10;:12::i;:::-;14457:23;;:7;:5;:7::i;:::-;:23;;;14449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19988:18:::1;20009:21;19988:42;;20042:12;20060:15;;;;;;;;;;;:20;;20088:10;20060:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20041:62;;;20122:7;20114:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;19977:189;;19938:228::o:0;21486:95::-;14468:12;:10;:12::i;:::-;14457:23;;:7;:5;:7::i;:::-;:23;;;14449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21568:8:::1;21555:10;:21;;;;21486:95:::0;:::o;24764:185::-;24902:39;24919:4;24925:2;24929:7;24902:39;;;;;;;;;;;;:16;:39::i;:::-;24764:185;;;:::o;18549:27::-;;;;:::o;21773:95::-;14468:12;:10;:12::i;:::-;14457:23;;:7;:5;:7::i;:::-;:23;;;14449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21854:6:::1;21843:8;:17;;;;;;;;;;;;:::i;:::-;;21773:95:::0;:::o;22781:228::-;22853:7;22873:13;22889:7;:16;22897:7;22889:16;;;;;;;;;;;;;;;;;;;;;22873:32;;22941:1;22924:19;;:5;:19;;;;22916:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22996:5;22989:12;;;22781:228;;;:::o;18640:23::-;;;;:::o;22521:198::-;22593:7;22638:1;22621:19;;:5;:19;;;;22613:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22695:9;:16;22705:5;22695:16;;;;;;;;;;;;;;;;22688:23;;22521:198;;;:::o;14888:94::-;14468:12;:10;:12::i;:::-;14457:23;;:7;:5;:7::i;:::-;:23;;;14449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14953:21:::1;14971:1;14953:9;:21::i;:::-;14888:94::o:0;14237:87::-;14283:7;14310:6;;;;;;;;;;;14303:13;;14237:87;:::o;33939:88::-;33980:13;34012:7;34005:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33939:88;:::o;23788:289::-;23903:10;23891:22;;:8;:22;;;;23883:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23999:8;23956:18;:30;23975:10;23956:30;;;;;;;;;;;;;;;:40;23987:8;23956:40;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;24050:8;24023:46;;24038:10;24023:46;;;24060:8;24023:46;;;;;;:::i;:::-;;;;;;;;23788:289;;:::o;21418:63::-;14468:12;:10;:12::i;:::-;14457:23;;:7;:5;:7::i;:::-;:23;;;14449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21472:4:::1;21460:9;;:16;;;;;;;;;;;;;;;;;;21418:63::o:0;32809:148::-;32859:6;32919:30;;;32912:37;;32809:148;:::o;20745:460::-;20841:2;;;;;;;;;;;20840:12;;;20853:7;20840:21;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20824:37;;:12;:10;:12::i;:::-;:37;;;20816:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;20932:2;;;;;;;;;;;20931:12;;;20944:10;20931:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20915:40;;:12;:10;:12::i;:::-;:40;;;20907:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;21002:2;;;;;;;;;;;21001:17;;;21019:10;21039:42;21084:7;21001:91;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21104:2;;;;;;;;;;;21103:17;;;21121:10;21141:42;21186:10;21103:94;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20745:460;;:::o;21586:62::-;14468:12;:10;:12::i;:::-;14457:23;;:7;:5;:7::i;:::-;:23;;;14449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21638:5:::1;21626:9;;:17;;;;;;;;;;;;;;;;;;21586:62::o:0;25020:305::-;25195:39;25214:10;25226:7;25195:18;:39::i;:::-;25187:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;25278:39;25292:4;25298:2;25302:7;25311:5;25278:13;:39::i;:::-;25020:305;;;;:::o;34114:402::-;34172:13;34205:16;34213:7;34205;:16::i;:::-;34197:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34266:22;34303:9;;;;;;;;;;;34299:184;;;34360:8;34370:17;34379:7;34370:8;:17::i;:::-;34343:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34325:73;;34299:184;;;34451:8;34434:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;34416:61;;34299:184;34500:8;34493:15;;;34114:402;;;:::o;21880:77::-;14468:12;:10;:12::i;:::-;14457:23;;:7;:5;:7::i;:::-;:23;;;14449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21945:4:::1;21932:10;;:17;;;;;;;;;;;;;;;;;;21880:77::o:0;21656:105::-;14468:12;:10;:12::i;:::-;14457:23;;:7;:5;:7::i;:::-;:23;;;14449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21745:8:::1;21733:9;:20;;;;21656:105:::0;:::o;34528:139::-;34572:13;34633:8;34616:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;34602:57;;34528:139;:::o;24148:164::-;24245:4;24269:18;:25;24288:5;24269:25;;;;;;;;;;;;;;;:35;24295:8;24269:35;;;;;;;;;;;;;;;;;;;;;;;;;24262:42;;24148:164;;;;:::o;15137:186::-;14468:12;:10;:12::i;:::-;14457:23;;:7;:5;:7::i;:::-;:23;;;14449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15246:1:::1;15226:22;;:8;:22;;;;15218:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15296:19;15306:8;15296:9;:19::i;:::-;15137:186:::0;:::o;22198:259::-;22263:7;22405:6;22378:9;:23;22388:12;22378:23;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;22371:41;;22198:259;;;:::o;13620:98::-;13673:7;13700:10;13693:17;;13620:98;:::o;27776:110::-;27852:26;27862:2;27866:7;27852:26;;;;;;;;;;;;:9;:26::i;:::-;27776:110;;:::o;26811:127::-;26876:4;26928:1;26900:30;;:7;:16;26908:7;26900:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26893:37;;26811:127;;;:::o;30712:167::-;30814:2;30787:15;:24;30803:7;30787:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30863:7;30859:2;30832:39;;30841:16;30849:7;30841;:16::i;:::-;30832:39;;;;;;;;;;;;30712:167;;:::o;27105:329::-;27198:4;27223:16;27231:7;27223;:16::i;:::-;27215:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27287:13;27303:16;27311:7;27303;:16::i;:::-;27287:32;;27349:5;27338:16;;:7;:16;;;:51;;;;27382:7;27358:31;;:20;27370:7;27358:11;:20::i;:::-;:31;;;27338:51;:87;;;;27393:32;27410:5;27417:7;27393:16;:32::i;:::-;27338:87;27330:96;;;27105:329;;;;:::o;30047:547::-;30199:4;30179:24;;:16;30187:7;30179;:16::i;:::-;:24;;;30171:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30269:1;30255:16;;:2;:16;;;;30247:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30314:39;30335:4;30341:2;30345:7;30314:20;:39::i;:::-;30418:29;30435:1;30439:7;30418:8;:29::i;:::-;30479:1;30460:9;:15;30470:4;30460:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30508:1;30491:9;:13;30501:2;30491:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30539:2;30520:7;:16;30528:7;30520:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30578:7;30574:2;30559:27;;30568:4;30559:27;;;;;;;;;;;;30047:547;;;:::o;15331:173::-;15387:16;15406:6;;;;;;;;;;;15387:25;;15432:8;15423:6;;:17;;;;;;;;;;;;;;;;;;15487:8;15456:40;;15477:8;15456:40;;;;;;;;;;;;15376:128;15331:173;:::o;26207:291::-;26364:28;26374:4;26380:2;26384:7;26364:9;:28::i;:::-;26411:48;26434:4;26440:2;26444:7;26453:5;26411:22;:48::i;:::-;26403:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;26207:291;;;;:::o;15547:532::-;15603:13;15642:1;15633:5;:10;15629:53;;;15660:10;;;;;;;;;;;;;;;;;;;;;15629:53;15692:12;15707:5;15692:20;;15723:14;15748:78;15763:1;15755:4;:9;15748:78;;15781:8;;;;;:::i;:::-;;;;15812:2;15804:10;;;;;:::i;:::-;;;15748:78;;;15836:19;15868:6;15858:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15836:39;;15886:154;15902:1;15893:5;:10;15886:154;;15930:1;15920:11;;;;;:::i;:::-;;;15997:2;15989:5;:10;;;;:::i;:::-;15976:2;:24;;;;:::i;:::-;15963:39;;15946:6;15953;15946:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;16026:2;16017:11;;;;;:::i;:::-;;;15886:154;;;16064:6;16050:21;;;;;15547:532;;;;:::o;28113:297::-;28243:18;28249:2;28253:7;28243:5;:18::i;:::-;28294:54;28325:1;28329:2;28333:7;28342:5;28294:22;:54::i;:::-;28272:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;28113:297;;;:::o;33529:126::-;;;;:::o;31444:777::-;31599:4;31620:15;:2;:13;;;:15::i;:::-;31616:598;;;31672:2;31656:36;;;31693:10;31705:4;31711:7;31720:5;31656:70;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31652:507;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31917:1;31900:6;:13;:18;31896:248;;;31943:36;;;;;;;;;;:::i;:::-;;;;;;;;31896:248;32094:6;32088:13;32079:6;32075:2;32071:15;32064:38;31652:507;31787:45;;;31777:55;;;:6;:55;;;;31770:62;;;;;31616:598;32198:4;32191:11;;31444:777;;;;;;;:::o;28746:382::-;28840:1;28826:16;;:2;:16;;;;28818:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28899:16;28907:7;28899;:16::i;:::-;28898:17;28890:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28961:45;28990:1;28994:2;28998:7;28961:20;:45::i;:::-;29036:1;29019:9;:13;29029:2;29019:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29067:2;29048:7;:16;29056:7;29048:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29112:7;29108:2;29087:33;;29104:1;29087:33;;;;;;;;;;;;28746:382;;:::o;6541:387::-;6601:4;6809:12;6876:7;6864:20;6856:28;;6919:1;6912:4;:8;6905:15;;;6541:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:115::-;9691:23;9708:5;9691:23;:::i;:::-;9686:3;9679:36;9606:115;;:::o;9727:218::-;9818:4;9856:2;9845:9;9841:18;9833:26;;9869:69;9935:1;9924:9;9920:17;9911:6;9869:69;:::i;:::-;9727:218;;;;:::o;9951:474::-;10019:6;10027;10076:2;10064:9;10055:7;10051:23;10047:32;10044:119;;;10082:79;;:::i;:::-;10044:119;10202:1;10227:53;10272:7;10263:6;10252:9;10248:22;10227:53;:::i;:::-;10217:63;;10173:117;10329:2;10355:53;10400:7;10391:6;10380:9;10376:22;10355:53;:::i;:::-;10345:63;;10300:118;9951:474;;;;;:::o;10431:307::-;10492:4;10582:18;10574:6;10571:30;10568:56;;;10604:18;;:::i;:::-;10568:56;10642:29;10664:6;10642:29;:::i;:::-;10634:37;;10726:4;10720;10716:15;10708:23;;10431:307;;;:::o;10744:410::-;10821:5;10846:65;10862:48;10903:6;10862:48;:::i;:::-;10846:65;:::i;:::-;10837:74;;10934:6;10927:5;10920:21;10972:4;10965:5;10961:16;11010:3;11001:6;10996:3;10992:16;10989:25;10986:112;;;11017:79;;:::i;:::-;10986:112;11107:41;11141:6;11136:3;11131;11107:41;:::i;:::-;10827:327;10744:410;;;;;:::o;11173:338::-;11228:5;11277:3;11270:4;11262:6;11258:17;11254:27;11244:122;;11285:79;;:::i;:::-;11244:122;11402:6;11389:20;11427:78;11501:3;11493:6;11486:4;11478:6;11474:17;11427:78;:::i;:::-;11418:87;;11234:277;11173:338;;;;:::o;11517:943::-;11612:6;11620;11628;11636;11685:3;11673:9;11664:7;11660:23;11656:33;11653:120;;;11692:79;;:::i;:::-;11653:120;11812:1;11837:53;11882:7;11873:6;11862:9;11858:22;11837:53;:::i;:::-;11827:63;;11783:117;11939:2;11965:53;12010:7;12001:6;11990:9;11986:22;11965:53;:::i;:::-;11955:63;;11910:118;12067:2;12093:53;12138:7;12129:6;12118:9;12114:22;12093:53;:::i;:::-;12083:63;;12038:118;12223:2;12212:9;12208:18;12195:32;12254:18;12246:6;12243:30;12240:117;;;12276:79;;:::i;:::-;12240:117;12381:62;12435:7;12426:6;12415:9;12411:22;12381:62;:::i;:::-;12371:72;;12166:287;11517:943;;;;;;;:::o;12466:474::-;12534:6;12542;12591:2;12579:9;12570:7;12566:23;12562:32;12559:119;;;12597:79;;:::i;:::-;12559:119;12717:1;12742:53;12787:7;12778:6;12767:9;12763:22;12742:53;:::i;:::-;12732:63;;12688:117;12844:2;12870:53;12915:7;12906:6;12895:9;12891:22;12870:53;:::i;:::-;12860:63;;12815:118;12466:474;;;;;:::o;12946:180::-;12994:77;12991:1;12984:88;13091:4;13088:1;13081:15;13115:4;13112:1;13105:15;13132:320;13176:6;13213:1;13207:4;13203:12;13193:22;;13260:1;13254:4;13250:12;13281:18;13271:81;;13337:4;13329:6;13325:17;13315:27;;13271:81;13399:2;13391:6;13388:14;13368:18;13365:38;13362:84;;;13418:18;;:::i;:::-;13362:84;13183:269;13132:320;;;:::o;13458:181::-;13598:33;13594:1;13586:6;13582:14;13575:57;13458:181;:::o;13645:366::-;13787:3;13808:67;13872:2;13867:3;13808:67;:::i;:::-;13801:74;;13884:93;13973:3;13884:93;:::i;:::-;14002:2;13997:3;13993:12;13986:19;;13645:366;;;:::o;14017:419::-;14183:4;14221:2;14210:9;14206:18;14198:26;;14270:9;14264:4;14260:20;14256:1;14245:9;14241:17;14234:47;14298:131;14424:4;14298:131;:::i;:::-;14290:139;;14017:419;;;:::o;14442:165::-;14582:17;14578:1;14570:6;14566:14;14559:41;14442:165;:::o;14613:366::-;14755:3;14776:67;14840:2;14835:3;14776:67;:::i;:::-;14769:74;;14852:93;14941:3;14852:93;:::i;:::-;14970:2;14965:3;14961:12;14954:19;;14613:366;;;:::o;14985:419::-;15151:4;15189:2;15178:9;15174:18;15166:26;;15238:9;15232:4;15228:20;15224:1;15213:9;15209:17;15202:47;15266:131;15392:4;15266:131;:::i;:::-;15258:139;;14985:419;;;:::o;15410:180::-;15458:77;15455:1;15448:88;15555:4;15552:1;15545:15;15579:4;15576:1;15569:15;15596:305;15636:3;15655:20;15673:1;15655:20;:::i;:::-;15650:25;;15689:20;15707:1;15689:20;:::i;:::-;15684:25;;15843:1;15775:66;15771:74;15768:1;15765:81;15762:107;;;15849:18;;:::i;:::-;15762:107;15893:1;15890;15886:9;15879:16;;15596:305;;;;:::o;15907:169::-;16047:21;16043:1;16035:6;16031:14;16024:45;15907:169;:::o;16082:366::-;16224:3;16245:67;16309:2;16304:3;16245:67;:::i;:::-;16238:74;;16321:93;16410:3;16321:93;:::i;:::-;16439:2;16434:3;16430:12;16423:19;;16082:366;;;:::o;16454:419::-;16620:4;16658:2;16647:9;16643:18;16635:26;;16707:9;16701:4;16697:20;16693:1;16682:9;16678:17;16671:47;16735:131;16861:4;16735:131;:::i;:::-;16727:139;;16454:419;;;:::o;16879:166::-;17019:18;17015:1;17007:6;17003:14;16996:42;16879:166;:::o;17051:366::-;17193:3;17214:67;17278:2;17273:3;17214:67;:::i;:::-;17207:74;;17290:93;17379:3;17290:93;:::i;:::-;17408:2;17403:3;17399:12;17392:19;;17051:366;;;:::o;17423:419::-;17589:4;17627:2;17616:9;17612:18;17604:26;;17676:9;17670:4;17666:20;17662:1;17651:9;17647:17;17640:47;17704:131;17830:4;17704:131;:::i;:::-;17696:139;;17423:419;;;:::o;17848:233::-;17887:3;17910:24;17928:5;17910:24;:::i;:::-;17901:33;;17956:66;17949:5;17946:77;17943:103;;;18026:18;;:::i;:::-;17943:103;18073:1;18066:5;18062:13;18055:20;;17848:233;;;:::o;18087:182::-;18227:34;18223:1;18215:6;18211:14;18204:58;18087:182;:::o;18275:366::-;18417:3;18438:67;18502:2;18497:3;18438:67;:::i;:::-;18431:74;;18514:93;18603:3;18514:93;:::i;:::-;18632:2;18627:3;18623:12;18616:19;;18275:366;;;:::o;18647:419::-;18813:4;18851:2;18840:9;18836:18;18828:26;;18900:9;18894:4;18890:20;18886:1;18875:9;18871:17;18864:47;18928:131;19054:4;18928:131;:::i;:::-;18920:139;;18647:419;;;:::o;19072:180::-;19212:32;19208:1;19200:6;19196:14;19189:56;19072:180;:::o;19258:366::-;19400:3;19421:67;19485:2;19480:3;19421:67;:::i;:::-;19414:74;;19497:93;19586:3;19497:93;:::i;:::-;19615:2;19610:3;19606:12;19599:19;;19258:366;;;:::o;19630:419::-;19796:4;19834:2;19823:9;19819:18;19811:26;;19883:9;19877:4;19873:20;19869:1;19858:9;19854:17;19847:47;19911:131;20037:4;19911:131;:::i;:::-;19903:139;;19630:419;;;:::o;20055:181::-;20195:33;20191:1;20183:6;20179:14;20172:57;20055:181;:::o;20242:366::-;20384:3;20405:67;20469:2;20464:3;20405:67;:::i;:::-;20398:74;;20481:93;20570:3;20481:93;:::i;:::-;20599:2;20594:3;20590:12;20583:19;;20242:366;;;:::o;20614:419::-;20780:4;20818:2;20807:9;20803:18;20795:26;;20867:9;20861:4;20857:20;20853:1;20842:9;20838:17;20831:47;20895:131;21021:4;20895:131;:::i;:::-;20887:139;;20614:419;;;:::o;21039:178::-;21179:30;21175:1;21167:6;21163:14;21156:54;21039:178;:::o;21223:366::-;21365:3;21386:67;21450:2;21445:3;21386:67;:::i;:::-;21379:74;;21462:93;21551:3;21462:93;:::i;:::-;21580:2;21575:3;21571:12;21564:19;;21223:366;;;:::o;21595:419::-;21761:4;21799:2;21788:9;21784:18;21776:26;;21848:9;21842:4;21838:20;21834:1;21823:9;21819:17;21812:47;21876:131;22002:4;21876:131;:::i;:::-;21868:139;;21595:419;;;:::o;22020:182::-;22160:34;22156:1;22148:6;22144:14;22137:58;22020:182;:::o;22208:366::-;22350:3;22371:67;22435:2;22430:3;22371:67;:::i;:::-;22364:74;;22447:93;22536:3;22447:93;:::i;:::-;22565:2;22560:3;22556:12;22549:19;;22208:366;;;:::o;22580:419::-;22746:4;22784:2;22773:9;22769:18;22761:26;;22833:9;22827:4;22823:20;22819:1;22808:9;22804:17;22797:47;22861:131;22987:4;22861:131;:::i;:::-;22853:139;;22580:419;;;:::o;23005:147::-;23106:11;23143:3;23128:18;;23005:147;;;;:::o;23158:114::-;;:::o;23278:398::-;23437:3;23458:83;23539:1;23534:3;23458:83;:::i;:::-;23451:90;;23550:93;23639:3;23550:93;:::i;:::-;23668:1;23663:3;23659:11;23652:18;;23278:398;;;:::o;23682:379::-;23866:3;23888:147;24031:3;23888:147;:::i;:::-;23881:154;;24052:3;24045:10;;23682:379;;;:::o;24067:174::-;24207:26;24203:1;24195:6;24191:14;24184:50;24067:174;:::o;24247:366::-;24389:3;24410:67;24474:2;24469:3;24410:67;:::i;:::-;24403:74;;24486:93;24575:3;24486:93;:::i;:::-;24604:2;24599:3;24595:12;24588:19;;24247:366;;;:::o;24619:419::-;24785:4;24823:2;24812:9;24808:18;24800:26;;24872:9;24866:4;24862:20;24858:1;24847:9;24843:17;24836:47;24900:131;25026:4;24900:131;:::i;:::-;24892:139;;24619:419;;;:::o;25044:180::-;25184:32;25180:1;25172:6;25168:14;25161:56;25044:180;:::o;25230:366::-;25372:3;25393:67;25457:2;25452:3;25393:67;:::i;:::-;25386:74;;25469:93;25558:3;25469:93;:::i;:::-;25587:2;25582:3;25578:12;25571:19;;25230:366;;;:::o;25602:419::-;25768:4;25806:2;25795:9;25791:18;25783:26;;25855:9;25849:4;25845:20;25841:1;25830:9;25826:17;25819:47;25883:131;26009:4;25883:131;:::i;:::-;25875:139;;25602:419;;;:::o;26027:182::-;26167:34;26163:1;26155:6;26151:14;26144:58;26027:182;:::o;26215:366::-;26357:3;26378:67;26442:2;26437:3;26378:67;:::i;:::-;26371:74;;26454:93;26543:3;26454:93;:::i;:::-;26572:2;26567:3;26563:12;26556:19;;26215:366;;;:::o;26587:419::-;26753:4;26791:2;26780:9;26776:18;26768:26;;26840:9;26834:4;26830:20;26826:1;26815:9;26811:17;26804:47;26868:131;26994:4;26868:131;:::i;:::-;26860:139;;26587:419;;;:::o;27012:175::-;27152:27;27148:1;27140:6;27136:14;27129:51;27012:175;:::o;27193:366::-;27335:3;27356:67;27420:2;27415:3;27356:67;:::i;:::-;27349:74;;27432:93;27521:3;27432:93;:::i;:::-;27550:2;27545:3;27541:12;27534:19;;27193:366;;;:::o;27565:419::-;27731:4;27769:2;27758:9;27754:18;27746:26;;27818:9;27812:4;27808:20;27804:1;27793:9;27789:17;27782:47;27846:131;27972:4;27846:131;:::i;:::-;27838:139;;27565:419;;;:::o;27990:143::-;28047:5;28078:6;28072:13;28063:22;;28094:33;28121:5;28094:33;:::i;:::-;27990:143;;;;:::o;28139:351::-;28209:6;28258:2;28246:9;28237:7;28233:23;28229:32;28226:119;;;28264:79;;:::i;:::-;28226:119;28384:1;28409:64;28465:7;28456:6;28445:9;28441:22;28409:64;:::i;:::-;28399:74;;28355:128;28139:351;;;;:::o;28496:180::-;28636:32;28632:1;28624:6;28620:14;28613:56;28496:180;:::o;28682:366::-;28824:3;28845:67;28909:2;28904:3;28845:67;:::i;:::-;28838:74;;28921:93;29010:3;28921:93;:::i;:::-;29039:2;29034:3;29030:12;29023:19;;28682:366;;;:::o;29054:419::-;29220:4;29258:2;29247:9;29243:18;29235:26;;29307:9;29301:4;29297:20;29293:1;29282:9;29278:17;29271:47;29335:131;29461:4;29335:131;:::i;:::-;29327:139;;29054:419;;;:::o;29479:442::-;29628:4;29666:2;29655:9;29651:18;29643:26;;29679:71;29747:1;29736:9;29732:17;29723:6;29679:71;:::i;:::-;29760:72;29828:2;29817:9;29813:18;29804:6;29760:72;:::i;:::-;29842;29910:2;29899:9;29895:18;29886:6;29842:72;:::i;:::-;29479:442;;;;;;:::o;29927:179::-;30067:31;30063:1;30055:6;30051:14;30044:55;29927:179;:::o;30112:366::-;30254:3;30275:67;30339:2;30334:3;30275:67;:::i;:::-;30268:74;;30351:93;30440:3;30351:93;:::i;:::-;30469:2;30464:3;30460:12;30453:19;;30112:366;;;:::o;30484:419::-;30650:4;30688:2;30677:9;30673:18;30665:26;;30737:9;30731:4;30727:20;30723:1;30712:9;30708:17;30701:47;30765:131;30891:4;30765:131;:::i;:::-;30757:139;;30484:419;;;:::o;30909:148::-;31011:11;31048:3;31033:18;;30909:148;;;;:::o;31063:141::-;31112:4;31135:3;31127:11;;31158:3;31155:1;31148:14;31192:4;31189:1;31179:18;31171:26;;31063:141;;;:::o;31234:845::-;31337:3;31374:5;31368:12;31403:36;31429:9;31403:36;:::i;:::-;31455:89;31537:6;31532:3;31455:89;:::i;:::-;31448:96;;31575:1;31564:9;31560:17;31591:1;31586:137;;;;31737:1;31732:341;;;;31553:520;;31586:137;31670:4;31666:9;31655;31651:25;31646:3;31639:38;31706:6;31701:3;31697:16;31690:23;;31586:137;;31732:341;31799:38;31831:5;31799:38;:::i;:::-;31859:1;31873:154;31887:6;31884:1;31881:13;31873:154;;;31961:7;31955:14;31951:1;31946:3;31942:11;31935:35;32011:1;32002:7;31998:15;31987:26;;31909:4;31906:1;31902:12;31897:17;;31873:154;;;32056:6;32051:3;32047:16;32040:23;;31739:334;;31553:520;;31341:738;;31234:845;;;;:::o;32085:377::-;32191:3;32219:39;32252:5;32219:39;:::i;:::-;32274:89;32356:6;32351:3;32274:89;:::i;:::-;32267:96;;32372:52;32417:6;32412:3;32405:4;32398:5;32394:16;32372:52;:::i;:::-;32449:6;32444:3;32440:16;32433:23;;32195:267;32085:377;;;;:::o;32468:155::-;32608:7;32604:1;32596:6;32592:14;32585:31;32468:155;:::o;32629:400::-;32789:3;32810:84;32892:1;32887:3;32810:84;:::i;:::-;32803:91;;32903:93;32992:3;32903:93;:::i;:::-;33021:1;33016:3;33012:11;33005:18;;32629:400;;;:::o;33035:695::-;33313:3;33335:92;33423:3;33414:6;33335:92;:::i;:::-;33328:99;;33444:95;33535:3;33526:6;33444:95;:::i;:::-;33437:102;;33556:148;33700:3;33556:148;:::i;:::-;33549:155;;33721:3;33714:10;;33035:695;;;;;:::o;33736:162::-;33876:14;33872:1;33864:6;33860:14;33853:38;33736:162;:::o;33904:402::-;34064:3;34085:85;34167:2;34162:3;34085:85;:::i;:::-;34078:92;;34179:93;34268:3;34179:93;:::i;:::-;34297:2;34292:3;34288:12;34281:19;;33904:402;;;:::o;34312:535::-;34542:3;34564:92;34652:3;34643:6;34564:92;:::i;:::-;34557:99;;34673:148;34817:3;34673:148;:::i;:::-;34666:155;;34838:3;34831:10;;34312:535;;;;:::o;34853:163::-;34993:15;34989:1;34981:6;34977:14;34970:39;34853:163;:::o;35022:402::-;35182:3;35203:85;35285:2;35280:3;35203:85;:::i;:::-;35196:92;;35297:93;35386:3;35297:93;:::i;:::-;35415:2;35410:3;35406:12;35399:19;;35022:402;;;:::o;35430:535::-;35660:3;35682:92;35770:3;35761:6;35682:92;:::i;:::-;35675:99;;35791:148;35935:3;35791:148;:::i;:::-;35784:155;;35956:3;35949:10;;35430:535;;;;:::o;35971:182::-;36111:34;36107:1;36099:6;36095:14;36088:58;35971:182;:::o;36159:366::-;36301:3;36322:67;36386:2;36381:3;36322:67;:::i;:::-;36315:74;;36398:93;36487:3;36398:93;:::i;:::-;36516:2;36511:3;36507:12;36500:19;;36159:366;;;:::o;36531:419::-;36697:4;36735:2;36724:9;36720:18;36712:26;;36784:9;36778:4;36774:20;36770:1;36759:9;36755:17;36748:47;36812:131;36938:4;36812:131;:::i;:::-;36804:139;;36531:419;;;:::o;36956:180::-;37004:77;37001:1;36994:88;37101:4;37098:1;37091:15;37125:4;37122:1;37115:15;37142:185;37182:1;37199:20;37217:1;37199:20;:::i;:::-;37194:25;;37233:20;37251:1;37233:20;:::i;:::-;37228:25;;37272:1;37262:35;;37277:18;;:::i;:::-;37262:35;37319:1;37316;37312:9;37307:14;;37142:185;;;;:::o;37333:182::-;37473:34;37469:1;37461:6;37457:14;37450:58;37333:182;:::o;37521:366::-;37663:3;37684:67;37748:2;37743:3;37684:67;:::i;:::-;37677:74;;37760:93;37849:3;37760:93;:::i;:::-;37878:2;37873:3;37869:12;37862:19;;37521:366;;;:::o;37893:419::-;38059:4;38097:2;38086:9;38082:18;38074:26;;38146:9;38140:4;38136:20;38132:1;38121:9;38117:17;38110:47;38174:131;38300:4;38174:131;:::i;:::-;38166:139;;37893:419;;;:::o;38318:178::-;38458:30;38454:1;38446:6;38442:14;38435:54;38318:178;:::o;38502:366::-;38644:3;38665:67;38729:2;38724:3;38665:67;:::i;:::-;38658:74;;38741:93;38830:3;38741:93;:::i;:::-;38859:2;38854:3;38850:12;38843:19;;38502:366;;;:::o;38874:419::-;39040:4;39078:2;39067:9;39063:18;39055:26;;39127:9;39121:4;39117:20;39113:1;39102:9;39098:17;39091:47;39155:131;39281:4;39155:131;:::i;:::-;39147:139;;38874:419;;;:::o;39299:177::-;39439:29;39435:1;39427:6;39423:14;39416:53;39299:177;:::o;39482:366::-;39624:3;39645:67;39709:2;39704:3;39645:67;:::i;:::-;39638:74;;39721:93;39810:3;39721:93;:::i;:::-;39839:2;39834:3;39830:12;39823:19;;39482:366;;;:::o;39854:419::-;40020:4;40058:2;40047:9;40043:18;40035:26;;40107:9;40101:4;40097:20;40093:1;40082:9;40078:17;40071:47;40135:131;40261:4;40135:131;:::i;:::-;40127:139;;39854:419;;;:::o;40279:191::-;40319:4;40339:20;40357:1;40339:20;:::i;:::-;40334:25;;40373:20;40391:1;40373:20;:::i;:::-;40368:25;;40412:1;40409;40406:8;40403:34;;;40417:18;;:::i;:::-;40403:34;40462:1;40459;40455:9;40447:17;;40279:191;;;;:::o;40476:176::-;40616:28;40612:1;40604:6;40600:14;40593:52;40476:176;:::o;40658:366::-;40800:3;40821:67;40885:2;40880:3;40821:67;:::i;:::-;40814:74;;40897:93;40986:3;40897:93;:::i;:::-;41015:2;41010:3;41006:12;40999:19;;40658:366;;;:::o;41030:419::-;41196:4;41234:2;41223:9;41219:18;41211:26;;41283:9;41277:4;41273:20;41269:1;41258:9;41254:17;41247:47;41311:131;41437:4;41311:131;:::i;:::-;41303:139;;41030:419;;;:::o;41455:176::-;41487:1;41504:20;41522:1;41504:20;:::i;:::-;41499:25;;41538:20;41556:1;41538:20;:::i;:::-;41533:25;;41577:1;41567:35;;41582:18;;:::i;:::-;41567:35;41623:1;41620;41616:9;41611:14;;41455:176;;;;:::o;41637:180::-;41685:77;41682:1;41675:88;41782:4;41779:1;41772:15;41806:4;41803:1;41796:15;41823:98;41874:6;41908:5;41902:12;41892:22;;41823:98;;;:::o;41927:168::-;42010:11;42044:6;42039:3;42032:19;42084:4;42079:3;42075:14;42060:29;;41927:168;;;;:::o;42101:360::-;42187:3;42215:38;42247:5;42215:38;:::i;:::-;42269:70;42332:6;42327:3;42269:70;:::i;:::-;42262:77;;42348:52;42393:6;42388:3;42381:4;42374:5;42370:16;42348:52;:::i;:::-;42425:29;42447:6;42425:29;:::i;:::-;42420:3;42416:39;42409:46;;42191:270;42101:360;;;;:::o;42467:640::-;42662:4;42700:3;42689:9;42685:19;42677:27;;42714:71;42782:1;42771:9;42767:17;42758:6;42714:71;:::i;:::-;42795:72;42863:2;42852:9;42848:18;42839:6;42795:72;:::i;:::-;42877;42945:2;42934:9;42930:18;42921:6;42877:72;:::i;:::-;42996:9;42990:4;42986:20;42981:2;42970:9;42966:18;42959:48;43024:76;43095:4;43086:6;43024:76;:::i;:::-;43016:84;;42467:640;;;;;;;:::o;43113:141::-;43169:5;43200:6;43194:13;43185:22;;43216:32;43242:5;43216:32;:::i;:::-;43113:141;;;;:::o;43260:349::-;43329:6;43378:2;43366:9;43357:7;43353:23;43349:32;43346:119;;;43384:79;;:::i;:::-;43346:119;43504:1;43529:63;43584:7;43575:6;43564:9;43560:22;43529:63;:::i;:::-;43519:73;;43475:127;43260:349;;;;:::o;43615:182::-;43755:34;43751:1;43743:6;43739:14;43732:58;43615:182;:::o;43803:366::-;43945:3;43966:67;44030:2;44025:3;43966:67;:::i;:::-;43959:74;;44042:93;44131:3;44042:93;:::i;:::-;44160:2;44155:3;44151:12;44144:19;;43803:366;;;:::o;44175:419::-;44341:4;44379:2;44368:9;44364:18;44356:26;;44428:9;44422:4;44418:20;44414:1;44403:9;44399:17;44392:47;44456:131;44582:4;44456:131;:::i;:::-;44448:139;;44175:419;;;:::o;44600:178::-;44740:30;44736:1;44728:6;44724:14;44717:54;44600:178;:::o;44784:366::-;44926:3;44947:67;45011:2;45006:3;44947:67;:::i;:::-;44940:74;;45023:93;45112:3;45023:93;:::i;:::-;45141:2;45136:3;45132:12;45125:19;;44784:366;;;:::o;45156:419::-;45322:4;45360:2;45349:9;45345:18;45337:26;;45409:9;45403:4;45399:20;45395:1;45384:9;45380:17;45373:47;45437:131;45563:4;45437:131;:::i;:::-;45429:139;;45156:419;;;:::o

Swarm Source

ipfs://206aa55551947a359132ab6eeb5df0f70905208aae40dcb6616b3b777532fcfb
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.