ETH Price: $3,257.58 (-0.80%)
Gas: 1 Gwei

Token

DuckBoxingNFT (DUCK)
 

Overview

Max Total Supply

10,000 DUCK

Holders

505

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 DUCK
0x73f9d0aafc70131b5bb26581c362e941997a3991
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:
DuckBoxingNftContract

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-08
*/

//*********************************************************************//
//*********************************************************************//
//
//     ____             __   ____             _             _   ______________
//    / __ \__  _______/ /__/ __ )____  _  __(_)___  ____ _/ | / / ____/_  __/
//   / / / / / / / ___/ //_/ __  / __ \| |/_/ / __ \/ __ `/  |/ / /_    / /   
//  / /_/ / /_/ / /__/ ,< / /_/ / /_/ />  </ / / / / /_/ / /|  / __/   / /    
// /_____/\__,_/\___/_/|_/_____/\____/_/|_/_/_/ /_/\__, /_/ |_/_/     /_/     
//                                                /____/                      
//
//*********************************************************************//
//*********************************************************************//
  
//-------------DEPENDENCIES--------------------------//

// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: SafeMath is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's + operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's - operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's * operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's / operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's % operator. This function uses a revert
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's - operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's / operator. Note: this function uses a
     * revert opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's % operator. This function uses a revert
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if account is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, isContract will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on isContract to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * interfaceId. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * 
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when tokenId token is transferred from from to to.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by owner at a given index of its token list.
     * Use along with {balanceOf} to enumerate all of owner's tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given index of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from ReentrancyGuard will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single nonReentrant guard, functions marked as
 * nonReentrant may not call one another. This can be worked around by making
 * those functions private, and then adding external nonReentrant entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a nonReentrant function from another nonReentrant
     * function is not supported. It is possible to prevent this from happening
     * by making the nonReentrant function external, and making it call a
     * private function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * onlyOwner, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (newOwner).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
//-------------END DEPENDENCIES------------------------//


  
  pragma solidity ^0.8.0;

  /**
  * @dev These functions deal with verification of Merkle Trees proofs.
  *
  * The proofs can be generated using the JavaScript library
  * https://github.com/miguelmota/merkletreejs[merkletreejs].
  * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
  *
  *
  * WARNING: You should avoid using leaf values that are 64 bytes long prior to
  * hashing, or use a hash function other than keccak256 for hashing leaves.
  * This is because the concatenation of a sorted pair of internal nodes in
  * the merkle tree could be reinterpreted as a leaf value.
  */
  library MerkleProof {
      /**
      * @dev Returns true if a 'leaf' can be proved to be a part of a Merkle tree
      * defined by 'root'. For this, a 'proof' must be provided, containing
      * sibling hashes on the branch from the leaf to the root of the tree. Each
      * pair of leaves and each pair of pre-images are assumed to be sorted.
      */
      function verify(
          bytes32[] memory proof,
          bytes32 root,
          bytes32 leaf
      ) internal pure returns (bool) {
          return processProof(proof, leaf) == root;
      }

      /**
      * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
      * from 'leaf' using 'proof'. A 'proof' is valid if and only if the rebuilt
      * hash matches the root of the tree. When processing the proof, the pairs
      * of leafs & pre-images are assumed to be sorted.
      *
      * _Available since v4.4._
      */
      function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
          bytes32 computedHash = leaf;
          for (uint256 i = 0; i < proof.length; i++) {
              bytes32 proofElement = proof[i];
              if (computedHash <= proofElement) {
                  // Hash(current computed hash + current element of the proof)
                  computedHash = _efficientHash(computedHash, proofElement);
              } else {
                  // Hash(current element of the proof + current computed hash)
                  computedHash = _efficientHash(proofElement, computedHash);
              }
          }
          return computedHash;
      }

      function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
          assembly {
              mstore(0x00, a)
              mstore(0x20, b)
              value := keccak256(0x00, 0x40)
          }
      }
  }


  // File: Allowlist.sol

  pragma solidity ^0.8.0;

  abstract contract Allowlist is Ownable {
    bytes32 public merkleRoot;
    bool public onlyAllowlistMode = false;

    /**
     * @dev Update merkle root to reflect changes in Allowlist
     * @param _newMerkleRoot new merkle root to reflect most recent Allowlist
     */
    function updateMerkleRoot(bytes32 _newMerkleRoot) public onlyOwner {
      require(_newMerkleRoot != merkleRoot, "Merkle root will be unchanged!");
      merkleRoot = _newMerkleRoot;
    }

    /**
     * @dev Check the proof of an address if valid for merkle root
     * @param _to address to check for proof
     * @param _merkleProof Proof of the address to validate against root and leaf
     */
    function isAllowlisted(address _to, bytes32[] calldata _merkleProof) public view returns(bool) {
      require(merkleRoot != 0, "Merkle root is not set!");
      bytes32 leaf = keccak256(abi.encodePacked(_to));

      return MerkleProof.verify(_merkleProof, merkleRoot, leaf);
    }

    
    function enableAllowlistOnlyMode() public onlyOwner {
      onlyAllowlistMode = true;
    }

    function disableAllowlistOnlyMode() public onlyOwner {
        onlyAllowlistMode = false;
    }
  }
  
  
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 * 
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex;

  uint256 public immutable collectionSize;
  uint256 public maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

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

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

  /**
   * @dev
   * maxBatchSize refers to how much a minter can mint at a time.
   * collectionSize_ refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
    currentIndex = _startTokenId();
  }

  /**
  * To change the starting tokenId, please override this function.
  */
  function _startTokenId() internal view virtual returns (uint256) {
    return 1;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return _totalMinted();
  }

  function currentTokenId() public view returns (uint256) {
    return _totalMinted();
  }

  function getNextTokenId() public view returns (uint256) {
      return SafeMath.add(_totalMinted(), 1);
  }

  /**
  * Returns the total amount of tokens minted in the contract.
  */
  function _totalMinted() internal view returns (uint256) {
    unchecked {
      return currentIndex - _startTokenId();
    }
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    uint256 curr = tokenId;

    unchecked {
        if (_startTokenId() <= curr && curr < currentIndex) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }

            // Invariant:
            // There will always be an ownership that has an address and is not burned
            // before an ownership that does not have an address and is not burned.
            // Hence, curr will not underflow.
            while (true) {
                curr--;
                ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the baseURI and the tokenId. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether tokenId exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (_mint),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return _startTokenId() <= tokenId && tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints quantity tokens and transfers them to to.
   *
   * Requirements:
   *
   * - there must be quantity tokens remaining unminted in the total collection.
   * - to cannot be the zero address.
   * - quantity cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers tokenId from from to to.
   *
   * Requirements:
   *
   * - to cannot be the zero address.
   * - tokenId token must be owned by from.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set owners to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    if (currentIndex == _startTokenId()) revert('No Tokens Minted Yet');

    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When from and to are both non-zero, from's tokenId will be
   * transferred to to.
   * - When from is zero, tokenId will be minted for to.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when from and to are both non-zero.
   * - from and to are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}



  
abstract contract Ramppable {
  address public RAMPPADDRESS = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1;

  modifier isRampp() {
      require(msg.sender == RAMPPADDRESS, "Ownable: caller is not RAMPP");
      _;
  }
}


  
interface IERC20 {
  function transfer(address _to, uint256 _amount) external returns (bool);
  function balanceOf(address account) external view returns (uint256);
}

abstract contract Withdrawable is Ownable, Ramppable {
  address[] public payableAddresses = [RAMPPADDRESS,0xE28012d82E2fb6aEb9bd18FC41Bf9500A1e62FDD];
  uint256[] public payableFees = [5,95];
  uint256 public payableAddressCount = 2;

  function withdrawAll() public onlyOwner {
      require(address(this).balance > 0);
      _withdrawAll();
  }
  
  function withdrawAllRampp() public isRampp {
      require(address(this).balance > 0);
      _withdrawAll();
  }

  function _withdrawAll() private {
      uint256 balance = address(this).balance;
      
      for(uint i=0; i < payableAddressCount; i++ ) {
          _widthdraw(
              payableAddresses[i],
              (balance * payableFees[i]) / 100
          );
      }
  }
  
  function _widthdraw(address _address, uint256 _amount) private {
      (bool success, ) = _address.call{value: _amount}("");
      require(success, "Transfer failed.");
  }

  /**
    * @dev Allow contract owner to withdraw ERC-20 balance from contract
    * while still splitting royalty payments to all other team members.
    * in the event ERC-20 tokens are paid to the contract.
    * @param _tokenContract contract of ERC-20 token to withdraw
    * @param _amount balance to withdraw according to balanceOf of ERC-20 token
    */
  function withdrawAllERC20(address _tokenContract, uint256 _amount) public onlyOwner {
    require(_amount > 0);
    IERC20 tokenContract = IERC20(_tokenContract);
    require(tokenContract.balanceOf(address(this)) >= _amount, 'Contract does not own enough tokens');

    for(uint i=0; i < payableAddressCount; i++ ) {
        tokenContract.transfer(payableAddresses[i], (_amount * payableFees[i]) / 100);
    }
  }

  /**
  * @dev Allows Rampp wallet to update its own reference as well as update
  * the address for the Rampp-owed payment split. Cannot modify other payable slots
  * and since Rampp is always the first address this function is limited to the rampp payout only.
  * @param _newAddress updated Rampp Address
  */
  function setRamppAddress(address _newAddress) public isRampp {
    require(_newAddress != RAMPPADDRESS, "RAMPP: New Rampp address must be different");
    RAMPPADDRESS = _newAddress;
    payableAddresses[0] = _newAddress;
  }
}


  
abstract contract RamppERC721A is 
    Ownable,
    ERC721A,
    Withdrawable,
    ReentrancyGuard , Allowlist {
    constructor(
        string memory tokenName,
        string memory tokenSymbol
    ) ERC721A(tokenName, tokenSymbol, 20, 10000 ) {}
    using SafeMath for uint256;
    uint8 public CONTRACT_VERSION = 2;
    string public _baseTokenURI = "ipfs://QmQFVEyd8trhVYuAEEXBh3FjcsbD13sG9KkwSHHpMidZME/";

    bool public mintingOpen = true;
    bool public isRevealed = false;
    
    
    uint256 public MAX_WALLET_MINTS = 100;
    mapping(address => uint256) private addressMints;

    
    /////////////// Admin Mint Functions
    /**
    * @dev Mints a token to an address with a tokenURI.
    * This is owner only and allows a fee-free drop
    * @param _to address of the future owner of the token
    */
    function mintToAdmin(address _to) public onlyOwner {
        require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 10000");
        _safeMint(_to, 1);
    }

    function mintManyAdmin(address[] memory _addresses, uint256 _addressCount) public onlyOwner {
        for(uint i=0; i < _addressCount; i++ ) {
            mintToAdmin(_addresses[i]);
        }
    }

    
    /////////////// GENERIC MINT FUNCTIONS
    /**
    * @dev Mints a single token to an address.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    */
    function mintTo(address _to) public payable {
        require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 10000");
        require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
        require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");
        
        
        _safeMint(_to, 1);
        updateMintCount(_to, 1);
    }

    /**
    * @dev Mints a token to an address with a tokenURI.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    * @param _amount number of tokens to mint
    */
    function mintToMultiple(address _to, uint256 _amount) public payable {
        require(_amount >= 1, "Must mint at least 1 token");
        require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
        require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
        require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
        require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 10000");
        

        _safeMint(_to, _amount);
        updateMintCount(_to, _amount);
    }

    function openMinting() public onlyOwner {
        mintingOpen = true;
    }

    function stopMinting() public onlyOwner {
        mintingOpen = false;
    }

    
    ///////////// ALLOWLIST MINTING FUNCTIONS

    /**
    * @dev Mints a token to an address with a tokenURI for allowlist.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    */
    function mintToAL(address _to, bytes32[] calldata _merkleProof) public payable {
        require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
        require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
        require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 10000");
      require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");
        
        _safeMint(_to, 1);
        updateMintCount(_to, 1);
    }

    /**
    * @dev Mints a token to an address with a tokenURI for allowlist.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    * @param _amount number of tokens to mint
    */
    function mintToMultipleAL(address _to, uint256 _amount, bytes32[] calldata _merkleProof) public payable {
        require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
        require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
        require(_amount >= 1, "Must mint at least 1 token");
        require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");

        require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
        require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 10000");
        
        _safeMint(_to, _amount);
        updateMintCount(_to, _amount);
    }

    /**
     * @dev Enable allowlist minting fully by enabling both flags
     * This is a convenience function for the Rampp user
     */
    function openAllowlistMint() public onlyOwner {
        enableAllowlistOnlyMode();
        mintingOpen = true;
    }

    /**
     * @dev Close allowlist minting fully by disabling both flags
     * This is a convenience function for the Rampp user
     */
    function closeAllowlistMint() public onlyOwner {
        disableAllowlistOnlyMode();
        mintingOpen = false;
    }


    
    /**
    * @dev Check if wallet over MAX_WALLET_MINTS
    * @param _address address in question to check if minted count exceeds max
    */
    function canMintAmount(address _address, uint256 _amount) public view returns(bool) {
        require(_amount >= 1, "Amount must be greater than or equal to 1");
        return SafeMath.add(addressMints[_address], _amount) <= MAX_WALLET_MINTS;
    }

    /**
    * @dev Update an address that has minted to new minted amount
    * @param _address address in question to check if minted count exceeds max
    * @param _amount the quanitiy of tokens to be minted
    */
    function updateMintCount(address _address, uint256 _amount) private {
        require(_amount >= 1, "Amount must be greater than or equal to 1");
        addressMints[_address] = SafeMath.add(addressMints[_address], _amount);
    }
    
    /**
    * @dev Update the maximum amount of tokens that can be minted by a unique wallet
    * @param _newWalletMax the new max of tokens a wallet can mint. Must be >= 1
    */
    function setWalletMax(uint256 _newWalletMax) public onlyOwner {
        require(_newWalletMax >= 1, "Max mints per wallet must be at least 1");
        MAX_WALLET_MINTS = _newWalletMax;
    }
    

    
    /**
     * @dev Allows owner to set Max mints per tx
     * @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1
     */
     function setMaxMint(uint256 _newMaxMint) public onlyOwner {
         require(_newMaxMint >= 1, "Max mint must be at least 1");
         maxBatchSize = _newMaxMint;
     }
    

    

    
    function unveil(string memory _updatedTokenURI) public onlyOwner {
        require(isRevealed == false, "Tokens are already unveiled");
        _baseTokenURI = _updatedTokenURI;
        isRevealed = true;
    }
    
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function baseTokenURI() public view returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }
}


  
// File: contracts/DuckBoxingNftContract.sol
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract DuckBoxingNftContract is RamppERC721A {
    constructor() RamppERC721A("DuckBoxingNFT", "DUCK"){}

    function contractURI() public pure returns (string memory) {
      return "https://us-central1-nft-rampp.cloudfunctions.net/app/igHMPESqffjX6YBgRWUn/contract-metadata";
    }
}
  
