ETH Price: $2,530.02 (-0.11%)

Token

Panda Jewels (PJ)
 

Overview

Max Total Supply

642 PJ

Holders

134

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 PJ
0x9f1777e11acb782b2b7307f7e4bd59874a230e7e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
PandaJewels

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 17: PandaJewels.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./Counters.sol";
import "./PaymentSplitter.sol";
import "./Pausable.sol";

contract PandaJewels is ERC721Enumerable, Pausable, PaymentSplitter {
    using Counters for Counters.Counter;

    uint256 public maxTotalSupply = 2222;
    uint256 public maxCount = 2;
    uint256 public presaleCount;
    uint256 public totalNFT;
    bool public isBurnEnabled;
    bool public OGSaleStarted = true;
    bool public PreSaleStarted = true;
    bool public PublicSaleStarted; 
    uint public maxPresaleMint = 50;
    uint256 public MintPrice = 15000000000000000;
    string public baseURI;
    Counters.Counter private _tokenIds;
    uint256[] private _teamShares = [100];
    address[] private _team = [0x3F0eC5BE9713087BDb7D6279C51b62d54F3412F7];
    mapping(address => uint256) public _presaleClaimed;
    mapping(address => uint256) public _saleClaimed;
    mapping(address => uint256) public _totalClaimed;

    enum WorkflowStatus {
        CheckOnPresale,
        Presale,
        Sale,
        SoldOut
    }
    WorkflowStatus public workflow;
    event ChangeIsBurnEnabled(bool _isBurnEnabled);
    event ChangePublicSaleStarted(bool _PublicSaleStarted);
    event ChangePreSaleStarted(bool _PreSaleStarted);
    event ChangeBaseURI(string _baseURI);
    event ChangeMintPrice(uint256 _MintPrice);
    event PresaleMint(address indexed _minter, uint256 _amount, uint256 _price);
    event SaleMint(address indexed _minter, uint256 _amount, uint256 _price);
    event WorkflowStatusChange(
        WorkflowStatus previousStatus,
        WorkflowStatus newStatus
    );

    constructor()
        ERC721("Panda Jewels", "PJ")
        PaymentSplitter(_team, _teamShares)
    {}

    function setBaseURI(string calldata _tokenBaseURI) external onlyOwner {
        baseURI = _tokenBaseURI;
        emit ChangeBaseURI(_tokenBaseURI);
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function getPrice() public view returns (uint256) {
        return MintPrice;
    }
    function setOGStarted(bool _OGStarted) external onlyOwner {
        OGSaleStarted = _OGStarted;
    }

    function setPreSaleStarted(bool _PreSaleStarted) external onlyOwner {
        PreSaleStarted = _PreSaleStarted;
        emit ChangePreSaleStarted(_PreSaleStarted);
    }

    function setPublicSaleStarted(bool _PublicSaleStarted) external onlyOwner {
        PublicSaleStarted = _PublicSaleStarted;
        emit ChangePublicSaleStarted(_PublicSaleStarted);
    }

    function setIsBurnEnabled(bool _isBurnEnabled) external onlyOwner {
        isBurnEnabled = _isBurnEnabled;
        emit ChangeIsBurnEnabled(_isBurnEnabled);
    }

    function setPrice(uint256 _amount) external onlyOwner {
        MintPrice = _amount * 100000000000000; 
        emit ChangeMintPrice(_amount * 1000000000000000);
    }

    function setMaxPresaleMint(uint256 _amount) external onlyOwner {
        maxPresaleMint = _amount;
    }
    

    function presaleMint(uint256 _amount) internal {

        require(PreSaleStarted == true, "You are not on the whitelist");
        if(OGSaleStarted == true){
            require(
            _presaleClaimed[msg.sender] + _amount <= maxCount,
            "You can only mint 2 tokens"
        );
        }
        require(
            totalNFT + _amount <= maxPresaleMint,
            "Message: max supply exceeded"
        );
        uint256 _price = getPrice();
        require(
            _price * _amount <= msg.value,
            "Message: Ether value sent is not correct"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _presaleClaimed[msg.sender] = _presaleClaimed[msg.sender] + _amount;
            _totalClaimed[msg.sender] = _totalClaimed[msg.sender] + _amount;
            totalNFT = totalNFT + 1;
            presaleCount = presaleCount + 1;
        }
        emit PresaleMint(msg.sender, _amount, _price);
    }

    function saleMint(uint256 _amount) internal {
        require(PublicSaleStarted == true, "Sale isn't started.");
        require(_amount > 0, "Message: zero amount");
        require(
            totalNFT + _amount <= maxTotalSupply,
            "Message: max supply exceeded"
        );
        uint256 _price = getPrice();
        require(
            _price * _amount <= msg.value,
            "Message: Ether value sent is not correct"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _saleClaimed[msg.sender] = _saleClaimed[msg.sender] + _amount;
            _totalClaimed[msg.sender] = _totalClaimed[msg.sender] + _amount;
            totalNFT = totalNFT + 1;
        }
        emit SaleMint(msg.sender, _amount, _price);
    }

    function mainMint(uint256 _amount) external payable whenNotPaused {
        if (PublicSaleStarted == false) {
            presaleMint(_amount);
        } else {
            saleMint(_amount);
        }
        if (totalNFT + _amount == maxTotalSupply) {
            workflow = WorkflowStatus.SoldOut; 
            emit WorkflowStatusChange(
                WorkflowStatus.Sale,
                WorkflowStatus.SoldOut
            );
        }
    }

    function burn(uint256 tokenId) external {
        require(isBurnEnabled, "Message: burning disabled");
        require(
            _isApprovedOrOwner(msg.sender, tokenId),
            "Message: burn caller is not owner"
        );
        _burn(tokenId);
        totalNFT = totalNFT - 1;
    }

    function getWorkflowStatus() public view returns (uint256) {
        uint256 _status;
        if (workflow == WorkflowStatus.CheckOnPresale) {
            _status = 1;
        }
        if (workflow == WorkflowStatus.Presale) {
            _status = 2;
        }
        if (workflow == WorkflowStatus.Sale) {
            _status = 3;
        }
        if (workflow == WorkflowStatus.SoldOut) {
            _status = 4;
        }
        return _status;
    }
}

File 1 of 17: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        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 2 of 17: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 17: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 17: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 17: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @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 6 of 17: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @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 7 of 17: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 17: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 9 of 17: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 10 of 17: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 11 of 17: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 12 of 17: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 14 of 17: Pausable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./Ownable.sol";

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();

    bool public paused = false;

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!paused, "Transaction is not available");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(paused, "Transaction is available");
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() public onlyOwner whenNotPaused {
        paused = true;
        emit Pause();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyOwner whenPaused {
        paused = false;
        emit Unpause();
    }
}

