ETH Price: $3,226.30 (+2.98%)

Token

Overweight Giraffes (OGS)
 

Overview

Max Total Supply

2,353 OGS

Holders

64

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xburnz.eth
Balance
205 OGS
0x5Df222B967b0C609573Df5e71339616722935303
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:
OverweightGiraffes

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-11
*/

// File: OverweightGiraffes_flat.sol


// File: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


// File: @openzeppelin/contracts/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/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

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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



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

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

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/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/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File: @openzeppelin/contracts/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 tokenId);

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

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// SPDX-License-Identifier: MIT

// File: OverweightGiraffes.sol

pragma solidity ^0.8.4;

contract OverweightGiraffes is Ownable, ERC721Enumerable {
    using SafeMath for uint256;
    
    mapping (uint256 => string) private _tokenURIs;
    
    mapping (uint256 => uint256) private _portionOfClaimableGiraffesTimesAHundred;

    uint256 public constant giraffePrice = 40000000000000000; //0.04 ETH

    uint256 public constant maxGiraffesPurchase = 10;

    uint256 public constant maxGiraffes = 10000;

    string private _contractBaseURI = "";

    bool public saleIsActive = false;
    
    bool public giraffesAreClaimable = false;
    
    address public _donationAddress = 0x54334Ebc8c9ef04bc28D614Caa557143ED8AfC87; //Rainforest Foundation US

    constructor() ERC721("Overweight Giraffes", "OGS"){
        reserveGiraffes(1);
    }

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }

    function withdraw() public onlyOwner {
        uint256 balance = payable(address(this)).balance;
        payable(_donationAddress).transfer(balance/3);
        payable(msg.sender).transfer(balance*2/3);
    }

    /**
     * Set some Giraffes aside
     */
    function reserveGiraffes(uint256 numberOfTokens) public onlyOwner {
        uint256 i;
        for (i = 0; i < numberOfTokens; i++) {
            uint256 index = totalSupply();
            if (index < maxGiraffes) {
                setGiraffePortionTimesHundredByIndex(index, 0);
                _safeMint(msg.sender, index);
            }
        }
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _contractBaseURI = baseURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _contractBaseURI;
    }
    
    
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }
    
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();
        
        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, uint2str(tokenId)));
    }

    /*
     * Pause sale if active, make active if paused
     */
    function startSale() public onlyOwner {
        saleIsActive = true;
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < supply; i++) {
            setGiraffePortionTimesHundredByIndex(i, 0);
        }
    }
    
    function endSale() public onlyOwner {
        saleIsActive = false;
        giraffesAreClaimable = true;
        uint256 supply = totalSupply();
        uint256 ownerBal = balanceOf(msg.sender);
        uint256 portionPerGiraffe = (maxGiraffes - supply)*100/(supply - ownerBal);
        for (uint256 i = 0; i < supply; i++) {
            if (ownerOf(i) != msg.sender) {
                setGiraffePortionTimesHundredByIndex(i, portionPerGiraffe);
            }
        }
    }

    /**
     * Mints Giraffes
     */
    function mintGiraffe(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint a Giraffe");
        require(
            numberOfTokens <= maxGiraffesPurchase,
            "Can only mint 10 Giraffes at a time"
        );
        require(
            totalSupply().add(numberOfTokens) <= maxGiraffes,
            "Purchase would exceed max supply of Giraffes"
        );
        require(
            giraffePrice.mul(numberOfTokens) <= msg.value,
            "Ether value sent is not correct"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 index = totalSupply();
            if (index < maxGiraffes) {
                setGiraffePortionTimesHundredByIndex(index, 0);
                _safeMint(msg.sender, index);
            }
        }
    }
    
    function getGiraffePortionTimesHundredByIndex(uint256 token) public view returns (uint256) {
        return _portionOfClaimableGiraffesTimesAHundred[token];
    }
    
    function setGiraffePortionTimesHundredByIndex(uint256 token, uint256 portion) private {
        _portionOfClaimableGiraffesTimesAHundred[token] = portion; 
    }
    
    function closeClaimPeriod() public onlyOwner {
        giraffesAreClaimable = false;
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < supply; i++) {
            setGiraffePortionTimesHundredByIndex(i, 0);
        }
    }
    
    /**
     * Claim users portion of giraffes
     */
    function claimRemainingGiraffes(uint256 claimAmount) public {
        require(!saleIsActive, "Sale must have ended to claim remaining giraffes");
        uint256 balance = balanceOf(msg.sender) - 1;
        require(balance >= 1, "User must have giraffes in wallet");
        uint256 claimableGiraffes = 0;
        uint256 maxClaimableGiraffes = 100 * 100;
        uint256 claimAmountTimesHundred = claimAmount * 100;
        // Calculate amount of claimable giraffes
        for (uint256 i = 0; i <= balance; i++) {
            uint256 token = tokenOfOwnerByIndex(msg.sender, i);
            uint256 portion = getGiraffePortionTimesHundredByIndex(token);
            claimableGiraffes += portion;  
            if (claimableGiraffes >= claimAmountTimesHundred) {
                uint256 limitedPortion = claimableGiraffes + portion - claimAmountTimesHundred;
                setGiraffePortionTimesHundredByIndex(token, limitedPortion);
                claimableGiraffes = claimAmountTimesHundred;
                break;
            } else if (claimableGiraffes >= maxClaimableGiraffes) {
                uint256 limitedPortion = claimableGiraffes + portion - maxClaimableGiraffes;
                setGiraffePortionTimesHundredByIndex(token, limitedPortion);
                claimableGiraffes = maxClaimableGiraffes;
                break;
            } else {
                uint256 remainingPortion = claimableGiraffes % 100;
                if (i == balance) {
                    // Save remaining balance on last giraffe if not whole portion was claimable
                    setGiraffePortionTimesHundredByIndex(token, remainingPortion);
                } else {
                    setGiraffePortionTimesHundredByIndex(token, 0);     
                }
            }
        }
        // Mint claimable giraffes to sender
        for (uint256 i = 0; i < claimableGiraffes/100; i++) {
            uint256 index = totalSupply();
            if (index < maxGiraffes) {
                _safeMint(msg.sender, index);
            }
        }
    }
}

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":"_donationAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"claimAmount","type":"uint256"}],"name":"claimRemainingGiraffes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"closeClaimPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"token","type":"uint256"}],"name":"getGiraffePortionTimesHundredByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giraffePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giraffesAreClaimable","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":"maxGiraffes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGiraffesPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintGiraffe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveGiraffes","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600d916200088e565b50600e80546001600160b01b0319167554334ebc8c9ef04bc28d614caa557143ed8afc8700001790553480156200005157600080fd5b506040518060400160405280601381526020017f4f76657277656967687420476972616666657300000000000000000000000000815250604051806040016040528060038152602001624f475360e81b815250620000be620000b86200010460201b60201c565b62000108565b8151620000d39060019060208501906200088e565b508051620000e99060029060208401906200088e565b505050620000fe60016200015860201b60201c565b62000ab4565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620001b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60005b818110156200020e576000620001d060095490565b9050612710811015620001f8576000818152600c6020526040812055620001f8338262000212565b5080620002058162000a54565b915050620001bb565b5050565b6200020e8282604051806020016040528060008152506200023460201b60201c565b620002408383620002ac565b6200024f600084848462000402565b620002a75760405162461bcd60e51b815260206004820152603260248201526000805160206200312283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001af565b505050565b6001600160a01b038216620003045760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001af565b6000818152600360205260409020546001600160a01b0316156200036b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001af565b62000379600083836200056b565b6001600160a01b0382166000908152600460205260408120805460019290620003a4908490620009e2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000423846001600160a01b03166200064760201b620015a11760201c565b156200055f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200045d90339089908890889060040162000967565b602060405180830381600087803b1580156200047857600080fd5b505af1925050508015620004ab575060408051601f3d908101601f19168201909252620004a89181019062000934565b60015b62000544573d808015620004dc576040519150601f19603f3d011682016040523d82523d6000602084013e620004e1565b606091505b5080516200053c5760405162461bcd60e51b815260206004820152603260248201526000805160206200312283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001af565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000563565b5060015b949350505050565b62000583838383620002a760201b620008a31760201c565b6001600160a01b038316620005e157620005db81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b62000607565b816001600160a01b0316836001600160a01b03161462000607576200060783826200064d565b6001600160a01b0382166200062157620002a781620006fa565b826001600160a01b0316826001600160a01b031614620002a757620002a78282620007b4565b3b151590565b6000600162000667846200080560201b62000f191760201c565b620006739190620009fd565b600083815260086020526040902054909150808214620006c7576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906200070e90600190620009fd565b6000838152600a60205260408120546009805493945090928490811062000739576200073962000a9e565b9060005260206000200154905080600983815481106200075d576200075d62000a9e565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548062000798576200079862000a88565b6001900381819060005260206000200160009055905550505050565b6000620007cc836200080560201b62000f191760201c565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b60006001600160a01b038216620008725760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001af565b506001600160a01b031660009081526004602052604090205490565b8280546200089c9062000a17565b90600052602060002090601f016020900481019282620008c057600085556200090b565b82601f10620008db57805160ff19168380011785556200090b565b828001600101855582156200090b579182015b828111156200090b578251825591602001919060010190620008ee565b50620009199291506200091d565b5090565b5b808211156200091957600081556001016200091e565b6000602082840312156200094757600080fd5b81516001600160e01b0319811681146200096057600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620009b65785810182015185820160a00152810162000998565b82811115620009c957600060a084870101525b5050601f01601f19169190910160a00195945050505050565b60008219821115620009f857620009f862000a72565b500190565b60008282101562000a125762000a1262000a72565b500390565b600181811c9082168062000a2c57607f821691505b6020821081141562000a4e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000a6b5762000a6b62000a72565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b61265e8062000ac46000396000f3fe6080604052600436106101f85760003560e01c806370a082311161010d578063b7bbaab6116100a0578063e985e9c51161006f578063e985e9c51461057c578063eb8d2444146105c5578063f030c526146105df578063f2fde38b146105f5578063fce6ec8c1461061557600080fd5b8063b7bbaab614610512578063b88d4fde14610527578063c87b56dd14610547578063db09c7b91461056757600080fd5b8063993d3268116100dc578063993d3268146104ab578063a22cb465146104be578063b285be37146104de578063b66a0e5d146104fd57600080fd5b806370a0823114610443578063715018a6146104635780638da5cb5b1461047857806395d89b411461049657600080fd5b8063380d831b116101905780634f6ccce71161015f5780634f6ccce7146103a857806355f804b3146103c85780635ce83ada146103e85780636352211e146104085780636eb7c7a61461042857600080fd5b8063380d831b1461033e5780633c077d13146103535780633ccfd60b1461037357806342842e0e1461038857600080fd5b8063095ea7b3116101cc578063095ea7b3146102c757806318160ddd146102e957806323b872dd146102fe5780632f745c591461031e57600080fd5b8062e0355d146101fd57806301ffc9a71461023d57806306fdde031461026d578063081812fc1461028f575b600080fd5b34801561020957600080fd5b5061022a6102183660046122eb565b6000908152600c602052604090205490565b6040519081526020015b60405180910390f35b34801561024957600080fd5b5061025d610258366004612268565b61063b565b6040519015158152602001610234565b34801561027957600080fd5b50610282610666565b604051610234919061239c565b34801561029b57600080fd5b506102af6102aa3660046122eb565b6106f8565b6040516001600160a01b039091168152602001610234565b3480156102d357600080fd5b506102e76102e236600461223e565b610792565b005b3480156102f557600080fd5b5060095461022a565b34801561030a57600080fd5b506102e761031936600461214a565b6108a8565b34801561032a57600080fd5b5061022a61033936600461223e565b6108d9565b34801561034a57600080fd5b506102e761096f565b34801561035f57600080fd5b506102e761036e3660046122eb565b610a3e565b34801561037f57600080fd5b506102e7610aba565b34801561039457600080fd5b506102e76103a336600461214a565b610b73565b3480156103b457600080fd5b5061022a6103c33660046122eb565b610b8e565b3480156103d457600080fd5b506102e76103e33660046122a2565b610c21565b3480156103f457600080fd5b506102e76104033660046122eb565b610c5e565b34801561041457600080fd5b506102af6104233660046122eb565b610ea2565b34801561043457600080fd5b5061022a668e1bc9bf04000081565b34801561044f57600080fd5b5061022a61045e3660046120fc565b610f19565b34801561046f57600080fd5b506102e7610fa0565b34801561048457600080fd5b506000546001600160a01b03166102af565b3480156104a257600080fd5b50610282610fd6565b6102e76104b93660046122eb565b610fe5565b3480156104ca57600080fd5b506102e76104d9366004612202565b6111c9565b3480156104ea57600080fd5b50600e5461025d90610100900460ff1681565b34801561050957600080fd5b506102e761128e565b34801561051e57600080fd5b506102e76112fe565b34801561053357600080fd5b506102e7610542366004612186565b61136c565b34801561055357600080fd5b506102826105623660046122eb565b61139e565b34801561057357600080fd5b5061022a600a81565b34801561058857600080fd5b5061025d610597366004612117565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105d157600080fd5b50600e5461025d9060ff1681565b3480156105eb57600080fd5b5061022a61271081565b34801561060157600080fd5b506102e76106103660046120fc565b611506565b34801561062157600080fd5b50600e546102af906201000090046001600160a01b031681565b60006001600160e01b0319821663780e9d6360e01b14806106605750610660826115a7565b92915050565b6060600180546106759061253a565b80601f01602080910402602001604051908101604052809291908181526020018280546106a19061253a565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061079d82610ea2565b9050806001600160a01b0316836001600160a01b0316141561080b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076d565b336001600160a01b038216148061082757506108278133610597565b6108995760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076d565b6108a383836115f7565b505050565b6108b23382611665565b6108ce5760405162461bcd60e51b815260040161076d90612436565b6108a383838361175c565b60006108e483610f19565b82106109465760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076d565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b031633146109995760405162461bcd60e51b815260040161076d90612401565b600e805461ffff191661010017905560006109b360095490565b905060006109c033610f19565b905060006109ce82846124f7565b6109da846127106124f7565b6109e59060646124d8565b6109ef91906124c4565b905060005b83811015610a385733610a0682610ea2565b6001600160a01b031614610a26576000818152600c602052604090208290555b80610a3081612575565b9150506109f4565b50505050565b6000546001600160a01b03163314610a685760405162461bcd60e51b815260040161076d90612401565b60005b81811015610ab6576000610a7e60095490565b9050612710811015610aa3576000818152600c6020526040812055610aa33382611907565b5080610aae81612575565b915050610a6b565b5050565b6000546001600160a01b03163314610ae45760405162461bcd60e51b815260040161076d90612401565b600e543031906201000090046001600160a01b03166108fc610b076003846124c4565b6040518115909202916000818181858888f19350505050158015610b2f573d6000803e3d6000fd5b50336108fc6003610b418460026124d8565b610b4b91906124c4565b6040518115909202916000818181858888f19350505050158015610ab6573d6000803e3d6000fd5b6108a38383836040518060200160405280600081525061136c565b6000610b9960095490565b8210610bfc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076d565b60098281548110610c0f57610c0f6125e6565b90600052602060002001549050919050565b6000546001600160a01b03163314610c4b5760405162461bcd60e51b815260040161076d90612401565b8051610ab690600d906020840190611fd1565b600e5460ff1615610cca5760405162461bcd60e51b815260206004820152603060248201527f53616c65206d757374206861766520656e64656420746f20636c61696d20726560448201526f6d61696e696e6720676972616666657360801b606482015260840161076d565b60006001610cd733610f19565b610ce191906124f7565b90506001811015610d3e5760405162461bcd60e51b815260206004820152602160248201527f55736572206d757374206861766520676972616666657320696e2077616c6c656044820152601d60fa1b606482015260840161076d565b600061271081610d4f8560646124d8565b905060005b848111610e50576000610d6733836108d9565b6000818152600c6020526040902054909150610d838187612487565b9550838610610dc157600084610d998389612487565b610da391906124f7565b6000848152600c602052604090208190559050849650505050610e50565b848610610dfd57600085610dd58389612487565b610ddf91906124f7565b6000848152600c602052604090208190559050859650505050610e50565b6000610e0a606488612590565b905087841415610e2a576000838152600c60205260409020819055610e3a565b6000838152600c60205260408120555b5050508080610e4890612575565b915050610d54565b5060005b610e5f6064856124c4565b811015610e9a576000610e7160095490565b9050612710811015610e8757610e873382611907565b5080610e9281612575565b915050610e54565b505050505050565b6000818152600360205260408120546001600160a01b0316806106605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076d565b60006001600160a01b038216610f845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076d565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610fca5760405162461bcd60e51b815260040161076d90612401565b610fd46000611921565b565b6060600280546106759061253a565b600e5460ff166110455760405162461bcd60e51b815260206004820152602560248201527f53616c65206d7573742062652061637469766520746f206d696e742061204769604482015264726166666560d81b606482015260840161076d565b600a8111156110a25760405162461bcd60e51b815260206004820152602360248201527f43616e206f6e6c79206d696e7420313020476972616666657320617420612074604482015262696d6560e81b606482015260840161076d565b6127106110b8826110b260095490565b90611971565b111561111b5760405162461bcd60e51b815260206004820152602c60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526b206f6620476972616666657360a01b606482015260840161076d565b3461112d668e1bc9bf04000083611984565b111561117b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161076d565b60005b81811015610ab657600061119160095490565b90506127108110156111b6576000818152600c60205260408120556111b63382611907565b50806111c181612575565b91505061117e565b6001600160a01b0382163314156112225760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146112b85760405162461bcd60e51b815260040161076d90612401565b600e805460ff1916600117905560006112d060095490565b905060005b81811015610ab6576000818152600c6020526040812055806112f681612575565b9150506112d5565b6000546001600160a01b031633146113285760405162461bcd60e51b815260040161076d90612401565b600e805461ff0019169055600061133e60095490565b905060005b81811015610ab6576000818152600c60205260408120558061136481612575565b915050611343565b6113763383611665565b6113925760405162461bcd60e51b815260040161076d90612436565b610a3884848484611990565b6000818152600360205260409020546060906001600160a01b031661141d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161076d565b6000828152600b6020526040812080546114369061253a565b80601f01602080910402602001604051908101604052809291908181526020018280546114629061253a565b80156114af5780601f10611484576101008083540402835291602001916114af565b820191906000526020600020905b81548152906001019060200180831161149257829003601f168201915b5050505050905060006114c06119c3565b90508051600014156114d3575092915050565b806114dd856119d2565b6040516020016114ee929190612330565b60405160208183030381529060405292505050919050565b6000546001600160a01b031633146115305760405162461bcd60e51b815260040161076d90612401565b6001600160a01b0381166115955760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076d565b61159e81611921565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806115d857506001600160e01b03198216635b5e139f60e01b145b8061066057506301ffc9a760e01b6001600160e01b0319831614610660565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061162c82610ea2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166116de5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076d565b60006116e983610ea2565b9050806001600160a01b0316846001600160a01b031614806117245750836001600160a01b0316611719846106f8565b6001600160a01b0316145b8061175457506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661176f82610ea2565b6001600160a01b0316146117d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076d565b6001600160a01b0382166118395760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076d565b611844838383611afb565b61184f6000826115f7565b6001600160a01b03831660009081526004602052604081208054600192906118789084906124f7565b90915550506001600160a01b03821660009081526004602052604081208054600192906118a6908490612487565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ab6828260405180602001604052806000815250611bb3565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061197d8284612487565b9392505050565b600061197d82846124d8565b61199b84848461175c565b6119a784848484611be6565b610a385760405162461bcd60e51b815260040161076d906123af565b6060600d80546106759061253a565b6060816119f65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a205780611a0a81612575565b9150611a199050600a836124c4565b91506119fa565b60008167ffffffffffffffff811115611a3b57611a3b6125fc565b6040519080825280601f01601f191660200182016040528015611a65576020820181803683370190505b509050815b8515611af257611a7b6001826124f7565b90506000611a8a600a886124c4565b611a9590600a6124d8565b611a9f90886124f7565b611aaa90603061249f565b905060008160f81b905080848481518110611ac757611ac76125e6565b60200101906001600160f81b031916908160001a905350611ae9600a896124c4565b97505050611a6a565b50949350505050565b6001600160a01b038316611b5657611b5181600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611b79565b816001600160a01b0316836001600160a01b031614611b7957611b798382611cf3565b6001600160a01b038216611b90576108a381611d90565b826001600160a01b0316826001600160a01b0316146108a3576108a38282611e3f565b611bbd8383611e83565b611bca6000848484611be6565b6108a35760405162461bcd60e51b815260040161076d906123af565b60006001600160a01b0384163b15611ce857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c2a90339089908890889060040161235f565b602060405180830381600087803b158015611c4457600080fd5b505af1925050508015611c74575060408051601f3d908101601f19168201909252611c7191810190612285565b60015b611cce573d808015611ca2576040519150601f19603f3d011682016040523d82523d6000602084013e611ca7565b606091505b508051611cc65760405162461bcd60e51b815260040161076d906123af565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611754565b506001949350505050565b60006001611d0084610f19565b611d0a91906124f7565b600083815260086020526040902054909150808214611d5d576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611da2906001906124f7565b6000838152600a602052604081205460098054939450909284908110611dca57611dca6125e6565b906000526020600020015490508060098381548110611deb57611deb6125e6565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611e2357611e236125d0565b6001900381819060005260206000200160009055905550505050565b6000611e4a83610f19565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611ed95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076d565b6000818152600360205260409020546001600160a01b031615611f3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076d565b611f4a60008383611afb565b6001600160a01b0382166000908152600460205260408120805460019290611f73908490612487565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fdd9061253a565b90600052602060002090601f016020900481019282611fff5760008555612045565b82601f1061201857805160ff1916838001178555612045565b82800160010185558215612045579182015b8281111561204557825182559160200191906001019061202a565b50612051929150612055565b5090565b5b808211156120515760008155600101612056565b600067ffffffffffffffff80841115612085576120856125fc565b604051601f8501601f19908116603f011681019082821181831017156120ad576120ad6125fc565b816040528093508581528686860111156120c657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120f757600080fd5b919050565b60006020828403121561210e57600080fd5b61197d826120e0565b6000806040838503121561212a57600080fd5b612133836120e0565b9150612141602084016120e0565b90509250929050565b60008060006060848603121561215f57600080fd5b612168846120e0565b9250612176602085016120e0565b9150604084013590509250925092565b6000806000806080858703121561219c57600080fd5b6121a5856120e0565b93506121b3602086016120e0565b925060408501359150606085013567ffffffffffffffff8111156121d657600080fd5b8501601f810187136121e757600080fd5b6121f68782356020840161206a565b91505092959194509250565b6000806040838503121561221557600080fd5b61221e836120e0565b91506020830135801515811461223357600080fd5b809150509250929050565b6000806040838503121561225157600080fd5b61225a836120e0565b946020939093013593505050565b60006020828403121561227a57600080fd5b813561197d81612612565b60006020828403121561229757600080fd5b815161197d81612612565b6000602082840312156122b457600080fd5b813567ffffffffffffffff8111156122cb57600080fd5b8201601f810184136122dc57600080fd5b6117548482356020840161206a565b6000602082840312156122fd57600080fd5b5035919050565b6000815180845261231c81602086016020860161250e565b601f01601f19169290920160200192915050565b6000835161234281846020880161250e565b83519083019061235681836020880161250e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239290830184612304565b9695505050505050565b60208152600061197d6020830184612304565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561249a5761249a6125a4565b500190565b600060ff821660ff84168060ff038211156124bc576124bc6125a4565b019392505050565b6000826124d3576124d36125ba565b500490565b60008160001904831182151516156124f2576124f26125a4565b500290565b600082821015612509576125096125a4565b500390565b60005b83811015612529578181015183820152602001612511565b83811115610a385750506000910152565b600181811c9082168061254e57607f821691505b6020821081141561256f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612589576125896125a4565b5060010190565b60008261259f5761259f6125ba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461159e57600080fdfea2646970667358221220ab13dcc5d5fd77c3da07beacf42902fa9f6831805d6e2cf31453b46f3929009f64736f6c634300080600334552433732313a207472616e7366657220746f206e6f6e204552433732315265