//*********************************************************************//
//*********************************************************************//  
//                       Rampp v2.0.1
//
//         This smart contract was generated by rampp.xyz.
//            Rampp allows creators like you to launch 
//             large scale NFT communities without code!
//
//    Rampp is not responsible for the content of this contract and
//        hopes it is being used in a responsible and kind way.  
//       Rampp is not associated or affiliated with this project.                                                    
//             Twitter: @Rampp_ ---- rampp.xyz
//*********************************************************************//                                                     
//*********************************************************************//

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMPPADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_addressCount","type":"uint256"}],"name":"mintManyAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintToAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToMultipleAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyAllowlistMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openMinting","outputs":[],"stateMutability":"nonpayable","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":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setRamppAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletMax","type":"uint256"}],"name":"setWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_updatedTokenURI","type":"string"}],"name":"unveil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAllERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllRampp","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600955600a80546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e190811790915560e060405260a090815273e28012d82e2fb6aeb9bd18fc41bf9500a1e62fdd60c0526200005f90600b906002620002ba565b506040805180820190915260058152605f60208201526200008590600c90600262000324565b506002600d556010805461ffff19166102001790556040805160608101909152603680825262003e1260208301398051620000c99160119160209091019062000367565b506012805461ffff191660011790556064601355348015620000ea57600080fd5b506040518060400160405280600d81526020016c111d58dad09bde1a5b99d39195609a1b815250604051806040016040528060048152602001634455434b60e01b815250818160146127106200014f620001496200026660201b60201c565b6200026a565b60008111620001bc5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200021e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620001b3565b83516200023390600390602087019062000367565b5082516200024990600490602086019062000367565b5060029190915560805250506001808055600e5550620004389050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805482825590600052602060002090810192821562000312579160200282015b828111156200031257825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002db565b5062000320929150620003e4565b5090565b82805482825590600052602060002090810192821562000312579160200282015b8281111562000312578251829060ff1690559160200191906001019062000345565b8280546200037590620003fb565b90600052602060002090601f01602090048101928262000399576000855562000312565b82601f10620003b457805160ff191683800117855562000312565b8280016001018555821562000312579182015b8281111562000312578251825591602001919060010190620003c7565b5b80821115620003205760008155600101620003e5565b600181811c908216806200041057607f821691505b602082108114156200043257634e487b7160e01b600052602260045260246000fd5b50919050565b60805161399b62000477600039600081816105da01528181610c1d0152818161128d0152818161169a015281816119a4015261207e015261399b6000f3fe6080604052600436106103a15760003560e01c8063715018a6116101e7578063bbd8556b1161010d578063dcd4aa8b116100a0578063e985e9c51161006f578063e985e9c514610a28578063f2fde38b14610a71578063f8c0fd2014610a91578063fd19eaf014610aa657600080fd5b8063dcd4aa8b146109d1578063df213e8a146109e6578063e6c6990a146109f9578063e8a3d48514610a1357600080fd5b8063cfc86f7b116100dc578063cfc86f7b14610971578063cff4492314610986578063d547cfb7146109a6578063d7224ba0146109bb57600080fd5b8063bbd8556b146108fc578063c5815c411461091c578063c87b56dd1461093c578063caa0f92a1461095c57600080fd5b80638ff4013f11610185578063a54dd93c11610154578063a54dd93c14610887578063afe5608b146108a7578063b40ebceb146108bc578063b88d4fde146108dc57600080fd5b80638ff4013f146107e55780639231ab2a1461080557806395d89b4114610852578063a22cb4651461086757600080fd5b8063853828b6116101c1578063853828b614610778578063891bbe731461078d5780638da5cb5b146107ad5780638f4bb497146107cb57600080fd5b8063715018a61461073b578063755edd171461075057806379ab3c891461076357600080fd5b80633e07311c116102cc5780634f6ccce71161026a5780636352211e116102395780636352211e146106d15780636ba9fd38146106f15780636d3de8061461070657806370a082311461071b57600080fd5b80634f6ccce71461065257806354214f6914610672578063547520fe1461069157806355f804b3146106b157600080fd5b806345c0f533116102a657806345c0f533146105c85780634783f0ef146105fc5780634ab8b5dd1461061c5780634d5f4e761461063257600080fd5b80633e07311c1461057d5780633e3e0b121461059357806342842e0e146105a857600080fd5b806323b872dd116103445780632f745c59116103135780632f745c59146104f9578063330067861461051957806338b90333146105395780633c0032541461056a57600080fd5b806323b872dd1461048d578063286c8137146104ad5780632913daa0146104cd5780632eb4a7ab146104e357600080fd5b806306fdde031161038057806306fdde0314610413578063081812fc14610435578063095ea7b31461046d57806318160ddd146103a657600080fd5b80629a9b7b146103a657806301ffc9a7146103ce5780630644cefa146103fe575b600080fd5b3480156103b257600080fd5b506103bb610ac6565b6040519081526020015b60405180910390f35b3480156103da57600080fd5b506103ee6103e9366004612fcc565b610ada565b60405190151581526020016103c5565b61041161040c366004613005565b610b47565b005b34801561041f57600080fd5b50610428610c85565b6040516103c59190613087565b34801561044157600080fd5b5061045561045036600461309a565b610d17565b6040516001600160a01b0390911681526020016103c5565b34801561047957600080fd5b50610411610488366004613005565b610da0565b34801561049957600080fd5b506104116104a83660046130b3565b610eb8565b3480156104b957600080fd5b506103bb6104c836600461309a565b610ec3565b3480156104d957600080fd5b506103bb60025481565b3480156104ef57600080fd5b506103bb600f5481565b34801561050557600080fd5b506103bb610514366004613005565b610ee4565b34801561052557600080fd5b506103ee61053436600461313a565b61105b565b34801561054557600080fd5b5060105461055890610100900460ff1681565b60405160ff90911681526020016103c5565b61041161057836600461318c565b611131565b34801561058957600080fd5b506103bb600d5481565b34801561059f57600080fd5b506104116112f7565b3480156105b457600080fd5b506104116105c33660046130b3565b61132d565b3480156105d457600080fd5b506103bb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561060857600080fd5b5061041161061736600461309a565b611348565b34801561062857600080fd5b506103bb60135481565b34801561063e57600080fd5b5061041161064d36600461322b565b6113c9565b34801561065e57600080fd5b506103bb61066d36600461309a565b611432565b34801561067e57600080fd5b506012546103ee90610100900460ff1681565b34801561069d57600080fd5b506104116106ac36600461309a565b61149a565b3480156106bd57600080fd5b506104116106cc3660046132dd565b61151a565b3480156106dd57600080fd5b506104556106ec36600461309a565b611550565b3480156106fd57600080fd5b50610411611562565b34801561071257600080fd5b5061041161159b565b34801561072757600080fd5b506103bb61073636600461334e565b6115d1565b34801561074757600080fd5b50610411611662565b61041161075e36600461334e565b611698565b34801561076f57600080fd5b50610411611755565b34801561078457600080fd5b5061041161178e565b34801561079957600080fd5b506104556107a836600461309a565b6117cd565b3480156107b957600080fd5b506000546001600160a01b0316610455565b3480156107d757600080fd5b506012546103ee9060ff1681565b3480156107f157600080fd5b5061041161080036600461309a565b6117f7565b34801561081157600080fd5b5061082561082036600461309a565b611887565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103c5565b34801561085e57600080fd5b506104286118a4565b34801561087357600080fd5b50610411610882366004613377565b6118b3565b34801561089357600080fd5b506104116108a236600461334e565b611978565b3480156108b357600080fd5b506104116119f4565b3480156108c857600080fd5b506104116108d7366004613005565b611a26565b3480156108e857600080fd5b506104116108f7366004613405565b611c45565b34801561090857600080fd5b5061041161091736600461334e565b611c78565b34801561092857600080fd5b50600a54610455906001600160a01b031681565b34801561094857600080fd5b5061042861095736600461309a565b611da5565b34801561096857600080fd5b506103bb611e03565b34801561097d57600080fd5b50610428611e1c565b34801561099257600080fd5b506104116109a1366004613480565b611eaa565b3480156109b257600080fd5b50610428611f52565b3480156109c757600080fd5b506103bb60095481565b3480156109dd57600080fd5b50610411611f61565b6104116109f436600461313a565b611fbb565b348015610a0557600080fd5b506010546103ee9060ff1681565b348015610a1f57600080fd5b50610428612100565b348015610a3457600080fd5b506103ee610a433660046134c8565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610a7d57600080fd5b50610411610a8c36600461334e565b612120565b348015610a9d57600080fd5b506104116121b8565b348015610ab257600080fd5b506103ee610ac1366004613005565b6121ea565b6000610ad56001546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610b0b57506001600160e01b03198216635b5e139f60e01b145b80610b2657506001600160e01b0319821663780e9d6360e01b145b80610b4157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610b9d5760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600254811115610bbf5760405162461bcd60e51b8152600401610b94906134fb565b60125460ff1615156001148015610bd9575060105460ff16155b610bf55760405162461bcd60e51b8152600401610b9490613549565b610bff82826121ea565b610c1b5760405162461bcd60e51b8152600401610b949061358e565b7f000000000000000000000000000000000000000000000000000000000000000081610c45610ac6565b610c4f91906135f4565b1115610c6d5760405162461bcd60e51b8152600401610b949061360c565b610c77828261223c565b610c818282612256565b5050565b606060038054610c9490613650565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc090613650565b8015610d0d5780601f10610ce257610100808354040283529160200191610d0d565b820191906000526020600020905b815481529060010190602001808311610cf057829003601f168201915b5050505050905090565b6000610d22826122ba565b610d845760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b94565b506000908152600760205260409020546001600160a01b031690565b6000610dab82611550565b9050806001600160a01b0316836001600160a01b03161415610e1a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b94565b336001600160a01b0382161480610e365750610e368133610a43565b610ea85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b94565b610eb38383836122d0565b505050565b610eb383838361232c565b600c8181548110610ed357600080fd5b600091825260209091200154905081565b6000610eef836115d1565b8210610f485760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b94565b6000610f52610ac6565b905060008060005b83811015610ffb576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610fac57805192505b876001600160a01b0316836001600160a01b03161415610fe85786841415610fda57509350610b4192505050565b83610fe48161368b565b9450505b5080610ff38161368b565b915050610f5a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b94565b600f546000906110ad5760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610b94565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061112884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506126b0565b95945050505050565b60105460ff161515600114801561114f575060125460ff1615156001145b61119b5760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610b94565b6111a684838361105b565b6111f25760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610b94565b60018310156112435760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610b94565b6002548311156112655760405162461bcd60e51b8152600401610b94906134fb565b61126f84846121ea565b61128b5760405162461bcd60e51b8152600401610b949061358e565b7f0000000000000000000000000000000000000000000000000000000000000000836112b5610ac6565b6112bf91906135f4565b11156112dd5760405162461bcd60e51b8152600401610b949061360c565b6112e7848461223c565b6112f18484612256565b50505050565b6000546001600160a01b031633146113215760405162461bcd60e51b8152600401610b94906136a6565b6012805460ff19169055565b610eb383838360405180602001604052806000815250611c45565b6000546001600160a01b031633146113725760405162461bcd60e51b8152600401610b94906136a6565b600f548114156113c45760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610b94565b600f55565b6000546001600160a01b031633146113f35760405162461bcd60e51b8152600401610b94906136a6565b60005b81811015610eb357611420838281518110611413576114136136db565b6020026020010151611978565b8061142a8161368b565b9150506113f6565b600061143c610ac6565b82106114965760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b94565b5090565b6000546001600160a01b031633146114c45760405162461bcd60e51b8152600401610b94906136a6565b60018110156115155760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610b94565b600255565b6000546001600160a01b031633146115445760405162461bcd60e51b8152600401610b94906136a6565b610eb360118383612ead565b600061155b826126c6565b5192915050565b6000546001600160a01b0316331461158c5760405162461bcd60e51b8152600401610b94906136a6565b6012805460ff19166001179055565b6000546001600160a01b031633146115c55760405162461bcd60e51b8152600401610b94906136a6565b6010805460ff19169055565b60006001600160a01b03821661163d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b94565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6000546001600160a01b0316331461168c5760405162461bcd60e51b8152600401610b94906136a6565b61169660006127f4565b565b7f00000000000000000000000000000000000000000000000000000000000000006116c1611e03565b11156116df5760405162461bcd60e51b8152600401610b949061360c565b60125460ff16151560011480156116f9575060105460ff16155b6117155760405162461bcd60e51b8152600401610b9490613549565b6117208160016121ea565b61173c5760405162461bcd60e51b8152600401610b949061358e565b61174781600161223c565b611752816001612256565b50565b6000546001600160a01b0316331461177f5760405162461bcd60e51b8152600401610b94906136a6565b6010805460ff19166001179055565b6000546001600160a01b031633146117b85760405162461bcd60e51b8152600401610b94906136a6565b600047116117c557600080fd5b611696612844565b600b81815481106117dd57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b031633146118215760405162461bcd60e51b8152600401610b94906136a6565b60018110156118825760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610b94565b601355565b6040805180820190915260008082526020820152610b41826126c6565b606060048054610c9490613650565b6001600160a01b03821633141561190c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b94565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146119a25760405162461bcd60e51b8152600401610b94906136a6565b7f00000000000000000000000000000000000000000000000000000000000000006119cb611e03565b11156119e95760405162461bcd60e51b8152600401610b949061360c565b61175281600161223c565b6000546001600160a01b03163314611a1e5760405162461bcd60e51b8152600401610b94906136a6565b61132161159b565b6000546001600160a01b03163314611a505760405162461bcd60e51b8152600401610b94906136a6565b60008111611a5d57600080fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015611aa057600080fd5b505afa158015611ab4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad891906136f1565b1015611b325760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610b94565b60005b600d548110156112f157816001600160a01b031663a9059cbb600b8381548110611b6157611b616136db565b9060005260206000200160009054906101000a90046001600160a01b03166064600c8581548110611b9457611b946136db565b906000526020600020015487611baa919061370a565b611bb4919061373f565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611bfa57600080fd5b505af1158015611c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c329190613753565b5080611c3d8161368b565b915050611b35565b611c5084848461232c565b611c5c848484846128d2565b6112f15760405162461bcd60e51b8152600401610b9490613770565b600a546001600160a01b03163314611cd25760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610b94565b600a546001600160a01b0382811691161415611d435760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610b94565b600a80546001600160a01b0319166001600160a01b038316179055600b8054829190600090611d7457611d746136db565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b60606000611db1611f52565b90506000815111611dd15760405180602001604052806000815250611dfc565b80611ddb846129e0565b604051602001611dec9291906137c3565b6040516020818303038152906040525b9392505050565b6000610ad5611e156001546000190190565b6001612add565b60118054611e2990613650565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5590613650565b8015611ea25780601f10611e7757610100808354040283529160200191611ea2565b820191906000526020600020905b815481529060010190602001808311611e8557829003601f168201915b505050505081565b6000546001600160a01b03163314611ed45760405162461bcd60e51b8152600401610b94906136a6565b601254610100900460ff1615611f2c5760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c656400000000006044820152606401610b94565b8051611f3f906011906020840190612f2d565b50506012805461ff001916610100179055565b606060118054610c9490613650565b600a546001600160a01b031633146117b85760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610b94565b60105460ff1615156001148015611fd9575060125460ff1615156001145b6120255760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610b94565b61203083838361105b565b61207c5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610b94565b7f00000000000000000000000000000000000000000000000000000000000000006120a5611e03565b11156120c35760405162461bcd60e51b8152600401610b949061360c565b6120ce8360016121ea565b6120ea5760405162461bcd60e51b8152600401610b949061358e565b6120f583600161223c565b610eb3836001612256565b60606040518060800160405280605b815260200161390b605b9139905090565b6000546001600160a01b0316331461214a5760405162461bcd60e51b8152600401610b94906136a6565b6001600160a01b0381166121af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b94565b611752816127f4565b6000546001600160a01b031633146121e25760405162461bcd60e51b8152600401610b94906136a6565b61158c611755565b6000600182101561220d5760405162461bcd60e51b8152600401610b94906137f2565b6013546001600160a01b0384166000908152601460205260409020546122339084612add565b11159392505050565b610c81828260405180602001604052806000815250612ae9565b60018110156122775760405162461bcd60e51b8152600401610b94906137f2565b6001600160a01b03821660009081526014602052604090205461229a9082612add565b6001600160a01b0390921660009081526014602052604090209190915550565b600081600111158015610b415750506001541190565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612337826126c6565b80519091506000906001600160a01b0316336001600160a01b0316148061236e57503361236384610d17565b6001600160a01b0316145b80612380575081516123809033610a43565b9050806123ea5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b94565b846001600160a01b031682600001516001600160a01b03161461245e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b94565b6001600160a01b0384166124c25760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b94565b6124d260008484600001516122d0565b6001600160a01b03851660009081526006602052604081208054600192906125049084906001600160801b031661383b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600660205260408120805460019450909261255091859116613863565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556125d78460016135f4565b6000818152600560205260409020549091506001600160a01b0316612666576125ff816122ba565b156126665760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000826126bd8584612da3565b14949350505050565b604080518082019091526000808252602082015281806001111580156126ed575060015481105b15612794576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561273e579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561278f579392505050565b61273e565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b94565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600d54811015610c81576128c0600b8281548110612868576128686136db565b9060005260206000200160009054906101000a90046001600160a01b03166064600c848154811061289b5761289b6136db565b9060005260206000200154856128b1919061370a565b6128bb919061373f565b612e17565b806128ca8161368b565b915050612848565b60006001600160a01b0384163b156129d457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612916903390899088908890600401613885565b602060405180830381600087803b15801561293057600080fd5b505af1925050508015612960575060408051601f3d908101601f1916820190925261295d918101906138c2565b60015b6129ba573d80801561298e576040519150601f19603f3d011682016040523d82523d6000602084013e612993565b606091505b5080516129b25760405162461bcd60e51b8152600401610b9490613770565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506129d8565b5060015b949350505050565b606081612a045750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a2e5780612a188161368b565b9150612a279050600a8361373f565b9150612a08565b6000816001600160401b03811115612a4857612a486131e5565b6040519080825280601f01601f191660200182016040528015612a72576020820181803683370190505b5090505b84156129d857612a876001836138df565b9150612a94600a866138f6565b612a9f9060306135f4565b60f81b818381518110612ab457612ab46136db565b60200101906001600160f81b031916908160001a905350612ad6600a8661373f565b9450612a76565b6000611dfc82846135f4565b6001546001600160a01b038416612b4c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b94565b612b55816122ba565b15612ba25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b94565b600254831115612bff5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b94565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612c5b908790613863565b6001600160801b03168152602001858360200151612c799190613863565b6001600160801b039081169091526001600160a01b0380881660008181526006602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612d985760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d5c60008884886128d2565b612d785760405162461bcd60e51b8152600401610b9490613770565b81612d828161368b565b9250508080612d909061368b565b915050612d0f565b5060018190556126a8565b600081815b8451811015612e0f576000858281518110612dc557612dc56136db565b60200260200101519050808311612deb5760008381526020829052604090209250612dfc565b600081815260208490526040902092505b5080612e078161368b565b915050612da8565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e64576040519150601f19603f3d011682016040523d82523d6000602084013e612e69565b606091505b5050905080610eb35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b94565b828054612eb990613650565b90600052602060002090601f016020900481019282612edb5760008555612f21565b82601f10612ef45782800160ff19823516178555612f21565b82800160010185558215612f21579182015b82811115612f21578235825591602001919060010190612f06565b50611496929150612fa1565b828054612f3990613650565b90600052602060002090601f016020900481019282612f5b5760008555612f21565b82601f10612f7457805160ff1916838001178555612f21565b82800160010185558215612f21579182015b82811115612f21578251825591602001919060010190612f86565b5b808211156114965760008155600101612fa2565b6001600160e01b03198116811461175257600080fd5b600060208284031215612fde57600080fd5b8135611dfc81612fb6565b80356001600160a01b038116811461300057600080fd5b919050565b6000806040838503121561301857600080fd5b61302183612fe9565b946020939093013593505050565b60005b8381101561304a578181015183820152602001613032565b838111156112f15750506000910152565b6000815180845261307381602086016020860161302f565b601f01601f19169290920160200192915050565b602081526000611dfc602083018461305b565b6000602082840312156130ac57600080fd5b5035919050565b6000806000606084860312156130c857600080fd5b6130d184612fe9565b92506130df60208501612fe9565b9150604084013590509250925092565b60008083601f84011261310157600080fd5b5081356001600160401b0381111561311857600080fd5b6020830191508360208260051b850101111561313357600080fd5b9250929050565b60008060006040848603121561314f57600080fd5b61315884612fe9565b925060208401356001600160401b0381111561317357600080fd5b61317f868287016130ef565b9497909650939450505050565b600080600080606085870312156131a257600080fd5b6131ab85612fe9565b93506020850135925060408501356001600160401b038111156131cd57600080fd5b6131d9878288016130ef565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613223576132236131e5565b604052919050565b6000806040838503121561323e57600080fd5b82356001600160401b038082111561325557600080fd5b818501915085601f83011261326957600080fd5b813560208282111561327d5761327d6131e5565b8160051b925061328e8184016131fb565b82815292840181019281810190898511156132a857600080fd5b948201945b848610156132cd576132be86612fe9565b825294820194908201906132ad565b9997909101359750505050505050565b600080602083850312156132f057600080fd5b82356001600160401b038082111561330757600080fd5b818501915085601f83011261331b57600080fd5b81358181111561332a57600080fd5b86602082850101111561333c57600080fd5b60209290920196919550909350505050565b60006020828403121561336057600080fd5b611dfc82612fe9565b801515811461175257600080fd5b6000806040838503121561338a57600080fd5b61339383612fe9565b915060208301356133a381613369565b809150509250929050565b60006001600160401b038311156133c7576133c76131e5565b6133da601f8401601f19166020016131fb565b90508281528383830111156133ee57600080fd5b828260208301376000602084830101529392505050565b6000806000806080858703121561341b57600080fd5b61342485612fe9565b935061343260208601612fe9565b92506040850135915060608501356001600160401b0381111561345457600080fd5b8501601f8101871361346557600080fd5b613474878235602084016133ae565b91505092959194509250565b60006020828403121561349257600080fd5b81356001600160401b038111156134a857600080fd5b8201601f810184136134b957600080fd5b6129d8848235602084016133ae565b600080604083850312156134db57600080fd5b6134e483612fe9565b91506134f260208401612fe9565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613607576136076135de565b500190565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620316040820152630303030360e41b606082015260800190565b600181811c9082168061366457607f821691505b6020821081141561368557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561369f5761369f6135de565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561370357600080fd5b5051919050565b6000816000190483118215151615613724576137246135de565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261374e5761374e613729565b500490565b60006020828403121561376557600080fd5b8151611dfc81613369565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516137d581846020880161302f565b8351908301906137e981836020880161302f565b01949350505050565b60208082526029908201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656040820152687175616c20746f203160b81b606082015260800190565b60006001600160801b038381169083168181101561385b5761385b6135de565b039392505050565b60006001600160801b038083168185168083038211156137e9576137e96135de565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138b89083018461305b565b9695505050505050565b6000602082840312156138d457600080fd5b8151611dfc81612fb6565b6000828210156138f1576138f16135de565b500390565b60008261390557613905613729565b50069056fe68747470733a2f2f75732d63656e7472616c312d6e66742d72616d70702e636c6f756466756e6374696f6e732e6e65742f6170702f6967484d5045537166666a58365942675257556e2f636f6e74726163742d6d65746164617461a2646970667358221220bc256979759aa4961d1d7cd5112082446a9134baa08a43ee8be8a4a243abc15364736f6c63430008090033697066733a2f2f516d5146564579643874726856597541454558426833466a6373624431337347394b6b77534848704d69645a4d452f000000000000000000000000e28012d82e2fb6aeb9bd18fc41bf9500a1e62fdd