File 15 of 17: PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";
import "./SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 16 of 17: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"ChangeBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"ChangeIsBurnEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_MintPrice","type":"uint256"}],"name":"ChangeMintPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_PreSaleStarted","type":"bool"}],"name":"ChangePreSaleStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_PublicSaleStarted","type":"bool"}],"name":"ChangePublicSaleStarted","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":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"SaleMint","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":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum PandaJewels.WorkflowStatus","name":"previousStatus","type":"uint8"},{"indexed":false,"internalType":"enum PandaJewels.WorkflowStatus","name":"newStatus","type":"uint8"}],"name":"WorkflowStatusChange","type":"event"},{"inputs":[],"name":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OGSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_presaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_saleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalClaimed","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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWorkflowStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mainMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setIsBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_OGStarted","type":"bool"}],"name":"setOGStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_PreSaleStarted","type":"bool"}],"name":"setPreSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_PublicSaleStarted","type":"bool"}],"name":"setPublicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","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":"totalNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"workflow","outputs":[{"internalType":"enum PandaJewels.WorkflowStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600a805460ff60a01b191690556108ae60105560026011556014805462ffff00191662010100179055603260155566354a6ba7a1800060165560a060405260646080908152620000549060199060016200055f565b506040805160208101909152733f0ec5be9713087bdb7d6279c51b62d54f3412f781526200008790601a906001620005b4565b503480156200009557600080fd5b50601a805480602002602001604051908101604052809291908181526020018280548015620000ee57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620000cf575b505050505060198054806020026020016040519081016040528092919081815260200182805480156200014157602002820191906000526020600020905b8154815260200190600101908083116200012c575b5050604080518082018252600c81526b50616e6461204a6577656c7360a01b602080830191825283518085019094526002845261282560f11b908401528151919550919350620001969250600091906200060c565b508051620001ac9060019060208401906200060c565b505050620001c9620001c36200031b60201b60201c565b6200031f565b80518251146200023b5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200028e5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000232565b60005b82518110156200031257620002fd838281518110620002c057634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110620002e957634e487b7160e01b600052603260045260246000fd5b60200260200101516200037160201b60201c565b806200030981620006f8565b91505062000291565b5050506200072c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003de5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000232565b60008111620004305760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000232565b6001600160a01b0382166000908152600d602052604090205415620004ac5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000232565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b5462000516908290620006a0565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054828255906000526020600020908101928215620005a2579160200282015b82811115620005a2578251829060ff1690559160200191906001019062000580565b50620005b092915062000689565b5090565b828054828255906000526020600020908101928215620005a2579160200282015b82811115620005a257825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005d5565b8280546200061a90620006bb565b90600052602060002090601f0160209004810192826200063e5760008555620005a2565b82601f106200065957805160ff1916838001178555620005a2565b82800160010185558215620005a2579182015b82811115620005a25782518255916020019190600101906200066c565b5b80821115620005b057600081556001016200068a565b60008219821115620006b657620006b662000716565b500190565b600181811c90821680620006d057607f821691505b60208210811415620006f257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200070f576200070f62000716565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6132ca806200073c6000396000f3fe6080604052600436106103385760003560e01c80637f61feaf116101ab578063a3344125116100f7578063e59ee01411610095578063f578d9df1161006f578063f578d9df146109ed578063f75d64a614610a00578063fc91f69f14610a15578063fdbf9ef214610a3457600080fd5b8063e59ee01414610964578063e985e9c514610984578063f2fde38b146109cd57600080fd5b8063c87b56dd116100d1578063c87b56dd146108e3578063cde27a3514610903578063ce7c2ac214610919578063e33b7de31461094f57600080fd5b8063a334412514610886578063b4576278146108ad578063b88d4fde146108c357600080fd5b80638dff4c1d116101645780639852595c1161013e5780639852595c1461080557806398d5fdca1461083b5780639ef2d87a14610850578063a22cb4651461086657600080fd5b80638dff4c1d146107b057806391b7f5ed146107d057806395d89b41146107f057600080fd5b80637f61feaf146106e25780637f674f48146107035780638456cb59146107305780638b83209b146107455780638cc4de19146107655780638da5cb5b1461079257600080fd5b80633425f90c116102855780635af46b4b116102235780636c0360eb116101fd5780636c0360eb146106785780636e0e5b191461068d57806370a08231146106ad578063715018a6146106cd57600080fd5b80635af46b4b146106175780635c975abb146106375780636352211e1461065857600080fd5b806342842e0e1161025f57806342842e0e1461059757806342966c68146105b75780634f6ccce7146105d757806355f804b3146105f757600080fd5b80633425f90c1461054d5780633a98ef391461056d5780633f4ba83a1461058257600080fd5b806309c3fbb7116102f257806319165587116102cc57806319165587146104d757806323b872dd146104f75780632ab4d052146105175780632f745c591461052d57600080fd5b806309c3fbb714610475578063145f031e146104a257806318160ddd146104c257600080fd5b80624563791461038657806301ffc9a7146103af57806306fdde03146103df57806307ebec2714610401578063081812fc1461041b578063095ea7b31461045357600080fd5b36610381577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561039257600080fd5b5061039c60135481565b6040519081526020015b60405180910390f35b3480156103bb57600080fd5b506103cf6103ca366004612e2d565b610a4a565b60405190151581526020016103a6565b3480156103eb57600080fd5b506103f4610a75565b6040516103a69190612ffc565b34801561040d57600080fd5b506014546103cf9060ff1681565b34801561042757600080fd5b5061043b610436366004612ed2565b610b07565b6040516001600160a01b0390911681526020016103a6565b34801561045f57600080fd5b5061047361046e366004612de8565b610ba1565b005b34801561048157600080fd5b5061039c610490366004612c47565b601c6020526000908152604090205481565b3480156104ae57600080fd5b506104736104bd366004612e13565b610cb7565b3480156104ce57600080fd5b5060085461039c565b3480156104e357600080fd5b506104736104f2366004612c47565b610cfb565b34801561050357600080fd5b50610473610512366004612c9b565b610ecc565b34801561052357600080fd5b5061039c60105481565b34801561053957600080fd5b5061039c610548366004612de8565b610efd565b34801561055957600080fd5b50610473610568366004612ed2565b610f93565b34801561057957600080fd5b50600b5461039c565b34801561058e57600080fd5b50610473610fc2565b3480156105a357600080fd5b506104736105b2366004612c9b565b61107d565b3480156105c357600080fd5b506104736105d2366004612ed2565b611098565b3480156105e357600080fd5b5061039c6105f2366004612ed2565b611168565b34801561060357600080fd5b50610473610612366004612e65565b611209565b34801561062357600080fd5b50610473610632366004612e13565b61127d565b34801561064357600080fd5b50600a546103cf90600160a01b900460ff1681565b34801561066457600080fd5b5061043b610673366004612ed2565b6112ff565b34801561068457600080fd5b506103f4611376565b34801561069957600080fd5b506104736106a8366004612e13565b611404565b3480156106b957600080fd5b5061039c6106c8366004612c47565b61146f565b3480156106d957600080fd5b506104736114f6565b3480156106ee57600080fd5b506014546103cf906301000000900460ff1681565b34801561070f57600080fd5b5061039c61071e366004612c47565b601d6020526000908152604090205481565b34801561073c57600080fd5b5061047361152c565b34801561075157600080fd5b5061043b610760366004612ed2565b6115ee565b34801561077157600080fd5b5061039c610780366004612c47565b601b6020526000908152604090205481565b34801561079e57600080fd5b50600a546001600160a01b031661043b565b3480156107bc57600080fd5b506014546103cf9062010000900460ff1681565b3480156107dc57600080fd5b506104736107eb366004612ed2565b61162c565b3480156107fc57600080fd5b506103f46116a9565b34801561081157600080fd5b5061039c610820366004612c47565b6001600160a01b03166000908152600e602052604090205490565b34801561084757600080fd5b5060165461039c565b34801561085c57600080fd5b5061039c60115481565b34801561087257600080fd5b50610473610881366004612db4565b6116b8565b34801561089257600080fd5b50601e546108a09060ff1681565b6040516103a69190612fa4565b3480156108b957600080fd5b5061039c60155481565b3480156108cf57600080fd5b506104736108de366004612cdb565b61177d565b3480156108ef57600080fd5b506103f46108fe366004612ed2565b6117b5565b34801561090f57600080fd5b5061039c60125481565b34801561092557600080fd5b5061039c610934366004612c47565b6001600160a01b03166000908152600d602052604090205490565b34801561095b57600080fd5b50600c5461039c565b34801561097057600080fd5b5061047361097f366004612e13565b611890565b34801561099057600080fd5b506103cf61099f366004612c63565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109d957600080fd5b506104736109e8366004612c47565b611905565b6104736109fb366004612ed2565b6119a0565b348015610a0c57600080fd5b5061039c611a7b565b348015610a2157600080fd5b506014546103cf90610100900460ff1681565b348015610a4057600080fd5b5061039c60165481565b60006001600160e01b0319821663780e9d6360e01b1480610a6f5750610a6f82611b46565b92915050565b606060008054610a84906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab0906131bd565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610bac826112ff565b9050806001600160a01b0316836001600160a01b03161415610c1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b7c565b336001600160a01b0382161480610c365750610c36813361099f565b610ca85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b7c565b610cb28383611b96565b505050565b600a546001600160a01b03163314610ce15760405162461bcd60e51b8152600401610b7c90613061565b601480549115156101000261ff0019909216919091179055565b6001600160a01b0381166000908152600d6020526040902054610d6f5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610b7c565b6000600c5447610d7f919061312f565b6001600160a01b0383166000908152600e6020908152604080832054600b54600d909352908320549394509192610db6908561315b565b610dc09190613147565b610dca919061317a565b905080610e2d5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610b7c565b6001600160a01b0383166000908152600e6020526040902054610e5190829061312f565b6001600160a01b0384166000908152600e6020526040902055600c54610e7890829061312f565b600c55610e858382611c04565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ed63382611d1d565b610ef25760405162461bcd60e51b8152600401610b7c90613096565b610cb2838383611e14565b6000610f088361146f565b8210610f6a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b7c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610fbd5760405162461bcd60e51b8152600401610b7c90613061565b601555565b600a546001600160a01b03163314610fec5760405162461bcd60e51b8152600401610b7c90613061565b600a54600160a01b900460ff166110455760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20697320617661696c61626c6500000000000000006044820152606401610b7c565b600a805460ff60a01b191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b610cb28383836040518060200160405280600081525061177d565b60145460ff166110ea5760405162461bcd60e51b815260206004820152601960248201527f4d6573736167653a206275726e696e672064697361626c6564000000000000006044820152606401610b7c565b6110f43382611d1d565b61114a5760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206275726e2063616c6c6572206973206e6f74206f776e656044820152603960f91b6064820152608401610b7c565b61115381611fbf565b6001601354611162919061317a565b60135550565b600061117360085490565b82106111d65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b7c565b600882815481106111f757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146112335760405162461bcd60e51b8152600401610b7c90613061565b61123f60178383612b9e565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db00937678282604051611271929190612fcd565b60405180910390a15050565b600a546001600160a01b031633146112a75760405162461bcd60e51b8152600401610b7c90613061565b6014805482151563010000000263ff000000199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d906112f490831515815260200190565b60405180910390a150565b6000818152600260205260408120546001600160a01b031680610a6f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b7c565b60178054611383906131bd565b80601f01602080910402602001604051908101604052809291908181526020018280546113af906131bd565b80156113fc5780601f106113d1576101008083540402835291602001916113fc565b820191906000526020600020905b8154815290600101906020018083116113df57829003601f168201915b505050505081565b600a546001600160a01b0316331461142e5760405162461bcd60e51b8152600401610b7c90613061565b6014805460ff19168215159081179091556040519081527f0343da01ca2a51743bc3a245ccf8007e27e6b919fb27b0f83cb5d60c2e8634f3906020016112f4565b60006001600160a01b0382166114da5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b7c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115205760405162461bcd60e51b8152600401610b7c90613061565b61152a6000612066565b565b600a546001600160a01b031633146115565760405162461bcd60e51b8152600401610b7c90613061565b600a54600160a01b900460ff16156115b05760405162461bcd60e51b815260206004820152601c60248201527f5472616e73616374696f6e206973206e6f7420617661696c61626c65000000006044820152606401610b7c565b600a805460ff60a01b1916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6000600f828154811061161157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b600a546001600160a01b031633146116565760405162461bcd60e51b8152600401610b7c90613061565b61166681655af3107a400061315b565b6016557fd6800b65b866c2769be54531e82b793515adb30a5c12080699dcd3c07784caa661169b8266038d7ea4c6800061315b565b6040519081526020016112f4565b606060018054610a84906131bd565b6001600160a01b0382163314156117115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b7c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117873383611d1d565b6117a35760405162461bcd60e51b8152600401610b7c90613096565b6117af848484846120b8565b50505050565b6000818152600260205260409020546060906001600160a01b03166118345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b7c565b600061183e6120eb565b9050600081511161185e5760405180602001604052806000815250611889565b80611868846120fa565b604051602001611879929190612f38565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146118ba5760405162461bcd60e51b8152600401610b7c90613061565b60148054821515620100000262ff0000199091161790556040517ff9639a949592ffb0c1afab06e7e6805171c8f5a77f018dea799ac9b452b62b5e906112f490831515815260200190565b600a546001600160a01b0316331461192f5760405162461bcd60e51b8152600401610b7c90613061565b6001600160a01b0381166119945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7c565b61199d81612066565b50565b600a54600160a01b900460ff16156119fa5760405162461bcd60e51b815260206004820152601c60248201527f5472616e73616374696f6e206973206e6f7420617661696c61626c65000000006044820152606401610b7c565b6014546301000000900460ff16611a1957611a1481612214565b611a22565b611a2281612479565b60105481601354611a33919061312f565b141561199d57601e805460ff191660039081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916112f49160029190612fb2565b60008080601e5460ff166003811115611aa457634e487b7160e01b600052602160045260246000fd5b1415611aae575060015b6001601e5460ff166003811115611ad557634e487b7160e01b600052602160045260246000fd5b1415611adf575060025b6002601e5460ff166003811115611b0657634e487b7160e01b600052602160045260246000fd5b1415611b10575060035b6003601e5460ff166003811115611b3757634e487b7160e01b600052602160045260246000fd5b1415611b41575060045b919050565b60006001600160e01b031982166380ac58cd60e01b1480611b7757506001600160e01b03198216635b5e139f60e01b145b80610a6f57506301ffc9a760e01b6001600160e01b0319831614610a6f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bcb826112ff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611c545760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b7c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611ca1576040519150601f19603f3d011682016040523d82523d6000602084013e611ca6565b606091505b5050905080610cb25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b7c565b6000818152600260205260408120546001600160a01b0316611d965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b7c565b6000611da1836112ff565b9050806001600160a01b0316846001600160a01b03161480611ddc5750836001600160a01b0316611dd184610b07565b6001600160a01b0316145b80611e0c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e27826112ff565b6001600160a01b031614611e8f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b7c565b6001600160a01b038216611ef15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b7c565b611efc838383612680565b611f07600082611b96565b6001600160a01b0383166000908152600360205260408120805460019290611f3090849061317a565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f5e90849061312f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611fca826112ff565b9050611fd881600084612680565b611fe3600083611b96565b6001600160a01b038116600090815260036020526040812080546001929061200c90849061317a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6120c3848484611e14565b6120cf84848484612738565b6117af5760405162461bcd60e51b8152600401610b7c9061300f565b606060178054610a84906131bd565b60608161211e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121485780612132816131f8565b91506121419050600a83613147565b9150612122565b60008167ffffffffffffffff81111561217157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561219b576020820181803683370190505b5090505b8415611e0c576121b060018361317a565b91506121bd600a86613213565b6121c890603061312f565b60f81b8183815181106121eb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061220d600a86613147565b945061219f565b60145462010000900460ff1615156001146122715760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610b7c565b60145460ff610100909104161515600114156122f357601154336000908152601b60205260409020546122a590839061312f565b11156122f35760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e206f6e6c79206d696e74203220746f6b656e730000000000006044820152606401610b7c565b60155481601354612304919061312f565b11156123525760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610b7c565b600061235d60165490565b90503461236a838361315b565b11156123885760405162461bcd60e51b8152600401610b7c906130e7565b6000805b83811015612437576123a2601880546001019055565b60185491506123b13383612845565b336000908152601b60205260409020546123cc90859061312f565b336000908152601b6020908152604080832093909355601d905220546123f390859061312f565b336000908152601d602052604090205560135461241190600161312f565b60135560125461242290600161312f565b6012558061242f816131f8565b91505061238c565b50604080518481526020810184905233917f40038d437ff4cece80b344923544b3c8527d7f6aa2f9202a9734d5d9c7ffa0e091015b60405180910390a2505050565b6014546301000000900460ff1615156001146124cd5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9b713ba1039ba30b93a32b21760691b6044820152606401610b7c565b600081116125145760405162461bcd60e51b815260206004820152601460248201527313595cdcd859d94e881e995c9bc8185b5bdd5b9d60621b6044820152606401610b7c565b60105481601354612525919061312f565b11156125735760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610b7c565b600061257e60165490565b90503461258b838361315b565b11156125a95760405162461bcd60e51b8152600401610b7c906130e7565b6000805b83811015612647576125c3601880546001019055565b60185491506125d23383612845565b336000908152601c60205260409020546125ed90859061312f565b336000908152601c6020908152604080832093909355601d9052205461261490859061312f565b336000908152601d602052604090205560135461263290600161312f565b6013558061263f816131f8565b9150506125ad565b50604080518481526020810184905233917f0d905a2e95960c2ad9e627d829fae00e7f3b9794c3b62a5c376cf5deee8f2a20910161246c565b6001600160a01b0383166126db576126d681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126fe565b816001600160a01b0316836001600160a01b0316146126fe576126fe8382612863565b6001600160a01b03821661271557610cb281612900565b826001600160a01b0316826001600160a01b031614610cb257610cb282826129d9565b60006001600160a01b0384163b1561283a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061277c903390899088908890600401612f67565b602060405180830381600087803b15801561279657600080fd5b505af19250505080156127c6575060408051601f3d908101601f191682019092526127c391810190612e49565b60015b612820573d8080156127f4576040519150601f19603f3d011682016040523d82523d6000602084013e6127f9565b606091505b5080516128185760405162461bcd60e51b8152600401610b7c9061300f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e0c565b506001949350505050565b61285f828260405180602001604052806000815250612a1d565b5050565b600060016128708461146f565b61287a919061317a565b6000838152600760205260409020549091508082146128cd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129129060019061317a565b6000838152600960205260408120546008805493945090928490811061294857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061297757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129bd57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129e48361146f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b612a278383612a50565b612a346000848484612738565b610cb25760405162461bcd60e51b8152600401610b7c9061300f565b6001600160a01b038216612aa65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b7c565b6000818152600260205260409020546001600160a01b031615612b0b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b7c565b612b1760008383612680565b6001600160a01b0382166000908152600360205260408120805460019290612b4090849061312f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612baa906131bd565b90600052602060002090601f016020900481019282612bcc5760008555612c12565b82601f10612be55782800160ff19823516178555612c12565b82800160010185558215612c12579182015b82811115612c12578235825591602001919060010190612bf7565b50612c1e929150612c22565b5090565b5b80821115612c1e5760008155600101612c23565b80358015158114611b4157600080fd5b600060208284031215612c58578081fd5b813561188981613269565b60008060408385031215612c75578081fd5b8235612c8081613269565b91506020830135612c9081613269565b809150509250929050565b600080600060608486031215612caf578081fd5b8335612cba81613269565b92506020840135612cca81613269565b929592945050506040919091013590565b60008060008060808587031215612cf0578081fd5b8435612cfb81613269565b93506020850135612d0b81613269565b925060408501359150606085013567ffffffffffffffff80821115612d2e578283fd5b818701915087601f830112612d41578283fd5b813581811115612d5357612d53613253565b604051601f8201601f19908116603f01168101908382118183101715612d7b57612d7b613253565b816040528281528a6020848701011115612d93578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612dc6578182fd5b8235612dd181613269565b9150612ddf60208401612c37565b90509250929050565b60008060408385031215612dfa578182fd5b8235612e0581613269565b946020939093013593505050565b600060208284031215612e24578081fd5b61188982612c37565b600060208284031215612e3e578081fd5b81356118898161327e565b600060208284031215612e5a578081fd5b81516118898161327e565b60008060208385031215612e77578182fd5b823567ffffffffffffffff80821115612e8e578384fd5b818501915085601f830112612ea1578384fd5b813581811115612eaf578485fd5b866020828501011115612ec0578485fd5b60209290920196919550909350505050565b600060208284031215612ee3578081fd5b5035919050565b60008151808452612f02816020860160208601613191565b601f01601f19169290920160200192915050565b60048110612f3457634e487b7160e01b600052602160045260246000fd5b9052565b60008351612f4a818460208801613191565b835190830190612f5e818360208801613191565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f9a90830184612eea565b9695505050505050565b60208101610a6f8284612f16565b60408101612fc08285612f16565b6118896020830184612f16565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006118896020830184612eea565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f4d6573736167653a2045746865722076616c75652073656e74206973206e6f746040820152670818dbdc9c9958dd60c21b606082015260800190565b6000821982111561314257613142613227565b500190565b6000826131565761315661323d565b500490565b600081600019048311821515161561317557613175613227565b500290565b60008282101561318c5761318c613227565b500390565b60005b838110156131ac578181015183820152602001613194565b838111156117af5750506000910152565b600181811c908216806131d157607f821691505b602082108114156131f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561320c5761320c613227565b5060010190565b6000826132225761322261323d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461199d57600080fd5b6001600160e01b03198116811461199d57600080fdfea2646970667358221220c9e5f69e336953dc091149a795c3e8edc570317d59728f094c05d9093bb68ad164736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103385760003560e01c80637f61feaf116101ab578063a3344125116100f7578063e59ee01411610095578063f578d9df1161006f578063f578d9df146109ed578063f75d64a614610a00578063fc91f69f14610a15578063fdbf9ef214610a3457600080fd5b8063e59ee01414610964578063e985e9c514610984578063f2fde38b146109cd57600080fd5b8063c87b56dd116100d1578063c87b56dd146108e3578063cde27a3514610903578063ce7c2ac214610919578063e33b7de31461094f57600080fd5b8063a334412514610886578063b4576278146108ad578063b88d4fde146108c357600080fd5b80638dff4c1d116101645780639852595c1161013e5780639852595c1461080557806398d5fdca1461083b5780639ef2d87a14610850578063a22cb4651461086657600080fd5b80638dff4c1d146107b057806391b7f5ed146107d057806395d89b41146107f057600080fd5b80637f61feaf146106e25780637f674f48146107035780638456cb59146107305780638b83209b146107455780638cc4de19146107655780638da5cb5b1461079257600080fd5b80633425f90c116102855780635af46b4b116102235780636c0360eb116101fd5780636c0360eb146106785780636e0e5b191461068d57806370a08231146106ad578063715018a6146106cd57600080fd5b80635af46b4b146106175780635c975abb146106375780636352211e1461065857600080fd5b806342842e0e1161025f57806342842e0e1461059757806342966c68146105b75780634f6ccce7146105d757806355f804b3146105f757600080fd5b80633425f90c1461054d5780633a98ef391461056d5780633f4ba83a1461058257600080fd5b806309c3fbb7116102f257806319165587116102cc57806319165587146104d757806323b872dd146104f75780632ab4d052146105175780632f745c591461052d57600080fd5b806309c3fbb714610475578063145f031e146104a257806318160ddd146104c257600080fd5b80624563791461038657806301ffc9a7146103af57806306fdde03146103df57806307ebec2714610401578063081812fc1461041b578063095ea7b31461045357600080fd5b36610381577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561039257600080fd5b5061039c60135481565b6040519081526020015b60405180910390f35b3480156103bb57600080fd5b506103cf6103ca366004612e2d565b610a4a565b60405190151581526020016103a6565b3480156103eb57600080fd5b506103f4610a75565b6040516103a69190612ffc565b34801561040d57600080fd5b506014546103cf9060ff1681565b34801561042757600080fd5b5061043b610436366004612ed2565b610b07565b6040516001600160a01b0390911681526020016103a6565b34801561045f57600080fd5b5061047361046e366004612de8565b610ba1565b005b34801561048157600080fd5b5061039c610490366004612c47565b601c6020526000908152604090205481565b3480156104ae57600080fd5b506104736104bd366004612e13565b610cb7565b3480156104ce57600080fd5b5060085461039c565b3480156104e357600080fd5b506104736104f2366004612c47565b610cfb565b34801561050357600080fd5b50610473610512366004612c9b565b610ecc565b34801561052357600080fd5b5061039c60105481565b34801561053957600080fd5b5061039c610548366004612de8565b610efd565b34801561055957600080fd5b50610473610568366004612ed2565b610f93565b34801561057957600080fd5b50600b5461039c565b34801561058e57600080fd5b50610473610fc2565b3480156105a357600080fd5b506104736105b2366004612c9b565b61107d565b3480156105c357600080fd5b506104736105d2366004612ed2565b611098565b3480156105e357600080fd5b5061039c6105f2366004612ed2565b611168565b34801561060357600080fd5b50610473610612366004612e65565b611209565b34801561062357600080fd5b50610473610632366004612e13565b61127d565b34801561064357600080fd5b50600a546103cf90600160a01b900460ff1681565b34801561066457600080fd5b5061043b610673366004612ed2565b6112ff565b34801561068457600080fd5b506103f4611376565b34801561069957600080fd5b506104736106a8366004612e13565b611404565b3480156106b957600080fd5b5061039c6106c8366004612c47565b61146f565b3480156106d957600080fd5b506104736114f6565b3480156106ee57600080fd5b506014546103cf906301000000900460ff1681565b34801561070f57600080fd5b5061039c61071e366004612c47565b601d6020526000908152604090205481565b34801561073c57600080fd5b5061047361152c565b34801561075157600080fd5b5061043b610760366004612ed2565b6115ee565b34801561077157600080fd5b5061039c610780366004612c47565b601b6020526000908152604090205481565b34801561079e57600080fd5b50600a546001600160a01b031661043b565b3480156107bc57600080fd5b506014546103cf9062010000900460ff1681565b3480156107dc57600080fd5b506104736107eb366004612ed2565b61162c565b3480156107fc57600080fd5b506103f46116a9565b34801561081157600080fd5b5061039c610820366004612c47565b6001600160a01b03166000908152600e602052604090205490565b34801561084757600080fd5b5060165461039c565b34801561085c57600080fd5b5061039c60115481565b34801561087257600080fd5b50610473610881366004612db4565b6116b8565b34801561089257600080fd5b50601e546108a09060ff1681565b6040516103a69190612fa4565b3480156108b957600080fd5b5061039c60155481565b3480156108cf57600080fd5b506104736108de366004612cdb565b61177d565b3480156108ef57600080fd5b506103f46108fe366004612ed2565b6117b5565b34801561090f57600080fd5b5061039c60125481565b34801561092557600080fd5b5061039c610934366004612c47565b6001600160a01b03166000908152600d602052604090205490565b34801561095b57600080fd5b50600c5461039c565b34801561097057600080fd5b5061047361097f366004612e13565b611890565b34801561099057600080fd5b506103cf61099f366004612c63565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109d957600080fd5b506104736109e8366004612c47565b611905565b6104736109fb366004612ed2565b6119a0565b348015610a0c57600080fd5b5061039c611a7b565b348015610a2157600080fd5b506014546103cf90610100900460ff1681565b348015610a4057600080fd5b5061039c60165481565b60006001600160e01b0319821663780e9d6360e01b1480610a6f5750610a6f82611b46565b92915050565b606060008054610a84906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab0906131bd565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610bac826112ff565b9050806001600160a01b0316836001600160a01b03161415610c1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b7c565b336001600160a01b0382161480610c365750610c36813361099f565b610ca85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b7c565b610cb28383611b96565b505050565b600a546001600160a01b03163314610ce15760405162461bcd60e51b8152600401610b7c90613061565b601480549115156101000261ff0019909216919091179055565b6001600160a01b0381166000908152600d6020526040902054610d6f5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610b7c565b6000600c5447610d7f919061312f565b6001600160a01b0383166000908152600e6020908152604080832054600b54600d909352908320549394509192610db6908561315b565b610dc09190613147565b610dca919061317a565b905080610e2d5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610b7c565b6001600160a01b0383166000908152600e6020526040902054610e5190829061312f565b6001600160a01b0384166000908152600e6020526040902055600c54610e7890829061312f565b600c55610e858382611c04565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ed63382611d1d565b610ef25760405162461bcd60e51b8152600401610b7c90613096565b610cb2838383611e14565b6000610f088361146f565b8210610f6a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b7c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610fbd5760405162461bcd60e51b8152600401610b7c90613061565b601555565b600a546001600160a01b03163314610fec5760405162461bcd60e51b8152600401610b7c90613061565b600a54600160a01b900460ff166110455760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20697320617661696c61626c6500000000000000006044820152606401610b7c565b600a805460ff60a01b191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b610cb28383836040518060200160405280600081525061177d565b60145460ff166110ea5760405162461bcd60e51b815260206004820152601960248201527f4d6573736167653a206275726e696e672064697361626c6564000000000000006044820152606401610b7c565b6110f43382611d1d565b61114a5760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206275726e2063616c6c6572206973206e6f74206f776e656044820152603960f91b6064820152608401610b7c565b61115381611fbf565b6001601354611162919061317a565b60135550565b600061117360085490565b82106111d65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b7c565b600882815481106111f757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146112335760405162461bcd60e51b8152600401610b7c90613061565b61123f60178383612b9e565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db00937678282604051611271929190612fcd565b60405180910390a15050565b600a546001600160a01b031633146112a75760405162461bcd60e51b8152600401610b7c90613061565b6014805482151563010000000263ff000000199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d906112f490831515815260200190565b60405180910390a150565b6000818152600260205260408120546001600160a01b031680610a6f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b7c565b60178054611383906131bd565b80601f01602080910402602001604051908101604052809291908181526020018280546113af906131bd565b80156113fc5780601f106113d1576101008083540402835291602001916113fc565b820191906000526020600020905b8154815290600101906020018083116113df57829003601f168201915b505050505081565b600a546001600160a01b0316331461142e5760405162461bcd60e51b8152600401610b7c90613061565b6014805460ff19168215159081179091556040519081527f0343da01ca2a51743bc3a245ccf8007e27e6b919fb27b0f83cb5d60c2e8634f3906020016112f4565b60006001600160a01b0382166114da5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b7c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115205760405162461bcd60e51b8152600401610b7c90613061565b61152a6000612066565b565b600a546001600160a01b031633146115565760405162461bcd60e51b8152600401610b7c90613061565b600a54600160a01b900460ff16156115b05760405162461bcd60e51b815260206004820152601c60248201527f5472616e73616374696f6e206973206e6f7420617661696c61626c65000000006044820152606401610b7c565b600a805460ff60a01b1916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6000600f828154811061161157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b600a546001600160a01b031633146116565760405162461bcd60e51b8152600401610b7c90613061565b61166681655af3107a400061315b565b6016557fd6800b65b866c2769be54531e82b793515adb30a5c12080699dcd3c07784caa661169b8266038d7ea4c6800061315b565b6040519081526020016112f4565b606060018054610a84906131bd565b6001600160a01b0382163314156117115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b7c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117873383611d1d565b6117a35760405162461bcd60e51b8152600401610b7c90613096565b6117af848484846120b8565b50505050565b6000818152600260205260409020546060906001600160a01b03166118345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b7c565b600061183e6120eb565b9050600081511161185e5760405180602001604052806000815250611889565b80611868846120fa565b604051602001611879929190612f38565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146118ba5760405162461bcd60e51b8152600401610b7c90613061565b60148054821515620100000262ff0000199091161790556040517ff9639a949592ffb0c1afab06e7e6805171c8f5a77f018dea799ac9b452b62b5e906112f490831515815260200190565b600a546001600160a01b0316331461192f5760405162461bcd60e51b8152600401610b7c90613061565b6001600160a01b0381166119945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7c565b61199d81612066565b50565b600a54600160a01b900460ff16156119fa5760405162461bcd60e51b815260206004820152601c60248201527f5472616e73616374696f6e206973206e6f7420617661696c61626c65000000006044820152606401610b7c565b6014546301000000900460ff16611a1957611a1481612214565b611a22565b611a2281612479565b60105481601354611a33919061312f565b141561199d57601e805460ff191660039081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916112f49160029190612fb2565b60008080601e5460ff166003811115611aa457634e487b7160e01b600052602160045260246000fd5b1415611aae575060015b6001601e5460ff166003811115611ad557634e487b7160e01b600052602160045260246000fd5b1415611adf575060025b6002601e5460ff166003811115611b0657634e487b7160e01b600052602160045260246000fd5b1415611b10575060035b6003601e5460ff166003811115611b3757634e487b7160e01b600052602160045260246000fd5b1415611b41575060045b919050565b60006001600160e01b031982166380ac58cd60e01b1480611b7757506001600160e01b03198216635b5e139f60e01b145b80610a6f57506301ffc9a760e01b6001600160e01b0319831614610a6f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bcb826112ff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611c545760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b7c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611ca1576040519150601f19603f3d011682016040523d82523d6000602084013e611ca6565b606091505b5050905080610cb25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b7c565b6000818152600260205260408120546001600160a01b0316611d965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b7c565b6000611da1836112ff565b9050806001600160a01b0316846001600160a01b03161480611ddc5750836001600160a01b0316611dd184610b07565b6001600160a01b0316145b80611e0c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e27826112ff565b6001600160a01b031614611e8f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b7c565b6001600160a01b038216611ef15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b7c565b611efc838383612680565b611f07600082611b96565b6001600160a01b0383166000908152600360205260408120805460019290611f3090849061317a565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f5e90849061312f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611fca826112ff565b9050611fd881600084612680565b611fe3600083611b96565b6001600160a01b038116600090815260036020526040812080546001929061200c90849061317a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6120c3848484611e14565b6120cf84848484612738565b6117af5760405162461bcd60e51b8152600401610b7c9061300f565b606060178054610a84906131bd565b60608161211e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121485780612132816131f8565b91506121419050600a83613147565b9150612122565b60008167ffffffffffffffff81111561217157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561219b576020820181803683370190505b5090505b8415611e0c576121b060018361317a565b91506121bd600a86613213565b6121c890603061312f565b60f81b8183815181106121eb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061220d600a86613147565b945061219f565b60145462010000900460ff1615156001146122715760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610b7c565b60145460ff610100909104161515600114156122f357601154336000908152601b60205260409020546122a590839061312f565b11156122f35760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e206f6e6c79206d696e74203220746f6b656e730000000000006044820152606401610b7c565b60155481601354612304919061312f565b11156123525760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610b7c565b600061235d60165490565b90503461236a838361315b565b11156123885760405162461bcd60e51b8152600401610b7c906130e7565b6000805b83811015612437576123a2601880546001019055565b60185491506123b13383612845565b336000908152601b60205260409020546123cc90859061312f565b336000908152601b6020908152604080832093909355601d905220546123f390859061312f565b336000908152601d602052604090205560135461241190600161312f565b60135560125461242290600161312f565b6012558061242f816131f8565b91505061238c565b50604080518481526020810184905233917f40038d437ff4cece80b344923544b3c8527d7f6aa2f9202a9734d5d9c7ffa0e091015b60405180910390a2505050565b6014546301000000900460ff1615156001146124cd5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9b713ba1039ba30b93a32b21760691b6044820152606401610b7c565b600081116125145760405162461bcd60e51b815260206004820152601460248201527313595cdcd859d94e881e995c9bc8185b5bdd5b9d60621b6044820152606401610b7c565b60105481601354612525919061312f565b11156125735760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610b7c565b600061257e60165490565b90503461258b838361315b565b11156125a95760405162461bcd60e51b8152600401610b7c906130e7565b6000805b83811015612647576125c3601880546001019055565b60185491506125d23383612845565b336000908152601c60205260409020546125ed90859061312f565b336000908152601c6020908152604080832093909355601d9052205461261490859061312f565b336000908152601d602052604090205560135461263290600161312f565b6013558061263f816131f8565b9150506125ad565b50604080518481526020810184905233917f0d905a2e95960c2ad9e627d829fae00e7f3b9794c3b62a5c376cf5deee8f2a20910161246c565b6001600160a01b0383166126db576126d681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126fe565b816001600160a01b0316836001600160a01b0316146126fe576126fe8382612863565b6001600160a01b03821661271557610cb281612900565b826001600160a01b0316826001600160a01b031614610cb257610cb282826129d9565b60006001600160a01b0384163b1561283a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061277c903390899088908890600401612f67565b602060405180830381600087803b15801561279657600080fd5b505af19250505080156127c6575060408051601f3d908101601f191682019092526127c391810190612e49565b60015b612820573d8080156127f4576040519150601f19603f3d011682016040523d82523d6000602084013e6127f9565b606091505b5080516128185760405162461bcd60e51b8152600401610b7c9061300f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e0c565b506001949350505050565b61285f828260405180602001604052806000815250612a1d565b5050565b600060016128708461146f565b61287a919061317a565b6000838152600760205260409020549091508082146128cd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129129060019061317a565b6000838152600960205260408120546008805493945090928490811061294857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061297757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129bd57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129e48361146f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b612a278383612a50565b612a346000848484612738565b610cb25760405162461bcd60e51b8152600401610b7c9061300f565b6001600160a01b038216612aa65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b7c565b6000818152600260205260409020546001600160a01b031615612b0b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b7c565b612b1760008383612680565b6001600160a01b0382166000908152600360205260408120805460019290612b4090849061312f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612baa906131bd565b90600052602060002090601f016020900481019282612bcc5760008555612c12565b82601f10612be55782800160ff19823516178555612c12565b82800160010185558215612c12579182015b82811115612c12578235825591602001919060010190612bf7565b50612c1e929150612c22565b5090565b5b80821115612c1e5760008155600101612c23565b80358015158114611b4157600080fd5b600060208284031215612c58578081fd5b813561188981613269565b60008060408385031215612c75578081fd5b8235612c8081613269565b91506020830135612c9081613269565b809150509250929050565b600080600060608486031215612caf578081fd5b8335612cba81613269565b92506020840135612cca81613269565b929592945050506040919091013590565b60008060008060808587031215612cf0578081fd5b8435612cfb81613269565b93506020850135612d0b81613269565b925060408501359150606085013567ffffffffffffffff80821115612d2e578283fd5b818701915087601f830112612d41578283fd5b813581811115612d5357612d53613253565b604051601f8201601f19908116603f01168101908382118183101715612d7b57612d7b613253565b816040528281528a6020848701011115612d93578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612dc6578182fd5b8235612dd181613269565b9150612ddf60208401612c37565b90509250929050565b60008060408385031215612dfa578182fd5b8235612e0581613269565b946020939093013593505050565b600060208284031215612e24578081fd5b61188982612c37565b600060208284031215612e3e578081fd5b81356118898161327e565b600060208284031215612e5a578081fd5b81516118898161327e565b60008060208385031215612e77578182fd5b823567ffffffffffffffff80821115612e8e578384fd5b818501915085601f830112612ea1578384fd5b813581811115612eaf578485fd5b866020828501011115612ec0578485fd5b60209290920196919550909350505050565b600060208284031215612ee3578081fd5b5035919050565b60008151808452612f02816020860160208601613191565b601f01601f19169290920160200192915050565b60048110612f3457634e487b7160e01b600052602160045260246000fd5b9052565b60008351612f4a818460208801613191565b835190830190612f5e818360208801613191565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f9a90830184612eea565b9695505050505050565b60208101610a6f8284612f16565b60408101612fc08285612f16565b6118896020830184612f16565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006118896020830184612eea565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f4d6573736167653a2045746865722076616c75652073656e74206973206e6f746040820152670818dbdc9c9958dd60c21b606082015260800190565b6000821982111561314257613142613227565b500190565b6000826131565761315661323d565b500490565b600081600019048311821515161561317557613175613227565b500290565b60008282101561318c5761318c613227565b500390565b60005b838110156131ac578181015183820152602001613194565b838111156117af5750506000910152565b600181811c908216806131d157607f821691505b602082108114156131f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561320c5761320c613227565b5060010190565b6000826132225761322261323d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461199d57600080fd5b6001600160e01b03198116811461199d57600080fdfea2646970667358221220c9e5f69e336953dc091149a795c3e8edc570317d59728f094c05d9093bb68ad164736f6c63430008040033