Deployed Bytecode

0x6080604052600436106101f85760003560e01c806370a082311161010d578063b7bbaab6116100a0578063e985e9c51161006f578063e985e9c51461057c578063eb8d2444146105c5578063f030c526146105df578063f2fde38b146105f5578063fce6ec8c1461061557600080fd5b8063b7bbaab614610512578063b88d4fde14610527578063c87b56dd14610547578063db09c7b91461056757600080fd5b8063993d3268116100dc578063993d3268146104ab578063a22cb465146104be578063b285be37146104de578063b66a0e5d146104fd57600080fd5b806370a0823114610443578063715018a6146104635780638da5cb5b1461047857806395d89b411461049657600080fd5b8063380d831b116101905780634f6ccce71161015f5780634f6ccce7146103a857806355f804b3146103c85780635ce83ada146103e85780636352211e146104085780636eb7c7a61461042857600080fd5b8063380d831b1461033e5780633c077d13146103535780633ccfd60b1461037357806342842e0e1461038857600080fd5b8063095ea7b3116101cc578063095ea7b3146102c757806318160ddd146102e957806323b872dd146102fe5780632f745c591461031e57600080fd5b8062e0355d146101fd57806301ffc9a71461023d57806306fdde031461026d578063081812fc1461028f575b600080fd5b34801561020957600080fd5b5061022a6102183660046122eb565b6000908152600c602052604090205490565b6040519081526020015b60405180910390f35b34801561024957600080fd5b5061025d610258366004612268565b61063b565b6040519015158152602001610234565b34801561027957600080fd5b50610282610666565b604051610234919061239c565b34801561029b57600080fd5b506102af6102aa3660046122eb565b6106f8565b6040516001600160a01b039091168152602001610234565b3480156102d357600080fd5b506102e76102e236600461223e565b610792565b005b3480156102f557600080fd5b5060095461022a565b34801561030a57600080fd5b506102e761031936600461214a565b6108a8565b34801561032a57600080fd5b5061022a61033936600461223e565b6108d9565b34801561034a57600080fd5b506102e761096f565b34801561035f57600080fd5b506102e761036e3660046122eb565b610a3e565b34801561037f57600080fd5b506102e7610aba565b34801561039457600080fd5b506102e76103a336600461214a565b610b73565b3480156103b457600080fd5b5061022a6103c33660046122eb565b610b8e565b3480156103d457600080fd5b506102e76103e33660046122a2565b610c21565b3480156103f457600080fd5b506102e76104033660046122eb565b610c5e565b34801561041457600080fd5b506102af6104233660046122eb565b610ea2565b34801561043457600080fd5b5061022a668e1bc9bf04000081565b34801561044f57600080fd5b5061022a61045e3660046120fc565b610f19565b34801561046f57600080fd5b506102e7610fa0565b34801561048457600080fd5b506000546001600160a01b03166102af565b3480156104a257600080fd5b50610282610fd6565b6102e76104b93660046122eb565b610fe5565b3480156104ca57600080fd5b506102e76104d9366004612202565b6111c9565b3480156104ea57600080fd5b50600e5461025d90610100900460ff1681565b34801561050957600080fd5b506102e761128e565b34801561051e57600080fd5b506102e76112fe565b34801561053357600080fd5b506102e7610542366004612186565b61136c565b34801561055357600080fd5b506102826105623660046122eb565b61139e565b34801561057357600080fd5b5061022a600a81565b34801561058857600080fd5b5061025d610597366004612117565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105d157600080fd5b50600e5461025d9060ff1681565b3480156105eb57600080fd5b5061022a61271081565b34801561060157600080fd5b506102e76106103660046120fc565b611506565b34801561062157600080fd5b50600e546102af906201000090046001600160a01b031681565b60006001600160e01b0319821663780e9d6360e01b14806106605750610660826115a7565b92915050565b6060600180546106759061253a565b80601f01602080910402602001604051908101604052809291908181526020018280546106a19061253a565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061079d82610ea2565b9050806001600160a01b0316836001600160a01b0316141561080b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076d565b336001600160a01b038216148061082757506108278133610597565b6108995760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076d565b6108a383836115f7565b505050565b6108b23382611665565b6108ce5760405162461bcd60e51b815260040161076d90612436565b6108a383838361175c565b60006108e483610f19565b82106109465760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076d565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b031633146109995760405162461bcd60e51b815260040161076d90612401565b600e805461ffff191661010017905560006109b360095490565b905060006109c033610f19565b905060006109ce82846124f7565b6109da846127106124f7565b6109e59060646124d8565b6109ef91906124c4565b905060005b83811015610a385733610a0682610ea2565b6001600160a01b031614610a26576000818152600c602052604090208290555b80610a3081612575565b9150506109f4565b50505050565b6000546001600160a01b03163314610a685760405162461bcd60e51b815260040161076d90612401565b60005b81811015610ab6576000610a7e60095490565b9050612710811015610aa3576000818152600c6020526040812055610aa33382611907565b5080610aae81612575565b915050610a6b565b5050565b6000546001600160a01b03163314610ae45760405162461bcd60e51b815260040161076d90612401565b600e543031906201000090046001600160a01b03166108fc610b076003846124c4565b6040518115909202916000818181858888f19350505050158015610b2f573d6000803e3d6000fd5b50336108fc6003610b418460026124d8565b610b4b91906124c4565b6040518115909202916000818181858888f19350505050158015610ab6573d6000803e3d6000fd5b6108a38383836040518060200160405280600081525061136c565b6000610b9960095490565b8210610bfc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076d565b60098281548110610c0f57610c0f6125e6565b90600052602060002001549050919050565b6000546001600160a01b03163314610c4b5760405162461bcd60e51b815260040161076d90612401565b8051610ab690600d906020840190611fd1565b600e5460ff1615610cca5760405162461bcd60e51b815260206004820152603060248201527f53616c65206d757374206861766520656e64656420746f20636c61696d20726560448201526f6d61696e696e6720676972616666657360801b606482015260840161076d565b60006001610cd733610f19565b610ce191906124f7565b90506001811015610d3e5760405162461bcd60e51b815260206004820152602160248201527f55736572206d757374206861766520676972616666657320696e2077616c6c656044820152601d60fa1b606482015260840161076d565b600061271081610d4f8560646124d8565b905060005b848111610e50576000610d6733836108d9565b6000818152600c6020526040902054909150610d838187612487565b9550838610610dc157600084610d998389612487565b610da391906124f7565b6000848152600c602052604090208190559050849650505050610e50565b848610610dfd57600085610dd58389612487565b610ddf91906124f7565b6000848152600c602052604090208190559050859650505050610e50565b6000610e0a606488612590565b905087841415610e2a576000838152600c60205260409020819055610e3a565b6000838152600c60205260408120555b5050508080610e4890612575565b915050610d54565b5060005b610e5f6064856124c4565b811015610e9a576000610e7160095490565b9050612710811015610e8757610e873382611907565b5080610e9281612575565b915050610e54565b505050505050565b6000818152600360205260408120546001600160a01b0316806106605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076d565b60006001600160a01b038216610f845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076d565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610fca5760405162461bcd60e51b815260040161076d90612401565b610fd46000611921565b565b6060600280546106759061253a565b600e5460ff166110455760405162461bcd60e51b815260206004820152602560248201527f53616c65206d7573742062652061637469766520746f206d696e742061204769604482015264726166666560d81b606482015260840161076d565b600a8111156110a25760405162461bcd60e51b815260206004820152602360248201527f43616e206f6e6c79206d696e7420313020476972616666657320617420612074604482015262696d6560e81b606482015260840161076d565b6127106110b8826110b260095490565b90611971565b111561111b5760405162461bcd60e51b815260206004820152602c60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526b206f6620476972616666657360a01b606482015260840161076d565b3461112d668e1bc9bf04000083611984565b111561117b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161076d565b60005b81811015610ab657600061119160095490565b90506127108110156111b6576000818152600c60205260408120556111b63382611907565b50806111c181612575565b91505061117e565b6001600160a01b0382163314156112225760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146112b85760405162461bcd60e51b815260040161076d90612401565b600e805460ff1916600117905560006112d060095490565b905060005b81811015610ab6576000818152600c6020526040812055806112f681612575565b9150506112d5565b6000546001600160a01b031633146113285760405162461bcd60e51b815260040161076d90612401565b600e805461ff0019169055600061133e60095490565b905060005b81811015610ab6576000818152600c60205260408120558061136481612575565b915050611343565b6113763383611665565b6113925760405162461bcd60e51b815260040161076d90612436565b610a3884848484611990565b6000818152600360205260409020546060906001600160a01b031661141d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161076d565b6000828152600b6020526040812080546114369061253a565b80601f01602080910402602001604051908101604052809291908181526020018280546114629061253a565b80156114af5780601f10611484576101008083540402835291602001916114af565b820191906000526020600020905b81548152906001019060200180831161149257829003601f168201915b5050505050905060006114c06119c3565b90508051600014156114d3575092915050565b806114dd856119d2565b6040516020016114ee929190612330565b60405160208183030381529060405292505050919050565b6000546001600160a01b031633146115305760405162461bcd60e51b815260040161076d90612401565b6001600160a01b0381166115955760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076d565b61159e81611921565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806115d857506001600160e01b03198216635b5e139f60e01b145b8061066057506301ffc9a760e01b6001600160e01b0319831614610660565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061162c82610ea2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166116de5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076d565b60006116e983610ea2565b9050806001600160a01b0316846001600160a01b031614806117245750836001600160a01b0316611719846106f8565b6001600160a01b0316145b8061175457506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661176f82610ea2565b6001600160a01b0316146117d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076d565b6001600160a01b0382166118395760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076d565b611844838383611afb565b61184f6000826115f7565b6001600160a01b03831660009081526004602052604081208054600192906118789084906124f7565b90915550506001600160a01b03821660009081526004602052604081208054600192906118a6908490612487565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ab6828260405180602001604052806000815250611bb3565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061197d8284612487565b9392505050565b600061197d82846124d8565b61199b84848461175c565b6119a784848484611be6565b610a385760405162461bcd60e51b815260040161076d906123af565b6060600d80546106759061253a565b6060816119f65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a205780611a0a81612575565b9150611a199050600a836124c4565b91506119fa565b60008167ffffffffffffffff811115611a3b57611a3b6125fc565b6040519080825280601f01601f191660200182016040528015611a65576020820181803683370190505b509050815b8515611af257611a7b6001826124f7565b90506000611a8a600a886124c4565b611a9590600a6124d8565b611a9f90886124f7565b611aaa90603061249f565b905060008160f81b905080848481518110611ac757611ac76125e6565b60200101906001600160f81b031916908160001a905350611ae9600a896124c4565b97505050611a6a565b50949350505050565b6001600160a01b038316611b5657611b5181600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611b79565b816001600160a01b0316836001600160a01b031614611b7957611b798382611cf3565b6001600160a01b038216611b90576108a381611d90565b826001600160a01b0316826001600160a01b0316146108a3576108a38282611e3f565b611bbd8383611e83565b611bca6000848484611be6565b6108a35760405162461bcd60e51b815260040161076d906123af565b60006001600160a01b0384163b15611ce857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c2a90339089908890889060040161235f565b602060405180830381600087803b158015611c4457600080fd5b505af1925050508015611c74575060408051601f3d908101601f19168201909252611c7191810190612285565b60015b611cce573d808015611ca2576040519150601f19603f3d011682016040523d82523d6000602084013e611ca7565b606091505b508051611cc65760405162461bcd60e51b815260040161076d906123af565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611754565b506001949350505050565b60006001611d0084610f19565b611d0a91906124f7565b600083815260086020526040902054909150808214611d5d576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611da2906001906124f7565b6000838152600a602052604081205460098054939450909284908110611dca57611dca6125e6565b906000526020600020015490508060098381548110611deb57611deb6125e6565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611e2357611e236125d0565b6001900381819060005260206000200160009055905550505050565b6000611e4a83610f19565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611ed95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076d565b6000818152600360205260409020546001600160a01b031615611f3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076d565b611f4a60008383611afb565b6001600160a01b0382166000908152600460205260408120805460019290611f73908490612487565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fdd9061253a565b90600052602060002090601f016020900481019282611fff5760008555612045565b82601f1061201857805160ff1916838001178555612045565b82800160010185558215612045579182015b8281111561204557825182559160200191906001019061202a565b50612051929150612055565b5090565b5b808211156120515760008155600101612056565b600067ffffffffffffffff80841115612085576120856125fc565b604051601f8501601f19908116603f011681019082821181831017156120ad576120ad6125fc565b816040528093508581528686860111156120c657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120f757600080fd5b919050565b60006020828403121561210e57600080fd5b61197d826120e0565b6000806040838503121561212a57600080fd5b612133836120e0565b9150612141602084016120e0565b90509250929050565b60008060006060848603121561215f57600080fd5b612168846120e0565b9250612176602085016120e0565b9150604084013590509250925092565b6000806000806080858703121561219c57600080fd5b6121a5856120e0565b93506121b3602086016120e0565b925060408501359150606085013567ffffffffffffffff8111156121d657600080fd5b8501601f810187136121e757600080fd5b6121f68782356020840161206a565b91505092959194509250565b6000806040838503121561221557600080fd5b61221e836120e0565b91506020830135801515811461223357600080fd5b809150509250929050565b6000806040838503121561225157600080fd5b61225a836120e0565b946020939093013593505050565b60006020828403121561227a57600080fd5b813561197d81612612565b60006020828403121561229757600080fd5b815161197d81612612565b6000602082840312156122b457600080fd5b813567ffffffffffffffff8111156122cb57600080fd5b8201601f810184136122dc57600080fd5b6117548482356020840161206a565b6000602082840312156122fd57600080fd5b5035919050565b6000815180845261231c81602086016020860161250e565b601f01601f19169290920160200192915050565b6000835161234281846020880161250e565b83519083019061235681836020880161250e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239290830184612304565b9695505050505050565b60208152600061197d6020830184612304565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561249a5761249a6125a4565b500190565b600060ff821660ff84168060ff038211156124bc576124bc6125a4565b019392505050565b6000826124d3576124d36125ba565b500490565b60008160001904831182151516156124f2576124f26125a4565b500290565b600082821015612509576125096125a4565b500390565b60005b83811015612529578181015183820152602001612511565b83811115610a385750506000910152565b600181811c9082168061254e57607f821691505b6020821081141561256f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612589576125896125a4565b5060010190565b60008261259f5761259f6125ba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461159e57600080fdfea2646970667358221220ab13dcc5d5fd77c3da07beacf42902fa9f6831805d6e2cf31453b46f3929009f64736f6c63430008060033