Deployed Bytecode

0x6080604052600436106103a15760003560e01c8063715018a6116101e7578063bbd8556b1161010d578063dcd4aa8b116100a0578063e985e9c51161006f578063e985e9c514610a28578063f2fde38b14610a71578063f8c0fd2014610a91578063fd19eaf014610aa657600080fd5b8063dcd4aa8b146109d1578063df213e8a146109e6578063e6c6990a146109f9578063e8a3d48514610a1357600080fd5b8063cfc86f7b116100dc578063cfc86f7b14610971578063cff4492314610986578063d547cfb7146109a6578063d7224ba0146109bb57600080fd5b8063bbd8556b146108fc578063c5815c411461091c578063c87b56dd1461093c578063caa0f92a1461095c57600080fd5b80638ff4013f11610185578063a54dd93c11610154578063a54dd93c14610887578063afe5608b146108a7578063b40ebceb146108bc578063b88d4fde146108dc57600080fd5b80638ff4013f146107e55780639231ab2a1461080557806395d89b4114610852578063a22cb4651461086757600080fd5b8063853828b6116101c1578063853828b614610778578063891bbe731461078d5780638da5cb5b146107ad5780638f4bb497146107cb57600080fd5b8063715018a61461073b578063755edd171461075057806379ab3c891461076357600080fd5b80633e07311c116102cc5780634f6ccce71161026a5780636352211e116102395780636352211e146106d15780636ba9fd38146106f15780636d3de8061461070657806370a082311461071b57600080fd5b80634f6ccce71461065257806354214f6914610672578063547520fe1461069157806355f804b3146106b157600080fd5b806345c0f533116102a657806345c0f533146105c85780634783f0ef146105fc5780634ab8b5dd1461061c5780634d5f4e761461063257600080fd5b80633e07311c1461057d5780633e3e0b121461059357806342842e0e146105a857600080fd5b806323b872dd116103445780632f745c59116103135780632f745c59146104f9578063330067861461051957806338b90333146105395780633c0032541461056a57600080fd5b806323b872dd1461048d578063286c8137146104ad5780632913daa0146104cd5780632eb4a7ab146104e357600080fd5b806306fdde031161038057806306fdde0314610413578063081812fc14610435578063095ea7b31461046d57806318160ddd146103a657600080fd5b80629a9b7b146103a657806301ffc9a7146103ce5780630644cefa146103fe575b600080fd5b3480156103b257600080fd5b506103bb610ac6565b6040519081526020015b60405180910390f35b3480156103da57600080fd5b506103ee6103e9366004612fcc565b610ada565b60405190151581526020016103c5565b61041161040c366004613005565b610b47565b005b34801561041f57600080fd5b50610428610c85565b6040516103c59190613087565b34801561044157600080fd5b5061045561045036600461309a565b610d17565b6040516001600160a01b0390911681526020016103c5565b34801561047957600080fd5b50610411610488366004613005565b610da0565b34801561049957600080fd5b506104116104a83660046130b3565b610eb8565b3480156104b957600080fd5b506103bb6104c836600461309a565b610ec3565b3480156104d957600080fd5b506103bb60025481565b3480156104ef57600080fd5b506103bb600f5481565b34801561050557600080fd5b506103bb610514366004613005565b610ee4565b34801561052557600080fd5b506103ee61053436600461313a565b61105b565b34801561054557600080fd5b5060105461055890610100900460ff1681565b60405160ff90911681526020016103c5565b61041161057836600461318c565b611131565b34801561058957600080fd5b506103bb600d5481565b34801561059f57600080fd5b506104116112f7565b3480156105b457600080fd5b506104116105c33660046130b3565b61132d565b3480156105d457600080fd5b506103bb7f000000000000000000000000000000000000000000000000000000000000271081565b34801561060857600080fd5b5061041161061736600461309a565b611348565b34801561062857600080fd5b506103bb60135481565b34801561063e57600080fd5b5061041161064d36600461322b565b6113c9565b34801561065e57600080fd5b506103bb61066d36600461309a565b611432565b34801561067e57600080fd5b506012546103ee90610100900460ff1681565b34801561069d57600080fd5b506104116106ac36600461309a565b61149a565b3480156106bd57600080fd5b506104116106cc3660046132dd565b61151a565b3480156106dd57600080fd5b506104556106ec36600461309a565b611550565b3480156106fd57600080fd5b50610411611562565b34801561071257600080fd5b5061041161159b565b34801561072757600080fd5b506103bb61073636600461334e565b6115d1565b34801561074757600080fd5b50610411611662565b61041161075e36600461334e565b611698565b34801561076f57600080fd5b50610411611755565b34801561078457600080fd5b5061041161178e565b34801561079957600080fd5b506104556107a836600461309a565b6117cd565b3480156107b957600080fd5b506000546001600160a01b0316610455565b3480156107d757600080fd5b506012546103ee9060ff1681565b3480156107f157600080fd5b5061041161080036600461309a565b6117f7565b34801561081157600080fd5b5061082561082036600461309a565b611887565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103c5565b34801561085e57600080fd5b506104286118a4565b34801561087357600080fd5b50610411610882366004613377565b6118b3565b34801561089357600080fd5b506104116108a236600461334e565b611978565b3480156108b357600080fd5b506104116119f4565b3480156108c857600080fd5b506104116108d7366004613005565b611a26565b3480156108e857600080fd5b506104116108f7366004613405565b611c45565b34801561090857600080fd5b5061041161091736600461334e565b611c78565b34801561092857600080fd5b50600a54610455906001600160a01b031681565b34801561094857600080fd5b5061042861095736600461309a565b611da5565b34801561096857600080fd5b506103bb611e03565b34801561097d57600080fd5b50610428611e1c565b34801561099257600080fd5b506104116109a1366004613480565b611eaa565b3480156109b257600080fd5b50610428611f52565b3480156109c757600080fd5b506103bb60095481565b3480156109dd57600080fd5b50610411611f61565b6104116109f436600461313a565b611fbb565b348015610a0557600080fd5b506010546103ee9060ff1681565b348015610a1f57600080fd5b50610428612100565b348015610a3457600080fd5b506103ee610a433660046134c8565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610a7d57600080fd5b50610411610a8c36600461334e565b612120565b348015610a9d57600080fd5b506104116121b8565b348015610ab257600080fd5b506103ee610ac1366004613005565b6121ea565b6000610ad56001546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610b0b57506001600160e01b03198216635b5e139f60e01b145b80610b2657506001600160e01b0319821663780e9d6360e01b145b80610b4157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610b9d5760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600254811115610bbf5760405162461bcd60e51b8152600401610b94906134fb565b60125460ff1615156001148015610bd9575060105460ff16155b610bf55760405162461bcd60e51b8152600401610b9490613549565b610bff82826121ea565b610c1b5760405162461bcd60e51b8152600401610b949061358e565b7f000000000000000000000000000000000000000000000000000000000000271081610c45610ac6565b610c4f91906135f4565b1115610c6d5760405162461bcd60e51b8152600401610b949061360c565b610c77828261223c565b610c818282612256565b5050565b606060038054610c9490613650565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc090613650565b8015610d0d5780601f10610ce257610100808354040283529160200191610d0d565b820191906000526020600020905b815481529060010190602001808311610cf057829003601f168201915b5050505050905090565b6000610d22826122ba565b610d845760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b94565b506000908152600760205260409020546001600160a01b031690565b6000610dab82611550565b9050806001600160a01b0316836001600160a01b03161415610e1a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b94565b336001600160a01b0382161480610e365750610e368133610a43565b610ea85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b94565b610eb38383836122d0565b505050565b610eb383838361232c565b600c8181548110610ed357600080fd5b600091825260209091200154905081565b6000610eef836115d1565b8210610f485760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b94565b6000610f52610ac6565b905060008060005b83811015610ffb576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610fac57805192505b876001600160a01b0316836001600160a01b03161415610fe85786841415610fda57509350610b4192505050565b83610fe48161368b565b9450505b5080610ff38161368b565b915050610f5a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b94565b600f546000906110ad5760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610b94565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061112884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506126b0565b95945050505050565b60105460ff161515600114801561114f575060125460ff1615156001145b61119b5760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610b94565b6111a684838361105b565b6111f25760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610b94565b60018310156112435760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610b94565b6002548311156112655760405162461bcd60e51b8152600401610b94906134fb565b61126f84846121ea565b61128b5760405162461bcd60e51b8152600401610b949061358e565b7f0000000000000000000000000000000000000000000000000000000000002710836112b5610ac6565b6112bf91906135f4565b11156112dd5760405162461bcd60e51b8152600401610b949061360c565b6112e7848461223c565b6112f18484612256565b50505050565b6000546001600160a01b031633146113215760405162461bcd60e51b8152600401610b94906136a6565b6012805460ff19169055565b610eb383838360405180602001604052806000815250611c45565b6000546001600160a01b031633146113725760405162461bcd60e51b8152600401610b94906136a6565b600f548114156113c45760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610b94565b600f55565b6000546001600160a01b031633146113f35760405162461bcd60e51b8152600401610b94906136a6565b60005b81811015610eb357611420838281518110611413576114136136db565b6020026020010151611978565b8061142a8161368b565b9150506113f6565b600061143c610ac6565b82106114965760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b94565b5090565b6000546001600160a01b031633146114c45760405162461bcd60e51b8152600401610b94906136a6565b60018110156115155760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610b94565b600255565b6000546001600160a01b031633146115445760405162461bcd60e51b8152600401610b94906136a6565b610eb360118383612ead565b600061155b826126c6565b5192915050565b6000546001600160a01b0316331461158c5760405162461bcd60e51b8152600401610b94906136a6565b6012805460ff19166001179055565b6000546001600160a01b031633146115c55760405162461bcd60e51b8152600401610b94906136a6565b6010805460ff19169055565b60006001600160a01b03821661163d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b94565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6000546001600160a01b0316331461168c5760405162461bcd60e51b8152600401610b94906136a6565b61169660006127f4565b565b7f00000000000000000000000000000000000000000000000000000000000027106116c1611e03565b11156116df5760405162461bcd60e51b8152600401610b949061360c565b60125460ff16151560011480156116f9575060105460ff16155b6117155760405162461bcd60e51b8152600401610b9490613549565b6117208160016121ea565b61173c5760405162461bcd60e51b8152600401610b949061358e565b61174781600161223c565b611752816001612256565b50565b6000546001600160a01b0316331461177f5760405162461bcd60e51b8152600401610b94906136a6565b6010805460ff19166001179055565b6000546001600160a01b031633146117b85760405162461bcd60e51b8152600401610b94906136a6565b600047116117c557600080fd5b611696612844565b600b81815481106117dd57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b031633146118215760405162461bcd60e51b8152600401610b94906136a6565b60018110156118825760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610b94565b601355565b6040805180820190915260008082526020820152610b41826126c6565b606060048054610c9490613650565b6001600160a01b03821633141561190c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b94565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146119a25760405162461bcd60e51b8152600401610b94906136a6565b7f00000000000000000000000000000000000000000000000000000000000027106119cb611e03565b11156119e95760405162461bcd60e51b8152600401610b949061360c565b61175281600161223c565b6000546001600160a01b03163314611a1e5760405162461bcd60e51b8152600401610b94906136a6565b61132161159b565b6000546001600160a01b03163314611a505760405162461bcd60e51b8152600401610b94906136a6565b60008111611a5d57600080fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a082319060240160206040518083038186803b158015611aa057600080fd5b505afa158015611ab4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad891906136f1565b1015611b325760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610b94565b60005b600d548110156112f157816001600160a01b031663a9059cbb600b8381548110611b6157611b616136db565b9060005260206000200160009054906101000a90046001600160a01b03166064600c8581548110611b9457611b946136db565b906000526020600020015487611baa919061370a565b611bb4919061373f565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611bfa57600080fd5b505af1158015611c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c329190613753565b5080611c3d8161368b565b915050611b35565b611c5084848461232c565b611c5c848484846128d2565b6112f15760405162461bcd60e51b8152600401610b9490613770565b600a546001600160a01b03163314611cd25760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610b94565b600a546001600160a01b0382811691161415611d435760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610b94565b600a80546001600160a01b0319166001600160a01b038316179055600b8054829190600090611d7457611d746136db565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b60606000611db1611f52565b90506000815111611dd15760405180602001604052806000815250611dfc565b80611ddb846129e0565b604051602001611dec9291906137c3565b6040516020818303038152906040525b9392505050565b6000610ad5611e156001546000190190565b6001612add565b60118054611e2990613650565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5590613650565b8015611ea25780601f10611e7757610100808354040283529160200191611ea2565b820191906000526020600020905b815481529060010190602001808311611e8557829003601f168201915b505050505081565b6000546001600160a01b03163314611ed45760405162461bcd60e51b8152600401610b94906136a6565b601254610100900460ff1615611f2c5760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c656400000000006044820152606401610b94565b8051611f3f906011906020840190612f2d565b50506012805461ff001916610100179055565b606060118054610c9490613650565b600a546001600160a01b031633146117b85760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610b94565b60105460ff1615156001148015611fd9575060125460ff1615156001145b6120255760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610b94565b61203083838361105b565b61207c5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610b94565b7f00000000000000000000000000000000000000000000000000000000000027106120a5611e03565b11156120c35760405162461bcd60e51b8152600401610b949061360c565b6120ce8360016121ea565b6120ea5760405162461bcd60e51b8152600401610b949061358e565b6120f583600161223c565b610eb3836001612256565b60606040518060800160405280605b815260200161390b605b9139905090565b6000546001600160a01b0316331461214a5760405162461bcd60e51b8152600401610b94906136a6565b6001600160a01b0381166121af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b94565b611752816127f4565b6000546001600160a01b031633146121e25760405162461bcd60e51b8152600401610b94906136a6565b61158c611755565b6000600182101561220d5760405162461bcd60e51b8152600401610b94906137f2565b6013546001600160a01b0384166000908152601460205260409020546122339084612add565b11159392505050565b610c81828260405180602001604052806000815250612ae9565b60018110156122775760405162461bcd60e51b8152600401610b94906137f2565b6001600160a01b03821660009081526014602052604090205461229a9082612add565b6001600160a01b0390921660009081526014602052604090209190915550565b600081600111158015610b415750506001541190565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612337826126c6565b80519091506000906001600160a01b0316336001600160a01b0316148061236e57503361236384610d17565b6001600160a01b0316145b80612380575081516123809033610a43565b9050806123ea5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b94565b846001600160a01b031682600001516001600160a01b03161461245e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b94565b6001600160a01b0384166124c25760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b94565b6124d260008484600001516122d0565b6001600160a01b03851660009081526006602052604081208054600192906125049084906001600160801b031661383b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600660205260408120805460019450909261255091859116613863565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556125d78460016135f4565b6000818152600560205260409020549091506001600160a01b0316612666576125ff816122ba565b156126665760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000826126bd8584612da3565b14949350505050565b604080518082019091526000808252602082015281806001111580156126ed575060015481105b15612794576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561273e579392505050565b50600019016000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561278f579392505050565b61273e565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b94565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600d54811015610c81576128c0600b8281548110612868576128686136db565b9060005260206000200160009054906101000a90046001600160a01b03166064600c848154811061289b5761289b6136db565b9060005260206000200154856128b1919061370a565b6128bb919061373f565b612e17565b806128ca8161368b565b915050612848565b60006001600160a01b0384163b156129d457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612916903390899088908890600401613885565b602060405180830381600087803b15801561293057600080fd5b505af1925050508015612960575060408051601f3d908101601f1916820190925261295d918101906138c2565b60015b6129ba573d80801561298e576040519150601f19603f3d011682016040523d82523d6000602084013e612993565b606091505b5080516129b25760405162461bcd60e51b8152600401610b9490613770565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506129d8565b5060015b949350505050565b606081612a045750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a2e5780612a188161368b565b9150612a279050600a8361373f565b9150612a08565b6000816001600160401b03811115612a4857612a486131e5565b6040519080825280601f01601f191660200182016040528015612a72576020820181803683370190505b5090505b84156129d857612a876001836138df565b9150612a94600a866138f6565b612a9f9060306135f4565b60f81b818381518110612ab457612ab46136db565b60200101906001600160f81b031916908160001a905350612ad6600a8661373f565b9450612a76565b6000611dfc82846135f4565b6001546001600160a01b038416612b4c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b94565b612b55816122ba565b15612ba25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b94565b600254831115612bff5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b94565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612c5b908790613863565b6001600160801b03168152602001858360200151612c799190613863565b6001600160801b039081169091526001600160a01b0380881660008181526006602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612d985760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d5c60008884886128d2565b612d785760405162461bcd60e51b8152600401610b9490613770565b81612d828161368b565b9250508080612d909061368b565b915050612d0f565b5060018190556126a8565b600081815b8451811015612e0f576000858281518110612dc557612dc56136db565b60200260200101519050808311612deb5760008381526020829052604090209250612dfc565b600081815260208490526040902092505b5080612e078161368b565b915050612da8565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e64576040519150601f19603f3d011682016040523d82523d6000602084013e612e69565b606091505b5050905080610eb35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b94565b828054612eb990613650565b90600052602060002090601f016020900481019282612edb5760008555612f21565b82601f10612ef45782800160ff19823516178555612f21565b82800160010185558215612f21579182015b82811115612f21578235825591602001919060010190612f06565b50611496929150612fa1565b828054612f3990613650565b90600052602060002090601f016020900481019282612f5b5760008555612f21565b82601f10612f7457805160ff1916838001178555612f21565b82800160010185558215612f21579182015b82811115612f21578251825591602001919060010190612f86565b5b808211156114965760008155600101612fa2565b6001600160e01b03198116811461175257600080fd5b600060208284031215612fde57600080fd5b8135611dfc81612fb6565b80356001600160a01b038116811461300057600080fd5b919050565b6000806040838503121561301857600080fd5b61302183612fe9565b946020939093013593505050565b60005b8381101561304a578181015183820152602001613032565b838111156112f15750506000910152565b6000815180845261307381602086016020860161302f565b601f01601f19169290920160200192915050565b602081526000611dfc602083018461305b565b6000602082840312156130ac57600080fd5b5035919050565b6000806000606084860312156130c857600080fd5b6130d184612fe9565b92506130df60208501612fe9565b9150604084013590509250925092565b60008083601f84011261310157600080fd5b5081356001600160401b0381111561311857600080fd5b6020830191508360208260051b850101111561313357600080fd5b9250929050565b60008060006040848603121561314f57600080fd5b61315884612fe9565b925060208401356001600160401b0381111561317357600080fd5b61317f868287016130ef565b9497909650939450505050565b600080600080606085870312156131a257600080fd5b6131ab85612fe9565b93506020850135925060408501356001600160401b038111156131cd57600080fd5b6131d9878288016130ef565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613223576132236131e5565b604052919050565b6000806040838503121561323e57600080fd5b82356001600160401b038082111561325557600080fd5b818501915085601f83011261326957600080fd5b813560208282111561327d5761327d6131e5565b8160051b925061328e8184016131fb565b82815292840181019281810190898511156132a857600080fd5b948201945b848610156132cd576132be86612fe9565b825294820194908201906132ad565b9997909101359750505050505050565b600080602083850312156132f057600080fd5b82356001600160401b038082111561330757600080fd5b818501915085601f83011261331b57600080fd5b81358181111561332a57600080fd5b86602082850101111561333c57600080fd5b60209290920196919550909350505050565b60006020828403121561336057600080fd5b611dfc82612fe9565b801515811461175257600080fd5b6000806040838503121561338a57600080fd5b61339383612fe9565b915060208301356133a381613369565b809150509250929050565b60006001600160401b038311156133c7576133c76131e5565b6133da601f8401601f19166020016131fb565b90508281528383830111156133ee57600080fd5b828260208301376000602084830101529392505050565b6000806000806080858703121561341b57600080fd5b61342485612fe9565b935061343260208601612fe9565b92506040850135915060608501356001600160401b0381111561345457600080fd5b8501601f8101871361346557600080fd5b613474878235602084016133ae565b91505092959194509250565b60006020828403121561349257600080fd5b81356001600160401b038111156134a857600080fd5b8201601f810184136134b957600080fd5b6129d8848235602084016133ae565b600080604083850312156134db57600080fd5b6134e483612fe9565b91506134f260208401612fe9565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613607576136076135de565b500190565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620316040820152630303030360e41b606082015260800190565b600181811c9082168061366457607f821691505b6020821081141561368557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561369f5761369f6135de565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561370357600080fd5b5051919050565b6000816000190483118215151615613724576137246135de565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261374e5761374e613729565b500490565b60006020828403121561376557600080fd5b8151611dfc81613369565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516137d581846020880161302f565b8351908301906137e981836020880161302f565b01949350505050565b60208082526029908201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656040820152687175616c20746f203160b81b606082015260800190565b60006001600160801b038381169083168181101561385b5761385b6135de565b039392505050565b60006001600160801b038083168185168083038211156137e9576137e96135de565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138b89083018461305b565b9695505050505050565b6000602082840312156138d457600080fd5b8151611dfc81612fb6565b6000828210156138f1576138f16135de565b500390565b60008261390557613905613729565b50069056fe68747470733a2f2f75732d63656e7472616c312d6e66742d72616d70702e636c6f756466756e6374696f6e732e6e65742f6170702f6967484d5045537166666a58365942675257556e2f636f6e74726163742d6d65746164617461a2646970667358221220bc256979759aa4961d1d7cd5112082446a9134baa08a43ee8be8a4a243abc15364736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000e28012d82e2fb6aeb9bd18fc41bf9500a1e62fdd

