ETH Price: $2,546.40 (+0.22%)

Token

Silverback (SILVERBACK)
 

Overview

Max Total Supply

541 SILVERBACK

Holders

231

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SILVERBACK
0x5d1477ae8ce136463d8a0a0ac5223d7c37906d3f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Kings of the jungle, Silverbacks require a sacrifice of 5 PSS for the reward of 10 $SILVER tokens/day. Use $SILVER to breed Silverbacks to mint new baby NFTs, upgrade metadata on PSS NFTs, and more.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SilverbackNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.6.2 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/access/[email protected]

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/introspection/[email protected]

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/token/ERC721/[email protected]

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/[email protected]

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/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

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);
    }

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

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

// File @openzeppelin/contracts/utils/[email protected]

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/introspection/[email protected]

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/[email protected]

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.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/[email protected]

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/[email protected]

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

// File contracts/OpenSeaTradableNFT.sol

pragma solidity ^0.8.0;

contract OpenSeaOwnableDelegateProxy {}

contract OpenSeaProxyRegistry {
    mapping(address => OpenSeaOwnableDelegateProxy) public proxies;
}

contract OpenSeaTradableNFT {
    address openSeaProxyRegistryAddress;

    function _setProxyRegistryAddress(address _openSeaProxyRegistryAddress)
        internal
    {
        openSeaProxyRegistryAddress = _openSeaProxyRegistryAddress;
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        OpenSeaProxyRegistry openSeaProxyRegistry = OpenSeaProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (address(openSeaProxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return false;
    }
}

// File contracts/SilverbackNFT.sol

pragma solidity ^0.8.0;

interface ISilverToken {
    /**
     * @dev Called from silverbacks when one is transfered/minted/burned
     */
    function updateRewards(address _user) external;
}

contract SilverbackNFT is Ownable, ERC721Enumerable, OpenSeaTradableNFT {
    using Strings for uint256;

    /* Base URI for token URIs */
    string public baseURI = '';

    /* Amount of PSS required to perform a sacrifice */
    uint256 public amountRequiredForSacrifice = 5;

    /* Mapping of PSS that are not allowed to be used in sacrifices */
    mapping(uint256 => bool) public invalidTokensForSacrifices;
    /* Mapping of PSS used in sacrifice for silverbacks */
    mapping(uint256 => uint256[]) public silverbackSacrifices;
    /* Mapping of silverbacks created by address */
    mapping(uint256 => address) public createdBy;
    /* Mapping of address created silverbacks */
    mapping(address => uint256) public createdCount;

    /* PSS NFT contract */
    IERC721 public primateSocialSocietyNFT;
    /* Silver Token contract */
    ISilverToken public silverToken;

    /* Keep track of mintId */
    uint256 tokensMinted = 0;

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

    constructor(
        string memory _initialBaseURI,
        IERC721 _primateSocialSocietyNFT,
        address _openSeaProxyRegistryAddress
    ) ERC721('Silverback', 'SILVERBACK') {
        baseURI = _initialBaseURI;
        primateSocialSocietyNFT = _primateSocialSocietyNFT;
        OpenSeaTradableNFT._setProxyRegistryAddress(
            _openSeaProxyRegistryAddress
        );
    }

    /**
     * @dev Getter to get array of PSS sacrificed for a silverback
     */
    function getSacrificesUsedFor(uint256 tokenId)
        external
        view
        returns (uint256[] memory)
    {
        return silverbackSacrifices[tokenId];
    }

    /**
     * @dev Sacrifice PSS to mint a silverback
     */
    function sacrifice(uint256[] calldata _tokenIds) external {
        require(
            _tokenIds.length == amountRequiredForSacrifice,
            'Incorrect amount of tokens for sacrifice'
        );

        for (uint256 i = 0; i < _tokenIds.length; i++) {
            require(
                !invalidTokensForSacrifices[_tokenIds[i]],
                string(
                    abi.encodePacked(
                        'SilverbackNFT: sacrifice is not valid for ',
                        _tokenIds[i].toString()
                    )
                )
            );

            primateSocialSocietyNFT.transferFrom(
                _msgSender(),
                address(this),
                _tokenIds[i]
            );
        }

        _safeMint(_msgSender(), tokensMinted);
        createdCount[_msgSender()] = createdCount[_msgSender()] + 1;
        createdBy[tokensMinted] = _msgSender();
        silverbackSacrifices[tokensMinted] = _tokenIds;
        tokensMinted = tokensMinted + 1;
    }

    /**
     * @dev Override to if default approved for OS proxy accounts or normal approval
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override(ERC721, OpenSeaTradableNFT)
        returns (bool)
    {
        if (OpenSeaTradableNFT.isApprovedForAll(owner, operator)) {
            return true;
        }

        return ERC721.isApprovedForAll(owner, operator);
    }

    /**
     * @dev Perform burn on a token
     */
    function burn(uint256 _tokenId) public virtual {
        require(
            _isApprovedOrOwner(_msgSender(), _tokenId),
            'ERC721Burnable: caller is not owner nor approved'
        );
        _burn(_tokenId);
    }

    /**
     * @dev Perform burn on a batch of tokens
     */
    function batchBurn(uint256[] memory _tokenIds) public virtual {
        for (uint256 i = 0; i < _tokenIds.length; ++i) {
            require(
                _isApprovedOrOwner(_msgSender(), _tokenIds[i]),
                string(
                    abi.encodePacked(
                        'ERC721Burnable: caller is not owner nor approved for ',
                        _tokenIds[i].toString()
                    )
                )
            );
            _burn(_tokenIds[i]);
        }
    }

    /**
     * @dev Perform transferFrom on a batch of tokens
     */
    function batchTransferFrom(
        address from,
        address to,
        uint256[] memory tokenIds
    ) public virtual {
        for (uint256 i = 0; i < tokenIds.length; ++i) {
            require(
                _isApprovedOrOwner(_msgSender(), tokenIds[i]),
                string(
                    abi.encodePacked(
                        'ERC721: transfer caller is not owner nor approved for ',
                        tokenIds[i].toString()
                    )
                )
            );
            _transfer(from, to, tokenIds[i]);
        }

        emit TransferBatch(_msgSender(), from, to, tokenIds);
    }

    /**
     * @dev Perform safeTransferFrom on a batch of tokens
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory tokenIds
    ) public virtual {
        safeBatchTransferFrom(from, to, tokenIds, '');
    }

    /**
     * @dev Perform safeTransferFrom on a batch of tokens
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory tokenIds,
        bytes memory _data
    ) public virtual {
        for (uint256 i = 0; i < tokenIds.length; ++i) {
            require(
                _isApprovedOrOwner(_msgSender(), tokenIds[i]),
                string(
                    abi.encodePacked(
                        'ERC721: transfer caller is not owner nor approved for ',
                        tokenIds[i].toString()
                    )
                )
            );
            _safeTransfer(from, to, tokenIds[i], _data);
        }

        emit TransferBatch(_msgSender(), from, to, tokenIds);
    }

    /**
     * @dev Override to change the baseURI used in tokenURI
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Override so we can update silver token rewards before transfer happens
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        if (to == address(0)) {
            address creator = createdBy[tokenId];
            createdCount[creator] = createdCount[creator] - 1;
        }

        silverToken.updateRewards(from);
        silverToken.updateRewards(to);

        super._beforeTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Set the base uri for token metadata
     */
    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    /**
     * @dev Set the pss nft contract
     */
    function setPrimateSocialSocietyNFT(IERC721 _primateSocialSocietyNFT)
        external
        onlyOwner
    {
        primateSocialSocietyNFT = _primateSocialSocietyNFT;
    }

    /**
     * @dev Set the silver token contract
     */
    function setSilverToken(ISilverToken _silverToken) external onlyOwner {
        silverToken = _silverToken;
    }

    /**
     * @dev Updated required amount of PSS needed for sacrifice
     */
    function updateAmountRequiredForSacrifice(uint256 amount)
        external
        onlyOwner
    {
        amountRequiredForSacrifice = amount;
    }

    /**
     * @dev Configures invalidTokensForSacrifices
     */
    function configureInvalidTokensForSacrifices(
        uint256[] calldata _tokenIds,
        bool _invalid
    ) external onlyOwner {
        for (uint256 i = 0; i < _tokenIds.length; ++i) {
            invalidTokensForSacrifices[_tokenIds[i]] = _invalid;
        }
    }

    /**
     * @dev Configures approvalForAll PSS that are sacrificed
     */
    function configureApprovalForAllPSS(address _operator, bool _approved)
        external
        onlyOwner
    {
        primateSocialSocietyNFT.setApprovalForAll(_operator, _approved);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"},{"internalType":"contract IERC721","name":"_primateSocialSocietyNFT","type":"address"},{"internalType":"address","name":"_openSeaProxyRegistryAddress","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"inputs":[],"name":"amountRequiredForSacrifice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"configureApprovalForAllPSS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bool","name":"_invalid","type":"bool"}],"name":"configureInvalidTokensForSacrifices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"createdBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"createdCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenId","type":"uint256"}],"name":"getSacrificesUsedFor","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"invalidTokensForSacrifices","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":"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":"primateSocialSocietyNFT","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"sacrifice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC721","name":"_primateSocialSocietyNFT","type":"address"}],"name":"setPrimateSocialSocietyNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISilverToken","name":"_silverToken","type":"address"}],"name":"setSilverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"silverToken","outputs":[{"internalType":"contract ISilverToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"silverbackSacrifices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateAmountRequiredForSacrifice","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600c91620001ab565b506005600d5560006014553480156200003357600080fd5b50604051620040a1380380620040a183398101604081905262000056916200026e565b6040518060400160405280600a81526020016953696c7665726261636b60b01b8152506040518060400160405280600a81526020016953494c5645524241434b60b01b815250620000b6620000b06200013560201b60201c565b62000139565b8151620000cb906001906020850190620001ab565b508051620000e1906002906020840190620001ab565b50508351620000f99150600c906020860190620001ab565b50601280546001600160a01b0319166001600160a01b0384161790556200012c8162000189602090811b62001efe17901c565b505050620003c4565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b828054620001b99062000371565b90600052602060002090601f016020900481019282620001dd576000855562000228565b82601f10620001f857805160ff191683800117855562000228565b8280016001018555821562000228579182015b82811115620002285782518255916020019190600101906200020b565b50620002369291506200023a565b5090565b5b808211156200023657600081556001016200023b565b80516001600160a01b03811681146200026957600080fd5b919050565b6000806000606084860312156200028457600080fd5b83516001600160401b03808211156200029c57600080fd5b818601915086601f830112620002b157600080fd5b815181811115620002c657620002c6620003ae565b604051601f8201601f19908116603f01168101908382118183101715620002f157620002f1620003ae565b816040528281526020935089848487010111156200030e57600080fd5b600091505b8282101562000332578482018401518183018501529083019062000313565b82821115620003445760008484830101525b96506200035691505086820162000251565b93505050620003686040850162000251565b90509250925092565b600181811c908216806200038657607f821691505b60208210811415620003a857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613ccd80620003d46000396000f3fe608060405234801561001057600080fd5b50600436106102c75760003560e01c806370a082311161017b578063c34fe1dd116100d8578063e89be6221161008c578063eefef9c411610071578063eefef9c41461060f578063f2fde38b14610622578063f3993d111461063557600080fd5b8063e89be622146105e9578063e985e9c5146105fc57600080fd5b8063c87b56dd116100bd578063c87b56dd146105b0578063dc8e92ea146105c3578063e33c57de146105d657600080fd5b8063c34fe1dd14610570578063c6581fe01461059057600080fd5b806395d89b411161012f578063a22cb46511610114578063a22cb46514610537578063a802e51c1461054a578063b88d4fde1461055d57600080fd5b806395d89b411461051c5780639f691afb1461052457600080fd5b8063746796bd11610160578063746796bd146104cb5780638da5cb5b146104de578063946a6aa3146104fc57600080fd5b806370a08231146104b0578063715018a6146104c357600080fd5b80632f745c591161022957806356127f6d116101dd57806365599104116101c257806365599104146104725780636b918c55146104955780636c0360eb146104a857600080fd5b806356127f6d1461043f5780636352211e1461045f57600080fd5b806342966c681161020e57806342966c68146104065780634f6ccce71461041957806355f804b31461042c57600080fd5b80632f745c59146103e057806342842e0e146103f357600080fd5b8063095ea7b31161028057806323b872dd1161026557806323b872dd146103b157806327e46137146103c457806328cfbd46146103cd57600080fd5b8063095ea7b31461038c57806318160ddd1461039f57600080fd5b8063034601ec116102b1578063034601ec1461034f57806306fdde0314610364578063081812fc1461037957600080fd5b80621baa89146102cc57806301ffc9a71461032c575b600080fd5b6103026102da366004613768565b60106020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b61033f61033a3660046136c8565b610648565b6040519015158152602001610323565b61036261035d366004613410565b6106a4565b005b61036c6106c4565b60405161032391906139ea565b610302610387366004613768565b610756565b61036261039a3660046135d1565b610835565b6009545b604051908152602001610323565b6103626103bf3660046134fb565b6109bd565b6103a3600d5481565b6103626103db366004613472565b610a5f565b6103a36103ee3660046135d1565b610bc6565b6103626104013660046134fb565b610c95565b610362610414366004613768565b610cb0565b6103a3610427366004613768565b610d51565b61036261043a36600461371f565b610e0f565b6103a361044d3660046133ba565b60116020526000908152604090205481565b61030261046d366004613768565b610ea7565b61033f610480366004613768565b600e6020526000908152604090205460ff1681565b6103626104a33660046133ba565b610f59565b61036c611021565b6103a36104be3660046133ba565b6110af565b61036261117d565b6103626104d93660046135fd565b61120a565b60005473ffffffffffffffffffffffffffffffffffffffff16610302565b6012546103029073ffffffffffffffffffffffffffffffffffffffff1681565b61036c6114cc565b610362610532366004613768565b6114db565b61036261054536600461359c565b611561565b61036261055836600461363f565b611678565b61036261056b36600461353c565b61175e565b6013546103029073ffffffffffffffffffffffffffffffffffffffff1681565b6105a361059e366004613768565b611800565b60405161032391906139a6565b61036c6105be366004613768565b611862565b6103626105d1366004613693565b611972565b6103626105e43660046133ba565b611a34565b6103626105f736600461359c565b611afc565b61033f61060a3660046133d7565b611c0e565b6103a361061d366004613781565b611c62565b6103626106303660046133ba565b611c93565b610362610643366004613410565b611dc0565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000148061069e575061069e82611f45565b92915050565b6106bf83838360405180602001604052806000815250610a5f565b505050565b6060600180546106d390613abb565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff90613abb565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1661080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061084082610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610803565b3373ffffffffffffffffffffffffffffffffffffffff8216148061092757506109278133611c0e565b6109b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610803565b6106bf8383612028565b6109c8335b826120c8565b610a54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610803565b6106bf83838361220b565b60005b8251811015610b3d57610a8e33848381518110610a8157610a81613be9565b60200260200101516120c8565b610ab0848381518110610aa357610aa3613be9565b602002602001015161247d565b604051602001610ac09190613887565b60405160208183030381529060405290610b07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080391906139ea565b50610b2d8585858481518110610b1f57610b1f613be9565b6020026020010151856125af565b610b3681613b0f565b9050610a62565b508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16610b733390565b73ffffffffffffffffffffffffffffffffffffffff167f2e75a6cf483a33fd7e40b01fc5b561361f6e9b2d5a492f866bd66ca430a8c55785604051610bb891906139a6565b60405180910390a450505050565b6000610bd1836110af565b8210610c5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610803565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600760209081526040808320938352929052205490565b6106bf8383836040518060200160405280600081525061175e565b610cb9336109c2565b610d45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610803565b610d4e81612652565b50565b6000610d5c60095490565b8210610dea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610803565b60098281548110610dfd57610dfd613be9565b90600052602060002001549050919050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b8051610ea390600c906020840190613169565b5050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff168061069e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610803565b60005473ffffffffffffffffffffffffffffffffffffffff163314610fda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b601380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600c805461102e90613abb565b80601f016020809104026020016040519081016040528092919081815260200182805461105a90613abb565b80156110a75780601f1061107c576101008083540402835291602001916110a7565b820191906000526020600020905b81548152906001019060200180831161108a57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610803565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146111fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b611208600061272b565b565b600d54811461129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f496e636f727265637420616d6f756e74206f6620746f6b656e7320666f72207360448201527f61637269666963650000000000000000000000000000000000000000000000006064820152608401610803565b60005b8181101561142c57600e60008484848181106112bc576112bc613be9565b602090810292909201358352508101919091526040016000205460ff16156112fb8484848181106112ef576112ef613be9565b9050602002013561247d565b60405160200161130b919061381c565b60405160208183030381529060405290611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080391906139ea565b5060125473ffffffffffffffffffffffffffffffffffffffff166323b872dd333086868681811061138557611385613be9565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b16815273ffffffffffffffffffffffffffffffffffffffff958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b15801561140157600080fd5b505af1158015611415573d6000803e3d6000fd5b50505050808061142490613b0f565b91505061129e565b50611439336014546127a0565b33600090815260116020526040902054611454906001613a4c565b336000818152601160209081526040808320949094556014805483526010825284832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690941790935591548152600f909152206114b69083836131ed565b506014546114c5906001613a4c565b6014555050565b6060600280546106d390613abb565b60005473ffffffffffffffffffffffffffffffffffffffff16331461155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b600d55565b73ffffffffffffffffffffffffffffffffffffffff82163314156115e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610803565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146116f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b60005b828110156117585781600e600086868581811061171b5761171b613be9565b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508061175190613b0f565b90506116fc565b50505050565b61176833836120c8565b6117f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610803565b611758848484846125af565b6000818152600f602090815260409182902080548351818402810184019094528084526060939283018282801561185657602002820191906000526020600020905b815481526020019060010190808311611842575b50505050509050919050565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610803565b60006119206127ba565b90506000815111611940576040518060200160405280600081525061196b565b8061194a8461247d565b60405160200161195b9291906137ed565b6040516020818303038152906040525b9392505050565b60005b8151811015610ea357611995335b838381518110610a8157610a81613be9565b6119aa838381518110610aa357610aa3613be9565b6040516020016119ba91906138f2565b60405160208183030381529060405290611a01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080391906139ea565b50611a24828281518110611a1757611a17613be9565b6020026020010151612652565b611a2d81613b0f565b9050611975565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ab5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b601280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b6012546040517fa22cb46500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015283151560248301529091169063a22cb46590604401600060405180830381600087803b158015611bf257600080fd5b505af1158015611c06573d6000803e3d6000fd5b505050505050565b6000611c1a83836127c9565b15611c275750600161069e565b73ffffffffffffffffffffffffffffffffffffffff80841660009081526006602090815260408083209386168352929052205460ff1661196b565b600f6020528160005260406000208181548110611c7e57600080fd5b90600052602060002001600091509150505481565b60005473ffffffffffffffffffffffffffffffffffffffff163314611d14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b73ffffffffffffffffffffffffffffffffffffffff8116611db7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610803565b610d4e8161272b565b60005b8151811015611e7657611dd533611983565b611dea838381518110610aa357610aa3613be9565b604051602001611dfa9190613887565b60405160208183030381529060405290611e41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080391906139ea565b50611e668484848481518110611e5957611e59613be9565b602002602001015161220b565b611e6f81613b0f565b9050611dc3565b508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16611eac3390565b73ffffffffffffffffffffffffffffffffffffffff167f2e75a6cf483a33fd7e40b01fc5b561361f6e9b2d5a492f866bd66ca430a8c55784604051611ef191906139a6565b60405180910390a4505050565b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611fd857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061069e57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461069e565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061208282610ea7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610803565b600061218483610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121f357508373ffffffffffffffffffffffffffffffffffffffff166121db84610756565b73ffffffffffffffffffffffffffffffffffffffff16145b8061220357506122038185611c0e565b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661222b82610ea7565b73ffffffffffffffffffffffffffffffffffffffff16146122ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8216612370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610803565b61237b8383836128a4565b612386600082612028565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081208054600192906123bc908490613a78565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906123f7908490613a4c565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060816124bd57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156124e757806124d181613b0f565b91506124e09050600a83613a64565b91506124c1565b60008167ffffffffffffffff81111561250257612502613c18565b6040519080825280601f01601f19166020018201604052801561252c576020820181803683370190505b5090505b841561220357612541600183613a78565b915061254e600a86613b48565b612559906030613a4c565b60f81b81838151811061256e5761256e613be9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506125a8600a86613a64565b9450612530565b6125ba84848461220b565b6125c684848484612a3c565b611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610803565b600061265d82610ea7565b905061266b816000846128a4565b612676600083612028565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906126ac908490613a78565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610ea3828260405180602001604052806000815250612c3b565b6060600c80546106d390613abb565b600b546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561283c57600080fd5b505afa158015612850573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128749190613702565b73ffffffffffffffffffffffffffffffffffffffff16141561289a57600191505061069e565b5060009392505050565b73ffffffffffffffffffffffffffffffffffffffff82166129275760008181526010602090815260408083205473ffffffffffffffffffffffffffffffffffffffff168084526011909252909120546128ff90600190613a78565b73ffffffffffffffffffffffffffffffffffffffff9091166000908152601160205260409020555b6013546040517f5fd6196500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff858116600483015290911690635fd6196590602401600060405180830381600087803b15801561299457600080fd5b505af11580156129a8573d6000803e3d6000fd5b50506013546040517f5fd6196500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301529091169250635fd619659150602401600060405180830381600087803b158015612a1957600080fd5b505af1158015612a2d573d6000803e3d6000fd5b505050506106bf838383612cde565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612c30576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612ab390339089908890889060040161395d565b602060405180830381600087803b158015612acd57600080fd5b505af1925050508015612b1b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612b18918101906136e5565b60015b612be5573d808015612b49576040519150601f19603f3d011682016040523d82523d6000602084013e612b4e565b606091505b508051612bdd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610803565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612203565b506001949350505050565b612c458383612de4565b612c526000848484612a3c565b6106bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8316612d4657612d4181600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612d83565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d8357612d838382612fb2565b73ffffffffffffffffffffffffffffffffffffffff8216612da7576106bf81613069565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146106bf576106bf8282613118565b73ffffffffffffffffffffffffffffffffffffffff8216612e61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610803565b60008181526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1615612eed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610803565b612ef9600083836128a4565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612f2f908490613a4c565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612fbf846110af565b612fc99190613a78565b6000838152600860205260409020549091508082146130295773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b50600091825260086020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600781528383209183525290812055565b60095460009061307b90600190613a78565b6000838152600a6020526040812054600980549394509092849081106130a3576130a3613be9565b9060005260206000200154905080600983815481106130c4576130c4613be9565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806130fc576130fc613bba565b6001900381819060005260206000200160009055905550505050565b6000613123836110af565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461317590613abb565b90600052602060002090601f01602090048101928261319757600085556131dd565b82601f106131b057805160ff19168380011785556131dd565b828001600101855582156131dd579182015b828111156131dd5782518255916020019190600101906131c2565b506131e9929150613228565b5090565b8280548282559060005260206000209081019282156131dd579160200282015b828111156131dd57823582559160200191906001019061320d565b5b808211156131e95760008155600101613229565b600067ffffffffffffffff83111561325757613257613c18565b61328860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116016139fd565b905082815283838301111561329c57600080fd5b828260208301376000602084830101529392505050565b60008083601f8401126132c557600080fd5b50813567ffffffffffffffff8111156132dd57600080fd5b6020830191508360208260051b85010111156132f857600080fd5b9250929050565b600082601f83011261331057600080fd5b8135602067ffffffffffffffff82111561332c5761332c613c18565b8160051b61333b8282016139fd565b83815282810190868401838801850189101561335657600080fd5b600093505b8584101561337957803583526001939093019291840191840161335b565b50979650505050505050565b8035801515811461339557600080fd5b919050565b600082601f8301126133ab57600080fd5b61196b8383356020850161323d565b6000602082840312156133cc57600080fd5b813561196b81613c47565b600080604083850312156133ea57600080fd5b82356133f581613c47565b9150602083013561340581613c47565b809150509250929050565b60008060006060848603121561342557600080fd5b833561343081613c47565b9250602084013561344081613c47565b9150604084013567ffffffffffffffff81111561345c57600080fd5b613468868287016132ff565b9150509250925092565b6000806000806080858703121561348857600080fd5b843561349381613c47565b935060208501356134a381613c47565b9250604085013567ffffffffffffffff808211156134c057600080fd5b6134cc888389016132ff565b935060608701359150808211156134e257600080fd5b506134ef8782880161339a565b91505092959194509250565b60008060006060848603121561351057600080fd5b833561351b81613c47565b9250602084013561352b81613c47565b929592945050506040919091013590565b6000806000806080858703121561355257600080fd5b843561355d81613c47565b9350602085013561356d81613c47565b925060408501359150606085013567ffffffffffffffff81111561359057600080fd5b6134ef8782880161339a565b600080604083850312156135af57600080fd5b82356135ba81613c47565b91506135c860208401613385565b90509250929050565b600080604083850312156135e457600080fd5b82356135ef81613c47565b946020939093013593505050565b6000806020838503121561361057600080fd5b823567ffffffffffffffff81111561362757600080fd5b613633858286016132b3565b90969095509350505050565b60008060006040848603121561365457600080fd5b833567ffffffffffffffff81111561366b57600080fd5b613677868287016132b3565b909450925061368a905060208501613385565b90509250925092565b6000602082840312156136a557600080fd5b813567ffffffffffffffff8111156136bc57600080fd5b612203848285016132ff565b6000602082840312156136da57600080fd5b813561196b81613c69565b6000602082840312156136f757600080fd5b815161196b81613c69565b60006020828403121561371457600080fd5b815161196b81613c47565b60006020828403121561373157600080fd5b813567ffffffffffffffff81111561374857600080fd5b8201601f8101841361375957600080fd5b6122038482356020840161323d565b60006020828403121561377a57600080fd5b5035919050565b6000806040838503121561379457600080fd5b50508035926020909101359150565b600081518084526137bb816020860160208601613a8f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516137ff818460208801613a8f565b835190830190613813818360208801613a8f565b01949350505050565b7f53696c7665726261636b4e46543a20736163726966696365206973206e6f742081527f76616c696420666f72200000000000000000000000000000000000000000000060208201526000825161387a81602a850160208701613a8f565b91909101602a0192915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f81527f776e6572206e6f7220617070726f76656420666f7220000000000000000000006020820152600082516138e5816036850160208701613a8f565b9190910160360192915050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7781527f6e6572206e6f7220617070726f76656420666f72200000000000000000000000602082015260008251613950816035850160208701613a8f565b9190910160350192915050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261399c60808301846137a3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156139de578351835292840192918401916001016139c2565b50909695505050505050565b60208152600061196b60208301846137a3565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715613a4457613a44613c18565b604052919050565b60008219821115613a5f57613a5f613b5c565b500190565b600082613a7357613a73613b8b565b500490565b600082821015613a8a57613a8a613b5c565b500390565b60005b83811015613aaa578181015183820152602001613a92565b838111156117585750506000910152565b600181811c90821680613acf57607f821691505b60208210811415613b09577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b4157613b41613b5c565b5060010190565b600082613b5757613b57613b8b565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff81168114610d4e57600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d4e57600080fdfea2646970667358221220fbbf40283d8b3257c26b2c013733e790ede3574f2f107bc3b83adc5d4f1ab86b64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000076e51bc8fa0beebcf3e45de408fa43c9dc5ffb27000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000003668747470733a2f2f7073732d73696c7665726261636b2d676f2d6e66742d6170692e6865726f6b756170702e636f6d2f746f6b656e2f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102c75760003560e01c806370a082311161017b578063c34fe1dd116100d8578063e89be6221161008c578063eefef9c411610071578063eefef9c41461060f578063f2fde38b14610622578063f3993d111461063557600080fd5b8063e89be622146105e9578063e985e9c5146105fc57600080fd5b8063c87b56dd116100bd578063c87b56dd146105b0578063dc8e92ea146105c3578063e33c57de146105d657600080fd5b8063c34fe1dd14610570578063c6581fe01461059057600080fd5b806395d89b411161012f578063a22cb46511610114578063a22cb46514610537578063a802e51c1461054a578063b88d4fde1461055d57600080fd5b806395d89b411461051c5780639f691afb1461052457600080fd5b8063746796bd11610160578063746796bd146104cb5780638da5cb5b146104de578063946a6aa3146104fc57600080fd5b806370a08231146104b0578063715018a6146104c357600080fd5b80632f745c591161022957806356127f6d116101dd57806365599104116101c257806365599104146104725780636b918c55146104955780636c0360eb146104a857600080fd5b806356127f6d1461043f5780636352211e1461045f57600080fd5b806342966c681161020e57806342966c68146104065780634f6ccce71461041957806355f804b31461042c57600080fd5b80632f745c59146103e057806342842e0e146103f357600080fd5b8063095ea7b31161028057806323b872dd1161026557806323b872dd146103b157806327e46137146103c457806328cfbd46146103cd57600080fd5b8063095ea7b31461038c57806318160ddd1461039f57600080fd5b8063034601ec116102b1578063034601ec1461034f57806306fdde0314610364578063081812fc1461037957600080fd5b80621baa89146102cc57806301ffc9a71461032c575b600080fd5b6103026102da366004613768565b60106020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b61033f61033a3660046136c8565b610648565b6040519015158152602001610323565b61036261035d366004613410565b6106a4565b005b61036c6106c4565b60405161032391906139ea565b610302610387366004613768565b610756565b61036261039a3660046135d1565b610835565b6009545b604051908152602001610323565b6103626103bf3660046134fb565b6109bd565b6103a3600d5481565b6103626103db366004613472565b610a5f565b6103a36103ee3660046135d1565b610bc6565b6103626104013660046134fb565b610c95565b610362610414366004613768565b610cb0565b6103a3610427366004613768565b610d51565b61036261043a36600461371f565b610e0f565b6103a361044d3660046133ba565b60116020526000908152604090205481565b61030261046d366004613768565b610ea7565b61033f610480366004613768565b600e6020526000908152604090205460ff1681565b6103626104a33660046133ba565b610f59565b61036c611021565b6103a36104be3660046133ba565b6110af565b61036261117d565b6103626104d93660046135fd565b61120a565b60005473ffffffffffffffffffffffffffffffffffffffff16610302565b6012546103029073ffffffffffffffffffffffffffffffffffffffff1681565b61036c6114cc565b610362610532366004613768565b6114db565b61036261054536600461359c565b611561565b61036261055836600461363f565b611678565b61036261056b36600461353c565b61175e565b6013546103029073ffffffffffffffffffffffffffffffffffffffff1681565b6105a361059e366004613768565b611800565b60405161032391906139a6565b61036c6105be366004613768565b611862565b6103626105d1366004613693565b611972565b6103626105e43660046133ba565b611a34565b6103626105f736600461359c565b611afc565b61033f61060a3660046133d7565b611c0e565b6103a361061d366004613781565b611c62565b6103626106303660046133ba565b611c93565b610362610643366004613410565b611dc0565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000148061069e575061069e82611f45565b92915050565b6106bf83838360405180602001604052806000815250610a5f565b505050565b6060600180546106d390613abb565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff90613abb565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1661080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061084082610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610803565b3373ffffffffffffffffffffffffffffffffffffffff8216148061092757506109278133611c0e565b6109b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610803565b6106bf8383612028565b6109c8335b826120c8565b610a54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610803565b6106bf83838361220b565b60005b8251811015610b3d57610a8e33848381518110610a8157610a81613be9565b60200260200101516120c8565b610ab0848381518110610aa357610aa3613be9565b602002602001015161247d565b604051602001610ac09190613887565b60405160208183030381529060405290610b07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080391906139ea565b50610b2d8585858481518110610b1f57610b1f613be9565b6020026020010151856125af565b610b3681613b0f565b9050610a62565b508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16610b733390565b73ffffffffffffffffffffffffffffffffffffffff167f2e75a6cf483a33fd7e40b01fc5b561361f6e9b2d5a492f866bd66ca430a8c55785604051610bb891906139a6565b60405180910390a450505050565b6000610bd1836110af565b8210610c5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610803565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600760209081526040808320938352929052205490565b6106bf8383836040518060200160405280600081525061175e565b610cb9336109c2565b610d45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610803565b610d4e81612652565b50565b6000610d5c60095490565b8210610dea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610803565b60098281548110610dfd57610dfd613be9565b90600052602060002001549050919050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b8051610ea390600c906020840190613169565b5050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff168061069e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610803565b60005473ffffffffffffffffffffffffffffffffffffffff163314610fda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b601380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600c805461102e90613abb565b80601f016020809104026020016040519081016040528092919081815260200182805461105a90613abb565b80156110a75780601f1061107c576101008083540402835291602001916110a7565b820191906000526020600020905b81548152906001019060200180831161108a57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610803565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146111fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b611208600061272b565b565b600d54811461129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f496e636f727265637420616d6f756e74206f6620746f6b656e7320666f72207360448201527f61637269666963650000000000000000000000000000000000000000000000006064820152608401610803565b60005b8181101561142c57600e60008484848181106112bc576112bc613be9565b602090810292909201358352508101919091526040016000205460ff16156112fb8484848181106112ef576112ef613be9565b9050602002013561247d565b60405160200161130b919061381c565b60405160208183030381529060405290611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080391906139ea565b5060125473ffffffffffffffffffffffffffffffffffffffff166323b872dd333086868681811061138557611385613be9565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b16815273ffffffffffffffffffffffffffffffffffffffff958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b15801561140157600080fd5b505af1158015611415573d6000803e3d6000fd5b50505050808061142490613b0f565b91505061129e565b50611439336014546127a0565b33600090815260116020526040902054611454906001613a4c565b336000818152601160209081526040808320949094556014805483526010825284832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690941790935591548152600f909152206114b69083836131ed565b506014546114c5906001613a4c565b6014555050565b6060600280546106d390613abb565b60005473ffffffffffffffffffffffffffffffffffffffff16331461155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b600d55565b73ffffffffffffffffffffffffffffffffffffffff82163314156115e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610803565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146116f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b60005b828110156117585781600e600086868581811061171b5761171b613be9565b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508061175190613b0f565b90506116fc565b50505050565b61176833836120c8565b6117f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610803565b611758848484846125af565b6000818152600f602090815260409182902080548351818402810184019094528084526060939283018282801561185657602002820191906000526020600020905b815481526020019060010190808311611842575b50505050509050919050565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610803565b60006119206127ba565b90506000815111611940576040518060200160405280600081525061196b565b8061194a8461247d565b60405160200161195b9291906137ed565b6040516020818303038152906040525b9392505050565b60005b8151811015610ea357611995335b838381518110610a8157610a81613be9565b6119aa838381518110610aa357610aa3613be9565b6040516020016119ba91906138f2565b60405160208183030381529060405290611a01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080391906139ea565b50611a24828281518110611a1757611a17613be9565b6020026020010151612652565b611a2d81613b0f565b9050611975565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ab5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b601280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b6012546040517fa22cb46500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015283151560248301529091169063a22cb46590604401600060405180830381600087803b158015611bf257600080fd5b505af1158015611c06573d6000803e3d6000fd5b505050505050565b6000611c1a83836127c9565b15611c275750600161069e565b73ffffffffffffffffffffffffffffffffffffffff80841660009081526006602090815260408083209386168352929052205460ff1661196b565b600f6020528160005260406000208181548110611c7e57600080fd5b90600052602060002001600091509150505481565b60005473ffffffffffffffffffffffffffffffffffffffff163314611d14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b73ffffffffffffffffffffffffffffffffffffffff8116611db7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610803565b610d4e8161272b565b60005b8151811015611e7657611dd533611983565b611dea838381518110610aa357610aa3613be9565b604051602001611dfa9190613887565b60405160208183030381529060405290611e41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080391906139ea565b50611e668484848481518110611e5957611e59613be9565b602002602001015161220b565b611e6f81613b0f565b9050611dc3565b508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16611eac3390565b73ffffffffffffffffffffffffffffffffffffffff167f2e75a6cf483a33fd7e40b01fc5b561361f6e9b2d5a492f866bd66ca430a8c55784604051611ef191906139a6565b60405180910390a4505050565b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611fd857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061069e57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461069e565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061208282610ea7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610803565b600061218483610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121f357508373ffffffffffffffffffffffffffffffffffffffff166121db84610756565b73ffffffffffffffffffffffffffffffffffffffff16145b8061220357506122038185611c0e565b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661222b82610ea7565b73ffffffffffffffffffffffffffffffffffffffff16146122ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8216612370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610803565b61237b8383836128a4565b612386600082612028565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081208054600192906123bc908490613a78565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906123f7908490613a4c565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060816124bd57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156124e757806124d181613b0f565b91506124e09050600a83613a64565b91506124c1565b60008167ffffffffffffffff81111561250257612502613c18565b6040519080825280601f01601f19166020018201604052801561252c576020820181803683370190505b5090505b841561220357612541600183613a78565b915061254e600a86613b48565b612559906030613a4c565b60f81b81838151811061256e5761256e613be9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506125a8600a86613a64565b9450612530565b6125ba84848461220b565b6125c684848484612a3c565b611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610803565b600061265d82610ea7565b905061266b816000846128a4565b612676600083612028565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906126ac908490613a78565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610ea3828260405180602001604052806000815250612c3b565b6060600c80546106d390613abb565b600b546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561283c57600080fd5b505afa158015612850573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128749190613702565b73ffffffffffffffffffffffffffffffffffffffff16141561289a57600191505061069e565b5060009392505050565b73ffffffffffffffffffffffffffffffffffffffff82166129275760008181526010602090815260408083205473ffffffffffffffffffffffffffffffffffffffff168084526011909252909120546128ff90600190613a78565b73ffffffffffffffffffffffffffffffffffffffff9091166000908152601160205260409020555b6013546040517f5fd6196500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff858116600483015290911690635fd6196590602401600060405180830381600087803b15801561299457600080fd5b505af11580156129a8573d6000803e3d6000fd5b50506013546040517f5fd6196500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301529091169250635fd619659150602401600060405180830381600087803b158015612a1957600080fd5b505af1158015612a2d573d6000803e3d6000fd5b505050506106bf838383612cde565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612c30576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612ab390339089908890889060040161395d565b602060405180830381600087803b158015612acd57600080fd5b505af1925050508015612b1b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612b18918101906136e5565b60015b612be5573d808015612b49576040519150601f19603f3d011682016040523d82523d6000602084013e612b4e565b606091505b508051612bdd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610803565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612203565b506001949350505050565b612c458383612de4565b612c526000848484612a3c565b6106bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8316612d4657612d4181600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612d83565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d8357612d838382612fb2565b73ffffffffffffffffffffffffffffffffffffffff8216612da7576106bf81613069565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146106bf576106bf8282613118565b73ffffffffffffffffffffffffffffffffffffffff8216612e61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610803565b60008181526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1615612eed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610803565b612ef9600083836128a4565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612f2f908490613a4c565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612fbf846110af565b612fc99190613a78565b6000838152600860205260409020549091508082146130295773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b50600091825260086020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600781528383209183525290812055565b60095460009061307b90600190613a78565b6000838152600a6020526040812054600980549394509092849081106130a3576130a3613be9565b9060005260206000200154905080600983815481106130c4576130c4613be9565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806130fc576130fc613bba565b6001900381819060005260206000200160009055905550505050565b6000613123836110af565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461317590613abb565b90600052602060002090601f01602090048101928261319757600085556131dd565b82601f106131b057805160ff19168380011785556131dd565b828001600101855582156131dd579182015b828111156131dd5782518255916020019190600101906131c2565b506131e9929150613228565b5090565b8280548282559060005260206000209081019282156131dd579160200282015b828111156131dd57823582559160200191906001019061320d565b5b808211156131e95760008155600101613229565b600067ffffffffffffffff83111561325757613257613c18565b61328860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116016139fd565b905082815283838301111561329c57600080fd5b828260208301376000602084830101529392505050565b60008083601f8401126132c557600080fd5b50813567ffffffffffffffff8111156132dd57600080fd5b6020830191508360208260051b85010111156132f857600080fd5b9250929050565b600082601f83011261331057600080fd5b8135602067ffffffffffffffff82111561332c5761332c613c18565b8160051b61333b8282016139fd565b83815282810190868401838801850189101561335657600080fd5b600093505b8584101561337957803583526001939093019291840191840161335b565b50979650505050505050565b8035801515811461339557600080fd5b919050565b600082601f8301126133ab57600080fd5b61196b8383356020850161323d565b6000602082840312156133cc57600080fd5b813561196b81613c47565b600080604083850312156133ea57600080fd5b82356133f581613c47565b9150602083013561340581613c47565b809150509250929050565b60008060006060848603121561342557600080fd5b833561343081613c47565b9250602084013561344081613c47565b9150604084013567ffffffffffffffff81111561345c57600080fd5b613468868287016132ff565b9150509250925092565b6000806000806080858703121561348857600080fd5b843561349381613c47565b935060208501356134a381613c47565b9250604085013567ffffffffffffffff808211156134c057600080fd5b6134cc888389016132ff565b935060608701359150808211156134e257600080fd5b506134ef8782880161339a565b91505092959194509250565b60008060006060848603121561351057600080fd5b833561351b81613c47565b9250602084013561352b81613c47565b929592945050506040919091013590565b6000806000806080858703121561355257600080fd5b843561355d81613c47565b9350602085013561356d81613c47565b925060408501359150606085013567ffffffffffffffff81111561359057600080fd5b6134ef8782880161339a565b600080604083850312156135af57600080fd5b82356135ba81613c47565b91506135c860208401613385565b90509250929050565b600080604083850312156135e457600080fd5b82356135ef81613c47565b946020939093013593505050565b6000806020838503121561361057600080fd5b823567ffffffffffffffff81111561362757600080fd5b613633858286016132b3565b90969095509350505050565b60008060006040848603121561365457600080fd5b833567ffffffffffffffff81111561366b57600080fd5b613677868287016132b3565b909450925061368a905060208501613385565b90509250925092565b6000602082840312156136a557600080fd5b813567ffffffffffffffff8111156136bc57600080fd5b612203848285016132ff565b6000602082840312156136da57600080fd5b813561196b81613c69565b6000602082840312156136f757600080fd5b815161196b81613c69565b60006020828403121561371457600080fd5b815161196b81613c47565b60006020828403121561373157600080fd5b813567ffffffffffffffff81111561374857600080fd5b8201601f8101841361375957600080fd5b6122038482356020840161323d565b60006020828403121561377a57600080fd5b5035919050565b6000806040838503121561379457600080fd5b50508035926020909101359150565b600081518084526137bb816020860160208601613a8f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516137ff818460208801613a8f565b835190830190613813818360208801613a8f565b01949350505050565b7f53696c7665726261636b4e46543a20736163726966696365206973206e6f742081527f76616c696420666f72200000000000000000000000000000000000000000000060208201526000825161387a81602a850160208701613a8f565b91909101602a0192915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f81527f776e6572206e6f7220617070726f76656420666f7220000000000000000000006020820152600082516138e5816036850160208701613a8f565b9190910160360192915050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7781527f6e6572206e6f7220617070726f76656420666f72200000000000000000000000602082015260008251613950816035850160208701613a8f565b9190910160350192915050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261399c60808301846137a3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156139de578351835292840192918401916001016139c2565b50909695505050505050565b60208152600061196b60208301846137a3565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715613a4457613a44613c18565b604052919050565b60008219821115613a5f57613a5f613b5c565b500190565b600082613a7357613a73613b8b565b500490565b600082821015613a8a57613a8a613b5c565b500390565b60005b83811015613aaa578181015183820152602001613a92565b838111156117585750506000910152565b600181811c90821680613acf57607f821691505b60208210811415613b09577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b4157613b41613b5c565b5060010190565b600082613b5757613b57613b8b565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff81168114610d4e57600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d4e57600080fdfea2646970667358221220fbbf40283d8b3257c26b2c013733e790ede3574f2f107bc3b83adc5d4f1ab86b64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000076e51bc8fa0beebcf3e45de408fa43c9dc5ffb27000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000003668747470733a2f2f7073732d73696c7665726261636b2d676f2d6e66742d6170692e6865726f6b756170702e636f6d2f746f6b656e2f00000000000000000000

-----Decoded View---------------
Arg [0] : _initialBaseURI (string): https://pss-silverback-go-nft-api.herokuapp.com/token/
Arg [1] : _primateSocialSocietyNFT (address): 0x76e51bC8fA0BEEbCF3E45De408Fa43c9dC5FfB27
Arg [2] : _openSeaProxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000076e51bc8fa0beebcf3e45de408fa43c9dc5ffb27
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 68747470733a2f2f7073732d73696c7665726261636b2d676f2d6e66742d6170
Arg [5] : 692e6865726f6b756170702e636f6d2f746f6b656e2f00000000000000000000


Deployed Bytecode Sourcemap

46426:8444:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47034:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11888:42:1;11876:55;;;11858:74;;11846:2;11831:18;47034:44:0;;;;;;;;38816:300;;;;;;:::i;:::-;;:::i;:::-;;;13976:14:1;;13969:22;13951:41;;13939:2;13924:18;38816:300:0;13811:187:1;51645:197:0;;;;;;:::i;:::-;;:::i;:::-;;24956:100;;;:::i;:::-;;;;;;;:::i;26649:308::-;;;;;;:::i;:::-;;:::i;26172:411::-;;;;;;:::i;:::-;;:::i;39619:113::-;39707:10;:17;39619:113;;;22904:25:1;;;22892:2;22877:18;39619:113:0;22758:177:1;27708:376:0;;;;;;:::i;:::-;;:::i;46666:45::-;;;;;;51927:700;;;;;;:::i;:::-;;:::i;39200:343::-;;;;;;:::i;:::-;;:::i;28155:185::-;;;;;;:::i;:::-;;:::i;50005:232::-;;;;;;:::i;:::-;;:::i;39809:320::-;;;;;;:::i;:::-;;:::i;53449:106::-;;;;;;:::i;:::-;;:::i;47135:47::-;;;;;;:::i;:::-;;;;;;;;;;;;;;24563:326;;;;;;:::i;:::-;;:::i;46792:58::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;53869:115;;;;;;:::i;:::-;;:::i;46574:26::-;;;:::i;24206:295::-;;;;;;:::i;:::-;;:::i;2614:94::-;;;:::i;48454:1038::-;;;;;;:::i;:::-;;:::i;1963:87::-;2009:7;2036:6;;;1963:87;;47219:38;;;;;;;;;25125:104;;;:::i;54075:154::-;;;;;;:::i;:::-;;:::i;27029:327::-;;;;;;:::i;:::-;;:::i;54306:277::-;;;;;;:::i;:::-;;:::i;28411:365::-;;;;;;:::i;:::-;;:::i;47297:31::-;;;;;;;;;48205:175;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25300:468::-;;;;;;:::i;:::-;;:::i;50310:513::-;;;;;;:::i;:::-;;:::i;53619:181::-;;;;;;:::i;:::-;;:::i;54672:195::-;;;;;;:::i;:::-;;:::i;49604:338::-;;;;;;:::i;:::-;;:::i;46917:57::-;;;;;;:::i;:::-;;:::i;2863:229::-;;;;;;:::i;:::-;;:::i;50904:656::-;;;;;;:::i;:::-;;:::i;38816:300::-;38963:4;39005:50;;;39020:35;39005:50;;:103;;;39072:36;39096:11;39072:23;:36::i;:::-;38985:123;38816:300;-1:-1:-1;;38816:300:0:o;51645:197::-;51789:45;51811:4;51817:2;51821:8;51789:45;;;;;;;;;;;;:21;:45::i;:::-;51645:197;;;:::o;24956:100::-;25010:13;25043:5;25036:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24956:100;:::o;26649:308::-;26770:7;30412:16;;;:7;:16;;;;;;:30;:16;26795:110;;;;;;;19301:2:1;26795:110:0;;;19283:21:1;19340:2;19320:18;;;19313:30;19379:34;19359:18;;;19352:62;19450:14;19430:18;;;19423:42;19482:19;;26795:110:0;;;;;;;;;-1:-1:-1;26925:24:0;;;;:15;:24;;;;;;;;;26649:308::o;26172:411::-;26253:13;26269:23;26284:7;26269:14;:23::i;:::-;26253:39;;26317:5;26311:11;;:2;:11;;;;26303:57;;;;;;;21310:2:1;26303:57:0;;;21292:21:1;21349:2;21329:18;;;21322:30;21388:34;21368:18;;;21361:62;21459:3;21439:18;;;21432:31;21480:19;;26303:57:0;21108:397:1;26303:57:0;806:10;26395:21;;;;;:62;;-1:-1:-1;26420:37:0;26437:5;806:10;49604:338;:::i;26420:37::-;26373:168;;;;;;;17694:2:1;26373:168:0;;;17676:21:1;17733:2;17713:18;;;17706:30;17772:34;17752:18;;;17745:62;17843:26;17823:18;;;17816:54;17887:19;;26373:168:0;17492:420:1;26373:168:0;26554:21;26563:2;26567:7;26554:8;:21::i;27708:376::-;27917:41;806:10;27936:12;27950:7;27917:18;:41::i;:::-;27895:140;;;;;;;21712:2:1;27895:140:0;;;21694:21:1;21751:2;21731:18;;;21724:30;21790:34;21770:18;;;21763:62;21861:19;21841:18;;;21834:47;21898:19;;27895:140:0;21510:413:1;27895:140:0;28048:28;28058:4;28064:2;28068:7;28048:9;:28::i;51927:700::-;52105:9;52100:455;52124:8;:15;52120:1;:19;52100:455;;;52187:45;806:10;52220:8;52229:1;52220:11;;;;;;;;:::i;:::-;;;;;;;52187:18;:45::i;:::-;52406:22;:8;52415:1;52406:11;;;;;;;;:::i;:::-;;;;;;;:20;:22::i;:::-;52280:171;;;;;;;;:::i;:::-;;;;;;;;;;;;;52161:324;;;;;;;;;;;;;;:::i;:::-;;52500:43;52514:4;52520:2;52524:8;52533:1;52524:11;;;;;;;;:::i;:::-;;;;;;;52537:5;52500:13;:43::i;:::-;52141:3;;;:::i;:::-;;;52100:455;;;;52606:2;52572:47;;52600:4;52572:47;;52586:12;806:10;;726:98;52586:12;52572:47;;;52610:8;52572:47;;;;;;:::i;:::-;;;;;;;;51927:700;;;;:::o;39200:343::-;39342:7;39397:23;39414:5;39397:16;:23::i;:::-;39389:5;:31;39367:124;;;;;;;14927:2:1;39367:124:0;;;14909:21:1;14966:2;14946:18;;;14939:30;15005:34;14985:18;;;14978:62;15076:13;15056:18;;;15049:41;15107:19;;39367:124:0;14725:407:1;39367:124:0;-1:-1:-1;39509:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39200:343::o;28155:185::-;28293:39;28310:4;28316:2;28320:7;28293:39;;;;;;;;;;;;:16;:39::i;50005:232::-;50085:42;806:10;50104:12;726:98;50085:42;50063:140;;;;;;;22543:2:1;50063:140:0;;;22525:21:1;22582:2;22562:18;;;22555:30;22621:34;22601:18;;;22594:62;22692:18;22672;;;22665:46;22728:19;;50063:140:0;22341:412:1;50063:140:0;50214:15;50220:8;50214:5;:15::i;:::-;50005:232;:::o;39809:320::-;39929:7;39984:30;39707:10;:17;;39619:113;39984:30;39976:5;:38;39954:132;;;;;;;22130:2:1;39954:132:0;;;22112:21:1;22169:2;22149:18;;;22142:30;22208:34;22188:18;;;22181:62;22279:14;22259:18;;;22252:42;22311:19;;39954:132:0;21928:408:1;39954:132:0;40104:10;40115:5;40104:17;;;;;;;;:::i;:::-;;;;;;;;;40097:24;;39809:320;;;:::o;53449:106::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;19714:2:1;2175:68:0;;;19696:21:1;;;19733:18;;;19726:30;19792:34;19772:18;;;19765:62;19844:18;;2175:68:0;19512:356:1;2175:68:0;53526:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53449:106:::0;:::o;24563:326::-;24680:7;24721:16;;;:7;:16;;;;;;;;24770:19;24748:110;;;;;;;18530:2:1;24748:110:0;;;18512:21:1;18569:2;18549:18;;;18542:30;18608:34;18588:18;;;18581:62;18679:11;18659:18;;;18652:39;18708:19;;24748:110:0;18328:405:1;53869:115:0;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;19714:2:1;2175:68:0;;;19696:21:1;;;19733:18;;;19726:30;19792:34;19772:18;;;19765:62;19844:18;;2175:68:0;19512:356:1;2175:68:0;53950:11:::1;:26:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;53869:115::o;46574:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24206:295::-;24323:7;24370:19;;;24348:111;;;;;;;18119:2:1;24348:111:0;;;18101:21:1;18158:2;18138:18;;;18131:30;18197:34;18177:18;;;18170:62;18268:12;18248:18;;;18241:40;18298:19;;24348:111:0;17917:406:1;24348:111:0;-1:-1:-1;24477:16:0;;;;;;:9;:16;;;;;;;24206:295::o;2614:94::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;19714:2:1;2175:68:0;;;19696:21:1;;;19733:18;;;19726:30;19792:34;19772:18;;;19765:62;19844:18;;2175:68:0;19512:356:1;2175:68:0;2679:21:::1;2697:1;2679:9;:21::i;:::-;2614:94::o:0;48454:1038::-;48565:26;;48545:46;;48523:136;;;;;;;20901:2:1;48523:136:0;;;20883:21:1;20940:2;20920:18;;;20913:30;20979:34;20959:18;;;20952:62;21050:10;21030:18;;;21023:38;21078:19;;48523:136:0;20699:404:1;48523:136:0;48677:9;48672:545;48692:20;;;48672:545;;;48761:26;:40;48788:9;;48798:1;48788:12;;;;;;;:::i;:::-;;;;;;;;;;48761:40;;-1:-1:-1;48761:40:0;;;;;;;;-1:-1:-1;48761:40:0;;;;48760:41;48963:23;:9;;48973:1;48963:12;;;;;;;:::i;:::-;;;;;;;:21;:23::i;:::-;48849:160;;;;;;;;:::i;:::-;;;;;;;;;;;;;48734:309;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;49060:23:0;;;;:36;806:10;49154:4;49178:9;;49188:1;49178:12;;;;;;;:::i;:::-;49060:145;;;;;;;;;;12155:42:1;12224:15;;;49060:145:0;;;12206:34:1;12276:15;;;;12256:18;;;12249:43;-1:-1:-1;49178:12:0;;;;;;12308:18:1;;;12301:34;12118:18;;49060:145:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48714:3;;;;;:::i;:::-;;;;48672:545;;;-1:-1:-1;49229:37:0;806:10;49253:12;;49229:9;:37::i;:::-;806:10;49306:26;;;;:12;:26;;;;;;:30;;49335:1;49306:30;:::i;:::-;806:10;49277:26;;;;:12;:26;;;;;;;;:59;;;;49357:12;;;49347:23;;:9;:23;;;;;:38;;;;;;;;;;49417:12;;49396:34;;:20;:34;;;;:46;;49433:9;;49396:46;:::i;:::-;-1:-1:-1;49468:12:0;;:16;;49483:1;49468:16;:::i;:::-;49453:12;:31;-1:-1:-1;;48454:1038:0:o;25125:104::-;25181:13;25214:7;25207:14;;;;;:::i;54075:154::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;19714:2:1;2175:68:0;;;19696:21:1;;;19733:18;;;19726:30;19792:34;19772:18;;;19765:62;19844:18;;2175:68:0;19512:356:1;2175:68:0;54186:26:::1;:35:::0;54075:154::o;27029:327::-;27164:24;;;806:10;27164:24;;27156:62;;;;;;;16927:2:1;27156:62:0;;;16909:21:1;16966:2;16946:18;;;16939:30;17005:27;16985:18;;;16978:55;17050:18;;27156:62:0;16725:349:1;27156:62:0;806:10;27231:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;27300:48;;13951:41:1;;;27231:42:0;;806:10;27300:48;;13924:18:1;27300:48:0;;;;;;;27029:327;;:::o;54306:277::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;19714:2:1;2175:68:0;;;19696:21:1;;;19733:18;;;19726:30;19792:34;19772:18;;;19765:62;19844:18;;2175:68:0;19512:356:1;2175:68:0;54456:9:::1;54451:125;54471:20:::0;;::::1;54451:125;;;54556:8;54513:26;:40;54540:9;;54550:1;54540:12;;;;;;;:::i;:::-;;;;;;;54513:40;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;54493:3;;;;:::i;:::-;;;54451:125;;;;54306:277:::0;;;:::o;28411:365::-;28600:41;806:10;28633:7;28600:18;:41::i;:::-;28578:140;;;;;;;21712:2:1;28578:140:0;;;21694:21:1;21751:2;21731:18;;;21724:30;21790:34;21770:18;;;21763:62;21861:19;21841:18;;;21834:47;21898:19;;28578:140:0;21510:413:1;28578:140:0;28729:39;28743:4;28749:2;28753:7;28762:5;28729:13;:39::i;48205:175::-;48343:29;;;;:20;:29;;;;;;;;;48336:36;;;;;;;;;;;;;;;;;48302:16;;48336:36;;;48343:29;48336:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48205:175;;;:::o;25300:468::-;30388:4;30412:16;;;:7;:16;;;;;;25418:13;;30412:30;:16;25449:113;;;;;;;20485:2:1;25449:113:0;;;20467:21:1;20524:2;20504:18;;;20497:30;20563:34;20543:18;;;20536:62;20634:17;20614:18;;;20607:45;20669:19;;25449:113:0;20283:411:1;25449:113:0;25575:21;25599:10;:8;:10::i;:::-;25575:34;;25664:1;25646:7;25640:21;:25;:120;;;;;;;;;;;;;;;;;25709:7;25718:18;:7;:16;:18::i;:::-;25692:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25640:120;25620:140;25300:468;-1:-1:-1;;;25300:468:0:o;50310:513::-;50388:9;50383:433;50407:9;:16;50403:1;:20;50383:433;;;50471:46;806:10;50490:12;50504:9;50514:1;50504:12;;;;;;;;:::i;50471:46::-;50690:23;:9;50700:1;50690:12;;;;;;;;:::i;:23::-;50565:171;;;;;;;;:::i;:::-;;;;;;;;;;;;;50445:325;;;;;;;;;;;;;;:::i;:::-;;50785:19;50791:9;50801:1;50791:12;;;;;;;;:::i;:::-;;;;;;;50785:5;:19::i;:::-;50425:3;;;:::i;:::-;;;50383:433;;53619:181;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;19714:2:1;2175:68:0;;;19696:21:1;;;19733:18;;;19726:30;19792:34;19772:18;;;19765:62;19844:18;;2175:68:0;19512:356:1;2175:68:0;53742:23:::1;:50:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;53619:181::o;54672:195::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;19714:2:1;2175:68:0;;;19696:21:1;;;19733:18;;;19726:30;19792:34;19772:18;;;19765:62;19844:18;;2175:68:0;19512:356:1;2175:68:0;54796:23:::1;::::0;:63:::1;::::0;;;;:23:::1;13048:55:1::0;;;54796:63:0::1;::::0;::::1;13030:74:1::0;13147:14;;13140:22;13120:18;;;13113:50;54796:23:0;;::::1;::::0;:41:::1;::::0;13003:18:1;;54796:63:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54672:195:::0;;:::o;49604:338::-;49757:4;49783:52;49819:5;49826:8;49783:35;:52::i;:::-;49779:96;;;-1:-1:-1;49859:4:0;49852:11;;49779:96;27598:25;;;;27569:4;27598:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;49894:40;27427:214;46917:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2863:229::-;2009:7;2036:6;2183:23;2036:6;806:10;2183:23;2175:68;;;;;;;19714:2:1;2175:68:0;;;19696:21:1;;;19733:18;;;19726:30;19792:34;19772:18;;;19765:62;19844:18;;2175:68:0;19512:356:1;2175:68:0;2966:22:::1;::::0;::::1;2944:110;;;::::0;::::1;::::0;;15758:2:1;2944:110:0::1;::::0;::::1;15740:21:1::0;15797:2;15777:18;;;15770:30;15836:34;15816:18;;;15809:62;15907:8;15887:18;;;15880:36;15933:19;;2944:110:0::1;15556:402:1::0;2944:110:0::1;3065:19;3075:8;3065:9;:19::i;50904:656::-:0;51049:9;51044:444;51068:8;:15;51064:1;:19;51044:444;;;51131:45;806:10;51150:12;726:98;51131:45;51350:22;:8;51359:1;51350:11;;;;;;;;:::i;:22::-;51224:171;;;;;;;;:::i;:::-;;;;;;;;;;;;;51105:324;;;;;;;;;;;;;;:::i;:::-;;51444:32;51454:4;51460:2;51464:8;51473:1;51464:11;;;;;;;;:::i;:::-;;;;;;;51444:9;:32::i;:::-;51085:3;;;:::i;:::-;;;51044:444;;;;51539:2;51505:47;;51533:4;51505:47;;51519:12;806:10;;726:98;51519:12;51505:47;;;51543:8;51505:47;;;;;;:::i;:::-;;;;;;;;50904:656;;;:::o;45528:172::-;45634:27;:58;;;;;;;;;;;;;;;45528:172::o;23787:355::-;23934:4;23976:40;;;23991:25;23976:40;;:105;;-1:-1:-1;24033:48:0;;;24048:33;24033:48;23976:105;:158;;;-1:-1:-1;22427:25:0;22412:40;;;;24098:36;22253:207;34446:174;34521:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;34575:23;34521:24;34575:14;:23::i;:::-;34566:46;;;;;;;;;;;;34446:174;;:::o;30617:452::-;30746:4;30412:16;;;:7;:16;;;;;;:30;:16;30768:110;;;;;;;17281:2:1;30768:110:0;;;17263:21:1;17320:2;17300:18;;;17293:30;17359:34;17339:18;;;17332:62;17430:14;17410:18;;;17403:42;17462:19;;30768:110:0;17079:408:1;30768:110:0;30889:13;30905:23;30920:7;30905:14;:23::i;:::-;30889:39;;30958:5;30947:16;;:7;:16;;;:64;;;;31004:7;30980:31;;:20;30992:7;30980:11;:20::i;:::-;:31;;;30947:64;:113;;;;31028:32;31045:5;31052:7;31028:16;:32::i;:::-;30939:122;30617:452;-1:-1:-1;;;;30617:452:0:o;33713:615::-;33886:4;33859:31;;:23;33874:7;33859:14;:23::i;:::-;:31;;;33837:122;;;;;;;20075:2:1;33837:122:0;;;20057:21:1;20114:2;20094:18;;;20087:30;20153:34;20133:18;;;20126:62;20224:11;20204:18;;;20197:39;20253:19;;33837:122:0;19873:405:1;33837:122:0;33978:16;;;33970:65;;;;;;;16522:2:1;33970:65:0;;;16504:21:1;16561:2;16541:18;;;16534:30;16600:34;16580:18;;;16573:62;16671:6;16651:18;;;16644:34;16695:19;;33970:65:0;16320:400:1;33970:65:0;34048:39;34069:4;34075:2;34079:7;34048:20;:39::i;:::-;34152:29;34169:1;34173:7;34152:8;:29::i;:::-;34194:15;;;;;;;:9;:15;;;;;:20;;34213:1;;34194:15;:20;;34213:1;;34194:20;:::i;:::-;;;;-1:-1:-1;;34225:13:0;;;;;;;:9;:13;;;;;:18;;34242:1;;34225:13;:18;;34242:1;;34225:18;:::i;:::-;;;;-1:-1:-1;;34254:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;34293:27;;34254:16;;34293:27;;;;;;;33713:615;;;:::o;19664:723::-;19720:13;19941:10;19937:53;;-1:-1:-1;;19968:10:0;;;;;;;;;;;;;;;;;;19664:723::o;19937:53::-;20015:5;20000:12;20056:78;20063:9;;20056:78;;20089:8;;;;:::i;:::-;;-1:-1:-1;20112:10:0;;-1:-1:-1;20120:2:0;20112:10;;:::i;:::-;;;20056:78;;;20144:19;20176:6;20166:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20166:17:0;;20144:39;;20194:154;20201:10;;20194:154;;20228:11;20238:1;20228:11;;:::i;:::-;;-1:-1:-1;20297:10:0;20305:2;20297:5;:10;:::i;:::-;20284:24;;:2;:24;:::i;:::-;20271:39;;20254:6;20261;20254:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;20325:11:0;20334:2;20325:11;;:::i;:::-;;;20194:154;;29658:352;29815:28;29825:4;29831:2;29835:7;29815:9;:28::i;:::-;29876:48;29899:4;29905:2;29909:7;29918:5;29876:22;:48::i;:::-;29854:148;;;;;;;15339:2:1;29854:148:0;;;15321:21:1;15378:2;15358:18;;;15351:30;15417:34;15397:18;;;15390:62;15488:20;15468:18;;;15461:48;15526:19;;29854:148:0;15137:414:1;33016:360:0;33076:13;33092:23;33107:7;33092:14;:23::i;:::-;33076:39;;33128:48;33149:5;33164:1;33168:7;33128:20;:48::i;:::-;33217:29;33234:1;33238:7;33217:8;:29::i;:::-;33259:16;;;;;;;:9;:16;;;;;:21;;33279:1;;33259:16;:21;;33279:1;;33259:21;:::i;:::-;;;;-1:-1:-1;;33298:16:0;;;;:7;:16;;;;;;33291:23;;;;;;33332:36;33306:7;;33298:16;33291:23;33332:36;;;;;33298:16;;33332:36;33065:311;33016:360;:::o;3100:173::-;3156:16;3175:6;;;3192:17;;;;;;;;;;3225:40;;3175:6;;;;;;;3225:40;;3156:16;3225:40;3145:128;3100:173;:::o;31411:110::-;31487:26;31497:2;31501:7;31487:26;;;;;;;;;;;;:9;:26::i;52714:108::-;52774:13;52807:7;52800:14;;;;;:::i;45708:469::-;45996:27;;46057:35;;;;;45996:27;11876:55:1;;;46057:35:0;;;11858:74:1;45832:4:0;;45996:27;;;46049:56;;;;45996:27;;46057:28;;11831:18:1;;46057:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46049:56;;;46045:100;;;46129:4;46122:11;;;;;46045:100;-1:-1:-1;46164:5:0;;45708:469;-1:-1:-1;;;45708:469:0:o;52932:442::-;53080:16;;;53076:149;;53113:15;53131:18;;;:9;:18;;;;;;;;;;;53188:21;;;:12;:21;;;;;;;:25;;53131:18;;53188:25;:::i;:::-;53164:21;;;;;;;;:12;:21;;;;;:49;53076:149;53237:11;;:31;;;;;:11;11876:55:1;;;53237:31:0;;;11858:74:1;53237:11:0;;;;:25;;11831:18:1;;53237:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53279:11:0;;:29;;;;;:11;11876:55:1;;;53279:29:0;;;11858:74:1;53279:11:0;;;;-1:-1:-1;53279:25:0;;-1:-1:-1;11831:18:1;;53279:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53321:45;53348:4;53354:2;53358:7;53321:26;:45::i;35185:980::-;35340:4;35361:13;;;11876:20;11924:8;35357:801;;35414:175;;;;;:36;;;;;;:175;;806:10;;35508:4;;35535:7;;35565:5;;35414:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35414:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35393:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35772:13:0;;35768:320;;35815:108;;;;;15339:2:1;35815:108:0;;;15321:21:1;15378:2;15358:18;;;15351:30;15417:34;15397:18;;;15390:62;15488:20;15468:18;;;15461:48;15526:19;;35815:108:0;15137:414:1;35768:320:0;36038:6;36032:13;36023:6;36019:2;36015:15;36008:38;35393:710;35653:51;;35663:41;35653:51;;-1:-1:-1;35646:58:0;;35357:801;-1:-1:-1;36142:4:0;35185:980;;;;;;:::o;31748:321::-;31878:18;31884:2;31888:7;31878:5;:18::i;:::-;31929:54;31960:1;31964:2;31968:7;31977:5;31929:22;:54::i;:::-;31907:154;;;;;;;15339:2:1;31907:154:0;;;15321:21:1;15378:2;15358:18;;;15351:30;15417:34;15397:18;;;15390:62;15488:20;15468:18;;;15461:48;15526:19;;31907:154:0;15137:414:1;40742:589:0;40948:18;;;40944:187;;40983:40;41015:7;42158:10;:17;;42131:24;;;;:15;:24;;;;;:44;;;42186:24;;;;;;;;;;;;42054:164;40983:40;40944:187;;;41053:2;41045:10;;:4;:10;;;41041:90;;41072:47;41105:4;41111:7;41072:32;:47::i;:::-;41145:16;;;41141:183;;41178:45;41215:7;41178:36;:45::i;41141:183::-;41251:4;41245:10;;:2;:10;;;41241:83;;41272:40;41300:2;41304:7;41272:27;:40::i;32405:382::-;32485:16;;;32477:61;;;;;;;18940:2:1;32477:61:0;;;18922:21:1;;;18959:18;;;18952:30;19018:34;18998:18;;;18991:62;19070:18;;32477:61:0;18738:356:1;32477:61:0;30388:4;30412:16;;;:7;:16;;;;;;:30;:16;:30;32549:58;;;;;;;16165:2:1;32549:58:0;;;16147:21:1;16204:2;16184:18;;;16177:30;16243;16223:18;;;16216:58;16291:18;;32549:58:0;15963:352:1;32549:58:0;32620:45;32649:1;32653:2;32657:7;32620:20;:45::i;:::-;32678:13;;;;;;;:9;:13;;;;;:18;;32695:1;;32678:13;:18;;32695:1;;32678:18;:::i;:::-;;;;-1:-1:-1;;32707:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;32746:33;;32707:16;;;32746:33;;32707:16;;32746:33;32405:382;;:::o;42845:1002::-;43125:22;43175:1;43150:22;43167:4;43150:16;:22::i;:::-;:26;;;;:::i;:::-;43187:18;43208:26;;;:17;:26;;;;;;43125:51;;-1:-1:-1;43341:28:0;;;43337:328;;43408:18;;;43386:19;43408:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43459:30;;;;;;:44;;;43576:30;;:17;:30;;;;;:43;;;43337:328;-1:-1:-1;43761:26:0;;;;:17;:26;;;;;;;;43754:33;;;43805:18;;;;;;:12;:18;;;;;:34;;;;;;;43798:41;42845:1002::o;44142:1079::-;44420:10;:17;44395:22;;44420:21;;44440:1;;44420:21;:::i;:::-;44452:18;44473:24;;;:15;:24;;;;;;44846:10;:26;;44395:46;;-1:-1:-1;44473:24:0;;44395:46;;44846:26;;;;;;:::i;:::-;;;;;;;;;44824:48;;44910:11;44885:10;44896;44885:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44990:28;;;:15;:28;;;;;;;:41;;;45162:24;;;;;45155:31;45197:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44213:1008;;;44142:1079;:::o;41632:221::-;41717:14;41734:20;41751:2;41734:16;:20::i;:::-;41765:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41810:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41632:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:465:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:116;282:4;213:66;208:2;200:6;196:15;192:88;188:99;172:116;:::i;:::-;163:125;;311:6;304:5;297:21;351:3;342:6;337:3;333:16;330:25;327:45;;;368:1;365;358:12;327:45;417:6;412:3;405:4;398:5;394:16;381:43;471:1;464:4;455:6;448:5;444:18;440:29;433:40;14:465;;;;;:::o;484:367::-;547:8;557:6;611:3;604:4;596:6;592:17;588:27;578:55;;629:1;626;619:12;578:55;-1:-1:-1;652:20:1;;695:18;684:30;;681:50;;;727:1;724;717:12;681:50;764:4;756:6;752:17;740:29;;824:3;817:4;807:6;804:1;800:14;792:6;788:27;784:38;781:47;778:67;;;841:1;838;831:12;778:67;484:367;;;;;:::o;856:723::-;910:5;963:3;956:4;948:6;944:17;940:27;930:55;;981:1;978;971:12;930:55;1017:6;1004:20;1043:4;1066:18;1062:2;1059:26;1056:52;;;1088:18;;:::i;:::-;1134:2;1131:1;1127:10;1157:28;1181:2;1177;1173:11;1157:28;:::i;:::-;1219:15;;;1250:12;;;;1282:15;;;1316;;;1312:24;;1309:33;-1:-1:-1;1306:53:1;;;1355:1;1352;1345:12;1306:53;1377:1;1368:10;;1387:163;1401:2;1398:1;1395:9;1387:163;;;1458:17;;1446:30;;1419:1;1412:9;;;;;1496:12;;;;1528;;1387:163;;;-1:-1:-1;1568:5:1;856:723;-1:-1:-1;;;;;;;856:723:1:o;1584:160::-;1649:20;;1705:13;;1698:21;1688:32;;1678:60;;1734:1;1731;1724:12;1678:60;1584:160;;;:::o;1749:220::-;1791:5;1844:3;1837:4;1829:6;1825:17;1821:27;1811:55;;1862:1;1859;1852:12;1811:55;1884:79;1959:3;1950:6;1937:20;1930:4;1922:6;1918:17;1884:79;:::i;1974:247::-;2033:6;2086:2;2074:9;2065:7;2061:23;2057:32;2054:52;;;2102:1;2099;2092:12;2054:52;2141:9;2128:23;2160:31;2185:5;2160:31;:::i;2226:388::-;2294:6;2302;2355:2;2343:9;2334:7;2330:23;2326:32;2323:52;;;2371:1;2368;2361:12;2323:52;2410:9;2397:23;2429:31;2454:5;2429:31;:::i;:::-;2479:5;-1:-1:-1;2536:2:1;2521:18;;2508:32;2549:33;2508:32;2549:33;:::i;:::-;2601:7;2591:17;;;2226:388;;;;;:::o;2619:624::-;2721:6;2729;2737;2790:2;2778:9;2769:7;2765:23;2761:32;2758:52;;;2806:1;2803;2796:12;2758:52;2845:9;2832:23;2864:31;2889:5;2864:31;:::i;:::-;2914:5;-1:-1:-1;2971:2:1;2956:18;;2943:32;2984:33;2943:32;2984:33;:::i;:::-;3036:7;-1:-1:-1;3094:2:1;3079:18;;3066:32;3121:18;3110:30;;3107:50;;;3153:1;3150;3143:12;3107:50;3176:61;3229:7;3220:6;3209:9;3205:22;3176:61;:::i;:::-;3166:71;;;2619:624;;;;;:::o;3248:844::-;3368:6;3376;3384;3392;3445:3;3433:9;3424:7;3420:23;3416:33;3413:53;;;3462:1;3459;3452:12;3413:53;3501:9;3488:23;3520:31;3545:5;3520:31;:::i;:::-;3570:5;-1:-1:-1;3627:2:1;3612:18;;3599:32;3640:33;3599:32;3640:33;:::i;:::-;3692:7;-1:-1:-1;3750:2:1;3735:18;;3722:32;3773:18;3803:14;;;3800:34;;;3830:1;3827;3820:12;3800:34;3853:61;3906:7;3897:6;3886:9;3882:22;3853:61;:::i;:::-;3843:71;;3967:2;3956:9;3952:18;3939:32;3923:48;;3996:2;3986:8;3983:16;3980:36;;;4012:1;4009;4002:12;3980:36;;4035:51;4078:7;4067:8;4056:9;4052:24;4035:51;:::i;:::-;4025:61;;;3248:844;;;;;;;:::o;4097:456::-;4174:6;4182;4190;4243:2;4231:9;4222:7;4218:23;4214:32;4211:52;;;4259:1;4256;4249:12;4211:52;4298:9;4285:23;4317:31;4342:5;4317:31;:::i;:::-;4367:5;-1:-1:-1;4424:2:1;4409:18;;4396:32;4437:33;4396:32;4437:33;:::i;:::-;4097:456;;4489:7;;-1:-1:-1;;;4543:2:1;4528:18;;;;4515:32;;4097:456::o;4558:665::-;4653:6;4661;4669;4677;4730:3;4718:9;4709:7;4705:23;4701:33;4698:53;;;4747:1;4744;4737:12;4698:53;4786:9;4773:23;4805:31;4830:5;4805:31;:::i;:::-;4855:5;-1:-1:-1;4912:2:1;4897:18;;4884:32;4925:33;4884:32;4925:33;:::i;:::-;4977:7;-1:-1:-1;5031:2:1;5016:18;;5003:32;;-1:-1:-1;5086:2:1;5071:18;;5058:32;5113:18;5102:30;;5099:50;;;5145:1;5142;5135:12;5099:50;5168:49;5209:7;5200:6;5189:9;5185:22;5168:49;:::i;5228:315::-;5293:6;5301;5354:2;5342:9;5333:7;5329:23;5325:32;5322:52;;;5370:1;5367;5360:12;5322:52;5409:9;5396:23;5428:31;5453:5;5428:31;:::i;:::-;5478:5;-1:-1:-1;5502:35:1;5533:2;5518:18;;5502:35;:::i;:::-;5492:45;;5228:315;;;;;:::o;5548:::-;5616:6;5624;5677:2;5665:9;5656:7;5652:23;5648:32;5645:52;;;5693:1;5690;5683:12;5645:52;5732:9;5719:23;5751:31;5776:5;5751:31;:::i;:::-;5801:5;5853:2;5838:18;;;;5825:32;;-1:-1:-1;;;5548:315:1:o;5868:437::-;5954:6;5962;6015:2;6003:9;5994:7;5990:23;5986:32;5983:52;;;6031:1;6028;6021:12;5983:52;6071:9;6058:23;6104:18;6096:6;6093:30;6090:50;;;6136:1;6133;6126:12;6090:50;6175:70;6237:7;6228:6;6217:9;6213:22;6175:70;:::i;:::-;6264:8;;6149:96;;-1:-1:-1;5868:437:1;-1:-1:-1;;;;5868:437:1:o;6310:505::-;6402:6;6410;6418;6471:2;6459:9;6450:7;6446:23;6442:32;6439:52;;;6487:1;6484;6477:12;6439:52;6527:9;6514:23;6560:18;6552:6;6549:30;6546:50;;;6592:1;6589;6582:12;6546:50;6631:70;6693:7;6684:6;6673:9;6669:22;6631:70;:::i;:::-;6720:8;;-1:-1:-1;6605:96:1;-1:-1:-1;6774:35:1;;-1:-1:-1;6805:2:1;6790:18;;6774:35;:::i;:::-;6764:45;;6310:505;;;;;:::o;6820:348::-;6904:6;6957:2;6945:9;6936:7;6932:23;6928:32;6925:52;;;6973:1;6970;6963:12;6925:52;7013:9;7000:23;7046:18;7038:6;7035:30;7032:50;;;7078:1;7075;7068:12;7032:50;7101:61;7154:7;7145:6;7134:9;7130:22;7101:61;:::i;7173:245::-;7231:6;7284:2;7272:9;7263:7;7259:23;7255:32;7252:52;;;7300:1;7297;7290:12;7252:52;7339:9;7326:23;7358:30;7382:5;7358:30;:::i;7423:249::-;7492:6;7545:2;7533:9;7524:7;7520:23;7516:32;7513:52;;;7561:1;7558;7551:12;7513:52;7593:9;7587:16;7612:30;7636:5;7612:30;:::i;8217:287::-;8323:6;8376:2;8364:9;8355:7;8351:23;8347:32;8344:52;;;8392:1;8389;8382:12;8344:52;8424:9;8418:16;8443:31;8468:5;8443:31;:::i;8509:450::-;8578:6;8631:2;8619:9;8610:7;8606:23;8602:32;8599:52;;;8647:1;8644;8637:12;8599:52;8687:9;8674:23;8720:18;8712:6;8709:30;8706:50;;;8752:1;8749;8742:12;8706:50;8775:22;;8828:4;8820:13;;8816:27;-1:-1:-1;8806:55:1;;8857:1;8854;8847:12;8806:55;8880:73;8945:7;8940:2;8927:16;8922:2;8918;8914:11;8880:73;:::i;8964:180::-;9023:6;9076:2;9064:9;9055:7;9051:23;9047:32;9044:52;;;9092:1;9089;9082:12;9044:52;-1:-1:-1;9115:23:1;;8964:180;-1:-1:-1;8964:180:1:o;9149:248::-;9217:6;9225;9278:2;9266:9;9257:7;9253:23;9249:32;9246:52;;;9294:1;9291;9284:12;9246:52;-1:-1:-1;;9317:23:1;;;9387:2;9372:18;;;9359:32;;-1:-1:-1;9149:248:1:o;9402:316::-;9443:3;9481:5;9475:12;9508:6;9503:3;9496:19;9524:63;9580:6;9573:4;9568:3;9564:14;9557:4;9550:5;9546:16;9524:63;:::i;:::-;9632:2;9620:15;9637:66;9616:88;9607:98;;;;9707:4;9603:109;;9402:316;-1:-1:-1;;9402:316:1:o;9723:470::-;9902:3;9940:6;9934:13;9956:53;10002:6;9997:3;9990:4;9982:6;9978:17;9956:53;:::i;:::-;10072:13;;10031:16;;;;10094:57;10072:13;10031:16;10128:4;10116:17;;10094:57;:::i;:::-;10167:20;;9723:470;-1:-1:-1;;;;9723:470:1:o;10198:492::-;10460:34;10455:3;10448:47;10525:12;10520:2;10515:3;10511:12;10504:34;10430:3;10567:6;10561:13;10583:60;10636:6;10631:2;10626:3;10622:12;10617:2;10609:6;10605:15;10583:60;:::i;:::-;10663:16;;;;10681:2;10659:25;;10198:492;-1:-1:-1;;10198:492:1:o;10695:504::-;10957:34;10952:3;10945:47;11022:24;11017:2;11012:3;11008:12;11001:46;10927:3;11076:6;11070:13;11092:60;11145:6;11140:2;11135:3;11131:12;11126:2;11118:6;11114:15;11092:60;:::i;:::-;11172:16;;;;11190:2;11168:25;;10695:504;-1:-1:-1;;10695:504:1:o;11204:503::-;11466:34;11461:3;11454:47;11531:23;11526:2;11521:3;11517:12;11510:45;11436:3;11584:6;11578:13;11600:60;11653:6;11648:2;11643:3;11639:12;11634:2;11626:6;11622:15;11600:60;:::i;:::-;11680:16;;;;11698:2;11676:25;;11204:503;-1:-1:-1;;11204:503:1:o;12346:511::-;12540:4;12569:42;12650:2;12642:6;12638:15;12627:9;12620:34;12702:2;12694:6;12690:15;12685:2;12674:9;12670:18;12663:43;;12742:6;12737:2;12726:9;12722:18;12715:34;12785:3;12780:2;12769:9;12765:18;12758:31;12806:45;12846:3;12835:9;12831:19;12823:6;12806:45;:::i;:::-;12798:53;12346:511;-1:-1:-1;;;;;;12346:511:1:o;13174:632::-;13345:2;13397:21;;;13467:13;;13370:18;;;13489:22;;;13316:4;;13345:2;13568:15;;;;13542:2;13527:18;;;13316:4;13611:169;13625:6;13622:1;13619:13;13611:169;;;13686:13;;13674:26;;13755:15;;;;13720:12;;;;13647:1;13640:9;13611:169;;;-1:-1:-1;13797:3:1;;13174:632;-1:-1:-1;;;;;;13174:632:1:o;14501:219::-;14650:2;14639:9;14632:21;14613:4;14670:44;14710:2;14699:9;14695:18;14687:6;14670:44;:::i;22940:334::-;23011:2;23005:9;23067:2;23057:13;;23072:66;23053:86;23041:99;;23170:18;23155:34;;23191:22;;;23152:62;23149:88;;;23217:18;;:::i;:::-;23253:2;23246:22;22940:334;;-1:-1:-1;22940:334:1:o;23279:128::-;23319:3;23350:1;23346:6;23343:1;23340:13;23337:39;;;23356:18;;:::i;:::-;-1:-1:-1;23392:9:1;;23279:128::o;23412:120::-;23452:1;23478;23468:35;;23483:18;;:::i;:::-;-1:-1:-1;23517:9:1;;23412:120::o;23537:125::-;23577:4;23605:1;23602;23599:8;23596:34;;;23610:18;;:::i;:::-;-1:-1:-1;23647:9:1;;23537:125::o;23667:258::-;23739:1;23749:113;23763:6;23760:1;23757:13;23749:113;;;23839:11;;;23833:18;23820:11;;;23813:39;23785:2;23778:10;23749:113;;;23880:6;23877:1;23874:13;23871:48;;;-1:-1:-1;;23915:1:1;23897:16;;23890:27;23667:258::o;23930:437::-;24009:1;24005:12;;;;24052;;;24073:61;;24127:4;24119:6;24115:17;24105:27;;24073:61;24180:2;24172:6;24169:14;24149:18;24146:38;24143:218;;;24217:77;24214:1;24207:88;24318:4;24315:1;24308:15;24346:4;24343:1;24336:15;24143:218;;23930:437;;;:::o;24372:195::-;24411:3;24442:66;24435:5;24432:77;24429:103;;;24512:18;;:::i;:::-;-1:-1:-1;24559:1:1;24548:13;;24372:195::o;24572:112::-;24604:1;24630;24620:35;;24635:18;;:::i;:::-;-1:-1:-1;24669:9:1;;24572:112::o;24689:184::-;24741:77;24738:1;24731:88;24838:4;24835:1;24828:15;24862:4;24859:1;24852:15;24878:184;24930:77;24927:1;24920:88;25027:4;25024:1;25017:15;25051:4;25048:1;25041:15;25067:184;25119:77;25116:1;25109:88;25216:4;25213:1;25206:15;25240:4;25237:1;25230:15;25256:184;25308:77;25305:1;25298:88;25405:4;25402:1;25395:15;25429:4;25426:1;25419:15;25445:184;25497:77;25494:1;25487:88;25594:4;25591:1;25584:15;25618:4;25615:1;25608:15;25634:154;25720:42;25713:5;25709:54;25702:5;25699:65;25689:93;;25778:1;25775;25768:12;25793:177;25878:66;25871:5;25867:78;25860:5;25857:89;25847:117;;25960:1;25957;25950:12

Swarm Source

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