Deployed Bytecode Sourcemap

51367:7550:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56157:164;;;;;;;;;;-1:-1:-1;56157:164:0;;;;;:::i;:::-;56239:7;56266:47;;;:40;:47;;;;;;;56157:164;;;;15652:25:1;;;15640:2;15625:18;56157:164:0;;;;;;;;45122:224;;;;;;;;;;-1:-1:-1;45122:224:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;45122:224:0;5576:92:1;32029:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33588:221::-;;;;;;;;;;-1:-1:-1;33588:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;33588:221:0;4881:102:1;33111:411:0;;;;;;;;;;-1:-1:-1;33111:411:0;;;;;:::i;:::-;;:::i;:::-;;45762:113;;;;;;;;;;-1:-1:-1;45850:10:0;:17;45762:113;;34478:339;;;;;;;;;;-1:-1:-1;34478:339:0;;;;;:::i;:::-;;:::i;45430:256::-;;;;;;;;;;-1:-1:-1;45430:256:0;;;;;:::i;:::-;;:::i;54766:486::-;;;;;;;;;;;;;:::i;53001:364::-;;;;;;;;;;-1:-1:-1;53001:364:0;;;;;:::i;:::-;;:::i;52731:212::-;;;;;;;;;;;;;:::i;34888:185::-;;;;;;;;;;-1:-1:-1;34888:185:0;;;;;:::i;:::-;;:::i;45952:233::-;;;;;;;;;;-1:-1:-1;45952:233:0;;;;;:::i;:::-;;:::i;53373:105::-;;;;;;;;;;-1:-1:-1;53373:105:0;;;;;:::i;:::-;;:::i;56827:2087::-;;;;;;;;;;-1:-1:-1;56827:2087:0;;;;;:::i;:::-;;:::i;31723:239::-;;;;;;;;;;-1:-1:-1;31723:239:0;;;;;:::i;:::-;;:::i;51615:56::-;;;;;;;;;;;;51654:17;51615:56;;31453:208;;;;;;;;;;-1:-1:-1;31453:208:0;;;;;:::i;:::-;;:::i;12950:94::-;;;;;;;;;;;;;:::i;12299:87::-;;;;;;;;;;-1:-1:-1;12345:7:0;12372:6;-1:-1:-1;;;;;12372:6:0;12299:87;;32198:104;;;;;;;;;;;;;:::i;55301:844::-;;;;;;:::i;:::-;;:::i;33881:295::-;;;;;;;;;;-1:-1:-1;33881:295:0;;;;;:::i;:::-;;:::i;51890:40::-;;;;;;;;;;-1:-1:-1;51890:40:0;;;;;;;;;;;54521:233;;;;;;;;;;;;;:::i;56508:249::-;;;;;;;;;;;;;:::i;35144:328::-;;;;;;;;;;-1:-1:-1;35144:328:0;;;;;:::i;:::-;;:::i;53854:590::-;;;;;;;;;;-1:-1:-1;53854:590:0;;;;;:::i;:::-;;:::i;51691:48::-;;;;;;;;;;;;51737:2;51691:48;;34247:164;;;;;;;;;;-1:-1:-1;34247:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34368:25:0;;;34344:4;34368:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34247:164;51845:32;;;;;;;;;;-1:-1:-1;51845:32:0;;;;;;;;51748:43;;;;;;;;;;;;51786:5;51748:43;;13199:192;;;;;;;;;;-1:-1:-1;13199:192:0;;;;;:::i;:::-;;:::i;51943:76::-;;;;;;;;;;-1:-1:-1;51943:76:0;;;;;;;-1:-1:-1;;;;;51943:76:0;;;45122:224;45224:4;-1:-1:-1;;;;;;45248:50:0;;-1:-1:-1;;;45248:50:0;;:90;;;45302:36;45326:11;45302:23;:36::i;:::-;45241:97;45122:224;-1:-1:-1;;45122:224:0:o;32029:100::-;32083:13;32116:5;32109:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32029:100;:::o;33588:221::-;33664:7;37071:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37071:16:0;33684:73;;;;-1:-1:-1;;;33684:73:0;;12052:2:1;33684:73:0;;;12034:21:1;12091:2;12071:18;;;12064:30;12130:34;12110:18;;;12103:62;-1:-1:-1;;;12181:18:1;;;12174:42;12233:19;;33684:73:0;;;;;;;;;-1:-1:-1;33777:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33777:24:0;;33588:221::o;33111:411::-;33192:13;33208:23;33223:7;33208:14;:23::i;:::-;33192:39;;33256:5;-1:-1:-1;;;;;33250:11:0;:2;-1:-1:-1;;;;;33250:11:0;;;33242:57;;;;-1:-1:-1;;;33242:57:0;;14069:2:1;33242:57:0;;;14051:21:1;14108:2;14088:18;;;14081:30;14147:34;14127:18;;;14120:62;-1:-1:-1;;;14198:18:1;;;14191:31;14239:19;;33242:57:0;14041:223:1;33242:57:0;11169:10;-1:-1:-1;;;;;33334:21:0;;;;:62;;-1:-1:-1;33359:37:0;33376:5;11169:10;34247:164;:::i;33359:37::-;33312:168;;;;-1:-1:-1;;;33312:168:0;;10445:2:1;33312:168:0;;;10427:21:1;10484:2;10464:18;;;10457:30;10523:34;10503:18;;;10496:62;10594:26;10574:18;;;10567:54;10638:19;;33312:168:0;10417:246:1;33312:168:0;33493:21;33502:2;33506:7;33493:8;:21::i;:::-;33181:341;33111:411;;:::o;34478:339::-;34673:41;11169:10;34706:7;34673:18;:41::i;:::-;34665:103;;;;-1:-1:-1;;;34665:103:0;;;;;;;:::i;:::-;34781:28;34791:4;34797:2;34801:7;34781:9;:28::i;45430:256::-;45527:7;45563:23;45580:5;45563:16;:23::i;:::-;45555:5;:31;45547:87;;;;-1:-1:-1;;;45547:87:0;;6503:2:1;45547:87:0;;;6485:21:1;6542:2;6522:18;;;6515:30;6581:34;6561:18;;;6554:62;-1:-1:-1;;;6632:18:1;;;6625:41;6683:19;;45547:87:0;6475:233:1;45547:87:0;-1:-1:-1;;;;;;45652:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45430:256::o;54766:486::-;12345:7;12372:6;-1:-1:-1;;;;;12372:6:0;11169:10;12519:23;12511:68;;;;-1:-1:-1;;;12511:68:0;;;;;;;:::i;:::-;54813:12:::1;:20:::0;;-1:-1:-1;;54844:27:0;54813:20:::1;54844:27;::::0;;54828:5:::1;54899:13;45850:10:::0;:17;;45762:113;54899:13:::1;54882:30;;54923:16;54942:21;54952:10;54942:9;:21::i;:::-;54923:40:::0;-1:-1:-1;54974:25:0::1;55030:17;54923:40:::0;55030:6;:17:::1;:::i;:::-;55003:20;55017:6:::0;51786:5:::1;55003:20;:::i;:::-;55002:26;::::0;55025:3:::1;55002:26;:::i;:::-;:46;;;;:::i;:::-;54974:74;;55064:9;55059:186;55083:6;55079:1;:10;55059:186;;;55129:10;55115;55123:1:::0;55115:7:::1;:10::i;:::-;-1:-1:-1::0;;;;;55115:24:0::1;;55111:123;;56430:47:::0;;;;:40;:47;;;;;:57;;;55160:58:::1;55091:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55059:186;;;;54802:450;;;54766:486::o:0;53001:364::-;12345:7;12372:6;-1:-1:-1;;;;;12372:6:0;11169:10;12519:23;12511:68;;;;-1:-1:-1;;;12511:68:0;;;;;;;:::i;:::-;53078:9:::1;53098:260;53114:14;53110:1;:18;53098:260;;;53150:13;53166;45850:10:::0;:17;;45762:113;53166:13:::1;53150:29;;51786:5;53198;:19;53194:153;;;53282:1;56430:47:::0;;;:40;:47;;;;;:57;53303:28:::1;53313:10;53325:5;53303:9;:28::i;:::-;-1:-1:-1::0;53130:3:0;::::1;::::0;::::1;:::i;:::-;;;;53098:260;;;53067:298;53001:364:::0;:::o;52731:212::-;12345:7;12372:6;-1:-1:-1;;;;;12372:6:0;11169:10;12519:23;12511:68;;;;-1:-1:-1;;;12511:68:0;;;;;;;:::i;:::-;52846:16:::1;::::0;52813:4:::1;52797:30;::::0;52846:16;;::::1;-1:-1:-1::0;;;;;52846:16:0::1;52838:45;52873:9;52881:1;52797:30:::0;52873:9:::1;:::i;:::-;52838:45;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;52902:10:0::1;52894:41;52933:1;52923:9;:7:::0;52931:1:::1;52923:9;:::i;:::-;:11;;;;:::i;:::-;52894:41;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;34888:185:::0;35026:39;35043:4;35049:2;35053:7;35026:39;;;;;;;;;;;;:16;:39::i;45952:233::-;46027:7;46063:30;45850:10;:17;;45762:113;46063:30;46055:5;:38;46047:95;;;;-1:-1:-1;;;46047:95:0;;14889:2:1;46047:95:0;;;14871:21:1;14928:2;14908:18;;;14901:30;14967:34;14947:18;;;14940:62;-1:-1:-1;;;15018:18:1;;;15011:42;15070:19;;46047:95:0;14861:234:1;46047:95:0;46160:10;46171:5;46160:17;;;;;;;;:::i;:::-;;;;;;;;;46153:24;;45952:233;;;:::o;53373:105::-;12345:7;12372:6;-1:-1:-1;;;;;12372:6:0;11169:10;12519:23;12511:68;;;;-1:-1:-1;;;12511:68:0;;;;;;;:::i;:::-;53444:26;;::::1;::::0;:16:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;56827:2087::-:0;56907:12;;;;56906:13;56898:74;;;;-1:-1:-1;;;56898:74:0;;12826:2:1;56898:74:0;;;12808:21:1;12865:2;12845:18;;;12838:30;12904:34;12884:18;;;12877:62;-1:-1:-1;;;12955:18:1;;;12948:46;13011:19;;56898:74:0;12798:238:1;56898:74:0;56983:15;57025:1;57001:21;57011:10;57001:9;:21::i;:::-;:25;;;;:::i;:::-;56983:43;;57056:1;57045:7;:12;;57037:58;;;;-1:-1:-1;;;57037:58:0;;10043:2:1;57037:58:0;;;10025:21:1;10082:2;10062:18;;;10055:30;10121:34;10101:18;;;10094:62;-1:-1:-1;;;10172:18:1;;;10165:31;10213:19;;57037:58:0;10015:223:1;57037:58:0;57106:25;57177:9;57106:25;57231:17;:11;57245:3;57231:17;:::i;:::-;57197:51;;57315:9;57310:1331;57335:7;57330:1;:12;57310:1331;;57364:13;57380:34;57400:10;57412:1;57380:19;:34::i;:::-;57429:15;56266:47;;;:40;:47;;;;;;;;-1:-1:-1;57505:28:0;56266:47;57505:28;;:::i;:::-;;;57575:23;57554:17;:44;57550:1080;;57619:22;57674:23;57644:27;57664:7;57644:17;:27;:::i;:::-;:53;;;;:::i;:::-;56430:47;;;;:40;:47;;;;;:57;;;57619:78;-1:-1:-1;57814:23:0;57794:43;;57856:5;;;;;57550:1080;57908:20;57887:17;:41;57883:747;;57949:22;58004:20;57974:27;57994:7;57974:17;:27;:::i;:::-;:50;;;;:::i;:::-;56430:47;;;;:40;:47;;;;;:57;;;57949:75;-1:-1:-1;58141:20:0;58121:40;;58180:5;;;;;57883:747;58226:24;58253:23;58273:3;58253:17;:23;:::i;:::-;58226:50;;58304:7;58299:1;:12;58295:320;;;56430:47;;;;:40;:47;;;;;:57;;;58295:320;;;58588:1;56430:47;;;:40;:47;;;;;:57;58544:46;58207:423;57349:1292;;57344:3;;;;;:::i;:::-;;;;57310:1331;;;;58702:9;58697:210;58721:21;58739:3;58721:17;:21;:::i;:::-;58717:1;:25;58697:210;;;58764:13;58780;45850:10;:17;;45762:113;58780:13;58764:29;;51786:5;58812;:19;58808:88;;;58852:28;58862:10;58874:5;58852:9;:28::i;:::-;-1:-1:-1;58744:3:0;;;;:::i;:::-;;;;58697:210;;;;56887:2027;;;;56827:2087;:::o;31723:239::-;31795:7;31831:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31831:16:0;31866:19;31858:73;;;;-1:-1:-1;;;31858:73:0;;11281:2:1;31858:73:0;;;11263:21:1;11320:2;11300:18;;;11293:30;11359:34;11339:18;;;11332:62;-1:-1:-1;;;11410:18:1;;;11403:39;11459:19;;31858:73:0;11253:231:1;31453:208:0;31525:7;-1:-1:-1;;;;;31553:19:0;;31545:74;;;;-1:-1:-1;;;31545:74:0;;10870:2:1;31545:74:0;;;10852:21:1;10909:2;10889:18;;;10882:30;10948:34;10928:18;;;10921:62;-1:-1:-1;;;10999:18:1;;;10992:40;11049:19;;31545:74:0;10842:232:1;31545:74:0;-1:-1:-1;;;;;;31637:16:0;;;;;:9;:16;;;;;;;31453:208::o;12950:94::-;12345:7;12372:6;-1:-1:-1;;;;;12372:6:0;11169:10;12519:23;12511:68;;;;-1:-1:-1;;;12511:68:0;;;;;;;:::i;:::-;13015:21:::1;13033:1;13015:9;:21::i;:::-;12950:94::o:0;32198:104::-;32254:13;32287:7;32280:14;;;;;:::i;55301:844::-;55380:12;;;;55372:62;;;;-1:-1:-1;;;55372:62:0;;15302:2:1;55372:62:0;;;15284:21:1;15341:2;15321:18;;;15314:30;15380:34;15360:18;;;15353:62;-1:-1:-1;;;15431:18:1;;;15424:35;15476:19;;55372:62:0;15274:227:1;55372:62:0;51737:2;55467:14;:37;;55445:122;;;;-1:-1:-1;;;55445:122:0;;6099:2:1;55445:122:0;;;6081:21:1;6138:2;6118:18;;;6111:30;6177:34;6157:18;;;6150:62;-1:-1:-1;;;6228:18:1;;;6221:33;6271:19;;55445:122:0;6071:225:1;55445:122:0;51786:5;55600:33;55618:14;55600:13;45850:10;:17;;45762:113;55600:13;:17;;:33::i;:::-;:48;;55578:142;;;;-1:-1:-1;;;55578:142:0;;9630:2:1;55578:142:0;;;9612:21:1;9669:2;9649:18;;;9642:30;9708:34;9688:18;;;9681:62;-1:-1:-1;;;9759:18:1;;;9752:42;9811:19;;55578:142:0;9602:234:1;55578:142:0;55789:9;55753:32;51654:17;55770:14;55753:16;:32::i;:::-;:45;;55731:126;;;;-1:-1:-1;;;55731:126:0;;8857:2:1;55731:126:0;;;8839:21:1;8896:2;8876:18;;;8869:30;8935:33;8915:18;;;8908:61;8986:18;;55731:126:0;8829:181:1;55731:126:0;55875:9;55870:268;55894:14;55890:1;:18;55870:268;;;55930:13;55946;45850:10;:17;;45762:113;55946:13;55930:29;;51786:5;55978;:19;55974:153;;;56062:1;56430:47;;;:40;:47;;;;;:57;56083:28;56093:10;56105:5;56083:9;:28::i;:::-;-1:-1:-1;55910:3:0;;;;:::i;:::-;;;;55870:268;;33881:295;-1:-1:-1;;;;;33984:24:0;;11169:10;33984:24;;33976:62;;;;-1:-1:-1;;;33976:62:0;;8503:2:1;33976:62:0;;;8485:21:1;8542:2;8522:18;;;8515:30;8581:27;8561:18;;;8554:55;8626:18;;33976:62:0;8475:175:1;33976:62:0;11169:10;34051:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34051:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34051:53:0;;;;;;;;;;34120:48;;5621:41:1;;;34051:42:0;;11169:10;34120:48;;5594:18:1;34120:48:0;;;;;;;33881:295;;:::o;54521:233::-;12345:7;12372:6;-1:-1:-1;;;;;12372:6:0;11169:10;12519:23;12511:68;;;;-1:-1:-1;;;12511:68:0;;;;;;;:::i;:::-;54570:12:::1;:19:::0;;-1:-1:-1;;54570:19:0::1;54585:4;54570:19;::::0;;:12:::1;54617:13;45850:10:::0;:17;;45762:113;54617:13:::1;54600:30;;54646:9;54641:106;54665:6;54661:1;:10;54641:106;;;54733:1;56430:47:::0;;;:40;:47;;;;;:57;54673:3;::::1;::::0;::::1;:::i;:::-;;;;54641:106;;56508:249:::0;12345:7;12372:6;-1:-1:-1;;;;;12372:6:0;11169:10;12519:23;12511:68;;;;-1:-1:-1;;;12511:68:0;;;;;;;:::i;:::-;56564:20:::1;:28:::0;;-1:-1:-1;;56564:28:0::1;::::0;;56587:5:::1;56620:13;45850:10:::0;:17;;45762:113;56620:13:::1;56603:30;;56649:9;56644:106;56668:6;56664:1;:10;56644:106;;;56736:1;56430:47:::0;;;:40;:47;;;;;:57;56676:3;::::1;::::0;::::1;:::i;:::-;;;;56644:106;;35144:328:::0;35319:41;11169:10;35352:7;35319:18;:41::i;:::-;35311:103;;;;-1:-1:-1;;;35311:103:0;;;;;;;:::i;:::-;35425:39;35439:4;35445:2;35449:7;35458:5;35425:13;:39::i;53854:590::-;37047:4;37071:16;;;:7;:16;;;;;;53927:13;;-1:-1:-1;;;;;37071:16:0;53953:76;;;;-1:-1:-1;;;53953:76:0;;13653:2:1;53953:76:0;;;13635:21:1;13692:2;13672:18;;;13665:30;13731:34;13711:18;;;13704:62;-1:-1:-1;;;13782:18:1;;;13775:45;13837:19;;53953:76:0;13625:237:1;53953:76:0;54040:23;54066:19;;;:10;:19;;;;;54040:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54096:18;54117:10;:8;:10::i;:::-;54096:31;;54217:4;54211:18;54233:1;54211:23;54207:72;;;-1:-1:-1;54258:9:0;53854:590;-1:-1:-1;;53854:590:0:o;54207:72::-;54411:4;54417:17;54426:7;54417:8;:17::i;:::-;54394:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54380:56;;;;53854:590;;;:::o;13199:192::-;12345:7;12372:6;-1:-1:-1;;;;;12372:6:0;11169:10;12519:23;12511:68;;;;-1:-1:-1;;;12511:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13288:22:0;::::1;13280:73;;;::::0;-1:-1:-1;;;13280:73:0;;7334:2:1;13280:73:0::1;::::0;::::1;7316:21:1::0;7373:2;7353:18;;;7346:30;7412:34;7392:18;;;7385:62;-1:-1:-1;;;7463:18:1;;;7456:36;7509:19;;13280:73:0::1;7306:228:1::0;13280:73:0::1;13364:19;13374:8;13364:9;:19::i;:::-;13199:192:::0;:::o;14343:387::-;14666:20;14714:8;;;14343:387::o;31084:305::-;31186:4;-1:-1:-1;;;;;;31223:40:0;;-1:-1:-1;;;31223:40:0;;:105;;-1:-1:-1;;;;;;;31280:48:0;;-1:-1:-1;;;31280:48:0;31223:105;:158;;;-1:-1:-1;;;;;;;;;;24169:40:0;;;31345:36;24060:157;40964:174;41039:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41039:29:0;-1:-1:-1;;;;;41039:29:0;;;;;;;;:24;;41093:23;41039:24;41093:14;:23::i;:::-;-1:-1:-1;;;;;41084:46:0;;;;;;;;;;;40964:174;;:::o;37276:348::-;37369:4;37071:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37071:16:0;37386:73;;;;-1:-1:-1;;;37386:73:0;;9217:2:1;37386:73:0;;;9199:21:1;9256:2;9236:18;;;9229:30;9295:34;9275:18;;;9268:62;-1:-1:-1;;;9346:18:1;;;9339:42;9398:19;;37386:73:0;9189:234:1;37386:73:0;37470:13;37486:23;37501:7;37486:14;:23::i;:::-;37470:39;;37539:5;-1:-1:-1;;;;;37528:16:0;:7;-1:-1:-1;;;;;37528:16:0;;:51;;;;37572:7;-1:-1:-1;;;;;37548:31:0;:20;37560:7;37548:11;:20::i;:::-;-1:-1:-1;;;;;37548:31:0;;37528:51;:87;;;-1:-1:-1;;;;;;34368:25:0;;;34344:4;34368:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37583:32;37520:96;37276:348;-1:-1:-1;;;;37276:348:0:o;40268:578::-;40427:4;-1:-1:-1;;;;;40400:31:0;:23;40415:7;40400:14;:23::i;:::-;-1:-1:-1;;;;;40400:31:0;;40392:85;;;;-1:-1:-1;;;40392:85:0;;13243:2:1;40392:85:0;;;13225:21:1;13282:2;13262:18;;;13255:30;13321:34;13301:18;;;13294:62;-1:-1:-1;;;13372:18:1;;;13365:39;13421:19;;40392:85:0;13215:231:1;40392:85:0;-1:-1:-1;;;;;40496:16:0;;40488:65;;;;-1:-1:-1;;;40488:65:0;;8098:2:1;40488:65:0;;;8080:21:1;8137:2;8117:18;;;8110:30;8176:34;8156:18;;;8149:62;-1:-1:-1;;;8227:18:1;;;8220:34;8271:19;;40488:65:0;8070:226:1;40488:65:0;40566:39;40587:4;40593:2;40597:7;40566:20;:39::i;:::-;40670:29;40687:1;40691:7;40670:8;:29::i;:::-;-1:-1:-1;;;;;40712:15:0;;;;;;:9;:15;;;;;:20;;40731:1;;40712:15;:20;;40731:1;;40712:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40743:13:0;;;;;;:9;:13;;;;;:18;;40760:1;;40743:13;:18;;40760:1;;40743:18;:::i;:::-;;;;-1:-1:-1;;40772:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40772:21:0;-1:-1:-1;;;;;40772:21:0;;;;;;;;;40811:27;;40772:16;;40811:27;;;;;;;40268:578;;;:::o;37966:110::-;38042:26;38052:2;38056:7;38042:26;;;;;;;;;;;;:9;:26::i;13399:173::-;13455:16;13474:6;;-1:-1:-1;;;;;13491:17:0;;;-1:-1:-1;;;;;;13491:17:0;;;;;;13524:40;;13474:6;;;;;;;13524:40;;13455:16;13524:40;13444:128;13399:173;:::o;2830:98::-;2888:7;2915:5;2919:1;2915;:5;:::i;:::-;2908:12;2830:98;-1:-1:-1;;;2830:98:0:o;3568:::-;3626:7;3653:5;3657:1;3653;:5;:::i;36354:315::-;36511:28;36521:4;36527:2;36531:7;36511:9;:28::i;:::-;36558:48;36581:4;36587:2;36591:7;36600:5;36558:22;:48::i;:::-;36550:111;;;;-1:-1:-1;;;36550:111:0;;;;;;;:::i;53486:117::-;53546:13;53579:16;53572:23;;;;;:::i;52150:573::-;52200:27;52244:7;52240:50;;-1:-1:-1;;52268:10:0;;;;;;;;;;;;-1:-1:-1;;;52268:10:0;;;;;52150:573::o;52240:50::-;52309:2;52300:6;52341:69;52348:6;;52341:69;;52371:5;;;;:::i;:::-;;-1:-1:-1;52391:7:0;;-1:-1:-1;52396:2:0;52391:7;;:::i;:::-;;;52341:69;;;52420:17;52450:3;52440:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52440:14:0;-1:-1:-1;52420:34:0;-1:-1:-1;52474:3:0;52488:198;52495:7;;52488:198;;52523:3;52525:1;52523;:3;:::i;:::-;52519:7;-1:-1:-1;52541:10:0;52571:7;52576:2;52571;:7;:::i;:::-;:12;;52581:2;52571:12;:::i;:::-;52566:17;;:2;:17;:::i;:::-;52555:29;;:2;:29;:::i;:::-;52541:44;;52600:9;52619:4;52612:12;;52600:24;;52649:2;52639:4;52644:1;52639:7;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;52639:12:0;;;;;;;;-1:-1:-1;52666:8:0;52672:2;52666:8;;:::i;:::-;;;52504:182;;52488:198;;;-1:-1:-1;52710:4:0;52150:573;-1:-1:-1;;;;52150:573:0:o;46798:589::-;-1:-1:-1;;;;;47004:18:0;;47000:187;;47039:40;47071:7;48214:10;:17;;48187:24;;;;:15;:24;;;;;:44;;;48242:24;;;;;;;;;;;;48110:164;47039:40;47000:187;;;47109:2;-1:-1:-1;;;;;47101:10:0;:4;-1:-1:-1;;;;;47101:10:0;;47097:90;;47128:47;47161:4;47167:7;47128:32;:47::i;:::-;-1:-1:-1;;;;;47201:16:0;;47197:183;;47234:45;47271:7;47234:36;:45::i;47197:183::-;47307:4;-1:-1:-1;;;;;47301:10:0;:2;-1:-1:-1;;;;;47301:10:0;;47297:83;;47328:40;47356:2;47360:7;47328:27;:40::i;38303:321::-;38433:18;38439:2;38443:7;38433:5;:18::i;:::-;38484:54;38515:1;38519:2;38523:7;38532:5;38484:22;:54::i;:::-;38462:154;;;;-1:-1:-1;;;38462:154:0;;;;;;;:::i;41703:803::-;41858:4;-1:-1:-1;;;;;41879:13:0;;14666:20;14714:8;41875:624;;41915:72;;-1:-1:-1;;;41915:72:0;;-1:-1:-1;;;;;41915:36:0;;;;;:72;;11169:10;;41966:4;;41972:7;;41981:5;;41915:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41915:72:0;;;;;;;;-1:-1:-1;;41915:72:0;;;;;;;;;;;;:::i;:::-;;;41911:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42161:13:0;;42157:272;;42204:60;;-1:-1:-1;;;42204:60:0;;;;;;;:::i;42157:272::-;42379:6;42373:13;42364:6;42360:2;42356:15;42349:38;41911:533;-1:-1:-1;;;;;;42038:55:0;-1:-1:-1;;;42038:55:0;;-1:-1:-1;42031:62:0;;41875:624;-1:-1:-1;42483:4:0;41703:803;;;;;;:::o;48901:988::-;49167:22;49217:1;49192:22;49209:4;49192:16;:22::i;:::-;:26;;;;:::i;:::-;49229:18;49250:26;;;:17;:26;;;;;;49167:51;;-1:-1:-1;49383:28:0;;;49379:328;;-1:-1:-1;;;;;49450:18:0;;49428:19;49450:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49501:30;;;;;;:44;;;49618:30;;:17;:30;;;;;:43;;;49379:328;-1:-1:-1;49803:26:0;;;;:17;:26;;;;;;;;49796:33;;;-1:-1:-1;;;;;49847:18:0;;;;;:12;:18;;;;;:34;;;;;;;49840:41;48901:988::o;50184:1079::-;50462:10;:17;50437:22;;50462:21;;50482:1;;50462:21;:::i;:::-;50494:18;50515:24;;;:15;:24;;;;;;50888:10;:26;;50437:46;;-1:-1:-1;50515:24:0;;50437:46;;50888:26;;;;;;:::i;:::-;;;;;;;;;50866:48;;50952:11;50927:10;50938;50927:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51032:28;;;:15;:28;;;;;;;:41;;;51204:24;;;;;51197:31;51239:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50255:1008;;;50184:1079;:::o;47688:221::-;47773:14;47790:20;47807:2;47790:16;:20::i;:::-;-1:-1:-1;;;;;47821:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47866:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47688:221:0:o;38960:382::-;-1:-1:-1;;;;;39040:16:0;;39032:61;;;;-1:-1:-1;;;39032:61:0;;11691:2:1;39032:61:0;;;11673:21:1;;;11710:18;;;11703:30;11769:34;11749:18;;;11742:62;11821:18;;39032:61:0;11663:182:1;39032:61:0;37047:4;37071:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37071:16:0;:30;39104:58;;;;-1:-1:-1;;;39104:58:0;;7741:2:1;39104:58:0;;;7723:21:1;7780:2;7760:18;;;7753:30;7819;7799:18;;;7792:58;7867:18;;39104:58:0;7713:178:1;39104:58:0;39175:45;39204:1;39208:2;39212:7;39175:20;:45::i;:::-;-1:-1:-1;;;;;39233:13:0;;;;;;:9;:13;;;;;:18;;39250:1;;39233:13;:18;;39250:1;;39233:18;:::i;:::-;;;;-1:-1:-1;;39262:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39262:21:0;-1:-1:-1;;;;;39262:21:0;;;;;;;;39301:33;;39262:16;;;39301:33;;39262:16;;39301:33;38960:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:1;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:2;;;3026:1;3023;3016:12;2978:2;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:2;;;3287:1;3284;3277:12;3239:2;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:2;;;3541:1;3538;3531:12;3493:2;3581:9;3568:23;3614:18;3606:6;3603:30;3600:2;;;3646:1;3643;3636:12;3600:2;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:2:1;;3751:1;3748;3741:12;3700:2;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:2;;;3986:1;3983;3976:12;3938:2;-1:-1:-1;4009:23:1;;3928:110;-1:-1:-1;3928:110:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4092:208;-1:-1:-1;;4092:208:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4492:283;-1:-1:-1;;;;4492:283:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;5191:285;-1:-1:-1;;;;;;5191:285:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;6713:414::-;6915:2;6897:21;;;6954:2;6934:18;;;6927:30;6993:34;6988:2;6973:18;;6966:62;-1:-1:-1;;;7059:2:1;7044:18;;7037:48;7117:3;7102:19;;6887:240::o;12263:356::-;12465:2;12447:21;;;12484:18;;;12477:30;12543:34;12538:2;12523:18;;12516:62;12610:2;12595:18;;12437:182::o;14269:413::-;14471:2;14453:21;;;14510:2;14490:18;;;14483:30;14549:34;14544:2;14529:18;;14522:62;-1:-1:-1;;;14615:2:1;14600:18;;14593:47;14672:3;14657:19;;14443:239::o;15688:128::-;15728:3;15759:1;15755:6;15752:1;15749:13;15746:2;;;15765:18;;:::i;:::-;-1:-1:-1;15801:9:1;;15736:80::o;15821:204::-;15859:3;15895:4;15892:1;15888:12;15927:4;15924:1;15920:12;15962:3;15956:4;15952:14;15947:3;15944:23;15941:2;;;15970:18;;:::i;:::-;16006:13;;15867:158;-1:-1:-1;;;15867:158:1:o;16030:120::-;16070:1;16096;16086:2;;16101:18;;:::i;:::-;-1:-1:-1;16135:9:1;;16076:74::o;16155:168::-;16195:7;16261:1;16257;16253:6;16249:14;16246:1;16243:21;16238:1;16231:9;16224:17;16220:45;16217:2;;;16268:18;;:::i;:::-;-1:-1:-1;16308:9:1;;16207:116::o;16328:125::-;16368:4;16396:1;16393;16390:8;16387:2;;;16401:18;;:::i;:::-;-1:-1:-1;16438:9:1;;16377:76::o;16458:258::-;16530:1;16540:113;16554:6;16551:1;16548:13;16540:113;;;16630:11;;;16624:18;16611:11;;;16604:39;16576:2;16569:10;16540:113;;;16671:6;16668:1;16665:13;16662:2;;;-1:-1:-1;;16706:1:1;16688:16;;16681:27;16511:205::o;16721:380::-;16800:1;16796:12;;;;16843;;;16864:2;;16918:4;16910:6;16906:17;16896:27;;16864:2;16971;16963:6;16960:14;16940:18;16937:38;16934:2;;;17017:10;17012:3;17008:20;17005:1;16998:31;17052:4;17049:1;17042:15;17080:4;17077:1;17070:15;16934:2;;16776:325;;;:::o;17106:135::-;17145:3;-1:-1:-1;;17166:17:1;;17163:2;;;17186:18;;:::i;:::-;-1:-1:-1;17233:1:1;17222:13;;17153:88::o;17246:112::-;17278:1;17304;17294:2;;17309:18;;:::i;:::-;-1:-1:-1;17343:9:1;;17284:74::o;17363:127::-;17424:10;17419:3;17415:20;17412:1;17405:31;17455:4;17452:1;17445:15;17479:4;17476:1;17469:15;17495:127;17556:10;17551:3;17547:20;17544:1;17537:31;17587:4;17584:1;17577:15;17611:4;17608:1;17601:15;17627:127;17688:10;17683:3;17679:20;17676:1;17669:31;17719:4;17716:1;17709:15;17743:4;17740:1;17733:15;17759:127;17820:10;17815:3;17811:20;17808:1;17801:31;17851:4;17848:1;17841:15;17875:4;17872:1;17865:15;17891:127;17952:10;17947:3;17943:20;17940:1;17933:31;17983:4;17980:1;17973:15;18007:4;18004:1;17997:15;18023:131;-1:-1:-1;;;;;;18097:32:1;;18087:43;;18077:2;;18144:1;18141;18134:12

Swarm Source

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