Deployed Bytecode Sourcemap

196:6140:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2635:40:14;666:10:1;2635:40:14;;;-1:-1:-1;;;;;6724:32:17;;;6706:51;;2665:9:14;6788:2:17;6773:18;;6766:34;6679:18;2635:40:14;;;;;;;196:6140:12;;;;;420:23;;;;;;;;;;;;;;;;;;;21553:25:17;;;21541:2;21526:18;420:23:12;;;;;;;;909:222:5;;;;;;;;;;-1:-1:-1;909:222:5;;;;;:::i;:::-;;:::i;:::-;;;7748:14:17;;7741:22;7723:41;;7711:2;7696:18;909:222:5;7678:92:17;2349:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;449:25:12:-;;;;;;;;;;-1:-1:-1;449:25:12;;;;;;;;3860:217:4;;;;;;;;;;-1:-1:-1;3860:217:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6480:32:17;;;6462:51;;6450:2;6435:18;3860:217:4;6417:102:17;3398:401:4;;;;;;;;;;-1:-1:-1;3398:401:4;;;;;:::i;:::-;;:::i;:::-;;922:47:12;;;;;;;;;;-1:-1:-1;922:47:12;;;;;:::i;:::-;;;;;;;;;;;;;;2153:101;;;;;;;;;;-1:-1:-1;2153:101:12;;;;;:::i;:::-;;:::i;1534:111:5:-;;;;;;;;;;-1:-1:-1;1621:10:5;:17;1534:111;;3799:600:14;;;;;;;;;;-1:-1:-1;3799:600:14;;;;;:::i;:::-;;:::i;4724:330:4:-;;;;;;;;;;-1:-1:-1;4724:330:4;;;;;:::i;:::-;;:::i;312:36:12:-;;;;;;;;;;;;;;;;1210:253:5;;;;;;;;;;-1:-1:-1;1210:253:5;;;;;:::i;:::-;;:::i;2970:104:12:-;;;;;;;;;;-1:-1:-1;2970:104:12;;;;;:::i;:::-;;:::i;2760:89:14:-;;;;;;;;;;-1:-1:-1;2830:12:14;;2760:89;;983:102:13;;;;;;;;;;;;;:::i;5120:179:4:-;;;;;;;;;;-1:-1:-1;5120:179:4;;;;;:::i;:::-;;:::i;5575:294:12:-;;;;;;;;;;-1:-1:-1;5575:294:12;;;;;:::i;:::-;;:::i;1717:230:5:-;;;;;;;;;;-1:-1:-1;1717:230:5;;;;;:::i;:::-;;:::i;1802:153:12:-;;;;;;;;;;-1:-1:-1;1802:153:12;;;;;:::i;:::-;;:::i;2435:187::-;;;;;;;;;;-1:-1:-1;2435:187:12;;;;;:::i;:::-;;:::i;271:26:13:-;;;;;;;;;;-1:-1:-1;271:26:13;;;;-1:-1:-1;;;271:26:13;;;;;;2052:235:4;;;;;;;;;;-1:-1:-1;2052:235:4;;;;;:::i;:::-;;:::i;680:21:12:-;;;;;;;;;;;;;:::i;2628:163::-;;;;;;;;;;-1:-1:-1;2628:163:12;;;;;:::i;:::-;;:::i;1790:205:4:-;;;;;;;;;;-1:-1:-1;1790:205:4;;;;;:::i;:::-;;:::i;1598:92:11:-;;;;;;;;;;;;;:::i;557:29:12:-;;;;;;;;;;-1:-1:-1;557:29:12;;;;;;;;;;;975:48;;;;;;;;;;-1:-1:-1;975:48:12;;;;;:::i;:::-;;;;;;;;;;;;;;793:100:13;;;;;;;;;;;;;:::i;3507:98:14:-;;;;;;;;;;-1:-1:-1;3507:98:14;;;;;:::i;:::-;;:::i;866:50:12:-;;;;;;;;;;-1:-1:-1;866:50:12;;;;;:::i;:::-;;;;;;;;;;;;;;966:85:11;;;;;;;;;;-1:-1:-1;1038:6:11;;-1:-1:-1;;;;;1038:6:11;966:85;;518:33:12;;;;;;;;;;-1:-1:-1;518:33:12;;;;;;;;;;;2797:167;;;;;;;;;;-1:-1:-1;2797:167:12;;;;;:::i;:::-;;:::i;2511:102:4:-;;;;;;;;;;;;;:::i;3314:107:14:-;;;;;;;;;;-1:-1:-1;3314:107:14;;;;;:::i;:::-;-1:-1:-1;;;;;3396:18:14;3370:7;3396:18;;;:9;:18;;;;;;;3314:107;2065:83:12;;;;;;;;;;-1:-1:-1;2132:9:12;;2065:83;;354:27;;;;;;;;;;;;;;;;4144:290:4;;;;;;;;;;-1:-1:-1;4144:290:4;;;;;:::i;:::-;;:::i;1133:30:12:-;;;;;;;;;;-1:-1:-1;1133:30:12;;;;;;;;;;;;;;;:::i;593:31::-;;;;;;;;;;;;;;;;5365:320:4;;;;;;;;;;-1:-1:-1;5365:320:4;;;;;:::i;:::-;;:::i;2679:329::-;;;;;;;;;;-1:-1:-1;2679:329:4;;;;;:::i;:::-;;:::i;387:27:12:-;;;;;;;;;;;;;;;;3117:103:14;;;;;;;;;;-1:-1:-1;3117:103:14;;;;;:::i;:::-;-1:-1:-1;;;;;3197:16:14;3171:7;3197:16;;;:7;:16;;;;;;;3117:103;2938:93;;;;;;;;;;-1:-1:-1;3010:14:14;;2938:93;;2260:169:12;;;;;;;;;;-1:-1:-1;2260:169:12;;;;;:::i;:::-;;:::i;4500:162:4:-;;;;;;;;;;-1:-1:-1;4500:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162;1839:189:11;;;;;;;;;;-1:-1:-1;1839:189:11;;;;;:::i;:::-;;:::i;5122:447:12:-;;;;;;:::i;:::-;;:::i;5875:459::-;;;;;;;;;;;;;:::i;480:32::-;;;;;;;;;;-1:-1:-1;480:32:12;;;;;;;;;;;630:44;;;;;;;;;;;;;;;;909:222:5;1011:4;-1:-1:-1;;;;;;1034:50:5;;-1:-1:-1;;;1034:50:5;;:90;;;1088:36;1112:11;1088:23;:36::i;:::-;1027:97;909:222;-1:-1:-1;;909:222:5:o;2349:98:4:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;3955:73;;;;-1:-1:-1;;;3955:73:4;;16554:2:17;3955:73:4;;;16536:21:17;16593:2;16573:18;;;16566:30;16632:34;16612:18;;;16605:62;-1:-1:-1;;;16683:18:17;;;16676:42;16735:19;;3955:73:4;;;;;;;;;-1:-1:-1;4046:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:4;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:4;:2;-1:-1:-1;;;;;3535:11:4;;;3527:57;;;;-1:-1:-1;;;3527:57:4;;18503:2:17;3527:57:4;;;18485:21:17;18542:2;18522:18;;;18515:30;18581:34;18561:18;;;18554:62;-1:-1:-1;;;18632:18:17;;;18625:31;18673:19;;3527:57:4;18475:223:17;3527:57:4;666:10:1;-1:-1:-1;;;;;3616:21:4;;;;:62;;-1:-1:-1;3641:37:4;3658:5;666:10:1;4500:162:4;:::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:4;;14947:2:17;3595:165:4;;;14929:21:17;14986:2;14966:18;;;14959:30;15025:34;15005:18;;;14998:62;15096:26;15076:18;;;15069:54;15140:19;;3595:165:4;14919:246:17;3595:165:4;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;2153:101:12:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;666:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;2221:13:12::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;2221:26:12;;::::1;::::0;;;::::1;::::0;;2153:101::o;3799:600:14:-;-1:-1:-1;;;;;3874:16:14;;3893:1;3874:16;;;:7;:16;;;;;;3866:71;;;;-1:-1:-1;;;3866:71:14;;11464:2:17;3866:71:14;;;11446:21:17;11503:2;11483:18;;;11476:30;11542:34;11522:18;;;11515:62;-1:-1:-1;;;11593:18:17;;;11586:36;11639:19;;3866:71:14;11436:228:17;3866:71:14;3948:21;3996:14;;3972:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;4090:18:14;;4020:15;4090:18;;;:9;:18;;;;;;;;;4075:12;;4055:7;:16;;;;;;;3948:62;;-1:-1:-1;4020:15:14;;4039:32;;3948:62;4039:32;:::i;:::-;4038:49;;;;:::i;:::-;:70;;;;:::i;:::-;4020:88;-1:-1:-1;4127:12:14;4119:68;;;;-1:-1:-1;;;4119:68:14;;13828:2:17;4119:68:14;;;13810:21:17;13867:2;13847:18;;;13840:30;13906:34;13886:18;;;13879:62;-1:-1:-1;;;13957:18:17;;;13950:41;14008:19;;4119:68:14;13800:233:17;4119:68:14;-1:-1:-1;;;;;4219:18:14;;;;;;:9;:18;;;;;;:28;;4240:7;;4219:28;:::i;:::-;-1:-1:-1;;;;;4198:18:14;;;;;;:9;:18;;;;;:49;4274:14;;:24;;4291:7;;4274:24;:::i;:::-;4257:14;:41;4309:35;4327:7;4336;4309:17;:35::i;:::-;4359:33;;;-1:-1:-1;;;;;6724:32:17;;6706:51;;6788:2;6773:18;;6766:34;;;4359:33:14;;6679:18:17;4359:33:14;;;;;;;3799:600;;;:::o;4724:330:4:-;4913:41;666:10:1;4946:7:4;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:4;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;1210:253:5:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:5;;9514:2:17;1326:87:5;;;9496:21:17;9553:2;9533:18;;;9526:30;9592:34;9572:18;;;9565:62;-1:-1:-1;;;9643:18:17;;;9636:41;9694:19;;1326:87:5;9486:233:17;1326:87:5;-1:-1:-1;;;;;;1430:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;2970:104:12:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;666:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;3043:14:12::1;:24:::0;2970:104::o;983:102:13:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;666:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;653:6:13::1;::::0;-1:-1:-1;;;653:6:13;::::1;;;645:43;;;::::0;-1:-1:-1;;;645:43:13;;14594:2:17;645:43:13::1;::::0;::::1;14576:21:17::0;14633:2;14613:18;;;14606:30;14672:26;14652:18;;;14645:54;14716:18;;645:43:13::1;14566:174:17::0;645:43:13::1;1040:6:::2;:14:::0;;-1:-1:-1;;;;1040:14:13::2;::::0;;1069:9:::2;::::0;::::2;::::0;1049:5:::2;::::0;1069:9:::2;983:102::o:0;5120:179:4:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;5575:294:12:-;5633:13;;;;5625:51;;;;-1:-1:-1;;;5625:51:12;;14240:2:17;5625:51:12;;;14222:21:17;14279:2;14259:18;;;14252:30;14318:27;14298:18;;;14291:55;14363:18;;5625:51:12;14212:175:17;5625:51:12;5707:39;5726:10;5738:7;5707:18;:39::i;:::-;5686:119;;;;-1:-1:-1;;;5686:119:12;;19736:2:17;5686:119:12;;;19718:21:17;19775:2;19755:18;;;19748:30;19814:34;19794:18;;;19787:62;-1:-1:-1;;;19865:18:17;;;19858:31;19906:19;;5686:119:12;19708:223:17;5686:119:12;5815:14;5821:7;5815:5;:14::i;:::-;5861:1;5850:8;;:12;;;;:::i;:::-;5839:8;:23;-1:-1:-1;5575:294:12:o;1717:230:5:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:5;;19323:2:17;1811:95:5;;;19305:21:17;19362:2;19342:18;;;19335:30;19401:34;19381:18;;;19374:62;-1:-1:-1;;;19452:18:17;;;19445:42;19504:19;;1811:95:5;19295:234:17;1811:95:5;1923:10;1934:5;1923:17;;;;;;-1:-1:-1;;;1923:17:5;;;;;;;;;;;;;;;;;1916:24;;1717:230;;;:::o;1802:153:12:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;666:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;1882:23:12::1;:7;1892:13:::0;;1882:23:::1;:::i;:::-;;1920:28;1934:13;;1920:28;;;;;;;:::i;:::-;;;;;;;;1802:153:::0;;:::o;2435:187::-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;666:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;2519:17:12::1;:38:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;2519:38:12;;::::1;;::::0;;2572:43:::1;::::0;::::1;::::0;::::1;::::0;2539:18;7748:14:17;7741:22;7723:41;;7711:2;7696:18;;7678:92;2572:43:12::1;;;;;;;;2435:187:::0;:::o;2052:235:4:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:4;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:4;;15783:2:17;2185:73:4;;;15765:21:17;15822:2;15802:18;;;15795:30;15861:34;15841:18;;;15834:62;-1:-1:-1;;;15912:18:17;;;15905:39;15961:19;;2185:73:4;15755:231:17;680:21:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2628:163::-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;666:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;2704:13:12::1;:30:::0;;-1:-1:-1;;2704:30:12::1;::::0;::::1;;::::0;;::::1;::::0;;;2749:35:::1;::::0;7723:41:17;;;2749:35:12::1;::::0;7711:2:17;7696:18;2749:35:12::1;7678:92:17::0;1790:205:4;1862:7;-1:-1:-1;;;;;1889:19:4;;1881:74;;;;-1:-1:-1;;;1881:74:4;;15372:2:17;1881:74:4;;;15354:21:17;15411:2;15391:18;;;15384:30;15450:34;15430:18;;;15423:62;-1:-1:-1;;;15501:18:17;;;15494:40;15551:19;;1881:74:4;15344:232:17;1881:74:4;-1:-1:-1;;;;;;1972:16:4;;;;;:9;:16;;;;;;;1790:205::o;1598:92:11:-;1038:6;;-1:-1:-1;;;;;1038:6:11;666:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;793:100:13:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;666:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;451:6:13::1;::::0;-1:-1:-1;;;451:6:13;::::1;;;450:7;442:48;;;::::0;-1:-1:-1;;;442:48:13;;20904:2:17;442:48:13::1;::::0;::::1;20886:21:17::0;20943:2;20923:18;;;20916:30;20982;20962:18;;;20955:58;21030:18;;442:48:13::1;20876:178:17::0;442:48:13::1;851:6:::2;:13:::0;;-1:-1:-1;;;;851:13:13::2;-1:-1:-1::0;;;851:13:13::2;::::0;;879:7:::2;::::0;::::2;::::0;851:13;;879:7:::2;793:100::o:0;3507:98:14:-;3558:7;3584;3592:5;3584:14;;;;;;-1:-1:-1;;;3584:14:14;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3584:14:14;;3507:98;-1:-1:-1;;3507:98:14:o;2797:167:12:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;666:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;2873:25:12::1;:7:::0;2883:15:::1;2873:25;:::i;:::-;2861:9;:37:::0;2914:43:::1;2930:26;:7:::0;2940:16:::1;2930:26;:::i;:::-;2914:43;::::0;21553:25:17;;;21541:2;21526:18;2914:43:12::1;21508:76:17::0;2511:102:4;2567:13;2599:7;2592:14;;;;;:::i;4144:290::-;-1:-1:-1;;;;;4246:24:4;;666:10:1;4246:24:4;;4238:62;;;;-1:-1:-1;;;4238:62:4;;12276:2:17;4238:62:4;;;12258:21:17;12315:2;12295:18;;;12288:30;12354:27;12334:18;;;12327:55;12399:18;;4238:62:4;12248:175:17;4238:62:4;666:10:1;4311:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4311:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:4;;;;;;;;;;4379:48;;7723:41:17;;;4311:42:4;;666:10:1;4379:48:4;;7696:18:17;4379:48:4;;;;;;;4144:290;;:::o;5365:320::-;5534:41;666:10:1;5567:7:4;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:4;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2679:329::-;7222:4;7245:16;;;:7;:16;;;;;;2752:13;;-1:-1:-1;;;;;7245:16:4;2777:76;;;;-1:-1:-1;;;2777:76:4;;18087:2:17;2777:76:4;;;18069:21:17;18126:2;18106:18;;;18099:30;18165:34;18145:18;;;18138:62;-1:-1:-1;;;18216:18:17;;;18209:45;18271:19;;2777:76:4;18059:237:17;2777:76:4;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;2679:329;-1:-1:-1;;;2679:329:4:o;2260:169:12:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;666:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;2338:14:12::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;2338:32:12;;::::1;;::::0;;2385:37:::1;::::0;::::1;::::0;::::1;::::0;2355:15;7748:14:17;7741:22;7723:41;;7711:2;7696:18;;7678:92;1839:189:11;1038:6;;-1:-1:-1;;;;;1038:6:11;666:10:1;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:11;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:11;;10345:2:17;1919:73:11::1;::::0;::::1;10327:21:17::0;10384:2;10364:18;;;10357:30;10423:34;10403:18;;;10396:62;-1:-1:-1;;;10474:18:17;;;10467:36;10520:19;;1919:73:11::1;10317:228:17::0;1919:73:11::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;5122:447:12:-;451:6:13;;-1:-1:-1;;;451:6:13;;;;450:7;442:48;;;;-1:-1:-1;;;442:48:13;;20904:2:17;442:48:13;;;20886:21:17;20943:2;20923:18;;;20916:30;20982;20962:18;;;20955:58;21030:18;;442:48:13;20876:178:17;442:48:13;5202:17:12::1;::::0;;;::::1;;;5198:125;;5244:20;5256:7;5244:11;:20::i;:::-;5198:125;;;5295:17;5304:7;5295:8;:17::i;:::-;5358:14;;5347:7;5336:8;;:18;;;;:::i;:::-;:36;5332:231;;;5388:8;:33:::0;;-1:-1:-1;;5388:33:12::1;5399:22;5388:33:::0;;::::1;::::0;;;5441:111:::1;::::0;::::1;::::0;::::1;::::0;5479:19:::1;::::0;5399:22;5441:111:::1;:::i;5875:459::-:0;5925:7;;;5973:8;;;;:41;;;;;;-1:-1:-1;;;5973:41:12;;;;;;;;;;5969:83;;;-1:-1:-1;6040:1:12;5969:83;6077:22;6065:8;;;;:34;;;;;;-1:-1:-1;;;6065:34:12;;;;;;;;;;6061:76;;;-1:-1:-1;6125:1:12;6061:76;6162:19;6150:8;;;;:31;;;;;;-1:-1:-1;;;6150:31:12;;;;;;;;;;6146:73;;;-1:-1:-1;6207:1:12;6146:73;6244:22;6232:8;;;;:34;;;;;;-1:-1:-1;;;6232:34:12;;;;;;;;;;6228:76;;;-1:-1:-1;6292:1:12;6228:76;6320:7;5875:459;-1:-1:-1;5875:459:12:o;1431:300:4:-;1533:4;-1:-1:-1;;;;;;1568:40:4;;-1:-1:-1;;;1568:40:4;;:104;;-1:-1:-1;;;;;;;1624:48:4;;-1:-1:-1;;;1624:48:4;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:3;;;1688:36:4;763:155:3;11008:171:4;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:4;-1:-1:-1;;;;;11082:29:4;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:4;;;;;;;;;;;11008:171;;:::o;2012:312:0:-;2126:6;2101:21;:31;;2093:73;;;;-1:-1:-1;;;2093:73:0;;13057:2:17;2093:73:0;;;13039:21:17;13096:2;13076:18;;;13069:30;13135:31;13115:18;;;13108:59;13184:18;;2093:73:0;13029:179:17;2093:73:0;2178:12;2196:9;-1:-1:-1;;;;;2196:14:0;2218:6;2196:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2177:52;;;2247:7;2239:78;;;;-1:-1:-1;;;2239:78:0;;12630:2:17;2239:78:0;;;12612:21:17;12669:2;12649:18;;;12642:30;12708:34;12688:18;;;12681:62;12779:28;12759:18;;;12752:56;12825:19;;2239:78:0;12602:248:17;7440:344:4;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;7549:73;;;;-1:-1:-1;;;7549:73:4;;13415:2:17;7549:73:4;;;13397:21:17;13454:2;13434:18;;;13427:30;13493:34;13473:18;;;13466:62;-1:-1:-1;;;13544:18:17;;;13537:42;13596:19;;7549:73:4;13387:234:17;7549:73:4;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:4;:7;-1:-1:-1;;;;;7689:16:4;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:4;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:4;;7689:51;:87;;;-1:-1:-1;;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7744:32;7681:96;7440:344;-1:-1:-1;;;;7440:344:4:o;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:4;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:4;;10456:85;;;;-1:-1:-1;;;10456:85:4;;17677:2:17;10456:85:4;;;17659:21:17;17716:2;17696:18;;;17689:30;17755:34;17735:18;;;17728:62;-1:-1:-1;;;17806:18:17;;;17799:39;17855:19;;10456:85:4;17649:231:17;10456:85:4;-1:-1:-1;;;;;10559:16:4;;10551:65;;;;-1:-1:-1;;;10551:65:4;;11871:2:17;10551:65:4;;;11853:21:17;11910:2;11890:18;;;11883:30;11949:34;11929:18;;;11922:62;-1:-1:-1;;;12000:18:17;;;11993:34;12044:19;;10551:65:4;11843:226:17;10551:65:4;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:4;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:4;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:4;-1:-1:-1;;;;;10826:21:4;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;9665:348::-;9724:13;9740:23;9755:7;9740:14;:23::i;:::-;9724:39;;9774:48;9795:5;9810:1;9814:7;9774:20;:48::i;:::-;9860:29;9877:1;9881:7;9860:8;:29::i;:::-;-1:-1:-1;;;;;9900:16:4;;;;;;:9;:16;;;;;:21;;9920:1;;9900:16;:21;;9920:1;;9900:21;:::i;:::-;;;;-1:-1:-1;;9938:16:4;;;;:7;:16;;;;;;9931:23;;-1:-1:-1;;;;;;9931:23:4;;;9970:36;9946:7;;9938:16;-1:-1:-1;;;;;9970:36:4;;;;;9938:16;;9970:36;9665:348;;:::o;2034:169:11:-;2108:6;;;-1:-1:-1;;;;;2124:17:11;;;-1:-1:-1;;;;;;2124:17:11;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2034:169;;:::o;6547:307:4:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:4;;;;;;;:::i;1961:98:12:-;2013:13;2045:7;2038:14;;;;;:::i;275:703:16:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:16;;;;;;;;;;;;-1:-1:-1;;;574:10:16;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:16;;-1:-1:-1;720:2:16;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:16;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:16;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:16;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:16;;;;;;;;-1:-1:-1;919:11:16;928:2;919:11;;:::i;:::-;;;791:150;;3085:1108:12;3151:14;;;;;;;:22;;3169:4;3151:22;3143:63;;;;-1:-1:-1;;;3143:63:12;;9157:2:17;3143:63:12;;;9139:21:17;9196:2;9176:18;;;9169:30;9235;9215:18;;;9208:58;9283:18;;3143:63:12;9129:178:17;3143:63:12;3219:13;;;;;;;;:21;;:13;:21;3216:172;;;3317:8;;3292:10;3276:27;;;;:15;:27;;;;;;:37;;3306:7;;3276:37;:::i;:::-;:49;;3255:122;;;;-1:-1:-1;;;3255:122:12;;10752:2:17;3255:122:12;;;10734:21:17;10791:2;10771:18;;;10764:30;10830:28;10810:18;;;10803:56;10876:18;;3255:122:12;10724:176:17;3255:122:12;3440:14;;3429:7;3418:8;;:18;;;;:::i;:::-;:36;;3397:111;;;;-1:-1:-1;;;3397:111:12;;20138:2:17;3397:111:12;;;20120:21:17;20177:2;20157:18;;;20150:30;20216;20196:18;;;20189:58;20264:18;;3397:111:12;20110:178:17;3397:111:12;3518:14;3535:10;2132:9;;;2065:83;3535:10;3518:27;-1:-1:-1;3596:9:12;3576:16;3585:7;3518:27;3576:16;:::i;:::-;:29;;3555:116;;;;-1:-1:-1;;;3555:116:12;;;;;;;:::i;:::-;3681:18;;3709:423;3737:7;3731:3;:13;3709:423;;;3767:21;:9;978:19:2;;996:1;978:19;;;891:123;3767:21:12;3815:9;864:14:2;3802:32:12;;3848:33;3858:10;3870;3848:9;:33::i;:::-;3941:10;3925:27;;;;:15;:27;;;;;;:37;;3955:7;;3925:37;:::i;:::-;3911:10;3895:27;;;;:15;:27;;;;;;;;:67;;;;4004:13;:25;;;;:35;;4032:7;;4004:35;:::i;:::-;3990:10;3976:25;;;;:13;:25;;;;;:63;4064:8;;:12;;4075:1;4064:12;:::i;:::-;4053:8;:23;4105:12;;:16;;4120:1;4105:16;:::i;:::-;4090:12;:31;3746:5;;;;:::i;:::-;;;;3709:423;;;-1:-1:-1;4146:40:12;;;21763:25:17;;;21819:2;21804:18;;21797:34;;;4158:10:12;;4146:40;;21736:18:17;4146:40:12;;;;;;;;3085:1108;;;:::o;4199:917::-;4261:17;;;;;;;:25;;4282:4;4261:25;4253:57;;;;-1:-1:-1;;;4253:57:12;;21261:2:17;4253:57:12;;;21243:21:17;21300:2;21280:18;;;21273:30;-1:-1:-1;;;21319:18:17;;;21312:49;21378:18;;4253:57:12;21233:169:17;4253:57:12;4338:1;4328:7;:11;4320:44;;;;-1:-1:-1;;;4320:44:12;;17328:2:17;4320:44:12;;;17310:21:17;17367:2;17347:18;;;17340:30;-1:-1:-1;;;17386:18:17;;;17379:50;17446:18;;4320:44:12;17300:170:17;4320:44:12;4417:14;;4406:7;4395:8;;:18;;;;:::i;:::-;:36;;4374:111;;;;-1:-1:-1;;;4374:111:12;;20138:2:17;4374:111:12;;;20120:21:17;20177:2;20157:18;;;20150:30;20216;20196:18;;;20189:58;20264:18;;4374:111:12;20110:178:17;4374:111:12;4495:14;4512:10;2132:9;;;2065:83;4512:10;4495:27;-1:-1:-1;4573:9:12;4553:16;4562:7;4495:27;4553:16;:::i;:::-;:29;;4532:116;;;;-1:-1:-1;;;4532:116:12;;;;;;;:::i;:::-;4658:18;;4686:372;4714:7;4708:3;:13;4686:372;;;4744:21;:9;978:19:2;;996:1;978:19;;;891:123;4744:21:12;4792:9;864:14:2;4779:32:12;;4825:33;4835:10;4847;4825:9;:33::i;:::-;4912:10;4899:24;;;;:12;:24;;;;;;:34;;4926:7;;4899:34;:::i;:::-;4885:10;4872:24;;;;:12;:24;;;;;;;;:61;;;;4975:13;:25;;;;:35;;5003:7;;4975:35;:::i;:::-;4961:10;4947:25;;;;:13;:25;;;;;:63;5035:8;;:12;;5046:1;5035:12;:::i;:::-;5024:8;:23;4723:5;;;;:::i;:::-;;;;4686:372;;;-1:-1:-1;5072:37:12;;;21763:25:17;;;21819:2;21804:18;;21797:34;;;5081:10:12;;5072:37;;21736:18:17;5072:37:12;21718:119:17;2543:572:5;-1:-1:-1;;;;;2742:18:5;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:5;:4;-1:-1:-1;;;;;2837:10:5;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:5;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:5;:2;-1:-1:-1;;;;;3032:10:5;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;11732:778:4:-;11882:4;-1:-1:-1;;;;;11902:13:4;;1034:20:0;1080:8;11898:606:4;;11937:72;;-1:-1:-1;;;11937:72:4;;-1:-1:-1;;;;;11937:36:4;;;;;:72;;666:10:1;;11988:4:4;;11994:7;;12003:5;;11937:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:4;;;;;;;;-1:-1:-1;;11937:72:4;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12176:13:4;;12172:266;;12218:60;;-1:-1:-1;;;12218:60:4;;;;;;;:::i;12172:266::-;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;-1:-1:-1;;;;;;12059:51:4;-1:-1:-1;;;12059:51:4;;-1:-1:-1;12052:58:4;;11898:606;-1:-1:-1;12489:4:4;11732:778;;;;;;:::o;8114:108::-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;4599:970:5:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:5;;;5069:323;;-1:-1:-1;;;;;5139:18:5;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:5;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:5;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:5;;6106:46;;6551:26;;;;-1:-1:-1;;;6551:26:5;;;;;;;;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;-1:-1:-1;;;6588:22:5;;;;;;;;;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;-1:-1:-1;;;6895:16:5;;;;;;;;;;;;;;;;;;;;;;;;;;5857:1061;;;;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:5:o;8443:311:4:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:4;;;;;;;:::i;9076:372::-;-1:-1:-1;;;;;9155:16:4;;9147:61;;;;-1:-1:-1;;;9147:61:4;;16193:2:17;9147:61:4;;;16175:21:17;;;16212:18;;;16205:30;16271:34;16251:18;;;16244:62;16323:18;;9147:61:4;16165:182:17;9147:61:4;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;:30;9218:58;;;;-1:-1:-1;;;9218:58:4;;11107:2:17;9218:58:4;;;11089:21:17;11146:2;11126:18;;;11119:30;11185;11165:18;;;11158:58;11233:18;;9218:58:4;11079:178:17;9218:58:4;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:4;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:4;-1:-1:-1;;;;;9371:21:4;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:160:17;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;179:257;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;711:398::-;779:6;787;840:2;828:9;819:7;815:23;811:32;808:2;;;861:6;853;846:22;808:2;905:9;892:23;924:31;949:5;924:31;:::i;:::-;974:5;-1:-1:-1;1031:2:17;1016:18;;1003:32;1044:33;1003:32;1044:33;:::i;:::-;1096:7;1086:17;;;798:311;;;;;:::o;1114:466::-;1191:6;1199;1207;1260:2;1248:9;1239:7;1235:23;1231:32;1228:2;;;1281:6;1273;1266:22;1228:2;1325:9;1312:23;1344:31;1369:5;1344:31;:::i;:::-;1394:5;-1:-1:-1;1451:2:17;1436:18;;1423:32;1464:33;1423:32;1464:33;:::i;:::-;1218:362;;1516:7;;-1:-1:-1;;;1570:2:17;1555:18;;;;1542:32;;1218:362::o;1585:1311::-;1680:6;1688;1696;1704;1757:3;1745:9;1736:7;1732:23;1728:33;1725:2;;;1779:6;1771;1764:22;1725:2;1823:9;1810:23;1842:31;1867:5;1842:31;:::i;:::-;1892:5;-1:-1:-1;1949:2:17;1934:18;;1921:32;1962:33;1921:32;1962:33;:::i;:::-;2014:7;-1:-1:-1;2068:2:17;2053:18;;2040:32;;-1:-1:-1;2123:2:17;2108:18;;2095:32;2146:18;2176:14;;;2173:2;;;2208:6;2200;2193:22;2173:2;2251:6;2240:9;2236:22;2226:32;;2296:7;2289:4;2285:2;2281:13;2277:27;2267:2;;2323:6;2315;2308:22;2267:2;2364;2351:16;2386:2;2382;2379:10;2376:2;;;2392:18;;:::i;:::-;2467:2;2461:9;2435:2;2521:13;;-1:-1:-1;;2517:22:17;;;2541:2;2513:31;2509:40;2497:53;;;2565:18;;;2585:22;;;2562:46;2559:2;;;2611:18;;:::i;:::-;2651:10;2647:2;2640:22;2686:2;2678:6;2671:18;2726:7;2721:2;2716;2712;2708:11;2704:20;2701:33;2698:2;;;2752:6;2744;2737:22;2698:2;2813;2808;2804;2800:11;2795:2;2787:6;2783:15;2770:46;2836:15;;;2853:2;2832:24;2825:40;;;;1715:1181;;;;-1:-1:-1;1715:1181:17;;-1:-1:-1;;;;1715:1181:17:o;2901:325::-;2966:6;2974;3027:2;3015:9;3006:7;3002:23;2998:32;2995:2;;;3048:6;3040;3033:22;2995:2;3092:9;3079:23;3111:31;3136:5;3111:31;:::i;:::-;3161:5;-1:-1:-1;3185:35:17;3216:2;3201:18;;3185:35;:::i;:::-;3175:45;;2985:241;;;;;:::o;3231:325::-;3299:6;3307;3360:2;3348:9;3339:7;3335:23;3331:32;3328:2;;;3381:6;3373;3366:22;3328:2;3425:9;3412:23;3444:31;3469:5;3444:31;:::i;:::-;3494:5;3546:2;3531:18;;;;3518:32;;-1:-1:-1;;;3318:238:17:o;3561:190::-;3617:6;3670:2;3658:9;3649:7;3645:23;3641:32;3638:2;;;3691:6;3683;3676:22;3638:2;3719:26;3735:9;3719:26;:::i;3756:255::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:2;;;3888:6;3880;3873:22;3835:2;3932:9;3919:23;3951:30;3975:5;3951:30;:::i;4016:259::-;4085:6;4138:2;4126:9;4117:7;4113:23;4109:32;4106:2;;;4159:6;4151;4144:22;4106:2;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:642::-;4351:6;4359;4412:2;4400:9;4391:7;4387:23;4383:32;4380:2;;;4433:6;4425;4418:22;4380:2;4478:9;4465:23;4507:18;4548:2;4540:6;4537:14;4534:2;;;4569:6;4561;4554:22;4534:2;4612:6;4601:9;4597:22;4587:32;;4657:7;4650:4;4646:2;4642:13;4638:27;4628:2;;4684:6;4676;4669:22;4628:2;4729;4716:16;4755:2;4747:6;4744:14;4741:2;;;4776:6;4768;4761:22;4741:2;4826:7;4821:2;4812:6;4808:2;4804:15;4800:24;4797:37;4794:2;;;4852:6;4844;4837:22;4794:2;4888;4880:11;;;;;4910:6;;-1:-1:-1;4370:552:17;;-1:-1:-1;;;;4370:552:17:o;4927:190::-;4986:6;5039:2;5027:9;5018:7;5014:23;5010:32;5007:2;;;5060:6;5052;5045:22;5007:2;-1:-1:-1;5088:23:17;;4997:120;-1:-1:-1;4997:120:17:o;5122:257::-;5163:3;5201:5;5195:12;5228:6;5223:3;5216:19;5244:63;5300:6;5293:4;5288:3;5284:14;5277:4;5270:5;5266:16;5244:63;:::i;:::-;5361:2;5340:15;-1:-1:-1;;5336:29:17;5327:39;;;;5368:4;5323:50;;5171:208;-1:-1:-1;;5171:208:17:o;5384:242::-;5470:1;5463:5;5460:12;5450:2;;5515:10;5510:3;5506:20;5503:1;5496:31;5550:4;5547:1;5540:15;5578:4;5575:1;5568:15;5450:2;5602:18;;5440:186::o;5631:470::-;5810:3;5848:6;5842:13;5864:53;5910:6;5905:3;5898:4;5890:6;5886:17;5864:53;:::i;:::-;5980:13;;5939:16;;;;6002:57;5980:13;5939:16;6036:4;6024:17;;6002:57;:::i;:::-;6075:20;;5818:283;-1:-1:-1;;;;5818:283:17:o;6811:488::-;-1:-1:-1;;;;;7080:15:17;;;7062:34;;7132:15;;7127:2;7112:18;;7105:43;7179:2;7164:18;;7157:34;;;7227:3;7222:2;7207:18;;7200:31;;;7005:4;;7248:45;;7273:19;;7265:6;7248:45;:::i;:::-;7240:53;7014:285;-1:-1:-1;;;;;;7014:285:17:o;7775:218::-;7926:2;7911:18;;7938:49;7915:9;7969:6;7938:49;:::i;7998:330::-;8194:2;8179:18;;8206:49;8183:9;8237:6;8206:49;:::i;:::-;8264:58;8318:2;8307:9;8303:18;8295:6;8264:58;:::i;8333:393::-;8492:2;8481:9;8474:21;8531:6;8526:2;8515:9;8511:18;8504:34;8588:6;8580;8575:2;8564:9;8560:18;8547:48;8455:4;8615:22;;;8639:2;8611:31;;;8604:45;;;;8710:2;8689:15;;;-1:-1:-1;;8685:29:17;8670:45;8666:54;;8464:262;-1:-1:-1;8464:262:17:o;8731:219::-;8880:2;8869:9;8862:21;8843:4;8900:44;8940:2;8929:9;8925:18;8917:6;8900:44;:::i;9724:414::-;9926:2;9908:21;;;9965:2;9945:18;;;9938:30;10004:34;9999:2;9984:18;;9977:62;-1:-1:-1;;;10070:2:17;10055:18;;10048:48;10128:3;10113:19;;9898:240::o;16765:356::-;16967:2;16949:21;;;16986:18;;;16979:30;17045:34;17040:2;17025:18;;17018:62;17112:2;17097:18;;16939:182::o;18703:413::-;18905:2;18887:21;;;18944:2;18924:18;;;18917:30;18983:34;18978:2;18963:18;;18956:62;-1:-1:-1;;;19049:2:17;19034:18;;19027:47;19106:3;19091:19;;18877:239::o;20293:404::-;20495:2;20477:21;;;20534:2;20514:18;;;20507:30;20573:34;20568:2;20553:18;;20546:62;-1:-1:-1;;;20639:2:17;20624:18;;20617:38;20687:3;20672:19;;20467:230::o;21842:128::-;21882:3;21913:1;21909:6;21906:1;21903:13;21900:2;;;21919:18;;:::i;:::-;-1:-1:-1;21955:9:17;;21890:80::o;21975:120::-;22015:1;22041;22031:2;;22046:18;;:::i;:::-;-1:-1:-1;22080:9:17;;22021:74::o;22100:168::-;22140:7;22206:1;22202;22198:6;22194:14;22191:1;22188:21;22183:1;22176:9;22169:17;22165:45;22162:2;;;22213:18;;:::i;:::-;-1:-1:-1;22253:9:17;;22152:116::o;22273:125::-;22313:4;22341:1;22338;22335:8;22332:2;;;22346:18;;:::i;:::-;-1:-1:-1;22383:9:17;;22322:76::o;22403:258::-;22475:1;22485:113;22499:6;22496:1;22493:13;22485:113;;;22575:11;;;22569:18;22556:11;;;22549:39;22521:2;22514:10;22485:113;;;22616:6;22613:1;22610:13;22607:2;;;-1:-1:-1;;22651:1:17;22633:16;;22626:27;22456:205::o;22666:380::-;22745:1;22741:12;;;;22788;;;22809:2;;22863:4;22855:6;22851:17;22841:27;;22809:2;22916;22908:6;22905:14;22885:18;22882:38;22879:2;;;22962:10;22957:3;22953:20;22950:1;22943:31;22997:4;22994:1;22987:15;23025:4;23022:1;23015:15;22879:2;;22721:325;;;:::o;23051:135::-;23090:3;-1:-1:-1;;23111:17:17;;23108:2;;;23131:18;;:::i;:::-;-1:-1:-1;23178:1:17;23167:13;;23098:88::o;23191:112::-;23223:1;23249;23239:2;;23254:18;;:::i;:::-;-1:-1:-1;23288:9:17;;23229:74::o;23308:127::-;23369:10;23364:3;23360:20;23357:1;23350:31;23400:4;23397:1;23390:15;23424:4;23421:1;23414:15;23440:127;23501:10;23496:3;23492:20;23489:1;23482:31;23532:4;23529:1;23522:15;23556:4;23553:1;23546:15;23572:127;23633:10;23628:3;23624:20;23621:1;23614:31;23664:4;23661:1;23654:15;23688:4;23685:1;23678:15;23704:131;-1:-1:-1;;;;;23779:31:17;;23769:42;;23759:2;;23825:1;23822;23815:12;23840:131;-1:-1:-1;;;;;;23914:32:17;;23904:43;;23894:2;;23961:1;23958;23951:12

Swarm Source

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