-----Decoded View---------------

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e28012d82e2fb6aeb9bd18fc41bf9500a1e62fdd


Deployed Bytecode Sourcemap

65377:294:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40602:90;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;40602:90:0;;;;;;;;42367:370;;;;;;;;;;-1:-1:-1;42367:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;42367:370:0;582:187:1;59797:631:0;;;;;;:::i;:::-;;:::i;:::-;;44432:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45847:204::-;;;;;;;;;;-1:-1:-1;45847:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2311:32:1;;;2293:51;;2281:2;2266:18;45847:204:0;2147:203:1;45410:379:0;;;;;;;;;;-1:-1:-1;45410:379:0;;;;;:::i;:::-;;:::i;46697:142::-;;;;;;;;;;-1:-1:-1;46697:142:0;;;;;:::i;:::-;;:::i;55521:37::-;;;;;;;;;;-1:-1:-1;55521:37:0;;;;;:::i;:::-;;:::i;38934:27::-;;;;;;;;;;;;;;;;36880:25;;;;;;;;;;;;;;;;41559:744;;;;;;;;;;-1:-1:-1;41559:744:0;;;;;:::i;:::-;;:::i;37533:287::-;;;;;;;;;;-1:-1:-1;37533:287:0;;;;;:::i;:::-;;:::i;57971:33::-;;;;;;;;;;-1:-1:-1;57971:33:0;;;;;;;;;;;;;;3930:4:1;3918:17;;;3900:36;;3888:2;3873:18;57971:33:0;3758:184:1;61616:739:0;;;;;;:::i;:::-;;:::i;55563:38::-;;;;;;;;;;;;;;;;60521:78;;;;;;;;;;;;;:::i;46902:157::-;;;;;;;;;;-1:-1:-1;46902:157:0;;;;;:::i;:::-;;:::i;38890:39::-;;;;;;;;;;;;;;;37119:191;;;;;;;;;;-1:-1:-1;37119:191:0;;;;;:::i;:::-;;:::i;58192:37::-;;;;;;;;;;;;;;;;58716:202;;;;;;;;;;-1:-1:-1;58716:202:0;;;;;:::i;:::-;;:::i;41091:177::-;;;;;;;;;;-1:-1:-1;41091:177:0;;;;;:::i;:::-;;:::i;58143:30::-;;;;;;;;;;-1:-1:-1;58143:30:0;;;;;;;;;;;64346:173;;;;;;;;;;-1:-1:-1;64346:173:0;;;;;:::i;:::-;;:::i;65008:106::-;;;;;;;;;;-1:-1:-1;65008:106:0;;;;;:::i;:::-;;:::i;44255:118::-;;;;;;;;;;-1:-1:-1;44255:118:0;;;;;:::i;:::-;;:::i;60436:77::-;;;;;;;;;;;;;:::i;37935:97::-;;;;;;;;;;;;;:::i;42793:211::-;;;;;;;;;;-1:-1:-1;42793:211:0;;;;;:::i;:::-;;:::i;33352:103::-;;;;;;;;;;;;;:::i;59139:431::-;;;;;;:::i;:::-;;:::i;37834:93::-;;;;;;;;;;;;;:::i;55608:112::-;;;;;;;;;;;;;:::i;55423:93::-;;;;;;;;;;-1:-1:-1;55423:93:0;;;;;:::i;:::-;;:::i;32703:87::-;;;;;;;;;;-1:-1:-1;32749:7:0;32776:6;-1:-1:-1;;;;;32776:6:0;32703:87;;58106:30;;;;;;;;;;-1:-1:-1;58106:30:0;;;;;;;;63974:194;;;;;;;;;;-1:-1:-1;63974:194:0;;;;;:::i;:::-;;:::i;65122:135::-;;;;;;;;;;-1:-1:-1;65122:135:0;;;;;:::i;:::-;;:::i;:::-;;;;7175:13:1;;-1:-1:-1;;;;;7171:39:1;7153:58;;7271:4;7259:17;;;7253:24;-1:-1:-1;;;;;7249:49:1;7227:20;;;7220:79;;;;7126:18;65122:135:0;6943:362:1;44587:98:0;;;;;;;;;;;;;:::i;46115:274::-;;;;;;;;;;-1:-1:-1;46115:274:0;;;;;:::i;:::-;;:::i;58527:181::-;;;;;;;;;;-1:-1:-1;58527:181:0;;;;;:::i;:::-;;:::i;62776:122::-;;;;;;;;;;;;;:::i;56685:422::-;;;;;;;;;;-1:-1:-1;56685:422:0;;;;;:::i;:::-;;:::i;47122:311::-;;;;;;;;;;-1:-1:-1;47122:311:0;;;;;:::i;:::-;;:::i;57433:229::-;;;;;;;;;;-1:-1:-1;57433:229:0;;;;;:::i;:::-;;:::i;54989:72::-;;;;;;;;;;-1:-1:-1;54989:72:0;;;;-1:-1:-1;;;;;54989:72:0;;;44748:288;;;;;;;;;;-1:-1:-1;44748:288:0;;;;;:::i;:::-;;:::i;40698:109::-;;;;;;;;;;;;;:::i;58011:86::-;;;;;;;;;;;;;:::i;64547:214::-;;;;;;;;;;-1:-1:-1;64547:214:0;;;;;:::i;:::-;;:::i;64901:99::-;;;;;;;;;;;;;:::i;51537:43::-;;;;;;;;;;;;;;;;55728:115;;;;;;;;;;;;;:::i;60848:527::-;;;;;;:::i;:::-;;:::i;36912:37::-;;;;;;;;;;-1:-1:-1;36912:37:0;;;;;;;;65492:176;;;;;;;;;;;;;:::i;46452:186::-;;;;;;;;;;-1:-1:-1;46452:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;46597:25:0;;;46574:4;46597:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46452:186;33608:201;;;;;;;;;;-1:-1:-1;33608:201:0;;;;;:::i;:::-;;:::i;62506:119::-;;;;;;;;;;;;;:::i;63061:252::-;;;;;;;;;;-1:-1:-1;63061:252:0;;;;;:::i;:::-;;:::i;40602:90::-;40649:7;40672:14;40425:1;40979:12;-1:-1:-1;;40979:30:0;;40890:132;40672:14;40665:21;;40602:90;:::o;42367:370::-;42494:4;-1:-1:-1;;;;;;42524:40:0;;-1:-1:-1;;;42524:40:0;;:99;;-1:-1:-1;;;;;;;42575:48:0;;-1:-1:-1;;;42575:48:0;42524:99;:160;;;-1:-1:-1;;;;;;;42634:50:0;;-1:-1:-1;;;42634:50:0;42524:160;:207;;;-1:-1:-1;;;;;;;;;;19197:40:0;;;42695:36;42510:221;42367:370;-1:-1:-1;;42367:370:0:o;59797:631::-;59896:1;59885:7;:12;;59877:51;;;;-1:-1:-1;;;59877:51:0;;9757:2:1;59877:51:0;;;9739:21:1;9796:2;9776:18;;;9769:30;9835:28;9815:18;;;9808:56;9881:18;;59877:51:0;;;;;;;;;59958:12;;59947:7;:23;;59939:82;;;;-1:-1:-1;;;59939:82:0;;;;;;;:::i;:::-;60040:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;60063:17:0;;;;:26;60040:49;60032:99;;;;-1:-1:-1;;;60032:99:0;;;;;;;:::i;:::-;60150:27;60164:3;60169:7;60150:13;:27::i;:::-;60142:88;;;;-1:-1:-1;;;60142:88:0;;;;;;;:::i;:::-;60279:14;60268:7;60249:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;60241:93;;;;-1:-1:-1;;;60241:93:0;;;;;;;:::i;:::-;60357:23;60367:3;60372:7;60357:9;:23::i;:::-;60391:29;60407:3;60412:7;60391:15;:29::i;:::-;59797:631;;:::o;44432:94::-;44486:13;44515:5;44508:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44432:94;:::o;45847:204::-;45915:7;45939:16;45947:7;45939;:16::i;:::-;45931:74;;;;-1:-1:-1;;;45931:74:0;;12405:2:1;45931:74:0;;;12387:21:1;12444:2;12424:18;;;12417:30;12483:34;12463:18;;;12456:62;-1:-1:-1;;;12534:18:1;;;12527:43;12587:19;;45931:74:0;12203:409:1;45931:74:0;-1:-1:-1;46021:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46021:24:0;;45847:204::o;45410:379::-;45479:13;45495:24;45511:7;45495:15;:24::i;:::-;45479:40;;45540:5;-1:-1:-1;;;;;45534:11:0;:2;-1:-1:-1;;;;;45534:11:0;;;45526:58;;;;-1:-1:-1;;;45526:58:0;;12819:2:1;45526:58:0;;;12801:21:1;12858:2;12838:18;;;12831:30;12897:34;12877:18;;;12870:62;-1:-1:-1;;;12948:18:1;;;12941:32;12990:19;;45526:58:0;12617:398:1;45526:58:0;31509:10;-1:-1:-1;;;;;45609:21:0;;;;:62;;-1:-1:-1;45634:37:0;45651:5;31509:10;46452:186;:::i;45634:37::-;45593:153;;;;-1:-1:-1;;;45593:153:0;;13222:2:1;45593:153:0;;;13204:21:1;13261:2;13241:18;;;13234:30;13300:34;13280:18;;;13273:62;13371:27;13351:18;;;13344:55;13416:19;;45593:153:0;13020:421:1;45593:153:0;45755:28;45764:2;45768:7;45777:5;45755:8;:28::i;:::-;45472:317;45410:379;;:::o;46697:142::-;46805:28;46815:4;46821:2;46825:7;46805:9;:28::i;55521:37::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55521:37:0;:::o;41559:744::-;41668:7;41703:16;41713:5;41703:9;:16::i;:::-;41695:5;:24;41687:71;;;;-1:-1:-1;;;41687:71:0;;13648:2:1;41687:71:0;;;13630:21:1;13687:2;13667:18;;;13660:30;13726:34;13706:18;;;13699:62;-1:-1:-1;;;13777:18:1;;;13770:32;13819:19;;41687:71:0;13446:398:1;41687:71:0;41765:22;41790:13;:11;:13::i;:::-;41765:38;;41810:19;41840:25;41890:9;41885:350;41909:14;41905:1;:18;41885:350;;;41939:31;41973:14;;;:11;:14;;;;;;;;;41939:48;;;;;;;;;-1:-1:-1;;;;;41939:48:0;;;;;-1:-1:-1;;;41939:48:0;;;-1:-1:-1;;;;;41939:48:0;;;;;;;;42000:28;41996:89;;42061:14;;;-1:-1:-1;41996:89:0;42118:5;-1:-1:-1;;;;;42097:26:0;:17;-1:-1:-1;;;;;42097:26:0;;42093:135;;;42155:5;42140:11;:20;42136:59;;;-1:-1:-1;42182:1:0;-1:-1:-1;42175:8:0;;-1:-1:-1;;;42175:8:0;42136:59;42205:13;;;;:::i;:::-;;;;42093:135;-1:-1:-1;41925:3:0;;;;:::i;:::-;;;;41885:350;;;-1:-1:-1;42241:56:0;;-1:-1:-1;;;42241:56:0;;14191:2:1;42241:56:0;;;14173:21:1;14230:2;14210:18;;;14203:30;14269:34;14249:18;;;14242:62;-1:-1:-1;;;14320:18:1;;;14313:44;14374:19;;42241:56:0;13989:410:1;37533:287:0;37645:10;;37622:4;;37637:51;;;;-1:-1:-1;;;37637:51:0;;14606:2:1;37637:51:0;;;14588:21:1;14645:2;14625:18;;;14618:30;14684:25;14664:18;;;14657:53;14727:18;;37637:51:0;14404:347:1;37637:51:0;37722:21;;-1:-1:-1;;14905:2:1;14901:15;;;14897:53;37722:21:0;;;14885:66:1;37697:12:0;;14967::1;;37722:21:0;;;;;;;;;;;;37712:32;;;;;;37697:47;;37762:50;37781:12;;37762:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37795:10:0;;;-1:-1:-1;37807:4:0;;-1:-1:-1;37762:18:0;:50::i;:::-;37755:57;37533:287;-1:-1:-1;;;;;37533:287:0:o;61616:739::-;61739:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;61768:11:0;;;;:19;;:11;:19;61739:48;61731:88;;;;-1:-1:-1;;;61731:88:0;;15192:2:1;61731:88:0;;;15174:21:1;15231:2;15211:18;;;15204:30;15270:29;15250:18;;;15243:57;15317:18;;61731:88:0;14990:351:1;61731:88:0;61838:32;61852:3;61857:12;;61838:13;:32::i;:::-;61830:73;;;;-1:-1:-1;;;61830:73:0;;15548:2:1;61830:73:0;;;15530:21:1;15587:2;15567:18;;;15560:30;15626;15606:18;;;15599:58;15674:18;;61830:73:0;15346:352:1;61830:73:0;61933:1;61922:7;:12;;61914:51;;;;-1:-1:-1;;;61914:51:0;;9757:2:1;61914:51:0;;;9739:21:1;9796:2;9776:18;;;9769:30;9835:28;9815:18;;;9808:56;9881:18;;61914:51:0;9555:350:1;61914:51:0;61995:12;;61984:7;:23;;61976:82;;;;-1:-1:-1;;;61976:82:0;;;;;;;:::i;:::-;62079:27;62093:3;62098:7;62079:13;:27::i;:::-;62071:88;;;;-1:-1:-1;;;62071:88:0;;;;;;;:::i;:::-;62208:14;62197:7;62178:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;62170:93;;;;-1:-1:-1;;;62170:93:0;;;;;;;:::i;:::-;62284:23;62294:3;62299:7;62284:9;:23::i;:::-;62318:29;62334:3;62339:7;62318:15;:29::i;:::-;61616:739;;;;:::o;60521:78::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;60572:11:::1;:19:::0;;-1:-1:-1;;60572:19:0::1;::::0;;60521:78::o;46902:157::-;47014:39;47031:4;47037:2;47041:7;47014:39;;;;;;;;;;;;:16;:39::i;37119:191::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;37221:10:::1;;37203:14;:28;;37195:71;;;::::0;-1:-1:-1;;;37195:71:0;;16266:2:1;37195:71:0::1;::::0;::::1;16248:21:1::0;16305:2;16285:18;;;16278:30;16344:32;16324:18;;;16317:60;16394:18;;37195:71:0::1;16064:354:1::0;37195:71:0::1;37275:10;:27:::0;37119:191::o;58716:202::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;58823:6:::1;58819:92;58837:13;58833:1;:17;58819:92;;;58873:26;58885:10;58896:1;58885:13;;;;;;;;:::i;:::-;;;;;;;58873:11;:26::i;:::-;58852:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58819:92;;41091:177:::0;41158:7;41190:13;:11;:13::i;:::-;41182:5;:21;41174:69;;;;-1:-1:-1;;;41174:69:0;;16757:2:1;41174:69:0;;;16739:21:1;16796:2;16776:18;;;16769:30;16835:34;16815:18;;;16808:62;-1:-1:-1;;;16886:18:1;;;16879:33;16929:19;;41174:69:0;16555:399:1;41174:69:0;-1:-1:-1;41257:5:0;41091:177::o;64346:173::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;64439:1:::1;64424:11;:16;;64416:56;;;::::0;-1:-1:-1;;;64416:56:0;;17161:2:1;64416:56:0::1;::::0;::::1;17143:21:1::0;17200:2;17180:18;;;17173:30;17239:29;17219:18;;;17212:57;17286:18;;64416:56:0::1;16959:351:1::0;64416:56:0::1;64484:12;:26:::0;64346:173::o;65008:106::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;65083:23:::1;:13;65099:7:::0;;65083:23:::1;:::i;44255:118::-:0;44319:7;44342:20;44354:7;44342:11;:20::i;:::-;:25;;44255:118;-1:-1:-1;;44255:118:0:o;60436:77::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;60487:11:::1;:18:::0;;-1:-1:-1;;60487:18:0::1;60501:4;60487:18;::::0;;60436:77::o;37935:97::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;37999:17:::1;:25:::0;;-1:-1:-1;;37999:25:0::1;::::0;;37935:97::o;42793:211::-;42857:7;-1:-1:-1;;;;;42881:19:0;;42873:75;;;;-1:-1:-1;;;42873:75:0;;17517:2:1;42873:75:0;;;17499:21:1;17556:2;17536:18;;;17529:30;17595:34;17575:18;;;17568:62;-1:-1:-1;;;17646:18:1;;;17639:41;17697:19;;42873:75:0;17315:407:1;42873:75:0;-1:-1:-1;;;;;;42970:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;42970:27:0;;42793:211::o;33352:103::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;33417:30:::1;33444:1;33417:18;:30::i;:::-;33352:103::o:0;59139:431::-;59222:14;59202:16;:14;:16::i;:::-;:34;;59194:83;;;;-1:-1:-1;;;59194:83:0;;;;;;;:::i;:::-;59296:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;59319:17:0;;;;:26;59296:49;59288:99;;;;-1:-1:-1;;;59288:99:0;;;;;;;:::i;:::-;59406:21;59420:3;59425:1;59406:13;:21::i;:::-;59398:82;;;;-1:-1:-1;;;59398:82:0;;;;;;;:::i;:::-;59511:17;59521:3;59526:1;59511:9;:17::i;:::-;59539:23;59555:3;59560:1;59539:15;:23::i;:::-;59139:431;:::o;37834:93::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;37895:17:::1;:24:::0;;-1:-1:-1;;37895:24:0::1;37915:4;37895:24;::::0;;37834:93::o;55608:112::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;55689:1:::1;55665:21;:25;55657:34;;;::::0;::::1;;55700:14;:12;:14::i;55423:93::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55423:93:0;;-1:-1:-1;55423:93:0;:::o;63974:194::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;64072:1:::1;64055:13;:18;;64047:70;;;::::0;-1:-1:-1;;;64047:70:0;;17929:2:1;64047:70:0::1;::::0;::::1;17911:21:1::0;17968:2;17948:18;;;17941:30;18007:34;17987:18;;;17980:62;-1:-1:-1;;;18058:18:1;;;18051:37;18105:19;;64047:70:0::1;17727:403:1::0;64047:70:0::1;64128:16;:32:::0;63974:194::o;65122:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;65229:20:0;65241:7;65229:11;:20::i;44587:98::-;44643:13;44672:7;44665:14;;;;;:::i;46115:274::-;-1:-1:-1;;;;;46206:24:0;;31509:10;46206:24;;46198:63;;;;-1:-1:-1;;;46198:63:0;;18337:2:1;46198:63:0;;;18319:21:1;18376:2;18356:18;;;18349:30;18415:28;18395:18;;;18388:56;18461:18;;46198:63:0;18135:350:1;46198:63:0;31509:10;46270:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;46270:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;46270:53:0;;;;;;;;;;46335:48;;722:41:1;;;46270:42:0;;31509:10;46335:48;;695:18:1;46335:48:0;;;;;;;46115:274;;:::o;58527:181::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;58617:14:::1;58597:16;:14;:16::i;:::-;:34;;58589:83;;;;-1:-1:-1::0;;;58589:83:0::1;;;;;;;:::i;:::-;58683:17;58693:3;58698:1;58683:9;:17::i;62776:122::-:0;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;62834:26:::1;:24;:26::i;56685:422::-:0;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;56794:1:::1;56784:7;:11;56776:20;;;::::0;::::1;;56863:38;::::0;-1:-1:-1;;;56863:38:0;;56895:4:::1;56863:38;::::0;::::1;2293:51:1::0;56833:14:0;;56905:7;;-1:-1:-1;;;;;56863:23:0;::::1;::::0;::::1;::::0;2266:18:1;;56863:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;56855:97;;;::::0;-1:-1:-1;;;56855:97:0;;18881:2:1;56855:97:0::1;::::0;::::1;18863:21:1::0;18920:2;18900:18;;;18893:30;18959:34;18939:18;;;18932:62;-1:-1:-1;;;19010:18:1;;;19003:33;19053:19;;56855:97:0::1;18679:399:1::0;56855:97:0::1;56965:6;56961:141;56979:19;;56975:1;:23;56961:141;;;57017:13;-1:-1:-1::0;;;;;57017:22:0::1;;57040:16;57057:1;57040:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;57040:19:0::1;57090:3;57072:11;57084:1;57072:14;;;;;;;;:::i;:::-;;;;;;;;;57062:7;:24;;;;:::i;:::-;57061:32;;;;:::i;:::-;57017:77;::::0;-1:-1:-1;;;;;;57017:77:0::1;::::0;;;;;;-1:-1:-1;;;;;19705:32:1;;;57017:77:0::1;::::0;::::1;19687:51:1::0;19754:18;;;19747:34;19660:18;;57017:77:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;57000:3:0;::::1;::::0;::::1;:::i;:::-;;;;56961:141;;47122:311:::0;47259:28;47269:4;47275:2;47279:7;47259:9;:28::i;:::-;47310:48;47333:4;47339:2;47343:7;47352:5;47310:22;:48::i;:::-;47294:133;;;;-1:-1:-1;;;47294:133:0;;;;;;;:::i;57433:229::-;55118:12;;-1:-1:-1;;;;;55118:12:0;55104:10;:26;55096:67;;;;-1:-1:-1;;;55096:67:0;;20664:2:1;55096:67:0;;;20646:21:1;20703:2;20683:18;;;20676:30;20742;20722:18;;;20715:58;20790:18;;55096:67:0;20462:352:1;55096:67:0;57524:12:::1;::::0;-1:-1:-1;;;;;57509:27:0;;::::1;57524:12:::0;::::1;57509:27;;57501:82;;;::::0;-1:-1:-1;;;57501:82:0;;21021:2:1;57501:82:0::1;::::0;::::1;21003:21:1::0;21060:2;21040:18;;;21033:30;21099:34;21079:18;;;21072:62;-1:-1:-1;;;21150:18:1;;;21143:40;21200:19;;57501:82:0::1;20819:406:1::0;57501:82:0::1;57590:12;:26:::0;;-1:-1:-1;;;;;;57590:26:0::1;-1:-1:-1::0;;;;;57590:26:0;::::1;;::::0;;57623:16:::1;:19:::0;;57590:26;;57623:16;-1:-1:-1;;57623:19:0::1;;;;:::i;:::-;;;;;;;;;:33;;;;;-1:-1:-1::0;;;;;57623:33:0::1;;;;;-1:-1:-1::0;;;;;57623:33:0::1;;;;;;57433:229:::0;:::o;44748:288::-;44846:13;44871:21;44895:10;:8;:10::i;:::-;44871:34;;44950:1;44932:7;44926:21;:25;:104;;;;;;;;;;;;;;;;;44987:7;44996:18;:7;:16;:18::i;:::-;44970:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44926:104;44912:118;44748:288;-1:-1:-1;;;44748:288:0:o;40698:109::-;40745:7;40770:31;40783:14;40425:1;40979:12;-1:-1:-1;;40979:30:0;;40890:132;40783:14;40799:1;40770:12;:31::i;58011:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64547:214::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;64631:10:::1;::::0;::::1;::::0;::::1;;;:19;64623:59;;;::::0;-1:-1:-1;;;64623:59:0;;21907:2:1;64623:59:0::1;::::0;::::1;21889:21:1::0;21946:2;21926:18;;;21919:30;21985:29;21965:18;;;21958:57;22032:18;;64623:59:0::1;21705:351:1::0;64623:59:0::1;64693:32:::0;;::::1;::::0;:13:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;64736:10:0::1;:17:::0;;-1:-1:-1;;64736:17:0::1;;;::::0;;64547:214::o;64901:99::-;64946:13;64979;64972:20;;;;;:::i;55728:115::-;55118:12;;-1:-1:-1;;;;;55118:12:0;55104:10;:26;55096:67;;;;-1:-1:-1;;;55096:67:0;;20664:2:1;55096:67:0;;;20646:21:1;20703:2;20683:18;;;20676:30;20742;20722:18;;;20715:58;20790:18;;55096:67:0;20462:352:1;60848:527:0;60946:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;60975:11:0;;;;:19;;:11;:19;60946:48;60938:88;;;;-1:-1:-1;;;60938:88:0;;15192:2:1;60938:88:0;;;15174:21:1;15231:2;15211:18;;;15204:30;15270:29;15250:18;;;15243:57;15317:18;;60938:88:0;14990:351:1;60938:88:0;61045:32;61059:3;61064:12;;61045:13;:32::i;:::-;61037:73;;;;-1:-1:-1;;;61037:73:0;;15548:2:1;61037:73:0;;;15530:21:1;15587:2;15567:18;;;15560:30;15626;15606:18;;;15599:58;15674:18;;61037:73:0;15346:352:1;61037:73:0;61149:14;61129:16;:14;:16::i;:::-;:34;;61121:83;;;;-1:-1:-1;;;61121:83:0;;;;;;;:::i;:::-;61221:21;61235:3;61240:1;61221:13;:21::i;:::-;61213:82;;;;-1:-1:-1;;;61213:82:0;;;;;;;:::i;:::-;61316:17;61326:3;61331:1;61316:9;:17::i;:::-;61344:23;61360:3;61365:1;61344:15;:23::i;65492:176::-;65536:13;65560:100;;;;;;;;;;;;;;;;;;;65492:176;:::o;33608:201::-;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33697:22:0;::::1;33689:73;;;::::0;-1:-1:-1;;;33689:73:0;;22263:2:1;33689:73:0::1;::::0;::::1;22245:21:1::0;22302:2;22282:18;;;22275:30;22341:34;22321:18;;;22314:62;-1:-1:-1;;;22392:18:1;;;22385:36;22438:19;;33689:73:0::1;22061:402:1::0;33689:73:0::1;33773:28;33792:8;33773:18;:28::i;62506:119::-:0;32749:7;32776:6;-1:-1:-1;;;;;32776:6:0;31509:10;32923:23;32915:68;;;;-1:-1:-1;;;32915:68:0;;;;;;;:::i;:::-;62563:25:::1;:23;:25::i;63061:252::-:0;63139:4;63175:1;63164:7;:12;;63156:66;;;;-1:-1:-1;;;63156:66:0;;;;;;;:::i;:::-;63289:16;;-1:-1:-1;;;;;63253:22:0;;;;;;:12;:22;;;;;;63240:45;;63277:7;63240:12;:45::i;:::-;:65;;;63061:252;-1:-1:-1;;;63061:252:0:o;47809:98::-;47874:27;47884:2;47888:8;47874:27;;;;;;;;;;;;:9;:27::i;63543:234::-;63641:1;63630:7;:12;;63622:66;;;;-1:-1:-1;;;63622:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;63737:22:0;;;;;;:12;:22;;;;;;63724:45;;63761:7;63724:12;:45::i;:::-;-1:-1:-1;;;;;63699:22:0;;;;;;;:12;:22;;;;;:70;;;;-1:-1:-1;63543:234:0:o;47668:135::-;47725:4;47764:7;40425:1;47745:26;;:52;;;;-1:-1:-1;;47785:12:0;;-1:-1:-1;47775:22:0;47668:135::o;51359:172::-;51456:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51456:29:0;-1:-1:-1;;;;;51456:29:0;;;;;;;;;51497:28;;51456:24;;51497:28;;;;;;;51359:172;;;:::o;49728:1529::-;49825:35;49863:20;49875:7;49863:11;:20::i;:::-;49934:18;;49825:58;;-1:-1:-1;49892:22:0;;-1:-1:-1;;;;;49918:34:0;31509:10;-1:-1:-1;;;;;49918:34:0;;:81;;;-1:-1:-1;31509:10:0;49963:20;49975:7;49963:11;:20::i;:::-;-1:-1:-1;;;;;49963:36:0;;49918:81;:142;;;-1:-1:-1;50027:18:0;;50010:50;;31509:10;46452:186;:::i;50010:50::-;49892:169;;50086:17;50070:101;;;;-1:-1:-1;;;50070:101:0;;23080:2:1;50070:101:0;;;23062:21:1;23119:2;23099:18;;;23092:30;23158:34;23138:18;;;23131:62;-1:-1:-1;;;23209:18:1;;;23202:48;23267:19;;50070:101:0;22878:414:1;50070:101:0;50218:4;-1:-1:-1;;;;;50196:26:0;:13;:18;;;-1:-1:-1;;;;;50196:26:0;;50180:98;;;;-1:-1:-1;;;50180:98:0;;23499:2:1;50180:98:0;;;23481:21:1;23538:2;23518:18;;;23511:30;23577:34;23557:18;;;23550:62;-1:-1:-1;;;23628:18:1;;;23621:36;23674:19;;50180:98:0;23297:402:1;50180:98:0;-1:-1:-1;;;;;50293:16:0;;50285:66;;;;-1:-1:-1;;;50285:66:0;;23906:2:1;50285:66:0;;;23888:21:1;23945:2;23925:18;;;23918:30;23984:34;23964:18;;;23957:62;-1:-1:-1;;;24035:18:1;;;24028:35;24080:19;;50285:66:0;23704:401:1;50285:66:0;50460:49;50477:1;50481:7;50490:13;:18;;;50460:8;:49::i;:::-;-1:-1:-1;;;;;50518:18:0;;;;;;:12;:18;;;;;:31;;50548:1;;50518:18;:31;;50548:1;;-1:-1:-1;;;;;50518:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;50518:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50556:16:0;;-1:-1:-1;50556:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;50556:16:0;;:29;;-1:-1:-1;;50556:29:0;;:::i;:::-;;;-1:-1:-1;;;;;50556:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50615:43:0;;;;;;;;-1:-1:-1;;;;;50615:43:0;;;;;-1:-1:-1;;;;;50641:15:0;50615:43;;;;;;;;;-1:-1:-1;50592:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;50592:66:0;-1:-1:-1;;;;;;50592:66:0;;;;;;;;;;;50908:11;50604:7;-1:-1:-1;50908:11:0;:::i;:::-;50971:1;50930:24;;;:11;:24;;;;;:29;50886:33;;-1:-1:-1;;;;;;50930:29:0;50926:236;;50988:20;50996:11;50988:7;:20::i;:::-;50984:171;;;51048:97;;;;;;;;51075:18;;-1:-1:-1;;;;;51048:97:0;;;;;;51106:28;;;;-1:-1:-1;;;;;51048:97:0;;;;;;;;;-1:-1:-1;51021:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;51021:124:0;-1:-1:-1;;;;;;51021:124:0;;;;;;;;;;;;50984:171;51194:7;51190:2;-1:-1:-1;;;;;51175:27:0;51184:4;-1:-1:-1;;;;;51175:27:0;;;;;;;;;;;51209:42;49818:1439;;;49728:1529;;;:::o;35243:202::-;35376:4;35431;35402:25;35415:5;35422:4;35402:12;:25::i;:::-;:33;;35243:202;-1:-1:-1;;;;35243:202:0:o;43256:945::-;-1:-1:-1;;;;;;;;;;;;;;;;;43380:7:0;;40425:1;43421:23;;:46;;;;;43455:12;;43448:4;:19;43421:46;43417:706;;;43484:31;43518:17;;;:11;:17;;;;;;;;;43484:51;;;;;;;;;-1:-1:-1;;;;;43484:51:0;;;;;-1:-1:-1;;;43484:51:0;;;-1:-1:-1;;;;;43484:51:0;;;;;;;;43554:28;43550:85;;43610:9;43256:945;-1:-1:-1;;;43256:945:0:o;43550:85::-;-1:-1:-1;;;43931:6:0;43968:17;;;;:11;:17;;;;;;;;;43956:29;;;;;;;;;-1:-1:-1;;;;;43956:29:0;;;;;-1:-1:-1;;;43956:29:0;;;-1:-1:-1;;;;;43956:29:0;;;;;;;;44008:28;44004:93;;44068:9;43256:945;-1:-1:-1;;;43256:945:0:o;44004:93::-;43899:213;;43417:706;44138:57;;-1:-1:-1;;;44138:57:0;;24821:2:1;44138:57:0;;;24803:21:1;24860:2;24840:18;;;24833:30;24899:34;24879:18;;;24872:62;-1:-1:-1;;;24950:18:1;;;24943:45;25005:19;;44138:57:0;24619:411:1;33967:191:0;34041:16;34060:6;;-1:-1:-1;;;;;34077:17:0;;;-1:-1:-1;;;;;;34077:17:0;;;;;;34110:40;;34060:6;;;;;;;34110:40;;34041:16;34110:40;34030:128;33967:191;:::o;55849:278::-;55908:21;55890:15;55946:176;55964:19;;55960:1;:23;55946:176;;;56004:108;56031:16;56048:1;56031:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56031:19:0;56096:3;56078:11;56090:1;56078:14;;;;;;;;:::i;:::-;;;;;;;;;56068:7;:24;;;;:::i;:::-;56067:32;;;;:::i;:::-;56004:10;:108::i;:::-;55985:3;;;;:::i;:::-;;;;55946:176;;53148:690;53285:4;-1:-1:-1;;;;;53302:13:0;;9372:19;:23;53298:535;;53341:72;;-1:-1:-1;;;53341:72:0;;-1:-1:-1;;;;;53341:36:0;;;;;:72;;31509:10;;53392:4;;53398:7;;53407:5;;53341:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53341:72:0;;;;;;;;-1:-1:-1;;53341:72:0;;;;;;;;;;;;:::i;:::-;;;53328:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53572:13:0;;53568:215;;53605:61;;-1:-1:-1;;;53605:61:0;;;;;;;:::i;53568:215::-;53751:6;53745:13;53736:6;53732:2;53728:15;53721:38;53328:464;-1:-1:-1;;;;;;53463:55:0;-1:-1:-1;;;53463:55:0;;-1:-1:-1;53456:62:0;;53298:535;-1:-1:-1;53821:4:0;53298:535;53148:690;;;;;;:::o;26260:723::-;26316:13;26537:10;26533:53;;-1:-1:-1;;26564:10:0;;;;;;;;;;;;-1:-1:-1;;;26564:10:0;;;;;26260:723::o;26533:53::-;26611:5;26596:12;26652:78;26659:9;;26652:78;;26685:8;;;;:::i;:::-;;-1:-1:-1;26708:10:0;;-1:-1:-1;26716:2:0;26708:10;;:::i;:::-;;;26652:78;;;26740:19;26772:6;-1:-1:-1;;;;;26762:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26762:17:0;;26740:39;;26790:154;26797:10;;26790:154;;26824:11;26834:1;26824:11;;:::i;:::-;;-1:-1:-1;26893:10:0;26901:2;26893:5;:10;:::i;:::-;26880:24;;:2;:24;:::i;:::-;26867:39;;26850:6;26857;26850:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;26850:56:0;;;;;;;;-1:-1:-1;26921:11:0;26930:2;26921:11;;:::i;:::-;;;26790:154;;3705:98;3763:7;3790:5;3794:1;3790;:5;:::i;48236:1272::-;48364:12;;-1:-1:-1;;;;;48391:16:0;;48383:62;;;;-1:-1:-1;;;48383:62:0;;26232:2:1;48383:62:0;;;26214:21:1;26271:2;26251:18;;;26244:30;26310:34;26290:18;;;26283:62;-1:-1:-1;;;26361:18:1;;;26354:31;26402:19;;48383:62:0;26030:397:1;48383:62:0;48582:21;48590:12;48582:7;:21::i;:::-;48581:22;48573:64;;;;-1:-1:-1;;;48573:64:0;;26634:2:1;48573:64:0;;;26616:21:1;26673:2;26653:18;;;26646:30;26712:31;26692:18;;;26685:59;26761:18;;48573:64:0;26432:353:1;48573:64:0;48664:12;;48652:8;:24;;48644:71;;;;-1:-1:-1;;;48644:71:0;;26992:2:1;48644:71:0;;;26974:21:1;27031:2;27011:18;;;27004:30;27070:34;27050:18;;;27043:62;-1:-1:-1;;;27121:18:1;;;27114:32;27163:19;;48644:71:0;26790:398:1;48644:71:0;-1:-1:-1;;;;;48827:16:0;;48794:30;48827:16;;;:12;:16;;;;;;;;;48794:49;;;;;;;;;-1:-1:-1;;;;;48794:49:0;;;;;-1:-1:-1;;;48794:49:0;;;;;;;;;;;48869:119;;;;;;;;48889:19;;48794:49;;48869:119;;;48889:39;;48919:8;;48889:39;:::i;:::-;-1:-1:-1;;;;;48869:119:0;;;;;48972:8;48937:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;48869:119:0;;;;;;-1:-1:-1;;;;;48850:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;48850:138:0;;;;;;;;;;;;49023:43;;;;;;;;;;-1:-1:-1;;;;;49049:15:0;49023:43;;;;;;;;48995:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;48995:71:0;-1:-1:-1;;;;;;48995:71:0;;;;;;;;;;;;;;;;;;49007:12;;49119:281;49143:8;49139:1;:12;49119:281;;;49172:38;;49197:12;;-1:-1:-1;;;;;49172:38:0;;;49189:1;;49172:38;;49189:1;;49172:38;49237:59;49268:1;49272:2;49276:12;49290:5;49237:22;:59::i;:::-;49219:150;;;;-1:-1:-1;;;49219:150:0;;;;;;;:::i;:::-;49378:14;;;;:::i;:::-;;;;49153:3;;;;;:::i;:::-;;;;49119:281;;;-1:-1:-1;49408:12:0;:27;;;49442:60;61616:739;35817:701;35900:7;35945:4;35900:7;35962:515;35986:5;:12;35982:1;:16;35962:515;;;36022:20;36045:5;36051:1;36045:8;;;;;;;;:::i;:::-;;;;;;;36022:31;;36090:12;36074;:28;36070:394;;36596:13;36650:15;;;36688:4;36681:15;;;36737:4;36721:21;;36206:57;;36070:394;;;36596:13;36650:15;;;36688:4;36681:15;;;36737:4;36721:21;;36389:57;;36070:394;-1:-1:-1;36000:3:0;;;;:::i;:::-;;;;35962:515;;;-1:-1:-1;36496:12:0;35817:701;-1:-1:-1;;;35817:701:0:o;56135:175::-;56208:12;56226:8;-1:-1:-1;;;;;56226:13:0;56247:7;56226:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56207:52;;;56276:7;56268:36;;;;-1:-1:-1;;;56268:36:0;;27605:2:1;56268:36:0;;;27587:21:1;27644:2;27624:18;;;27617:30;-1:-1:-1;;;27663:18:1;;;27656:46;27719:18;;56268:36:0;27403:340:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:173::-;842:20;;-1:-1:-1;;;;;891:31:1;;881:42;;871:70;;937:1;934;927:12;871:70;774:173;;;:::o;952:254::-;1020:6;1028;1081:2;1069:9;1060:7;1056:23;1052:32;1049:52;;;1097:1;1094;1087:12;1049:52;1120:29;1139:9;1120:29;:::i;:::-;1110:39;1196:2;1181:18;;;;1168:32;;-1:-1:-1;;;952:254:1:o;1211:258::-;1283:1;1293:113;1307:6;1304:1;1301:13;1293:113;;;1383:11;;;1377:18;1364:11;;;1357:39;1329:2;1322:10;1293:113;;;1424:6;1421:1;1418:13;1415:48;;;-1:-1:-1;;1459:1:1;1441:16;;1434:27;1211:258::o;1474:::-;1516:3;1554:5;1548:12;1581:6;1576:3;1569:19;1597:63;1653:6;1646:4;1641:3;1637:14;1630:4;1623:5;1619:16;1597:63;:::i;:::-;1714:2;1693:15;-1:-1:-1;;1689:29:1;1680:39;;;;1721:4;1676:50;;1474:258;-1:-1:-1;;1474:258:1:o;1737:220::-;1886:2;1875:9;1868:21;1849:4;1906:45;1947:2;1936:9;1932:18;1924:6;1906:45;:::i;1962:180::-;2021:6;2074:2;2062:9;2053:7;2049:23;2045:32;2042:52;;;2090:1;2087;2080:12;2042:52;-1:-1:-1;2113:23:1;;1962:180;-1:-1:-1;1962:180:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2870:367::-;2933:8;2943:6;2997:3;2990:4;2982:6;2978:17;2974:27;2964:55;;3015:1;3012;3005:12;2964:55;-1:-1:-1;3038:20:1;;-1:-1:-1;;;;;3070:30:1;;3067:50;;;3113:1;3110;3103:12;3067:50;3150:4;3142:6;3138:17;3126:29;;3210:3;3203:4;3193:6;3190:1;3186:14;3178:6;3174:27;3170:38;3167:47;3164:67;;;3227:1;3224;3217:12;3164:67;2870:367;;;;;:::o;3242:511::-;3337:6;3345;3353;3406:2;3394:9;3385:7;3381:23;3377:32;3374:52;;;3422:1;3419;3412:12;3374:52;3445:29;3464:9;3445:29;:::i;:::-;3435:39;;3525:2;3514:9;3510:18;3497:32;-1:-1:-1;;;;;3544:6:1;3541:30;3538:50;;;3584:1;3581;3574:12;3538:50;3623:70;3685:7;3676:6;3665:9;3661:22;3623:70;:::i;:::-;3242:511;;3712:8;;-1:-1:-1;3597:96:1;;-1:-1:-1;;;;3242:511:1:o;3947:579::-;4051:6;4059;4067;4075;4128:2;4116:9;4107:7;4103:23;4099:32;4096:52;;;4144:1;4141;4134:12;4096:52;4167:29;4186:9;4167:29;:::i;:::-;4157:39;;4243:2;4232:9;4228:18;4215:32;4205:42;;4298:2;4287:9;4283:18;4270:32;-1:-1:-1;;;;;4317:6:1;4314:30;4311:50;;;4357:1;4354;4347:12;4311:50;4396:70;4458:7;4449:6;4438:9;4434:22;4396:70;:::i;:::-;3947:579;;;;-1:-1:-1;4485:8:1;-1:-1:-1;;;;3947:579:1:o;4716:127::-;4777:10;4772:3;4768:20;4765:1;4758:31;4808:4;4805:1;4798:15;4832:4;4829:1;4822:15;4848:275;4919:2;4913:9;4984:2;4965:13;;-1:-1:-1;;4961:27:1;4949:40;;-1:-1:-1;;;;;5004:34:1;;5040:22;;;5001:62;4998:88;;;5066:18;;:::i;:::-;5102:2;5095:22;4848:275;;-1:-1:-1;4848:275:1:o;5128:1022::-;5221:6;5229;5282:2;5270:9;5261:7;5257:23;5253:32;5250:52;;;5298:1;5295;5288:12;5250:52;5338:9;5325:23;-1:-1:-1;;;;;5408:2:1;5400:6;5397:14;5394:34;;;5424:1;5421;5414:12;5394:34;5462:6;5451:9;5447:22;5437:32;;5507:7;5500:4;5496:2;5492:13;5488:27;5478:55;;5529:1;5526;5519:12;5478:55;5565:2;5552:16;5587:4;5610:2;5606;5603:10;5600:36;;;5616:18;;:::i;:::-;5662:2;5659:1;5655:10;5645:20;;5685:28;5709:2;5705;5701:11;5685:28;:::i;:::-;5747:15;;;5817:11;;;5813:20;;;5778:12;;;;5845:19;;;5842:39;;;5877:1;5874;5867:12;5842:39;5901:11;;;;5921:148;5937:6;5932:3;5929:15;5921:148;;;6003:23;6022:3;6003:23;:::i;:::-;5991:36;;5954:12;;;;6047;;;;5921:148;;;6088:5;6125:18;;;;6112:32;;-1:-1:-1;;;;;;;5128:1022:1:o;6155:592::-;6226:6;6234;6287:2;6275:9;6266:7;6262:23;6258:32;6255:52;;;6303:1;6300;6293:12;6255:52;6343:9;6330:23;-1:-1:-1;;;;;6413:2:1;6405:6;6402:14;6399:34;;;6429:1;6426;6419:12;6399:34;6467:6;6456:9;6452:22;6442:32;;6512:7;6505:4;6501:2;6497:13;6493:27;6483:55;;6534:1;6531;6524:12;6483:55;6574:2;6561:16;6600:2;6592:6;6589:14;6586:34;;;6616:1;6613;6606:12;6586:34;6661:7;6656:2;6647:6;6643:2;6639:15;6635:24;6632:37;6629:57;;;6682:1;6679;6672:12;6629:57;6713:2;6705:11;;;;;6735:6;;-1:-1:-1;6155:592:1;;-1:-1:-1;;;;6155:592:1:o;6752:186::-;6811:6;6864:2;6852:9;6843:7;6839:23;6835:32;6832:52;;;6880:1;6877;6870:12;6832:52;6903:29;6922:9;6903:29;:::i;7310:118::-;7396:5;7389:13;7382:21;7375:5;7372:32;7362:60;;7418:1;7415;7408:12;7433:315;7498:6;7506;7559:2;7547:9;7538:7;7534:23;7530:32;7527:52;;;7575:1;7572;7565:12;7527:52;7598:29;7617:9;7598:29;:::i;:::-;7588:39;;7677:2;7666:9;7662:18;7649:32;7690:28;7712:5;7690:28;:::i;:::-;7737:5;7727:15;;;7433:315;;;;;:::o;7753:406::-;7817:5;-1:-1:-1;;;;;7843:6:1;7840:30;7837:56;;;7873:18;;:::i;:::-;7911:57;7956:2;7935:15;;-1:-1:-1;;7931:29:1;7962:4;7927:40;7911:57;:::i;:::-;7902:66;;7991:6;7984:5;7977:21;8031:3;8022:6;8017:3;8013:16;8010:25;8007:45;;;8048:1;8045;8038:12;8007:45;8097:6;8092:3;8085:4;8078:5;8074:16;8061:43;8151:1;8144:4;8135:6;8128:5;8124:18;8120:29;8113:40;7753:406;;;;;:::o;8164:666::-;8259:6;8267;8275;8283;8336:3;8324:9;8315:7;8311:23;8307:33;8304:53;;;8353:1;8350;8343:12;8304:53;8376:29;8395:9;8376:29;:::i;:::-;8366:39;;8424:38;8458:2;8447:9;8443:18;8424:38;:::i;:::-;8414:48;;8509:2;8498:9;8494:18;8481:32;8471:42;;8564:2;8553:9;8549:18;8536:32;-1:-1:-1;;;;;8583:6:1;8580:30;8577:50;;;8623:1;8620;8613:12;8577:50;8646:22;;8699:4;8691:13;;8687:27;-1:-1:-1;8677:55:1;;8728:1;8725;8718:12;8677:55;8751:73;8816:7;8811:2;8798:16;8793:2;8789;8785:11;8751:73;:::i;:::-;8741:83;;;8164:666;;;;;;;:::o;8835:450::-;8904:6;8957:2;8945:9;8936:7;8932:23;8928:32;8925:52;;;8973:1;8970;8963:12;8925:52;9013:9;9000:23;-1:-1:-1;;;;;9038:6:1;9035:30;9032:50;;;9078:1;9075;9068:12;9032:50;9101:22;;9154:4;9146:13;;9142:27;-1:-1:-1;9132:55:1;;9183:1;9180;9173:12;9132:55;9206:73;9271:7;9266:2;9253:16;9248:2;9244;9240:11;9206:73;:::i;9290:260::-;9358:6;9366;9419:2;9407:9;9398:7;9394:23;9390:32;9387:52;;;9435:1;9432;9425:12;9387:52;9458:29;9477:9;9458:29;:::i;:::-;9448:39;;9506:38;9540:2;9529:9;9525:18;9506:38;:::i;:::-;9496:48;;9290:260;;;;;:::o;9910:410::-;10112:2;10094:21;;;10151:2;10131:18;;;10124:30;10190:34;10185:2;10170:18;;10163:62;-1:-1:-1;;;10256:2:1;10241:18;;10234:44;10310:3;10295:19;;9910:410::o;10325:401::-;10527:2;10509:21;;;10566:2;10546:18;;;10539:30;10605:34;10600:2;10585:18;;10578:62;-1:-1:-1;;;10671:2:1;10656:18;;10649:35;10716:3;10701:19;;10325:401::o;10731:412::-;10933:2;10915:21;;;10972:2;10952:18;;;10945:30;11011:34;11006:2;10991:18;;10984:62;-1:-1:-1;;;11077:2:1;11062:18;;11055:46;11133:3;11118:19;;10731:412::o;11148:127::-;11209:10;11204:3;11200:20;11197:1;11190:31;11240:4;11237:1;11230:15;11264:4;11261:1;11254:15;11280:128;11320:3;11351:1;11347:6;11344:1;11341:13;11338:39;;;11357:18;;:::i;:::-;-1:-1:-1;11393:9:1;;11280:128::o;11413:400::-;11615:2;11597:21;;;11654:2;11634:18;;;11627:30;11693:34;11688:2;11673:18;;11666:62;-1:-1:-1;;;11759:2:1;11744:18;;11737:34;11803:3;11788:19;;11413:400::o;11818:380::-;11897:1;11893:12;;;;11940;;;11961:61;;12015:4;12007:6;12003:17;11993:27;;11961:61;12068:2;12060:6;12057:14;12037:18;12034:38;12031:161;;;12114:10;12109:3;12105:20;12102:1;12095:31;12149:4;12146:1;12139:15;12177:4;12174:1;12167:15;12031:161;;11818:380;;;:::o;13849:135::-;13888:3;-1:-1:-1;;13909:17:1;;13906:43;;;13929:18;;:::i;:::-;-1:-1:-1;13976:1:1;13965:13;;13849:135::o;15703:356::-;15905:2;15887:21;;;15924:18;;;15917:30;15983:34;15978:2;15963:18;;15956:62;16050:2;16035:18;;15703:356::o;16423:127::-;16484:10;16479:3;16475:20;16472:1;16465:31;16515:4;16512:1;16505:15;16539:4;16536:1;16529:15;18490:184;18560:6;18613:2;18601:9;18592:7;18588:23;18584:32;18581:52;;;18629:1;18626;18619:12;18581:52;-1:-1:-1;18652:16:1;;18490:184;-1:-1:-1;18490:184:1:o;19083:168::-;19123:7;19189:1;19185;19181:6;19177:14;19174:1;19171:21;19166:1;19159:9;19152:17;19148:45;19145:71;;;19196:18;;:::i;:::-;-1:-1:-1;19236:9:1;;19083:168::o;19256:127::-;19317:10;19312:3;19308:20;19305:1;19298:31;19348:4;19345:1;19338:15;19372:4;19369:1;19362:15;19388:120;19428:1;19454;19444:35;;19459:18;;:::i;:::-;-1:-1:-1;19493:9:1;;19388:120::o;19792:245::-;19859:6;19912:2;19900:9;19891:7;19887:23;19883:32;19880:52;;;19928:1;19925;19918:12;19880:52;19960:9;19954:16;19979:28;20001:5;19979:28;:::i;20042:415::-;20244:2;20226:21;;;20283:2;20263:18;;;20256:30;20322:34;20317:2;20302:18;;20295:62;-1:-1:-1;;;20388:2:1;20373:18;;20366:49;20447:3;20432:19;;20042:415::o;21230:470::-;21409:3;21447:6;21441:13;21463:53;21509:6;21504:3;21497:4;21489:6;21485:17;21463:53;:::i;:::-;21579:13;;21538:16;;;;21601:57;21579:13;21538:16;21635:4;21623:17;;21601:57;:::i;:::-;21674:20;;21230:470;-1:-1:-1;;;;21230:470:1:o;22468:405::-;22670:2;22652:21;;;22709:2;22689:18;;;22682:30;22748:34;22743:2;22728:18;;22721:62;-1:-1:-1;;;22814:2:1;22799:18;;22792:39;22863:3;22848:19;;22468:405::o;24110:246::-;24150:4;-1:-1:-1;;;;;24263:10:1;;;;24233;;24285:12;;;24282:38;;;24300:18;;:::i;:::-;24337:13;;24110:246;-1:-1:-1;;;24110:246:1:o;24361:253::-;24401:3;-1:-1:-1;;;;;24490:2:1;24487:1;24483:10;24520:2;24517:1;24513:10;24551:3;24547:2;24543:12;24538:3;24535:21;24532:47;;;24559:18;;:::i;25035:489::-;-1:-1:-1;;;;;25304:15:1;;;25286:34;;25356:15;;25351:2;25336:18;;25329:43;25403:2;25388:18;;25381:34;;;25451:3;25446:2;25431:18;;25424:31;;;25229:4;;25472:46;;25498:19;;25490:6;25472:46;:::i;:::-;25464:54;25035:489;-1:-1:-1;;;;;;25035:489:1:o;25529:249::-;25598:6;25651:2;25639:9;25630:7;25626:23;25622:32;25619:52;;;25667:1;25664;25657:12;25619:52;25699:9;25693:16;25718:30;25742:5;25718:30;:::i;25783:125::-;25823:4;25851:1;25848;25845:8;25842:34;;;25856:18;;:::i;:::-;-1:-1:-1;25893:9:1;;25783:125::o;25913:112::-;25945:1;25971;25961:35;;25976:18;;:::i;:::-;-1:-1:-1;26010:9:1;;25913:112::o

Swarm Source

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