ETH Price: $3,270.44 (+0.32%)
Gas: 3 Gwei

Token

BuddyBuddyTags (BUDTAG)
 

Overview

Max Total Supply

21 BUDTAG

Holders

14

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Chublins Studio: Deployer
Balance
1 BUDTAG
0x4ebee6ba2771c19adf9af348985bcf06d3270d42
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BuddyBuddyTags

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-15
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
88888888ba   88        88  88888888ba,    88888888ba,  8b        d8  888888888888    db         ,ad8888ba,   
88      "8b  88        88  88      `"8b   88      `"8b  Y8,    ,8P        88        d88b       d8"'    `"8b  
88      ,8P  88        88  88        `8b  88        `8b  Y8,  ,8P         88       d8'`8b     d8'            
88aaaaaa8P'  88        88  88         88  88         88   "8aa8"          88      d8'  `8b    88             
88""""""8b,  88        88  88         88  88         88    `88'           88     d8YaaaaY8b   88      88888  
88      `8b  88        88  88         8P  88         8P     88            88    d8""""""""8b  Y8,        88  
88      a8P  Y8a.    .a8P  88      .a8P   88      .a8P      88            88   d8'        `8b  Y8a.    .a88  
88888888P"    `"Y8888Y"'   88888888Y"'    88888888Y"'       88            88  d8'          `8b  `"Y88888P" 
*/                                                                                                                                                    
                                                                                                                                                    


/**
 * @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);
}






/**
 * @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.
     * 
      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;
}




/**
 * @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);
    }
}




/*
 * @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;
    }
}









/**
 * @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);
    }
}





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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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














/**
 * @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);
}







/**
 * @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);
}





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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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









/**
 * @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;
    }
}


/**
 * @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 _int(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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







/**
 * @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);
}


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


abstract contract FoPunks{
    function balanceOf(address owner) external view virtual returns (uint256 balance);
}

abstract contract AcclimatedMoonCats{
    function balanceOf(address owner) external view virtual returns (uint256 balance);
}


contract BuddyBuddyTags is ERC721Enumerable, ReentrancyGuard, Ownable {

    bool public launched = false;
    bytes private emoji_list;

    mapping(address => bool) private allow_list; // minters
    mapping(uint256 => address) public buddy_tagged; // token to ... from is owner
    mapping(address => string) private aliases;
    mapping(string => bool) private alias_unique;
    mapping(address => mapping(address => bool)) private confirmations; // find connections
    
    address public DONATION_WALLET = 0x92EE2370b56DC32794A6CD72585dC01d4288D314; // https://www.stjude.org/donate/crypto.html
    address public MOONCATS = 0xc3f733ca98E0daD0386979Eb96fb1722A1A05E69;
    address public FOPUNKS = 0xDb1cbD0B58fb4f7C9f6857025DA29f42371fB659;
    uint256 public TAG_PRICE = 10000000000000000; // 0.01 ETH
    uint256 public RETAG_PRICE = 5000000000000000; // 0.005 ETH
    uint256 public ALIAS_PRICE = 20000000000000000; // 0.02 ETH
    uint256 public BURN_PRICE = 50000000000000000; // 0.05 ETH
    uint256 public LAUNCH_BLOCK;

    function random(string memory input) internal view returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input,LAUNCH_BLOCK)));
    }


    function getTokenColor(uint256 tokenId) internal view returns (uint256[3] memory){
        require(totalSupply() > tokenId,"Not minted yet.");
        if (!check_if_confirmed(tokenId)){
            return [uint256(212),uint256(15),uint256(22)]; // the default color
        }


        uint256 h = (random(string(abi.encodePacked(toString(tokenId),'h'))) % 360);
        uint256 s = (random(string(abi.encodePacked(toString(tokenId),'s'))) % 80) + 20;
        uint256 l = (random(string(abi.encodePacked(toString(tokenId),'l'))) % 60) + 20;
        return [h,s,l];
    }

    function getHarmony(uint256 tokenId) internal view returns (uint256) {
        return random(string(abi.encodePacked(tokenId, "HARMONY"))) % 5;
    }
    
    function getColor(uint256 tokenId, uint256 harmony, uint256 color_num) internal view returns (uint256[3] memory) {
        require(totalSupply() > tokenId,"Not minted yet.");
        if (!check_if_confirmed(tokenId)){
            return [uint256(212),uint256(15),uint256(22)]; // the default color
        }

        uint256[3] memory tokenColor = getTokenColor(tokenId);

        uint256[3] memory returnColor;
        returnColor[0] = tokenColor[0];
        returnColor[1] = tokenColor[1];
        returnColor[2] = tokenColor[2];
        if (harmony == 0){ // complementary
            returnColor[0] = (tokenColor[0] + 180*color_num) % 360;
        }
        else if(harmony == 1){ // monochrome
            returnColor[1] = ((tokenColor[1] + 20*color_num) % 80) + 20;
            returnColor[2] = ((tokenColor[2] + 20*color_num) % 60) + 20;
        }
        else if(harmony == 2){ // analagous
            returnColor[0] = (tokenColor[0] + 30*color_num) % 360;
        }
        else if(harmony == 3){ // triadic
            returnColor[0] = (tokenColor[0] + 120*color_num) % 360;
        }
        else if(harmony == 4){ // tetradic
            returnColor[0] = (tokenColor[0] + 90*color_num) % 360;
        }

        return returnColor;
    }

    function pullEmoji(uint256 tokenId, string memory word, uint256 r) internal view returns (string memory){
        require(totalSupply() > tokenId,"Not minted yet.");
        uint256 emoji_idx = (random(string(abi.encodePacked(toString(tokenId),word,toString(r)))) % (emoji_list.length / 3));
        bytes memory e = abi.encodePacked(emoji_list[emoji_idx*3],emoji_list[emoji_idx*3+1],emoji_list[emoji_idx*3+2]);
        return string(e);
    }

    function getEmojis(uint256 tokenId) internal view returns (string memory){
        require(totalSupply() > tokenId,"Not minted yet.");
        uint256 r = (random(string(abi.encodePacked(toString(tokenId),'emoji'))));
        string memory emoji = string(abi.encodePacked('&#x1F',pullEmoji(tokenId,'first',r),';'));
        if (r%200 == 199){
            return emoji;
        }
        emoji = string(abi.encodePacked(emoji,'&#x1F',pullEmoji(tokenId,'second',r),';'));
        if(r%200 > 194){
            return emoji;
        }
        emoji = string(abi.encodePacked(emoji,'&#x1F',pullEmoji(tokenId,'third',r),';'));
        return emoji;
    }

    function set_alias(string memory sender_alias) public payable{
        require(launched,"Not started yet");
        require(msg.value >= ALIAS_PRICE,"Not enough ETH");
        require(testStr(sender_alias),"Alias must be alphanumeric, no longer than 20 characters"); // less than 20, prevent fake looking addresses
        require(!alias_unique[sender_alias],"Alias taken");
        
        if (bytes(aliases[msg.sender]).length>0){
            alias_unique[aliases[msg.sender]] = false;
        }
        aliases[msg.sender] = sender_alias;
        alias_unique[sender_alias] = true;
    }

    function getAlias(address a) public view returns (string memory){
        if (keccak256(abi.encodePacked((aliases[a]))) != keccak256(abi.encodePacked(("")))){
            return aliases[a];
        }
        else{
            return string(abi.encodePacked('0x',toAsciiString(a)));
        }
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        require(totalSupply() > tokenId,"Not minted yet.");

        string[17] memory parts;

        uint256 harmony = getHarmony(tokenId);

        uint256[3] memory color_0 = getTokenColor(tokenId);
        uint256[3] memory color_1 = getColor(tokenId,harmony,1);
        uint256[3] memory color_2 = getColor(tokenId,harmony,2);
        uint256[3] memory color_3 = getColor(tokenId,harmony,3);

        parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.z { fill: #d8dee9; font-family: monospace; font-size: 13px;}</style><defs><pattern id="bP" width="5" height="5" viewBox="0,0,5,5" patternTransform="rotate(45 0 0)" patternUnits="userSpaceOnUse"><line x1="4"  y1="0" x2="4" y2="5" style="stroke:';

        parts[1] = string(abi.encodePacked('hsl(',toString(color_0[0]),',',toString(color_0[1]),'%,',toString(color_0[2]),'%); stroke-width:1"/>'));

        parts[2] = '<line x1="0"  y1="2" x2="5" y2="2" style="stroke:';

        parts[3] = string(abi.encodePacked('hsl(',toString(color_1[0]),',',toString(color_1[1]),'%,',toString(color_1[2]),'%); stroke-width:1"/>'));

        parts[4] = '<line x1="2"  y1="0" x2="2" y2="5" style="stroke:';

        parts[5] = string(abi.encodePacked('hsl(',toString(color_2[0]),',',toString(color_2[1]),'%,',toString(color_2[2]),'%); stroke-width:1"/>'));

        parts[6] = '<line x1="0"  y1="4" x2="5" y2="4" style="stroke:';

        parts[7] = string(abi.encodePacked('hsl(',toString(color_3[0]),',',toString(color_3[1]),'%,',toString(color_3[2]),'%); stroke-width:1"/>'));

        parts[8] = '</pattern></defs><rect width="100%" height="100%" fill="';

        parts[9] = '#303841';

        if (check_if_confirmed(tokenId)){
                parts[9] = 'url(#bP)';
        }
        
        parts[10] = '" /><rect width="90%" height="90%" x="5%" y="5%" fill="#303841" /><text x="50%" y="20%" class="z" dominant-baseline="middle" text-anchor="middle">';

        parts[11] = getAlias(ownerOf(tokenId));

        parts[12] = '</text><text x="50%" y="50%" font-size="62" stroke-width=".2" dominant-baseline="middle" text-anchor="middle">';

        parts[13] = getEmojis(tokenId);

        parts[14] = '</text><text x="50%" y="80%" class="z" dominant-baseline="middle" text-anchor="middle">';

        parts[15] = getAlias(buddy_tagged[tokenId]);

        parts[16] = '</text></svg>';

        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8]));
        output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14], parts[15], parts[16]));
        
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Buddy Buddy Tag #', toString(tokenId), '","external_url":"https://buddybuddytag.com","description": "A buddy has been tagged! Will they accept? What will the network of on-chain relationships look like?", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
        output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }

    function sort_addresses(address a1, address a2) internal pure returns (address[2] memory){
        if (a1 > a2){
            return [a2,a1];
        }
        return [a1,a2];
    }

    function can_addr_mint(address a) public view returns (bool){
        if (allow_list[a]){
            return true;
        }
        AcclimatedMoonCats contract_mc = AcclimatedMoonCats(MOONCATS);
        if (contract_mc.balanceOf(a) > 0){
            return true;
        }
        FoPunks contract_fp = FoPunks(FOPUNKS);
        if (contract_fp.balanceOf(a) > 0){
            return true;
        }
        return false;
    }

    function check_if_confirmed(uint256 tokenId) internal view returns (bool){
        address[2] memory sorted_addrs = sort_addresses(ownerOf(tokenId),buddy_tagged[tokenId]);
        return confirmations[sorted_addrs[0]][sorted_addrs[1]];    
    } 

    function tag_buddy(address requested_buddy) public payable{
        require(launched,"Not started yet");
        require(_msgSender()!=requested_buddy,"You cannot tag yourself");
        require(msg.value >= TAG_PRICE,"Not enough ETH");
        require(totalSupply()<11962,"No more tags available");
        require(can_addr_mint(_msgSender()),"Your address cannot mint yet");

        uint256 nextId = totalSupply();
        _safeMint(_msgSender(), nextId, "");
        buddy_tagged[nextId] = requested_buddy;
    }

    function tag_buddy(uint256 tokenId, address requested_buddy) public payable{
        require(launched,"Not started yet");
        require(_msgSender()==ownerOf(tokenId),"You must own this token");
        require(msg.value >= RETAG_PRICE,"Not enough ETH");

        buddy_tagged[tokenId] = requested_buddy;
    }

    function confirm_buddy(uint256 tokenId) public{
        require(launched,"Not started yet");
        require(totalSupply() > tokenId,"Not minted yet.");
        require(buddy_tagged[tokenId]==_msgSender(),"Your address was not tagged for this token");

        address[2] memory sorted_addrs = sort_addresses(ownerOf(tokenId),_msgSender());
        require(!confirmations[sorted_addrs[0]][sorted_addrs[1]],"Already confirmed");

        confirmations[sorted_addrs[0]][sorted_addrs[1]] = true;
        allow_list[_msgSender()] = true; // once youre in, youre in
    }

    function burn_bridge(uint256 tokenId) public payable{
        require(launched,"Not started yet");
        require(totalSupply() > tokenId,"Not minted yet.");
        require(buddy_tagged[tokenId]==_msgSender(),"Only the tagged buddy can burn bridges. Owner can tag_buddy with tokenID and new buddy");
        require(msg.value >= BURN_PRICE,"Burning bridges will cost you more...");

        address[2] memory sorted_addrs = sort_addresses(ownerOf(tokenId),_msgSender());
        require(confirmations[sorted_addrs[0]][sorted_addrs[1]],"These buddies never confirmed");

        confirmations[sorted_addrs[0]][sorted_addrs[1]] = false;
    }

    function add_e(string memory additions) public onlyOwner(){
        require(!launched,"Too late to change things now");
        emoji_list = abi.encodePacked(emoji_list, bytes(additions));
    }

    function reset_e() public onlyOwner(){
        // you're a real dummy if you need this
        require(!launched,"Already launched");
        delete emoji_list;
    }

    function launch() public onlyOwner(){
        // GOOD LUCK
        require(!launched,"Already launched");
        launched = true;
        LAUNCH_BLOCK = block.number;
    }

    function withdraw() public onlyOwner(){
        // 25% goes one way
        uint256 donation_amount = address(this).balance / 4;
        payable(DONATION_WALLET).transfer(donation_amount);

        // rest goes the other way
        payable(msg.sender).transfer(address(this).balance);
    }
    
    // SO - 50375
    function testStr(string memory str) internal pure returns (bool){
        bytes memory b = bytes(str);
        if(b.length > 20|| b.length < 1) return false;

        for(uint i; i<b.length; i++){
            bytes1 ch = b[i];

            if(
                !(ch >= 0x30 && ch <= 0x39) && //9-0
                !(ch >= 0x41 && ch <= 0x5A) && //A-Z
                !(ch >= 0x61 && ch <= 0x7A) && //a-z
                !(ch == 0x20) // space
            )
                return false;
        }

        return true;
    }

    // SO - 58341
    function toAsciiString(address x) internal pure returns (string memory) {
        bytes memory s = new bytes(40);
        for (uint i = 0; i < 20; i++) {
            bytes1 b = bytes1(uint8(uint(uint160(x)) / (2**(8*(19 - i)))));
            bytes1 hi = bytes1(uint8(b) / 16);
            bytes1 lo = bytes1(uint8(b) - 16 * uint8(hi));
            s[2*i] = char(hi);
            s[2*i+1] = char(lo);            
        }
        return string(s);
    }
    
    function char(bytes1 b) internal pure returns (bytes1 c) {
        if (uint8(b) < 10) return bytes1(uint8(b) + 0x30);
        else return bytes1(uint8(b) + 0x57);
    }

    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }

    constructor() ERC721("BuddyBuddyTags", "BUDTAG") Ownable() {
        allow_list[owner()] = true;
    }
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ALIAS_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BURN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DONATION_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FOPUNKS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LAUNCH_BLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOONCATS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RETAG_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAG_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"additions","type":"string"}],"name":"add_e","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"buddy_tagged","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn_bridge","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"can_addr_mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"confirm_buddy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"getAlias","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reset_e","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":"sender_alias","type":"string"}],"name":"set_alias","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"requested_buddy","type":"address"}],"name":"tag_buddy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"requested_buddy","type":"address"}],"name":"tag_buddy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b805460ff60a01b19169055601280546001600160a01b03199081167392ee2370b56dc32794a6cd72585dc01d4288d3141790915560138054821673c3f733ca98e0dad0386979eb96fb1722a1a05e691790556014805490911673db1cbd0b58fb4f7c9f6857025da29f42371fb659179055662386f26fc100006015556611c37937e0800060165566470de4df82000060175566b1a2bc2ec50000601855348015620000b057600080fd5b50604080518082018252600e81526d427564647942756464795461677360901b60208083019182528351808501909452600684526542554454414760d01b9084015281519192916200010591600091620001c7565b5080516200011b906001906020840190620001c7565b50506001600a55506200012e3362000175565b6001600d600062000147600b546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620002aa565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001d5906200026d565b90600052602060002090601f016020900481019282620001f9576000855562000244565b82601f106200021457805160ff191683800117855562000244565b8280016001018555821562000244579182015b828111156200024457825182559160200191906001019062000227565b506200025292915062000256565b5090565b5b8082111562000252576000815560010162000257565b600181811c908216806200028257607f821691505b60208210811415620002a457634e487b7160e01b600052602260045260246000fd5b50919050565b61470080620002ba6000396000f3fe60806040526004361061023a5760003560e01c80636203f2c71161012e57806395d89b41116100ab578063b88d4fde1161006f578063b88d4fde14610654578063c87b56dd14610674578063db5539eb14610694578063e985e9c5146106a7578063f2fde38b146106f057600080fd5b806395d89b41146105b657806399900d11146105cb5780639a4bcbe8146105eb578063a22cb465146105fe578063a94375121461061e57600080fd5b8063793e7b44116100f2578063793e7b44146105175780638091f3bf1461053757806381c0b2701461055857806383993101146105785780638da5cb5b1461059857600080fd5b80636203f2c7146104995780636352211e146104ac57806365b9fa32146104cc57806370a08231146104e2578063715018a61461050257600080fd5b80632c6379e1116101bc5780634888ac34116101805780634888ac34146104225780634c141323146104385780634f6ccce71461044e578063563245b71461046e5780635b7f224e1461048457600080fd5b80632c6379e1146103a45780632f745c59146103b75780633ccfd60b146103d75780633ffd8de8146103ec57806342842e0e1461040257600080fd5b8063092f9d7911610203578063092f9d7914610305578063095ea7b31461032557806318160ddd1461034557806323b872dd146103645780632c62f20d1461038457600080fd5b806212f4e61461023f57806301339c211461026157806301ffc9a71461027657806306fdde03146102ab578063081812fc146102cd575b600080fd5b34801561024b57600080fd5b5061025f61025a3660046137f8565b610710565b005b34801561026d57600080fd5b5061025f6107d9565b34801561028257600080fd5b506102966102913660046137be565b610869565b60405190151581526020015b60405180910390f35b3480156102b757600080fd5b506102c0610894565b6040516102a29190613eb4565b3480156102d957600080fd5b506102ed6102e8366004613841565b610926565b6040516001600160a01b0390911681526020016102a2565b34801561031157600080fd5b506012546102ed906001600160a01b031681565b34801561033157600080fd5b5061025f610340366004613794565b6109bb565b34801561035157600080fd5b506008545b6040519081526020016102a2565b34801561037057600080fd5b5061025f61037f3660046136a0565b610ad1565b34801561039057600080fd5b506014546102ed906001600160a01b031681565b61025f6103b2366004613873565b610b02565b3480156103c357600080fd5b506103566103d2366004613794565b610be4565b3480156103e357600080fd5b5061025f610c7a565b3480156103f857600080fd5b5061035660195481565b34801561040e57600080fd5b5061025f61041d3660046136a0565b610d19565b34801561042e57600080fd5b5061035660175481565b34801561044457600080fd5b5061035660155481565b34801561045a57600080fd5b50610356610469366004613841565b610d34565b34801561047a57600080fd5b5061035660185481565b34801561049057600080fd5b5061025f610dc7565b61025f6104a73660046137f8565b610e4c565b3480156104b857600080fd5b506102ed6104c7366004613841565b611027565b3480156104d857600080fd5b5061035660165481565b3480156104ee57600080fd5b506103566104fd366004613652565b61109e565b34801561050e57600080fd5b5061025f611125565b34801561052357600080fd5b5061025f610532366004613841565b611159565b34801561054357600080fd5b50600b5461029690600160a01b900460ff1681565b34801561056457600080fd5b506013546102ed906001600160a01b031681565b34801561058457600080fd5b50610296610593366004613652565b6112fb565b3480156105a457600080fd5b50600b546001600160a01b03166102ed565b3480156105c257600080fd5b506102c0611451565b3480156105d757600080fd5b506102c06105e6366004613652565b611460565b61025f6105f9366004613841565b611590565b34801561060a57600080fd5b5061025f610619366004613758565b6117af565b34801561062a57600080fd5b506102ed610639366004613841565b600e602052600090815260409020546001600160a01b031681565b34801561066057600080fd5b5061025f61066f3660046136dc565b611874565b34801561068057600080fd5b506102c061068f366004613841565b6118ac565b61025f6106a2366004613652565b611d5a565b3480156106b357600080fd5b506102966106c236600461366d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106fc57600080fd5b5061025f61070b366004613652565b611efa565b600b546001600160a01b031633146107435760405162461bcd60e51b815260040161073a90613f6a565b60405180910390fd5b600b54600160a01b900460ff161561079d5760405162461bcd60e51b815260206004820152601d60248201527f546f6f206c61746520746f206368616e6765207468696e6773206e6f77000000604482015260640161073a565b600c816040516020016107b19291906138c2565b604051602081830303815290604052600c90805190602001906107d592919061348e565b5050565b600b546001600160a01b031633146108035760405162461bcd60e51b815260040161073a90613f6a565b600b54600160a01b900460ff16156108505760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b604482015260640161073a565b600b805460ff60a01b1916600160a01b17905543601955565b60006001600160e01b0319821663780e9d6360e01b148061088e575061088e82611f95565b92915050565b6060600080546108a39061421d565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf9061421d565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661099f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073a565b506000908152600460205260409020546001600160a01b031690565b60006109c682611027565b9050806001600160a01b0316836001600160a01b03161415610a345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073a565b336001600160a01b0382161480610a505750610a5081336106c2565b610ac25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073a565b610acc8383611fe5565b505050565b610adb3382612053565b610af75760405162461bcd60e51b815260040161073a90613f9f565b610acc83838361214a565b600b54600160a01b900460ff16610b2b5760405162461bcd60e51b815260040161073a90613ff0565b610b3482611027565b6001600160a01b0316336001600160a01b031614610b945760405162461bcd60e51b815260206004820152601760248201527f596f75206d757374206f776e207468697320746f6b656e000000000000000000604482015260640161073a565b601654341015610bb65760405162461bcd60e51b815260040161073a90613f42565b6000918252600e602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b6000610bef8361109e565b8210610c515760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610ca45760405162461bcd60e51b815260040161073a90613f6a565b6000610cb1600447614056565b6012546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610cec573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f193505050501580156107d5573d6000803e3d6000fd5b610acc83838360405180602001604052806000815250611874565b6000610d3f60085490565b8210610da25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073a565b60088281548110610db557610db56142c9565b90600052602060002001549050919050565b600b546001600160a01b03163314610df15760405162461bcd60e51b815260040161073a90613f6a565b600b54600160a01b900460ff1615610e3e5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b604482015260640161073a565b610e4a600c6000613512565b565b600b54600160a01b900460ff16610e755760405162461bcd60e51b815260040161073a90613ff0565b601754341015610e975760405162461bcd60e51b815260040161073a90613f42565b610ea0816122f5565b610f125760405162461bcd60e51b815260206004820152603860248201527f416c696173206d75737420626520616c7068616e756d657269632c206e6f206c60448201527f6f6e676572207468616e20323020636861726163746572730000000000000000606482015260840161073a565b601081604051610f229190613945565b9081526040519081900360200190205460ff1615610f705760405162461bcd60e51b815260206004820152600b60248201526a20b634b0b9903a30b5b2b760a91b604482015260640161073a565b336000908152600f602052604081208054610f8a9061421d565b90501115610fd157336000908152600f60205260408082209051601091610fb091613b6c565b908152604051908190036020019020805491151560ff199092169190911790555b336000908152600f602090815260409091208251610ff19284019061348e565b5060016010826040516110049190613945565b908152604051908190036020019020805491151560ff1990921691909117905550565b6000818152600260205260408120546001600160a01b03168061088e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073a565b60006001600160a01b0382166111095760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073a565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0316331461114f5760405162461bcd60e51b815260040161073a90613f6a565b610e4a600061241f565b600b54600160a01b900460ff166111825760405162461bcd60e51b815260040161073a90613ff0565b8061118c60085490565b116111a95760405162461bcd60e51b815260040161073a90613f19565b6000818152600e60205260409020546001600160a01b031633146112225760405162461bcd60e51b815260206004820152602a60248201527f596f7572206164647265737320776173206e6f742074616767656420666f72206044820152693a3434b9903a37b5b2b760b11b606482015260840161073a565b600061123661123083611027565b33612471565b80516001600160a01b039081166000908152601160209081526040808320828601519094168352929052205490915060ff16156112a95760405162461bcd60e51b8152602060048201526011602482015270105b1c9958591e4818dbdb999a5c9b5959607a1b604482015260640161073a565b80516001600160a01b0390811660009081526011602090815260408083209482015190931682529283528181208054600160ff199182168117909255338352600d909452919020805490921617905550565b6001600160a01b0381166000908152600d602052604081205460ff161561132457506001919050565b6013546040516370a0823160e01b81526001600160a01b0384811660048301529091169060009082906370a082319060240160206040518083038186803b15801561136e57600080fd5b505afa158015611382573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a6919061385a565b11156113b55750600192915050565b6014546040516370a0823160e01b81526001600160a01b0385811660048301529091169060009082906370a082319060240160206040518083038186803b1580156113ff57600080fd5b505afa158015611413573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611437919061385a565b1115611447575060019392505050565b5060009392505050565b6060600180546108a39061421d565b6040805160008082526020808301808552835190206001600160a01b0386168352600f9091529083902060609391926114999201613b6c565b604051602081830303815290604052805190602001201461155c576001600160a01b0382166000908152600f6020526040902080546114d79061421d565b80601f01602080910402602001604051908101604052809291908181526020018280546115039061421d565b80156115505780601f1061152557610100808354040283529160200191611550565b820191906000526020600020905b81548152906001019060200180831161153357829003601f168201915b50505050509050919050565b611565826124d9565b6040516020016115759190613bde565b6040516020818303038152906040529050919050565b919050565b600b54600160a01b900460ff166115b95760405162461bcd60e51b815260040161073a90613ff0565b806115c360085490565b116115e05760405162461bcd60e51b815260040161073a90613f19565b6000818152600e60205260409020546001600160a01b0316331461168b5760405162461bcd60e51b815260206004820152605660248201527f4f6e6c7920746865207461676765642062756464792063616e206275726e206260448201527f7269646765732e204f776e65722063616e207461675f6275646479207769746860648201527520746f6b656e494420616e64206e657720627564647960501b608482015260a40161073a565b6018543410156116eb5760405162461bcd60e51b815260206004820152602560248201527f4275726e696e6720627269646765732077696c6c20636f737420796f75206d6f604482015264393297171760d91b606482015260840161073a565b60006116f961123083611027565b80516001600160a01b039081166000908152601160209081526040808320828601519094168352929052205490915060ff166117775760405162461bcd60e51b815260206004820152601d60248201527f54686573652062756464696573206e6576657220636f6e6669726d6564000000604482015260640161073a565b80516001600160a01b039081166000908152601160209081526040808320948201519093168252929092529020805460ff1916905550565b6001600160a01b0382163314156118085760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61187e3383612053565b61189a5760405162461bcd60e51b815260040161073a90613f9f565b6118a684848484612620565b50505050565b6060816118b860085490565b116118d55760405162461bcd60e51b815260040161073a90613f19565b6118dd61354c565b60006118e884612653565b905060006118f58561269b565b90506000611905868460016127b8565b90506000611915878560026127b8565b90506000611925888660036127b8565b905060405180610180016040528061015d81526020016144e661015d913986526119568460005b602002015161295e565b61196185600161194c565b61196c86600261194c565b60405160200161197e93929190613d68565b60408051601f19818403018152919052866001602002018190525060405180606001604052806031815260200161439e6031913960408701526119c283600061194c565b6119cd84600161194c565b6119d885600261194c565b6040516020016119ea93929190613d68565b60408051808303601f1901815291815260608089019290925280519182019052603180825261464360208301396080870152611a2782600061194c565b611a3283600161194c565b611a3d84600261194c565b604051602001611a4f93929190613d68565b60408051808303601f1901815291815260a08801919091528051606081019091526031808252614447602083013960c0870152611a8d81600061194c565b611a9882600161194c565b611aa383600261194c565b604051602001611ab593929190613d68565b60408051808303601f1901815291815260e0880191909152805160608101909152603880825261440f60208301396101008701526040805180820190915260078152662333303338343160c81b6020820152610120870152611b1688612a5c565b15611b415760408051808201909152600881526775726c282362502960c01b60208201526101208701525b6040518060c001604052806092815260200161430c60929139610140870152611b6c6105e689611027565b6101608701526040805160a08101909152606e8082526144786020830139610180870152611b9988612ac0565b6101a08701526040805160808101909152605780825261467460208301396101c08701526000888152600e6020526040902054611bde906001600160a01b0316611460565b6101e087015260408051808201909152600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602082015286601060200201526000868160200201518760016020020151886002602002015189600360200201518a600460200201518b600560200201518c600660200201518d600760200201518e60086020020151604051602001611c71999897969594939291906139a4565b60408051601f19818403018152919052905080876009602002015188600a602002015189600b60200201518a600c60200201518b600d60200201518c600e60200201518d600f60200201518e60106020020151604051602001611cdc999897969594939291906139a4565b60405160208183030381529060405290506000611d29611cfb8b61295e565b611d0484612c28565b604051602001611d15929190613c08565b604051602081830303815290604052612c28565b905080604051602001611d3c9190613dfa565b60408051601f198184030181529190529a9950505050505050505050565b600b54600160a01b900460ff16611d835760405162461bcd60e51b815260040161073a90613ff0565b336001600160a01b0382161415611ddc5760405162461bcd60e51b815260206004820152601760248201527f596f752063616e6e6f742074616720796f757273656c66000000000000000000604482015260640161073a565b601554341015611dfe5760405162461bcd60e51b815260040161073a90613f42565b612eba611e0a60085490565b10611e505760405162461bcd60e51b81526020600482015260166024820152754e6f206d6f7265207461677320617661696c61626c6560501b604482015260640161073a565b611e59336112fb565b611ea55760405162461bcd60e51b815260206004820152601c60248201527f596f757220616464726573732063616e6e6f74206d696e742079657400000000604482015260640161073a565b6000611eb060085490565b9050611ecc338260405180602001604052806000815250612d8e565b6000908152600e6020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b03163314611f245760405162461bcd60e51b815260040161073a90613f6a565b6001600160a01b038116611f895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073a565b611f928161241f565b50565b60006001600160e01b031982166380ac58cd60e01b1480611fc657506001600160e01b03198216635b5e139f60e01b145b8061088e57506301ffc9a760e01b6001600160e01b031983161461088e565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061201a82611027565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166120cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073a565b60006120d783611027565b9050806001600160a01b0316846001600160a01b031614806121125750836001600160a01b031661210784610926565b6001600160a01b0316145b8061214257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661215d82611027565b6001600160a01b0316146121c55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073a565b6001600160a01b0382166122275760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073a565b612232838383612dc1565b61223d600082611fe5565b6001600160a01b03831660009081526003602052604081208054600192906122669084906141b7565b90915550506001600160a01b0382166000908152600360205260408120805460019290612294908490614019565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008082905060148151118061230c575060018151105b1561231a5750600092915050565b60005b815181101561241557600082828151811061233a5761233a6142c9565b01602001516001600160f81b0319169050600360fc1b811080159061236d5750603960f81b6001600160f81b0319821611155b1580156123a35750604160f81b6001600160f81b03198216108015906123a15750602d60f91b6001600160f81b0319821611155b155b80156123d85750606160f81b6001600160f81b03198216108015906123d65750603d60f91b6001600160f81b0319821611155b155b80156123f25750600160fd1b6001600160f81b0319821614155b1561240257506000949350505050565b508061240d81614258565b91505061231d565b5060019392505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612479613574565b816001600160a01b0316836001600160a01b031611156124b75750604080518082019091526001600160a01b0380831682528316602082015261088e565b50604080518082019091526001600160a01b0392831681529116602082015290565b60408051602880825260608281019093526000919060208201818036833701905050905060005b60148110156126195760006125168260136141b7565b612521906008614177565b61252c9060026140cf565b61253f906001600160a01b038716614056565b60f81b9050600060108260f81c612556919061406a565b60f81b905060008160f81c601061256d9190614196565b8360f81c61257b91906141ce565b60f81b905061258982612e79565b85612595866002614177565b815181106125a5576125a56142c9565b60200101906001600160f81b031916908160001a9053506125c581612e79565b856125d1866002614177565b6125dc906001614019565b815181106125ec576125ec6142c9565b60200101906001600160f81b031916908160001a905350505050808061261190614258565b915050612500565b5092915050565b61262b84848461214a565b61263784848484612eaf565b6118a65760405162461bcd60e51b815260040161073a90613ec7565b600060056126918360405160200161267d918152664841524d4f4e5960c81b602082015260270190565b604051602081830303815290604052612fbc565b61088e9190614273565b6126a3613592565b816126ad60085490565b116126ca5760405162461bcd60e51b815260040161073a90613f19565b6126d382612a5c565b6126fc57604051806060016040528060d48152602001600f815260200160168152509050919050565b600061016861271d61270d8561295e565b60405160200161267d9190613ad7565b6127279190614273565b9050600060506127496127398661295e565b60405160200161267d9190613a64565b6127539190614273565b61275e906014614019565b90506000603c6127806127708761295e565b60405160200161267d9190613a89565b61278a9190614273565b612795906014614019565b604080516060810182529485526020850193909352918301919091525092915050565b6127c0613592565b836127ca60085490565b116127e75760405162461bcd60e51b815260040161073a90613f19565b6127f084612a5c565b61281957604051806060016040528060d48152602001600f815260200160168152509050612957565b60006128248561269b565b905061282e613592565b8151815260208083015190820152604080830151908201528461287d576101686128598560b4614177565b83516128659190614019565b61286f9190614273565b8160005b6020020152612953565b84600114156128f5576050612893856014614177565b60208401516128a29190614019565b6128ac9190614273565b6128b7906014614019565b6020820152603c6128c9856014614177565b60408401516128d89190614019565b6128e29190614273565b6128ed906014614019565b816002612873565b846002141561290c5761016861285985601e614177565b846003141561292357610168612859856078614177565b84600414156129535761016861293a85605a614177565b83516129469190614019565b6129509190614273565b81525b9150505b9392505050565b6060816129825750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129ac578061299681614258565b91506129a59050600a83614056565b9150612986565b60008167ffffffffffffffff8111156129c7576129c76142df565b6040519080825280601f01601f1916602001820160405280156129f1576020820181803683370190505b5090505b841561214257612a066001836141b7565b9150612a13600a86614273565b612a1e906030614019565b60f81b818381518110612a3357612a336142c9565b60200101906001600160f81b031916908160001a905350612a55600a86614056565b94506129f5565b600080612a88612a6b84611027565b6000858152600e60205260409020546001600160a01b0316612471565b80516001600160a01b0390811660009081526011602090815260408083209482015190931682529290925290205460ff169392505050565b606081612acc60085490565b11612ae95760405162461bcd60e51b815260040161073a90613f19565b6000612b07612af78461295e565b60405160200161267d9190613aae565b90506000612b338460405180604001604052806005815260200164199a5c9cdd60da1b81525084612ff1565b604051602001612b439190613e3f565b60408051601f198184030181529190529050612b6060c883614273565b60c71415612b6f579392505050565b80612b9985604051806040016040528060068152602001651cd958dbdb9960d21b81525085612ff1565b604051602001612baa929190613afc565b60408051601f19818403018152919052905060c2612bc960c884614273565b1115612bd6579392505050565b80612bff85604051806040016040528060058152602001641d1a1a5c9960da1b81525085612ff1565b604051602001612c10929190613afc565b60408051601f19818403018152919052949350505050565b805160609080612c48575050604080516020810190915260008152919050565b60006003612c57836002614019565b612c619190614056565b612c6c906004614177565b90506000612c7b826020614019565b67ffffffffffffffff811115612c9357612c936142df565b6040519080825280601f01601f191660200182016040528015612cbd576020820181803683370190505b50905060006040518060600160405280604081526020016143cf604091399050600181016020830160005b86811015612d49576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612ce8565b506003860660018114612d635760028114612d7457612d80565b613d3d60f01b600119830152612d80565b603d60f81b6000198301525b505050918152949350505050565b612d9883836131b0565b612da56000848484612eaf565b610acc5760405162461bcd60e51b815260040161073a90613ec7565b6001600160a01b038316612e1c57612e1781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612e3f565b816001600160a01b0316836001600160a01b031614612e3f57612e3f83826132fe565b6001600160a01b038216612e5657610acc8161339b565b826001600160a01b0316826001600160a01b031614610acc57610acc828261344a565b6000600a60f883901c1015612ea057612e9760f883901c6030614031565b60f81b92915050565b612e9760f883901c6057614031565b60006001600160a01b0384163b15612fb157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ef3903390899088908890600401613e77565b602060405180830381600087803b158015612f0d57600080fd5b505af1925050508015612f3d575060408051601f3d908101601f19168201909252612f3a918101906137db565b60015b612f97573d808015612f6b576040519150601f19603f3d011682016040523d82523d6000602084013e612f70565b606091505b508051612f8f5760405162461bcd60e51b815260040161073a90613ec7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612142565b506001949350505050565b600081601954604051602001612fd3929190613b4a565b60408051601f19818403018152919052805160209091012092915050565b606083612ffd60085490565b1161301a5760405162461bcd60e51b815260040161073a90613f19565b60006003600c805461302b9061421d565b613036929150614056565b61305e6130428761295e565b8661304c8761295e565b60405160200161267d93929190613961565b6130689190614273565b90506000600c613079836003614177565b81546130849061421d565b8110613092576130926142c9565b8154600116156130b15790600052602060002090602091828204019190065b9054600160f81b911a02600c6130c8846003614177565b6130d3906001614019565b81546130de9061421d565b81106130ec576130ec6142c9565b81546001161561310b5790600052602060002090602091828204019190065b9054600160f81b911a02600c613122856003614177565b61312d906002614019565b81546131389061421d565b8110613146576131466142c9565b8154600116156131655790600052602060002090602091828204019190065b90546040516001600160f81b031994851660208201529284166021840152901a600160f81b02909116602282015260230160408051808303601f190181529190529695505050505050565b6001600160a01b0382166132065760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073a565b6000818152600260205260409020546001600160a01b03161561326b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073a565b61327760008383612dc1565b6001600160a01b03821660009081526003602052604081208054600192906132a0908490614019565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161330b8461109e565b61331591906141b7565b600083815260076020526040902054909150808214613368576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906133ad906001906141b7565b600083815260096020526040812054600880549394509092849081106133d5576133d56142c9565b9060005260206000200154905080600883815481106133f6576133f66142c9565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061342e5761342e6142b3565b6001900381819060005260206000200160009055905550505050565b60006134558361109e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461349a9061421d565b90600052602060002090601f0160209004810192826134bc5760008555613502565b82601f106134d557805160ff1916838001178555613502565b82800160010185558215613502579182015b828111156135025782518255916020019190600101906134e7565b5061350e9291506135b0565b5090565b50805461351e9061421d565b6000825580601f1061352e575050565b601f016020900490600052602060002090810190611f9291906135b0565b6040518061022001604052806011905b606081526020019060019003908161355c5790505090565b60405180604001604052806002906020820280368337509192915050565b60405180606001604052806003906020820280368337509192915050565b5b8082111561350e57600081556001016135b1565b600067ffffffffffffffff808411156135e0576135e06142df565b604051601f8501601f19908116603f01168101908282118183101715613608576136086142df565b8160405280935085815286868601111561362157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461158b57600080fd5b60006020828403121561366457600080fd5b6129578261363b565b6000806040838503121561368057600080fd5b6136898361363b565b91506136976020840161363b565b90509250929050565b6000806000606084860312156136b557600080fd5b6136be8461363b565b92506136cc6020850161363b565b9150604084013590509250925092565b600080600080608085870312156136f257600080fd5b6136fb8561363b565b93506137096020860161363b565b925060408501359150606085013567ffffffffffffffff81111561372c57600080fd5b8501601f8101871361373d57600080fd5b61374c878235602084016135c5565b91505092959194509250565b6000806040838503121561376b57600080fd5b6137748361363b565b91506020830135801515811461378957600080fd5b809150509250929050565b600080604083850312156137a757600080fd5b6137b08361363b565b946020939093013593505050565b6000602082840312156137d057600080fd5b8135612957816142f5565b6000602082840312156137ed57600080fd5b8151612957816142f5565b60006020828403121561380a57600080fd5b813567ffffffffffffffff81111561382157600080fd5b8201601f8101841361383257600080fd5b612142848235602084016135c5565b60006020828403121561385357600080fd5b5035919050565b60006020828403121561386c57600080fd5b5051919050565b6000806040838503121561388657600080fd5b823591506136976020840161363b565b600081518084526138ae8160208601602086016141f1565b601f01601f19169290920160200192915050565b60008084546138d08161421d565b600182811680156138e857600181146138f957613928565b60ff19841687528287019450613928565b8860005260208060002060005b8581101561391f5781548a820152908401908201613906565b50505082870194505b50505050835161393c8183602088016141f1565b01949350505050565b600082516139578184602087016141f1565b9190910192915050565b600084516139738184602089016141f1565b8451908301906139878183602089016141f1565b845191019061399a8183602088016141f1565b0195945050505050565b60008a516139b6818460208f016141f1565b8a516139c88183860160208f016141f1565b8a5191840101906139dd818360208e016141f1565b89516139ef8183850160208e016141f1565b8951929091010190613a05818360208c016141f1565b8751613a178183850160208c016141f1565b8751929091010190613a2d818360208a016141f1565b8551910190613a408183602089016141f1565b8451613a5281838501602089016141f1565b9101019b9a5050505050505050505050565b60008251613a768184602087016141f1565b607360f81b920191825250600101919050565b60008251613a9b8184602087016141f1565b601b60fa1b920191825250600101919050565b60008251613ac08184602087016141f1565b64656d6f6a6960d81b920191825250600501919050565b60008251613ae98184602087016141f1565b600d60fb1b920191825250600101919050565b60008351613b0e8184602088016141f1565b641311bc18a360d91b9083019081528351613b308160058401602088016141f1565b603b60f81b60059290910191820152600601949350505050565b60008351613b5c8184602088016141f1565b9190910191825250602001919050565b6000808354613b7a8161421d565b60018281168015613b925760018114613ba357613bd2565b60ff19841687528287019450613bd2565b8760005260208060002060005b85811015613bc95781548a820152908401908201613bb0565b50505082870194505b50929695505050505050565b61060f60f31b815260008251613bfb8160028501602087016141f1565b9190910160020192915050565b7f7b226e616d65223a202242756464792042756464792054616720230000000000815260008351613c4081601b8501602088016141f1565b7f222c2265787465726e616c5f75726c223a2268747470733a2f2f627564647962601b918401918201527f756464797461672e636f6d222c226465736372697074696f6e223a2022412062603b8201527f7564647920686173206265656e20746167676564212057696c6c207468657920605b8201527f6163636570743f20576861742077696c6c20746865206e6574776f726b206f66607b8201527f206f6e2d636861696e2072656c6174696f6e7368697073206c6f6f6b206c696b609b8201527f653f222c2022696d616765223a2022646174613a696d6167652f7376672b786d60bb820152681b0ed8985cd94d8d0b60ba1b60db8201528351613d4d8160e48401602088016141f1565b61227d60f01b60e4929091019182015260e601949350505050565b630d0e6d8560e31b815260008451613d878160048501602089016141f1565b600b60fa1b6004918401918201528451613da88160058401602089016141f1565b61094b60f21b600592909101918201528351613dcb8160078401602088016141f1565b7412949d9039ba3937b5b296bbb4b23a341d1891179f60591b60079290910191820152601c0195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613e3281601d8501602087016141f1565b91909101601d0192915050565b641311bc18a360d91b815260008251613e5f8160058501602087016141f1565b603b60f81b6005939091019283015250600601919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613eaa90830184613896565b9695505050505050565b6020815260006129576020830184613896565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e2737ba1036b4b73a32b2103cb2ba1760891b604082015260600190565b6020808252600e908201526d09cdee840cadcdeeaced0408aa8960931b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600f908201526e139bdd081cdd185c9d1959081e595d608a1b604082015260600190565b6000821982111561402c5761402c614287565b500190565b600060ff821660ff84168060ff0382111561404e5761404e614287565b019392505050565b6000826140655761406561429d565b500490565b600060ff83168061407d5761407d61429d565b8060ff84160491505092915050565b600181815b808511156140c75781600019048211156140ad576140ad614287565b808516156140ba57918102915b93841c9390800290614091565b509250929050565b600061295783836000826140e55750600161088e565b816140f25750600061088e565b816001811461410857600281146141125761412e565b600191505061088e565b60ff84111561412357614123614287565b50506001821b61088e565b5060208310610133831016604e8410600b8410161715614151575081810a61088e565b61415b838361408c565b806000190482111561416f5761416f614287565b029392505050565b600081600019048311821515161561419157614191614287565b500290565b600060ff821660ff84168160ff048111821515161561416f5761416f614287565b6000828210156141c9576141c9614287565b500390565b600060ff821660ff8416808210156141e8576141e8614287565b90039392505050565b60005b8381101561420c5781810151838201526020016141f4565b838111156118a65750506000910152565b600181811c9082168061423157607f821691505b6020821081141561425257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561426c5761426c614287565b5060010190565b6000826142825761428261429d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611f9257600080fdfe22202f3e3c726563742077696474683d2239302522206865696768743d223930252220783d2235252220793d223525222066696c6c3d222333303338343122202f3e3c7465787420783d223530252220793d223230252220636c6173733d227a2220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e3c6c696e652078313d223022202079313d2232222078323d2235222079323d223222207374796c653d227374726f6b653a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f7061747465726e3e3c2f646566733e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d223c6c696e652078313d223022202079313d2234222078323d2235222079323d223422207374796c653d227374726f6b653a3c2f746578743e3c7465787420783d223530252220793d223530252220666f6e742d73697a653d22363222207374726f6b652d77696474683d222e322220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e7a207b2066696c6c3a20236438646565393b20666f6e742d66616d696c793a206d6f6e6f73706163653b20666f6e742d73697a653a20313370783b7d3c2f7374796c653e3c646566733e3c7061747465726e2069643d226250222077696474683d223522206865696768743d2235222076696577426f783d22302c302c352c3522207061747465726e5472616e73666f726d3d22726f74617465283435203020302922207061747465726e556e6974733d227573657253706163654f6e557365223e3c6c696e652078313d223422202079313d2230222078323d2234222079323d223522207374796c653d227374726f6b653a3c6c696e652078313d223222202079313d2230222078323d2232222079323d223522207374796c653d227374726f6b653a3c2f746578743e3c7465787420783d223530252220793d223830252220636c6173733d227a2220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223ea26469706673582212201b2bd776bb0348a3c6f6ef6fd4f144c1cf4b18ba43eb9b6e7b73b83f263a9b2864736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023a5760003560e01c80636203f2c71161012e57806395d89b41116100ab578063b88d4fde1161006f578063b88d4fde14610654578063c87b56dd14610674578063db5539eb14610694578063e985e9c5146106a7578063f2fde38b146106f057600080fd5b806395d89b41146105b657806399900d11146105cb5780639a4bcbe8146105eb578063a22cb465146105fe578063a94375121461061e57600080fd5b8063793e7b44116100f2578063793e7b44146105175780638091f3bf1461053757806381c0b2701461055857806383993101146105785780638da5cb5b1461059857600080fd5b80636203f2c7146104995780636352211e146104ac57806365b9fa32146104cc57806370a08231146104e2578063715018a61461050257600080fd5b80632c6379e1116101bc5780634888ac34116101805780634888ac34146104225780634c141323146104385780634f6ccce71461044e578063563245b71461046e5780635b7f224e1461048457600080fd5b80632c6379e1146103a45780632f745c59146103b75780633ccfd60b146103d75780633ffd8de8146103ec57806342842e0e1461040257600080fd5b8063092f9d7911610203578063092f9d7914610305578063095ea7b31461032557806318160ddd1461034557806323b872dd146103645780632c62f20d1461038457600080fd5b806212f4e61461023f57806301339c211461026157806301ffc9a71461027657806306fdde03146102ab578063081812fc146102cd575b600080fd5b34801561024b57600080fd5b5061025f61025a3660046137f8565b610710565b005b34801561026d57600080fd5b5061025f6107d9565b34801561028257600080fd5b506102966102913660046137be565b610869565b60405190151581526020015b60405180910390f35b3480156102b757600080fd5b506102c0610894565b6040516102a29190613eb4565b3480156102d957600080fd5b506102ed6102e8366004613841565b610926565b6040516001600160a01b0390911681526020016102a2565b34801561031157600080fd5b506012546102ed906001600160a01b031681565b34801561033157600080fd5b5061025f610340366004613794565b6109bb565b34801561035157600080fd5b506008545b6040519081526020016102a2565b34801561037057600080fd5b5061025f61037f3660046136a0565b610ad1565b34801561039057600080fd5b506014546102ed906001600160a01b031681565b61025f6103b2366004613873565b610b02565b3480156103c357600080fd5b506103566103d2366004613794565b610be4565b3480156103e357600080fd5b5061025f610c7a565b3480156103f857600080fd5b5061035660195481565b34801561040e57600080fd5b5061025f61041d3660046136a0565b610d19565b34801561042e57600080fd5b5061035660175481565b34801561044457600080fd5b5061035660155481565b34801561045a57600080fd5b50610356610469366004613841565b610d34565b34801561047a57600080fd5b5061035660185481565b34801561049057600080fd5b5061025f610dc7565b61025f6104a73660046137f8565b610e4c565b3480156104b857600080fd5b506102ed6104c7366004613841565b611027565b3480156104d857600080fd5b5061035660165481565b3480156104ee57600080fd5b506103566104fd366004613652565b61109e565b34801561050e57600080fd5b5061025f611125565b34801561052357600080fd5b5061025f610532366004613841565b611159565b34801561054357600080fd5b50600b5461029690600160a01b900460ff1681565b34801561056457600080fd5b506013546102ed906001600160a01b031681565b34801561058457600080fd5b50610296610593366004613652565b6112fb565b3480156105a457600080fd5b50600b546001600160a01b03166102ed565b3480156105c257600080fd5b506102c0611451565b3480156105d757600080fd5b506102c06105e6366004613652565b611460565b61025f6105f9366004613841565b611590565b34801561060a57600080fd5b5061025f610619366004613758565b6117af565b34801561062a57600080fd5b506102ed610639366004613841565b600e602052600090815260409020546001600160a01b031681565b34801561066057600080fd5b5061025f61066f3660046136dc565b611874565b34801561068057600080fd5b506102c061068f366004613841565b6118ac565b61025f6106a2366004613652565b611d5a565b3480156106b357600080fd5b506102966106c236600461366d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106fc57600080fd5b5061025f61070b366004613652565b611efa565b600b546001600160a01b031633146107435760405162461bcd60e51b815260040161073a90613f6a565b60405180910390fd5b600b54600160a01b900460ff161561079d5760405162461bcd60e51b815260206004820152601d60248201527f546f6f206c61746520746f206368616e6765207468696e6773206e6f77000000604482015260640161073a565b600c816040516020016107b19291906138c2565b604051602081830303815290604052600c90805190602001906107d592919061348e565b5050565b600b546001600160a01b031633146108035760405162461bcd60e51b815260040161073a90613f6a565b600b54600160a01b900460ff16156108505760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b604482015260640161073a565b600b805460ff60a01b1916600160a01b17905543601955565b60006001600160e01b0319821663780e9d6360e01b148061088e575061088e82611f95565b92915050565b6060600080546108a39061421d565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf9061421d565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661099f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073a565b506000908152600460205260409020546001600160a01b031690565b60006109c682611027565b9050806001600160a01b0316836001600160a01b03161415610a345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073a565b336001600160a01b0382161480610a505750610a5081336106c2565b610ac25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073a565b610acc8383611fe5565b505050565b610adb3382612053565b610af75760405162461bcd60e51b815260040161073a90613f9f565b610acc83838361214a565b600b54600160a01b900460ff16610b2b5760405162461bcd60e51b815260040161073a90613ff0565b610b3482611027565b6001600160a01b0316336001600160a01b031614610b945760405162461bcd60e51b815260206004820152601760248201527f596f75206d757374206f776e207468697320746f6b656e000000000000000000604482015260640161073a565b601654341015610bb65760405162461bcd60e51b815260040161073a90613f42565b6000918252600e602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b6000610bef8361109e565b8210610c515760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610ca45760405162461bcd60e51b815260040161073a90613f6a565b6000610cb1600447614056565b6012546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610cec573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f193505050501580156107d5573d6000803e3d6000fd5b610acc83838360405180602001604052806000815250611874565b6000610d3f60085490565b8210610da25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073a565b60088281548110610db557610db56142c9565b90600052602060002001549050919050565b600b546001600160a01b03163314610df15760405162461bcd60e51b815260040161073a90613f6a565b600b54600160a01b900460ff1615610e3e5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b604482015260640161073a565b610e4a600c6000613512565b565b600b54600160a01b900460ff16610e755760405162461bcd60e51b815260040161073a90613ff0565b601754341015610e975760405162461bcd60e51b815260040161073a90613f42565b610ea0816122f5565b610f125760405162461bcd60e51b815260206004820152603860248201527f416c696173206d75737420626520616c7068616e756d657269632c206e6f206c60448201527f6f6e676572207468616e20323020636861726163746572730000000000000000606482015260840161073a565b601081604051610f229190613945565b9081526040519081900360200190205460ff1615610f705760405162461bcd60e51b815260206004820152600b60248201526a20b634b0b9903a30b5b2b760a91b604482015260640161073a565b336000908152600f602052604081208054610f8a9061421d565b90501115610fd157336000908152600f60205260408082209051601091610fb091613b6c565b908152604051908190036020019020805491151560ff199092169190911790555b336000908152600f602090815260409091208251610ff19284019061348e565b5060016010826040516110049190613945565b908152604051908190036020019020805491151560ff1990921691909117905550565b6000818152600260205260408120546001600160a01b03168061088e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073a565b60006001600160a01b0382166111095760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073a565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0316331461114f5760405162461bcd60e51b815260040161073a90613f6a565b610e4a600061241f565b600b54600160a01b900460ff166111825760405162461bcd60e51b815260040161073a90613ff0565b8061118c60085490565b116111a95760405162461bcd60e51b815260040161073a90613f19565b6000818152600e60205260409020546001600160a01b031633146112225760405162461bcd60e51b815260206004820152602a60248201527f596f7572206164647265737320776173206e6f742074616767656420666f72206044820152693a3434b9903a37b5b2b760b11b606482015260840161073a565b600061123661123083611027565b33612471565b80516001600160a01b039081166000908152601160209081526040808320828601519094168352929052205490915060ff16156112a95760405162461bcd60e51b8152602060048201526011602482015270105b1c9958591e4818dbdb999a5c9b5959607a1b604482015260640161073a565b80516001600160a01b0390811660009081526011602090815260408083209482015190931682529283528181208054600160ff199182168117909255338352600d909452919020805490921617905550565b6001600160a01b0381166000908152600d602052604081205460ff161561132457506001919050565b6013546040516370a0823160e01b81526001600160a01b0384811660048301529091169060009082906370a082319060240160206040518083038186803b15801561136e57600080fd5b505afa158015611382573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a6919061385a565b11156113b55750600192915050565b6014546040516370a0823160e01b81526001600160a01b0385811660048301529091169060009082906370a082319060240160206040518083038186803b1580156113ff57600080fd5b505afa158015611413573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611437919061385a565b1115611447575060019392505050565b5060009392505050565b6060600180546108a39061421d565b6040805160008082526020808301808552835190206001600160a01b0386168352600f9091529083902060609391926114999201613b6c565b604051602081830303815290604052805190602001201461155c576001600160a01b0382166000908152600f6020526040902080546114d79061421d565b80601f01602080910402602001604051908101604052809291908181526020018280546115039061421d565b80156115505780601f1061152557610100808354040283529160200191611550565b820191906000526020600020905b81548152906001019060200180831161153357829003601f168201915b50505050509050919050565b611565826124d9565b6040516020016115759190613bde565b6040516020818303038152906040529050919050565b919050565b600b54600160a01b900460ff166115b95760405162461bcd60e51b815260040161073a90613ff0565b806115c360085490565b116115e05760405162461bcd60e51b815260040161073a90613f19565b6000818152600e60205260409020546001600160a01b0316331461168b5760405162461bcd60e51b815260206004820152605660248201527f4f6e6c7920746865207461676765642062756464792063616e206275726e206260448201527f7269646765732e204f776e65722063616e207461675f6275646479207769746860648201527520746f6b656e494420616e64206e657720627564647960501b608482015260a40161073a565b6018543410156116eb5760405162461bcd60e51b815260206004820152602560248201527f4275726e696e6720627269646765732077696c6c20636f737420796f75206d6f604482015264393297171760d91b606482015260840161073a565b60006116f961123083611027565b80516001600160a01b039081166000908152601160209081526040808320828601519094168352929052205490915060ff166117775760405162461bcd60e51b815260206004820152601d60248201527f54686573652062756464696573206e6576657220636f6e6669726d6564000000604482015260640161073a565b80516001600160a01b039081166000908152601160209081526040808320948201519093168252929092529020805460ff1916905550565b6001600160a01b0382163314156118085760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61187e3383612053565b61189a5760405162461bcd60e51b815260040161073a90613f9f565b6118a684848484612620565b50505050565b6060816118b860085490565b116118d55760405162461bcd60e51b815260040161073a90613f19565b6118dd61354c565b60006118e884612653565b905060006118f58561269b565b90506000611905868460016127b8565b90506000611915878560026127b8565b90506000611925888660036127b8565b905060405180610180016040528061015d81526020016144e661015d913986526119568460005b602002015161295e565b61196185600161194c565b61196c86600261194c565b60405160200161197e93929190613d68565b60408051601f19818403018152919052866001602002018190525060405180606001604052806031815260200161439e6031913960408701526119c283600061194c565b6119cd84600161194c565b6119d885600261194c565b6040516020016119ea93929190613d68565b60408051808303601f1901815291815260608089019290925280519182019052603180825261464360208301396080870152611a2782600061194c565b611a3283600161194c565b611a3d84600261194c565b604051602001611a4f93929190613d68565b60408051808303601f1901815291815260a08801919091528051606081019091526031808252614447602083013960c0870152611a8d81600061194c565b611a9882600161194c565b611aa383600261194c565b604051602001611ab593929190613d68565b60408051808303601f1901815291815260e0880191909152805160608101909152603880825261440f60208301396101008701526040805180820190915260078152662333303338343160c81b6020820152610120870152611b1688612a5c565b15611b415760408051808201909152600881526775726c282362502960c01b60208201526101208701525b6040518060c001604052806092815260200161430c60929139610140870152611b6c6105e689611027565b6101608701526040805160a08101909152606e8082526144786020830139610180870152611b9988612ac0565b6101a08701526040805160808101909152605780825261467460208301396101c08701526000888152600e6020526040902054611bde906001600160a01b0316611460565b6101e087015260408051808201909152600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602082015286601060200201526000868160200201518760016020020151886002602002015189600360200201518a600460200201518b600560200201518c600660200201518d600760200201518e60086020020151604051602001611c71999897969594939291906139a4565b60408051601f19818403018152919052905080876009602002015188600a602002015189600b60200201518a600c60200201518b600d60200201518c600e60200201518d600f60200201518e60106020020151604051602001611cdc999897969594939291906139a4565b60405160208183030381529060405290506000611d29611cfb8b61295e565b611d0484612c28565b604051602001611d15929190613c08565b604051602081830303815290604052612c28565b905080604051602001611d3c9190613dfa565b60408051601f198184030181529190529a9950505050505050505050565b600b54600160a01b900460ff16611d835760405162461bcd60e51b815260040161073a90613ff0565b336001600160a01b0382161415611ddc5760405162461bcd60e51b815260206004820152601760248201527f596f752063616e6e6f742074616720796f757273656c66000000000000000000604482015260640161073a565b601554341015611dfe5760405162461bcd60e51b815260040161073a90613f42565b612eba611e0a60085490565b10611e505760405162461bcd60e51b81526020600482015260166024820152754e6f206d6f7265207461677320617661696c61626c6560501b604482015260640161073a565b611e59336112fb565b611ea55760405162461bcd60e51b815260206004820152601c60248201527f596f757220616464726573732063616e6e6f74206d696e742079657400000000604482015260640161073a565b6000611eb060085490565b9050611ecc338260405180602001604052806000815250612d8e565b6000908152600e6020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b03163314611f245760405162461bcd60e51b815260040161073a90613f6a565b6001600160a01b038116611f895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073a565b611f928161241f565b50565b60006001600160e01b031982166380ac58cd60e01b1480611fc657506001600160e01b03198216635b5e139f60e01b145b8061088e57506301ffc9a760e01b6001600160e01b031983161461088e565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061201a82611027565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166120cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073a565b60006120d783611027565b9050806001600160a01b0316846001600160a01b031614806121125750836001600160a01b031661210784610926565b6001600160a01b0316145b8061214257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661215d82611027565b6001600160a01b0316146121c55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073a565b6001600160a01b0382166122275760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073a565b612232838383612dc1565b61223d600082611fe5565b6001600160a01b03831660009081526003602052604081208054600192906122669084906141b7565b90915550506001600160a01b0382166000908152600360205260408120805460019290612294908490614019565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008082905060148151118061230c575060018151105b1561231a5750600092915050565b60005b815181101561241557600082828151811061233a5761233a6142c9565b01602001516001600160f81b0319169050600360fc1b811080159061236d5750603960f81b6001600160f81b0319821611155b1580156123a35750604160f81b6001600160f81b03198216108015906123a15750602d60f91b6001600160f81b0319821611155b155b80156123d85750606160f81b6001600160f81b03198216108015906123d65750603d60f91b6001600160f81b0319821611155b155b80156123f25750600160fd1b6001600160f81b0319821614155b1561240257506000949350505050565b508061240d81614258565b91505061231d565b5060019392505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612479613574565b816001600160a01b0316836001600160a01b031611156124b75750604080518082019091526001600160a01b0380831682528316602082015261088e565b50604080518082019091526001600160a01b0392831681529116602082015290565b60408051602880825260608281019093526000919060208201818036833701905050905060005b60148110156126195760006125168260136141b7565b612521906008614177565b61252c9060026140cf565b61253f906001600160a01b038716614056565b60f81b9050600060108260f81c612556919061406a565b60f81b905060008160f81c601061256d9190614196565b8360f81c61257b91906141ce565b60f81b905061258982612e79565b85612595866002614177565b815181106125a5576125a56142c9565b60200101906001600160f81b031916908160001a9053506125c581612e79565b856125d1866002614177565b6125dc906001614019565b815181106125ec576125ec6142c9565b60200101906001600160f81b031916908160001a905350505050808061261190614258565b915050612500565b5092915050565b61262b84848461214a565b61263784848484612eaf565b6118a65760405162461bcd60e51b815260040161073a90613ec7565b600060056126918360405160200161267d918152664841524d4f4e5960c81b602082015260270190565b604051602081830303815290604052612fbc565b61088e9190614273565b6126a3613592565b816126ad60085490565b116126ca5760405162461bcd60e51b815260040161073a90613f19565b6126d382612a5c565b6126fc57604051806060016040528060d48152602001600f815260200160168152509050919050565b600061016861271d61270d8561295e565b60405160200161267d9190613ad7565b6127279190614273565b9050600060506127496127398661295e565b60405160200161267d9190613a64565b6127539190614273565b61275e906014614019565b90506000603c6127806127708761295e565b60405160200161267d9190613a89565b61278a9190614273565b612795906014614019565b604080516060810182529485526020850193909352918301919091525092915050565b6127c0613592565b836127ca60085490565b116127e75760405162461bcd60e51b815260040161073a90613f19565b6127f084612a5c565b61281957604051806060016040528060d48152602001600f815260200160168152509050612957565b60006128248561269b565b905061282e613592565b8151815260208083015190820152604080830151908201528461287d576101686128598560b4614177565b83516128659190614019565b61286f9190614273565b8160005b6020020152612953565b84600114156128f5576050612893856014614177565b60208401516128a29190614019565b6128ac9190614273565b6128b7906014614019565b6020820152603c6128c9856014614177565b60408401516128d89190614019565b6128e29190614273565b6128ed906014614019565b816002612873565b846002141561290c5761016861285985601e614177565b846003141561292357610168612859856078614177565b84600414156129535761016861293a85605a614177565b83516129469190614019565b6129509190614273565b81525b9150505b9392505050565b6060816129825750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129ac578061299681614258565b91506129a59050600a83614056565b9150612986565b60008167ffffffffffffffff8111156129c7576129c76142df565b6040519080825280601f01601f1916602001820160405280156129f1576020820181803683370190505b5090505b841561214257612a066001836141b7565b9150612a13600a86614273565b612a1e906030614019565b60f81b818381518110612a3357612a336142c9565b60200101906001600160f81b031916908160001a905350612a55600a86614056565b94506129f5565b600080612a88612a6b84611027565b6000858152600e60205260409020546001600160a01b0316612471565b80516001600160a01b0390811660009081526011602090815260408083209482015190931682529290925290205460ff169392505050565b606081612acc60085490565b11612ae95760405162461bcd60e51b815260040161073a90613f19565b6000612b07612af78461295e565b60405160200161267d9190613aae565b90506000612b338460405180604001604052806005815260200164199a5c9cdd60da1b81525084612ff1565b604051602001612b439190613e3f565b60408051601f198184030181529190529050612b6060c883614273565b60c71415612b6f579392505050565b80612b9985604051806040016040528060068152602001651cd958dbdb9960d21b81525085612ff1565b604051602001612baa929190613afc565b60408051601f19818403018152919052905060c2612bc960c884614273565b1115612bd6579392505050565b80612bff85604051806040016040528060058152602001641d1a1a5c9960da1b81525085612ff1565b604051602001612c10929190613afc565b60408051601f19818403018152919052949350505050565b805160609080612c48575050604080516020810190915260008152919050565b60006003612c57836002614019565b612c619190614056565b612c6c906004614177565b90506000612c7b826020614019565b67ffffffffffffffff811115612c9357612c936142df565b6040519080825280601f01601f191660200182016040528015612cbd576020820181803683370190505b50905060006040518060600160405280604081526020016143cf604091399050600181016020830160005b86811015612d49576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612ce8565b506003860660018114612d635760028114612d7457612d80565b613d3d60f01b600119830152612d80565b603d60f81b6000198301525b505050918152949350505050565b612d9883836131b0565b612da56000848484612eaf565b610acc5760405162461bcd60e51b815260040161073a90613ec7565b6001600160a01b038316612e1c57612e1781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612e3f565b816001600160a01b0316836001600160a01b031614612e3f57612e3f83826132fe565b6001600160a01b038216612e5657610acc8161339b565b826001600160a01b0316826001600160a01b031614610acc57610acc828261344a565b6000600a60f883901c1015612ea057612e9760f883901c6030614031565b60f81b92915050565b612e9760f883901c6057614031565b60006001600160a01b0384163b15612fb157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ef3903390899088908890600401613e77565b602060405180830381600087803b158015612f0d57600080fd5b505af1925050508015612f3d575060408051601f3d908101601f19168201909252612f3a918101906137db565b60015b612f97573d808015612f6b576040519150601f19603f3d011682016040523d82523d6000602084013e612f70565b606091505b508051612f8f5760405162461bcd60e51b815260040161073a90613ec7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612142565b506001949350505050565b600081601954604051602001612fd3929190613b4a565b60408051601f19818403018152919052805160209091012092915050565b606083612ffd60085490565b1161301a5760405162461bcd60e51b815260040161073a90613f19565b60006003600c805461302b9061421d565b613036929150614056565b61305e6130428761295e565b8661304c8761295e565b60405160200161267d93929190613961565b6130689190614273565b90506000600c613079836003614177565b81546130849061421d565b8110613092576130926142c9565b8154600116156130b15790600052602060002090602091828204019190065b9054600160f81b911a02600c6130c8846003614177565b6130d3906001614019565b81546130de9061421d565b81106130ec576130ec6142c9565b81546001161561310b5790600052602060002090602091828204019190065b9054600160f81b911a02600c613122856003614177565b61312d906002614019565b81546131389061421d565b8110613146576131466142c9565b8154600116156131655790600052602060002090602091828204019190065b90546040516001600160f81b031994851660208201529284166021840152901a600160f81b02909116602282015260230160408051808303601f190181529190529695505050505050565b6001600160a01b0382166132065760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073a565b6000818152600260205260409020546001600160a01b03161561326b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073a565b61327760008383612dc1565b6001600160a01b03821660009081526003602052604081208054600192906132a0908490614019565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161330b8461109e565b61331591906141b7565b600083815260076020526040902054909150808214613368576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906133ad906001906141b7565b600083815260096020526040812054600880549394509092849081106133d5576133d56142c9565b9060005260206000200154905080600883815481106133f6576133f66142c9565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061342e5761342e6142b3565b6001900381819060005260206000200160009055905550505050565b60006134558361109e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461349a9061421d565b90600052602060002090601f0160209004810192826134bc5760008555613502565b82601f106134d557805160ff1916838001178555613502565b82800160010185558215613502579182015b828111156135025782518255916020019190600101906134e7565b5061350e9291506135b0565b5090565b50805461351e9061421d565b6000825580601f1061352e575050565b601f016020900490600052602060002090810190611f9291906135b0565b6040518061022001604052806011905b606081526020019060019003908161355c5790505090565b60405180604001604052806002906020820280368337509192915050565b60405180606001604052806003906020820280368337509192915050565b5b8082111561350e57600081556001016135b1565b600067ffffffffffffffff808411156135e0576135e06142df565b604051601f8501601f19908116603f01168101908282118183101715613608576136086142df565b8160405280935085815286868601111561362157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461158b57600080fd5b60006020828403121561366457600080fd5b6129578261363b565b6000806040838503121561368057600080fd5b6136898361363b565b91506136976020840161363b565b90509250929050565b6000806000606084860312156136b557600080fd5b6136be8461363b565b92506136cc6020850161363b565b9150604084013590509250925092565b600080600080608085870312156136f257600080fd5b6136fb8561363b565b93506137096020860161363b565b925060408501359150606085013567ffffffffffffffff81111561372c57600080fd5b8501601f8101871361373d57600080fd5b61374c878235602084016135c5565b91505092959194509250565b6000806040838503121561376b57600080fd5b6137748361363b565b91506020830135801515811461378957600080fd5b809150509250929050565b600080604083850312156137a757600080fd5b6137b08361363b565b946020939093013593505050565b6000602082840312156137d057600080fd5b8135612957816142f5565b6000602082840312156137ed57600080fd5b8151612957816142f5565b60006020828403121561380a57600080fd5b813567ffffffffffffffff81111561382157600080fd5b8201601f8101841361383257600080fd5b612142848235602084016135c5565b60006020828403121561385357600080fd5b5035919050565b60006020828403121561386c57600080fd5b5051919050565b6000806040838503121561388657600080fd5b823591506136976020840161363b565b600081518084526138ae8160208601602086016141f1565b601f01601f19169290920160200192915050565b60008084546138d08161421d565b600182811680156138e857600181146138f957613928565b60ff19841687528287019450613928565b8860005260208060002060005b8581101561391f5781548a820152908401908201613906565b50505082870194505b50505050835161393c8183602088016141f1565b01949350505050565b600082516139578184602087016141f1565b9190910192915050565b600084516139738184602089016141f1565b8451908301906139878183602089016141f1565b845191019061399a8183602088016141f1565b0195945050505050565b60008a516139b6818460208f016141f1565b8a516139c88183860160208f016141f1565b8a5191840101906139dd818360208e016141f1565b89516139ef8183850160208e016141f1565b8951929091010190613a05818360208c016141f1565b8751613a178183850160208c016141f1565b8751929091010190613a2d818360208a016141f1565b8551910190613a408183602089016141f1565b8451613a5281838501602089016141f1565b9101019b9a5050505050505050505050565b60008251613a768184602087016141f1565b607360f81b920191825250600101919050565b60008251613a9b8184602087016141f1565b601b60fa1b920191825250600101919050565b60008251613ac08184602087016141f1565b64656d6f6a6960d81b920191825250600501919050565b60008251613ae98184602087016141f1565b600d60fb1b920191825250600101919050565b60008351613b0e8184602088016141f1565b641311bc18a360d91b9083019081528351613b308160058401602088016141f1565b603b60f81b60059290910191820152600601949350505050565b60008351613b5c8184602088016141f1565b9190910191825250602001919050565b6000808354613b7a8161421d565b60018281168015613b925760018114613ba357613bd2565b60ff19841687528287019450613bd2565b8760005260208060002060005b85811015613bc95781548a820152908401908201613bb0565b50505082870194505b50929695505050505050565b61060f60f31b815260008251613bfb8160028501602087016141f1565b9190910160020192915050565b7f7b226e616d65223a202242756464792042756464792054616720230000000000815260008351613c4081601b8501602088016141f1565b7f222c2265787465726e616c5f75726c223a2268747470733a2f2f627564647962601b918401918201527f756464797461672e636f6d222c226465736372697074696f6e223a2022412062603b8201527f7564647920686173206265656e20746167676564212057696c6c207468657920605b8201527f6163636570743f20576861742077696c6c20746865206e6574776f726b206f66607b8201527f206f6e2d636861696e2072656c6174696f6e7368697073206c6f6f6b206c696b609b8201527f653f222c2022696d616765223a2022646174613a696d6167652f7376672b786d60bb820152681b0ed8985cd94d8d0b60ba1b60db8201528351613d4d8160e48401602088016141f1565b61227d60f01b60e4929091019182015260e601949350505050565b630d0e6d8560e31b815260008451613d878160048501602089016141f1565b600b60fa1b6004918401918201528451613da88160058401602089016141f1565b61094b60f21b600592909101918201528351613dcb8160078401602088016141f1565b7412949d9039ba3937b5b296bbb4b23a341d1891179f60591b60079290910191820152601c0195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613e3281601d8501602087016141f1565b91909101601d0192915050565b641311bc18a360d91b815260008251613e5f8160058501602087016141f1565b603b60f81b6005939091019283015250600601919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613eaa90830184613896565b9695505050505050565b6020815260006129576020830184613896565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e2737ba1036b4b73a32b2103cb2ba1760891b604082015260600190565b6020808252600e908201526d09cdee840cadcdeeaced0408aa8960931b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600f908201526e139bdd081cdd185c9d1959081e595d608a1b604082015260600190565b6000821982111561402c5761402c614287565b500190565b600060ff821660ff84168060ff0382111561404e5761404e614287565b019392505050565b6000826140655761406561429d565b500490565b600060ff83168061407d5761407d61429d565b8060ff84160491505092915050565b600181815b808511156140c75781600019048211156140ad576140ad614287565b808516156140ba57918102915b93841c9390800290614091565b509250929050565b600061295783836000826140e55750600161088e565b816140f25750600061088e565b816001811461410857600281146141125761412e565b600191505061088e565b60ff84111561412357614123614287565b50506001821b61088e565b5060208310610133831016604e8410600b8410161715614151575081810a61088e565b61415b838361408c565b806000190482111561416f5761416f614287565b029392505050565b600081600019048311821515161561419157614191614287565b500290565b600060ff821660ff84168160ff048111821515161561416f5761416f614287565b6000828210156141c9576141c9614287565b500390565b600060ff821660ff8416808210156141e8576141e8614287565b90039392505050565b60005b8381101561420c5781810151838201526020016141f4565b838111156118a65750506000910152565b600181811c9082168061423157607f821691505b6020821081141561425257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561426c5761426c614287565b5060010190565b6000826142825761428261429d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611f9257600080fdfe22202f3e3c726563742077696474683d2239302522206865696768743d223930252220783d2235252220793d223525222066696c6c3d222333303338343122202f3e3c7465787420783d223530252220793d223230252220636c6173733d227a2220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e3c6c696e652078313d223022202079313d2232222078323d2235222079323d223222207374796c653d227374726f6b653a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f7061747465726e3e3c2f646566733e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d223c6c696e652078313d223022202079313d2234222078323d2235222079323d223422207374796c653d227374726f6b653a3c2f746578743e3c7465787420783d223530252220793d223530252220666f6e742d73697a653d22363222207374726f6b652d77696474683d222e322220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e7a207b2066696c6c3a20236438646565393b20666f6e742d66616d696c793a206d6f6e6f73706163653b20666f6e742d73697a653a20313370783b7d3c2f7374796c653e3c646566733e3c7061747465726e2069643d226250222077696474683d223522206865696768743d2235222076696577426f783d22302c302c352c3522207061747465726e5472616e73666f726d3d22726f74617465283435203020302922207061747465726e556e6974733d227573657253706163654f6e557365223e3c6c696e652078313d223422202079313d2230222078323d2234222079323d223522207374796c653d227374726f6b653a3c6c696e652078313d223222202079313d2230222078323d2232222079323d223522207374796c653d227374726f6b653a3c2f746578743e3c7465787420783d223530252220793d223830252220636c6173733d227a2220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223ea26469706673582212201b2bd776bb0348a3c6f6ef6fd4f144c1cf4b18ba43eb9b6e7b73b83f263a9b2864736f6c63430008070033

Deployed Bytecode Sourcemap

45944:14581:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57576:197;;;;;;;;;;-1:-1:-1;57576:197:0;;;;;:::i;:::-;;:::i;:::-;;57959:178;;;;;;;;;;;;;:::i;39539:224::-;;;;;;;;;;-1:-1:-1;39539:224:0;;;;;:::i;:::-;;:::i;:::-;;;18206:14:1;;18199:22;18181:41;;18169:2;18154:18;39539:224:0;;;;;;;;26658:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28217:221::-;;;;;;;;;;-1:-1:-1;28217:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;17504:32:1;;;17486:51;;17474:2;17459:18;28217:221:0;17340:203:1;46435:75:0;;;;;;;;;;-1:-1:-1;46435:75:0;;;;-1:-1:-1;;;;;46435:75:0;;;27740:411;;;;;;;;;;-1:-1:-1;27740:411:0;;;;;:::i;:::-;;:::i;40179:113::-;;;;;;;;;;-1:-1:-1;40267:10:0;:17;40179:113;;;31321:25:1;;;31309:2;31294:18;40179:113:0;31175:177:1;29107:339:0;;;;;;;;;;-1:-1:-1;29107:339:0;;;;;:::i;:::-;;:::i;46637:67::-;;;;;;;;;;-1:-1:-1;46637:67:0;;;;-1:-1:-1;;;;;46637:67:0;;;56006:318;;;;;;:::i;:::-;;:::i;39847:256::-;;;;;;;;;;-1:-1:-1;39847:256:0;;;;;:::i;:::-;;:::i;58145:298::-;;;;;;;;;;;;;:::i;46968:27::-;;;;;;;;;;;;;;;;29517:185;;;;;;;;;;-1:-1:-1;29517:185:0;;;;;:::i;:::-;;:::i;46839:46::-;;;;;;;;;;;;;;;;46711:44;;;;;;;;;;;;;;;;40369:233;;;;;;;;;;-1:-1:-1;40369:233:0;;;;;:::i;:::-;;:::i;46904:45::-;;;;;;;;;;;;;;;;57781:170;;;;;;;;;;;;;:::i;50330:602::-;;;;;;:::i;:::-;;:::i;26352:239::-;;;;;;;;;;-1:-1:-1;26352:239:0;;;;;:::i;:::-;;:::i;46774:45::-;;;;;;;;;;;;;;;;26082:208;;;;;;;;;;-1:-1:-1;26082:208:0;;;;;:::i;:::-;;:::i;11050:94::-;;;;;;;;;;;;;:::i;56332:576::-;;;;;;;;;;-1:-1:-1;56332:576:0;;;;;:::i;:::-;;:::i;46023:28::-;;;;;;;;;;-1:-1:-1;46023:28:0;;;;-1:-1:-1;;;46023:28:0;;;;;;46562:68;;;;;;;;;;-1:-1:-1;46562:68:0;;;;-1:-1:-1;;;;;46562:68:0;;;54767:440;;;;;;;;;;-1:-1:-1;54767:440:0;;;;;:::i;:::-;;:::i;10399:87::-;;;;;;;;;;-1:-1:-1;10472:6:0;;-1:-1:-1;;;;;10472:6:0;10399:87;;26827:104;;;;;;;;;;;;;:::i;50940:304::-;;;;;;;;;;-1:-1:-1;50940:304:0;;;;;:::i;:::-;;:::i;56916:652::-;;;;;;:::i;:::-;;:::i;28510:295::-;;;;;;;;;;-1:-1:-1;28510:295:0;;;;;:::i;:::-;;:::i;46152:47::-;;;;;;;;;;-1:-1:-1;46152:47:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;46152:47:0;;;29773:328;;;;;;;;;;-1:-1:-1;29773:328:0;;;;;:::i;:::-;;:::i;51252:3314::-;;;;;;;;;;-1:-1:-1;51252:3314:0;;;;;:::i;:::-;;:::i;55472:526::-;;;;;;:::i;:::-;;:::i;28876:164::-;;;;;;;;;;-1:-1:-1;28876:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28997:25:0;;;28973:4;28997:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28876:164;11299:192;;;;;;;;;;-1:-1:-1;11299:192:0;;;;;:::i;:::-;;:::i;57576:197::-;10472:6;;-1:-1:-1;;;;;10472:6:0;9339:10;10619:23;10611:68;;;;-1:-1:-1;;;10611:68:0;;;;;;;:::i;:::-;;;;;;;;;57654:8:::1;::::0;-1:-1:-1;;;57654:8:0;::::1;;;57653:9;57645:50;;;::::0;-1:-1:-1;;;57645:50:0;;30673:2:1;57645:50:0::1;::::0;::::1;30655:21:1::0;30712:2;30692:18;;;30685:30;30751:31;30731:18;;;30724:59;30800:18;;57645:50:0::1;30471:353:1::0;57645:50:0::1;57736:10;57754:9;57719:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57706:10;:59;;;;;;;;;;;;:::i;:::-;;57576:197:::0;:::o;57959:178::-;10472:6;;-1:-1:-1;;;;;10472:6:0;9339:10;10619:23;10611:68;;;;-1:-1:-1;;;10611:68:0;;;;;;;:::i;:::-;58037:8:::1;::::0;-1:-1:-1;;;58037:8:0;::::1;;;58036:9;58028:37;;;::::0;-1:-1:-1;;;58028:37:0;;23775:2:1;58028:37:0::1;::::0;::::1;23757:21:1::0;23814:2;23794:18;;;23787:30;-1:-1:-1;;;23833:18:1;;;23826:46;23889:18;;58028:37:0::1;23573:340:1::0;58028:37:0::1;58076:8;:15:::0;;-1:-1:-1;;;;58076:15:0::1;-1:-1:-1::0;;;58076:15:0::1;::::0;;58117:12:::1;58102;:27:::0;57959:178::o;39539:224::-;39641:4;-1:-1:-1;;;;;;39665:50:0;;-1:-1:-1;;;39665:50:0;;:90;;;39719:36;39743:11;39719:23;:36::i;:::-;39658:97;39539:224;-1:-1:-1;;39539:224:0:o;26658:100::-;26712:13;26745:5;26738:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26658:100;:::o;28217:221::-;28293:7;31700:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31700:16:0;28313:73;;;;-1:-1:-1;;;28313:73:0;;25520:2:1;28313:73:0;;;25502:21:1;25559:2;25539:18;;;25532:30;25598:34;25578:18;;;25571:62;-1:-1:-1;;;25649:18:1;;;25642:42;25701:19;;28313:73:0;25318:408:1;28313:73:0;-1:-1:-1;28406:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28406:24:0;;28217:221::o;27740:411::-;27821:13;27837:23;27852:7;27837:14;:23::i;:::-;27821:39;;27885:5;-1:-1:-1;;;;;27879:11:0;:2;-1:-1:-1;;;;;27879:11:0;;;27871:57;;;;-1:-1:-1;;;27871:57:0;;27825:2:1;27871:57:0;;;27807:21:1;27864:2;27844:18;;;27837:30;27903:34;27883:18;;;27876:62;-1:-1:-1;;;27954:18:1;;;27947:31;27995:19;;27871:57:0;27623:397:1;27871:57:0;9339:10;-1:-1:-1;;;;;27963:21:0;;;;:62;;-1:-1:-1;27988:37:0;28005:5;9339:10;28876:164;:::i;27988:37::-;27941:168;;;;-1:-1:-1;;;27941:168:0;;22529:2:1;27941:168:0;;;22511:21:1;22568:2;22548:18;;;22541:30;22607:34;22587:18;;;22580:62;22678:26;22658:18;;;22651:54;22722:19;;27941:168:0;22327:420:1;27941:168:0;28122:21;28131:2;28135:7;28122:8;:21::i;:::-;27810:341;27740:411;;:::o;29107:339::-;29302:41;9339:10;29335:7;29302:18;:41::i;:::-;29294:103;;;;-1:-1:-1;;;29294:103:0;;;;;;;:::i;:::-;29410:28;29420:4;29426:2;29430:7;29410:9;:28::i;56006:318::-;56100:8;;-1:-1:-1;;;56100:8:0;;;;56092:35;;;;-1:-1:-1;;;56092:35:0;;;;;;;:::i;:::-;56160:16;56168:7;56160;:16::i;:::-;-1:-1:-1;;;;;56146:30:0;9339:10;-1:-1:-1;;;;;56146:30:0;;56138:65;;;;-1:-1:-1;;;56138:65:0;;25933:2:1;56138:65:0;;;25915:21:1;25972:2;25952:18;;;25945:30;26011:25;25991:18;;;25984:53;26054:18;;56138:65:0;25731:347:1;56138:65:0;56235:11;;56222:9;:24;;56214:50;;;;-1:-1:-1;;;56214:50:0;;;;;;;:::i;:::-;56277:21;;;;:12;:21;;;;;;:39;;-1:-1:-1;;;;;;56277:39:0;-1:-1:-1;;;;;56277:39:0;;;;;;;;;56006:318::o;39847:256::-;39944:7;39980:23;39997:5;39980:16;:23::i;:::-;39972:5;:31;39964:87;;;;-1:-1:-1;;;39964:87:0;;18659:2:1;39964:87:0;;;18641:21:1;18698:2;18678:18;;;18671:30;18737:34;18717:18;;;18710:62;-1:-1:-1;;;18788:18:1;;;18781:41;18839:19;;39964:87:0;18457:407:1;39964:87:0;-1:-1:-1;;;;;;40069:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39847:256::o;58145:298::-;10472:6;;-1:-1:-1;;;;;10472:6:0;9339:10;10619:23;10611:68;;;;-1:-1:-1;;;10611:68:0;;;;;;;:::i;:::-;58223:23:::1;58249:25;58273:1;58249:21;:25;:::i;:::-;58293:15;::::0;58285:50:::1;::::0;58223:51;;-1:-1:-1;;;;;;58293:15:0::1;::::0;58285:50;::::1;;;::::0;58223:51;;58293:15:::1;58285:50:::0;58293:15;58285:50;58223:51;58293:15;58285:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;58384:51:0::1;::::0;58392:10:::1;::::0;58413:21:::1;58384:51:::0;::::1;;;::::0;::::1;::::0;;;58413:21;58392:10;58384:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;29517:185:::0;29655:39;29672:4;29678:2;29682:7;29655:39;;;;;;;;;;;;:16;:39::i;40369:233::-;40444:7;40480:30;40267:10;:17;;40179:113;40480:30;40472:5;:38;40464:95;;;;-1:-1:-1;;;40464:95:0;;29140:2:1;40464:95:0;;;29122:21:1;29179:2;29159:18;;;29152:30;29218:34;29198:18;;;29191:62;-1:-1:-1;;;29269:18:1;;;29262:42;29321:19;;40464:95:0;28938:408:1;40464:95:0;40577:10;40588:5;40577:17;;;;;;;;:::i;:::-;;;;;;;;;40570:24;;40369:233;;;:::o;57781:170::-;10472:6;;-1:-1:-1;;;;;10472:6:0;9339:10;10619:23;10611:68;;;;-1:-1:-1;;;10611:68:0;;;;;;;:::i;:::-;57887:8:::1;::::0;-1:-1:-1;;;57887:8:0;::::1;;;57886:9;57878:37;;;::::0;-1:-1:-1;;;57878:37:0;;23775:2:1;57878:37:0::1;::::0;::::1;23757:21:1::0;23814:2;23794:18;;;23787:30;-1:-1:-1;;;23833:18:1;;;23826:46;23889:18;;57878:37:0::1;23573:340:1::0;57878:37:0::1;57926:17;57933:10;;57926:17;:::i;:::-;57781:170::o:0;50330:602::-;50410:8;;-1:-1:-1;;;50410:8:0;;;;50402:35;;;;-1:-1:-1;;;50402:35:0;;;;;;;:::i;:::-;50469:11;;50456:9;:24;;50448:50;;;;-1:-1:-1;;;50448:50:0;;;;;;;:::i;:::-;50517:21;50525:12;50517:7;:21::i;:::-;50509:89;;;;-1:-1:-1;;;50509:89:0;;29897:2:1;50509:89:0;;;29879:21:1;29936:2;29916:18;;;29909:30;29975:34;29955:18;;;29948:62;30046:26;30026:18;;;30019:54;30090:19;;50509:89:0;29695:420:1;50509:89:0;50666:12;50679;50666:26;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;50665:27;50657:50;;;;-1:-1:-1;;;50657:50:0;;19847:2:1;50657:50:0;;;19829:21:1;19886:2;19866:18;;;19859:30;-1:-1:-1;;;19905:18:1;;;19898:41;19956:18;;50657:50:0;19645:335:1;50657:50:0;50746:10;50766:1;50738:19;;;:7;:19;;;;;50732:33;;;;;:::i;:::-;;;:35;50728:108;;;50804:10;50819:5;50796:19;;;:7;:19;;;;;;50783:33;;:12;;:33;;;:::i;:::-;;;;;;;;;;;;;;:41;;;;;-1:-1:-1;;50783:41:0;;;;;;;;;50728:108;50854:10;50846:19;;;;:7;:19;;;;;;;;:34;;;;;;;;:::i;:::-;;50920:4;50891:12;50904;50891:26;;;;;;:::i;:::-;;;;;;;;;;;;;;:33;;;;;-1:-1:-1;;50891:33:0;;;;;;;;;-1:-1:-1;50330:602:0:o;26352:239::-;26424:7;26460:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26460:16:0;26495:19;26487:73;;;;-1:-1:-1;;;26487:73:0;;23365:2:1;26487:73:0;;;23347:21:1;23404:2;23384:18;;;23377:30;23443:34;23423:18;;;23416:62;-1:-1:-1;;;23494:18:1;;;23487:39;23543:19;;26487:73:0;23163:405:1;26082:208:0;26154:7;-1:-1:-1;;;;;26182:19:0;;26174:74;;;;-1:-1:-1;;;26174:74:0;;22954:2:1;26174:74:0;;;22936:21:1;22993:2;22973:18;;;22966:30;23032:34;23012:18;;;23005:62;-1:-1:-1;;;23083:18:1;;;23076:40;23133:19;;26174:74:0;22752:406:1;26174:74:0;-1:-1:-1;;;;;;26266:16:0;;;;;:9;:16;;;;;;;26082:208::o;11050:94::-;10472:6;;-1:-1:-1;;;;;10472:6:0;9339:10;10619:23;10611:68;;;;-1:-1:-1;;;10611:68:0;;;;;;;:::i;:::-;11115:21:::1;11133:1;11115:9;:21::i;56332:576::-:0;56397:8;;-1:-1:-1;;;56397:8:0;;;;56389:35;;;;-1:-1:-1;;;56389:35:0;;;;;;;:::i;:::-;56459:7;56443:13;40267:10;:17;;40179:113;56443:13;:23;56435:50;;;;-1:-1:-1;;;56435:50:0;;;;;;;:::i;:::-;56504:21;;;;:12;:21;;;;;;-1:-1:-1;;;;;56504:21:0;9339:10;56504:35;56496:89;;;;-1:-1:-1;;;56496:89:0;;27056:2:1;56496:89:0;;;27038:21:1;27095:2;27075:18;;;27068:30;27134:34;27114:18;;;27107:62;-1:-1:-1;;;27185:18:1;;;27178:40;27235:19;;56496:89:0;26854:406:1;56496:89:0;56598:30;56631:45;56646:16;56654:7;56646;:16::i;:::-;9339:10;56631:14;:45::i;:::-;56710:15;;-1:-1:-1;;;;;56696:30:0;;;;;;;:13;56710:15;56696:30;;;;;;;56727:15;;;;56696:47;;;;;;;;;;56710:15;;-1:-1:-1;56696:47:0;;56695:48;56687:77;;;;-1:-1:-1;;;56687:77:0;;31031:2:1;56687:77:0;;;31013:21:1;31070:2;31050:18;;;31043:30;-1:-1:-1;;;31089:18:1;;;31082:47;31146:18;;56687:77:0;30829:341:1;56687:77:0;56791:15;;-1:-1:-1;;;;;56777:30:0;;;;;;;:13;56791:15;56777:30;;;;;;;56808:15;;;;56777:47;;;;;;;;;;;:54;;56827:4;-1:-1:-1;;56777:54:0;;;;;;;;9339:10;56842:24;;:10;:24;;;;;;:31;;;;;;;;-1:-1:-1;56332:576:0:o;54767:440::-;-1:-1:-1;;;;;54842:13:0;;54822:4;54842:13;;;:10;:13;;;;;;;;54838:56;;;-1:-1:-1;54878:4:0;;54767:440;-1:-1:-1;54767:440:0:o;54838:56::-;54956:8;;54980:24;;-1:-1:-1;;;54980:24:0;;-1:-1:-1;;;;;17504:32:1;;;54980:24:0;;;17486:51:1;54956:8:0;;;;54904:30;;54956:8;;54980:21;;17459:18:1;;54980:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:28;54976:71;;;-1:-1:-1;55031:4:0;;54767:440;-1:-1:-1;;54767:440:0:o;54976:71::-;55087:7;;55110:24;;-1:-1:-1;;;55110:24:0;;-1:-1:-1;;;;;17504:32:1;;;55110:24:0;;;17486:51:1;55087:7:0;;;;55057:19;;55087:7;;55110:21;;17459:18:1;;55110:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:28;55106:71;;;-1:-1:-1;55161:4:0;;54767:440;-1:-1:-1;;;54767:440:0:o;55106:71::-;-1:-1:-1;55194:5:0;;54767:440;-1:-1:-1;;;54767:440:0:o;26827:104::-;26883:13;26916:7;26909:14;;;;;:::i;50940:304::-;51074:22;;;;;;;;;;;;;;51064:33;;;;-1:-1:-1;;;;;51047:10:0;;;;:7;:10;;;;;;;50990:13;;51064:33;;51029:30;;;;:::i;:::-;;;;;;;;;;;;;51019:41;;;;;;:78;51015:222;;-1:-1:-1;;;;;51120:10:0;;;;;;:7;:10;;;;;51113:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50940:304;;;:::o;51015:222::-;51207:16;51221:1;51207:13;:16::i;:::-;51185:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;51171:54;;50940:304;;;:::o;51015:222::-;50940:304;;;:::o;56916:652::-;56987:8;;-1:-1:-1;;;56987:8:0;;;;56979:35;;;;-1:-1:-1;;;56979:35:0;;;;;;;:::i;:::-;57049:7;57033:13;40267:10;:17;;40179:113;57033:13;:23;57025:50;;;;-1:-1:-1;;;57025:50:0;;;;;;;:::i;:::-;57094:21;;;;:12;:21;;;;;;-1:-1:-1;;;;;57094:21:0;9339:10;57094:35;57086:133;;;;-1:-1:-1;;;57086:133:0;;28227:2:1;57086:133:0;;;28209:21:1;28266:2;28246:18;;;28239:30;28305:34;28285:18;;;28278:62;28376:34;28356:18;;;28349:62;-1:-1:-1;;;28427:19:1;;;28420:53;28490:19;;57086:133:0;28025:490:1;57086:133:0;57251:10;;57238:9;:23;;57230:72;;;;-1:-1:-1;;;57230:72:0;;20951:2:1;57230:72:0;;;20933:21:1;20990:2;20970:18;;;20963:30;21029:34;21009:18;;;21002:62;-1:-1:-1;;;21080:18:1;;;21073:35;21125:19;;57230:72:0;20749:401:1;57230:72:0;57315:30;57348:45;57363:16;57371:7;57363;:16::i;57348:45::-;57426:15;;-1:-1:-1;;;;;57412:30:0;;;;;;;:13;57426:15;57412:30;;;;;;;57443:15;;;;57412:47;;;;;;;;;;57426:15;;-1:-1:-1;57412:47:0;;57404:88;;;;-1:-1:-1;;;57404:88:0;;27467:2:1;57404:88:0;;;27449:21:1;27506:2;27486:18;;;27479:30;27545:31;27525:18;;;27518:59;27594:18;;57404:88:0;27265:353:1;57404:88:0;57519:15;;-1:-1:-1;;;;;57505:30:0;;;57555:5;57505:30;;;:13;57519:15;57505:30;;;;;;;57536:15;;;;57505:47;;;;;;;;;;;:55;;-1:-1:-1;;57505:55:0;;;-1:-1:-1;56916:652:0:o;28510:295::-;-1:-1:-1;;;;;28613:24:0;;9339:10;28613:24;;28605:62;;;;-1:-1:-1;;;28605:62:0;;21762:2:1;28605:62:0;;;21744:21:1;21801:2;21781:18;;;21774:30;21840:27;21820:18;;;21813:55;21885:18;;28605:62:0;21560:349:1;28605:62:0;9339:10;28680:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28680:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28680:53:0;;;;;;;;;;28749:48;;18181:41:1;;;28680:42:0;;9339:10;28749:48;;18154:18:1;28749:48:0;;;;;;;28510:295;;:::o;29773:328::-;29948:41;9339:10;29981:7;29948:18;:41::i;:::-;29940:103;;;;-1:-1:-1;;;29940:103:0;;;;;;;:::i;:::-;30054:39;30068:4;30074:2;30078:7;30087:5;30054:13;:39::i;:::-;29773:328;;;;:::o;51252:3314::-;51317:13;51367:7;51351:13;40267:10;:17;;40179:113;51351:13;:23;51343:50;;;;-1:-1:-1;;;51343:50:0;;;;;;;:::i;:::-;51406:23;;:::i;:::-;51442:15;51460:19;51471:7;51460:10;:19::i;:::-;51442:37;;51492:25;51520:22;51534:7;51520:13;:22::i;:::-;51492:50;;51553:25;51581:27;51590:7;51598;51606:1;51581:8;:27::i;:::-;51553:55;;51619:25;51647:27;51656:7;51664;51672:1;51647:8;:27::i;:::-;51619:55;;51685:25;51713:27;51722:7;51730;51738:1;51713:8;:27::i;:::-;51685:55;;51753:362;;;;;;;;;;;;;;;;;;;52170:20;52179:7;51759:1;52179:10;;;;;52170:8;:20::i;:::-;52195;52204:7;52212:1;52204:10;;52195:20;52221;52230:7;52238:1;52230:10;;52221:20;52146:120;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;52146:120:0;;;;;;;;;52128:5;52134:1;52128:8;;;:139;;;;52280:62;;;;;;;;;;;;;;;;;:8;;;:62;52397:20;52406:7;52414:1;52406:10;;52397:20;52422;52431:7;52439:1;52431:10;;52422:20;52448;52457:7;52465:1;52457:10;;52448:20;52373:120;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;52373:120:0;;;;;;52355:8;;;;:139;;;;52507:62;;;;;;;;;;;;52355:8;52507:62;;;:8;;;:62;52624:20;52633:7;52641:1;52633:10;;52624:20;52649;52658:7;52666:1;52658:10;;52649:20;52675;52684:7;52692:1;52684:10;;52675:20;52600:120;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;52600:120:0;;;;;;52582:8;;;:139;;;;52734:62;;;;;;;;;;;;;52582:8;52734:62;;;:8;;;:62;52851:20;52860:7;52868:1;52860:10;;52851:20;52876;52885:7;52893:1;52885:10;;52876:20;52902;52911:7;52919:1;52911:10;;52902:20;52827:120;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;52827:120:0;;;;;;52809:8;;;:139;;;;52961:69;;;;;;;;;;;;;52809:8;52961:69;;;:8;;;:69;53043:20;;;;;;;;;;;;-1:-1:-1;;;52961:8:0;53043:20;;;:8;;;:20;53080:27;53099:7;53080:18;:27::i;:::-;53076:84;;;53127:21;;;;;;;;;;;;-1:-1:-1;;;53127:21:0;;;;:8;;;:21;53076:84;53180:160;;;;;;;;;;;;;;;;;:9;;;:160;53365:26;53374:16;53382:7;53374;:16::i;53365:26::-;53353:9;;;:38;53404:124;;;;;;;;;;;;;;53353:9;53404:124;;;:9;;;:124;53553:18;53563:7;53553:9;:18::i;:::-;53541:9;;;:30;53584:101;;;;;;;;;;;;;;53541:9;53584:101;;;:9;;;:101;53719:21;;;;53590:2;53584:9;53719:21;;;;;53710:31;;-1:-1:-1;;;;;53719:21:0;53710:8;:31::i;:::-;53698:9;;;:43;53754:27;;;;;;;;;;;;-1:-1:-1;;;53698:9:0;53754:27;;;53698:5;53760:2;53754:9;;;:27;53794:20;53841:5;53794:20;53841:8;;;;53851:5;53857:1;53851:8;;;;53861:5;53867:1;53861:8;;;;53871:5;53877:1;53871:8;;;;53881:5;53887:1;53881:8;;;;53891:5;53897:1;53891:8;;;;53901:5;53907:1;53901:8;;;;53911:5;53917:1;53911:8;;;;53921:5;53927:1;53921:8;;;;53824:106;;;;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;53824:106:0;;;;;;;;;;-1:-1:-1;53824:106:0;53983:5;53989:1;53983:8;;;;53993:5;53999:2;53993:9;;;;54004:5;54010:2;54004:9;;;;54015:5;54021:2;54015:9;;;;54026:5;54032:2;54026:9;;;;54037:5;54043:2;54037:9;;;;54048:5;54054:2;54048:9;;;;54059:5;54065:2;54059:9;;;;53958:111;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53942:128;;54091:18;54112:337;54187:17;54196:7;54187:8;:17::i;:::-;54411:28;54431:6;54411:13;:28::i;:::-;54139:307;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54112:13;:337::i;:::-;54091:358;;54526:4;54476:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;54476:55:0;;;;;;;;;;51252:3314;-1:-1:-1;;;;;;;;;;51252:3314:0:o;55472:526::-;55549:8;;-1:-1:-1;;;55549:8:0;;;;55541:35;;;;-1:-1:-1;;;55541:35:0;;;;;;;:::i;:::-;9339:10;-1:-1:-1;;;;;55595:29:0;;;;55587:64;;;;-1:-1:-1;;;55587:64:0;;24825:2:1;55587:64:0;;;24807:21:1;24864:2;24844:18;;;24837:30;24903:25;24883:18;;;24876:53;24946:18;;55587:64:0;24623:347:1;55587:64:0;55683:9;;55670;:22;;55662:48;;;;-1:-1:-1;;;55662:48:0;;;;;;;:::i;:::-;55743:5;55729:13;40267:10;:17;;40179:113;55729:13;:19;55721:53;;;;-1:-1:-1;;;55721:53:0;;30322:2:1;55721:53:0;;;30304:21:1;30361:2;30341:18;;;30334:30;-1:-1:-1;;;30380:18:1;;;30373:52;30442:18;;55721:53:0;30120:346:1;55721:53:0;55793:27;9339:10;54767:440;:::i;55793:27::-;55785:67;;;;-1:-1:-1;;;55785:67:0;;19071:2:1;55785:67:0;;;19053:21:1;19110:2;19090:18;;;19083:30;19149;19129:18;;;19122:58;19197:18;;55785:67:0;18869:352:1;55785:67:0;55865:14;55882:13;40267:10;:17;;40179:113;55882:13;55865:30;-1:-1:-1;55906:35:0;9339:10;55930:6;55906:35;;;;;;;;;;;;:9;:35::i;:::-;55952:20;;;;:12;:20;;;;;:38;;-1:-1:-1;;;;;;55952:38:0;-1:-1:-1;;;;;55952:38:0;;;;;;;;;;55472:526::o;11299:192::-;10472:6;;-1:-1:-1;;;;;10472:6:0;9339:10;10619:23;10611:68;;;;-1:-1:-1;;;10611:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11388:22:0;::::1;11380:73;;;::::0;-1:-1:-1;;;11380:73:0;;20187:2:1;11380:73:0::1;::::0;::::1;20169:21:1::0;20226:2;20206:18;;;20199:30;20265:34;20245:18;;;20238:62;-1:-1:-1;;;20316:18:1;;;20309:36;20362:19;;11380:73:0::1;19985:402:1::0;11380:73:0::1;11464:19;11474:8;11464:9;:19::i;:::-;11299:192:::0;:::o;25713:305::-;25815:4;-1:-1:-1;;;;;;25852:40:0;;-1:-1:-1;;;25852:40:0;;:105;;-1:-1:-1;;;;;;;25909:48:0;;-1:-1:-1;;;25909:48:0;25852:105;:158;;;-1:-1:-1;;;;;;;;;;24429:40:0;;;25974:36;24320:157;35588:174;35663:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35663:29:0;-1:-1:-1;;;;;35663:29:0;;;;;;;;:24;;35717:23;35663:24;35717:14;:23::i;:::-;-1:-1:-1;;;;;35708:46:0;;;;;;;;;;;35588:174;;:::o;31905:348::-;31998:4;31700:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31700:16:0;32015:73;;;;-1:-1:-1;;;32015:73:0;;22116:2:1;32015:73:0;;;22098:21:1;22155:2;22135:18;;;22128:30;22194:34;22174:18;;;22167:62;-1:-1:-1;;;22245:18:1;;;22238:42;22297:19;;32015:73:0;21914:408:1;32015:73:0;32099:13;32115:23;32130:7;32115:14;:23::i;:::-;32099:39;;32168:5;-1:-1:-1;;;;;32157:16:0;:7;-1:-1:-1;;;;;32157:16:0;;:51;;;;32201:7;-1:-1:-1;;;;;32177:31:0;:20;32189:7;32177:11;:20::i;:::-;-1:-1:-1;;;;;32177:31:0;;32157:51;:87;;;-1:-1:-1;;;;;;28997:25:0;;;28973:4;28997:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32212:32;32149:96;31905:348;-1:-1:-1;;;;31905:348:0:o;34892:578::-;35051:4;-1:-1:-1;;;;;35024:31:0;:23;35039:7;35024:14;:23::i;:::-;-1:-1:-1;;;;;35024:31:0;;35016:85;;;;-1:-1:-1;;;35016:85:0;;26646:2:1;35016:85:0;;;26628:21:1;26685:2;26665:18;;;26658:30;26724:34;26704:18;;;26697:62;-1:-1:-1;;;26775:18:1;;;26768:39;26824:19;;35016:85:0;26444:405:1;35016:85:0;-1:-1:-1;;;;;35120:16:0;;35112:65;;;;-1:-1:-1;;;35112:65:0;;21357:2:1;35112:65:0;;;21339:21:1;21396:2;21376:18;;;21369:30;21435:34;21415:18;;;21408:62;-1:-1:-1;;;21486:18:1;;;21479:34;21530:19;;35112:65:0;21155:400:1;35112:65:0;35190:39;35211:4;35217:2;35221:7;35190:20;:39::i;:::-;35294:29;35311:1;35315:7;35294:8;:29::i;:::-;-1:-1:-1;;;;;35336:15:0;;;;;;:9;:15;;;;;:20;;35355:1;;35336:15;:20;;35355:1;;35336:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35367:13:0;;;;;;:9;:13;;;;;:18;;35384:1;;35367:13;:18;;35384:1;;35367:18;:::i;:::-;;;;-1:-1:-1;;35396:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35396:21:0;-1:-1:-1;;;;;35396:21:0;;;;;;;;;35435:27;;35396:16;;35435:27;;;;;;;34892:578;;;:::o;58474:540::-;58533:4;58549:14;58572:3;58549:27;;58601:2;58590:1;:8;:13;:28;;;;58617:1;58606;:8;:12;58590:28;58587:45;;;-1:-1:-1;58627:5:0;;58474:540;-1:-1:-1;;58474:540:0:o;58587:45::-;58649:6;58645:338;58659:1;:8;58657:1;:10;58645:338;;;58688:9;58700:1;58702;58700:4;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;58700:4:0;;-1:-1:-1;;;;58744:10:0;;;;;:24;;-1:-1:-1;;;;;;;;;;58758:10:0;;;;58744:24;58742:27;:81;;;;-1:-1:-1;;;;;;;;;;58798:10:0;;;;;;:24;;-1:-1:-1;;;;;;;;;;58812:10:0;;;;58798:24;58796:27;58742:81;:135;;;;-1:-1:-1;;;;;;;;;;58852:10:0;;;;;;:24;;-1:-1:-1;;;;;;;;;;58866:10:0;;;;58852:24;58850:27;58742:135;:175;;;;-1:-1:-1;;;;;;;;;;58906:10:0;;;58904:13;58742:175;58721:250;;;-1:-1:-1;58966:5:0;;58474:540;-1:-1:-1;;;;58474:540:0:o;58721:250::-;-1:-1:-1;58669:3:0;;;;:::i;:::-;;;;58645:338;;;-1:-1:-1;59002:4:0;;58474:540;-1:-1:-1;;;58474:540:0:o;11499:173::-;11574:6;;;-1:-1:-1;;;;;11591:17:0;;;-1:-1:-1;;;;;;11591:17:0;;;;;;;11624:40;;11574:6;;;11591:17;11574:6;;11624:40;;11555:16;;11624:40;11544:128;11499:173;:::o;54574:185::-;54645:17;;:::i;:::-;54683:2;-1:-1:-1;;;;;54678:7:0;:2;-1:-1:-1;;;;;54678:7:0;;54674:53;;;-1:-1:-1;54701:14:0;;;;;;;;;-1:-1:-1;;;;;54701:14:0;;;;;;;;;;;;;54674:53;-1:-1:-1;54737:14:0;;;;;;;;;-1:-1:-1;;;;;54737:14:0;;;;;;;;;;;;54574:185::o;59041:463::-;59141:13;;;59151:2;59141:13;;;59098;59141;;;;;;59124:14;;59141:13;;;;;;;;;;;-1:-1:-1;59141:13:0;59124:30;;59170:6;59165:305;59186:2;59182:1;:6;59165:305;;;59210:8;59261:6;59266:1;59261:2;:6;:::i;:::-;59258:10;;:1;:10;:::i;:::-;59254:15;;:1;:15;:::i;:::-;59234:36;;-1:-1:-1;;;;;59234:16:0;;:36;:::i;:::-;59221:51;;59210:62;;59287:9;59317:2;59312:1;59306:8;;:13;;;;:::i;:::-;59299:21;;59287:33;;59335:9;59376:2;59370:9;;59365:2;:14;;;;:::i;:::-;59360:1;59354:8;;:25;;;;:::i;:::-;59347:33;;59335:45;;59404:8;59409:2;59404:4;:8::i;:::-;59395:1;59397:3;59399:1;59397;:3;:::i;:::-;59395:6;;;;;;;;:::i;:::-;;;;:17;-1:-1:-1;;;;;59395:17:0;;;;;;;;;59438:8;59443:2;59438:4;:8::i;:::-;59427:1;59429:3;59431:1;59429;:3;:::i;:::-;:5;;59433:1;59429:5;:::i;:::-;59427:8;;;;;;;;:::i;:::-;;;;:19;-1:-1:-1;;;;;59427:19:0;;;;;;;;;59195:275;;;59190:3;;;;;:::i;:::-;;;;59165:305;;;-1:-1:-1;59494:1:0;59041:463;-1:-1:-1;;59041:463:0:o;30983:315::-;31140:28;31150:4;31156:2;31160:7;31140:9;:28::i;:::-;31187:48;31210:4;31216:2;31220:7;31229:5;31187:22;:48::i;:::-;31179:111;;;;-1:-1:-1;;;31179:111:0;;;;;;;:::i;47754:151::-;47814:7;47896:1;47841:52;47872:7;47855:36;;;;;;17242:19:1;;-1:-1:-1;;;17286:2:1;17277:12;;17270:31;17326:2;17317:12;;17012:323;47855:36:0;;;;;;;;;;;;;47841:6;:52::i;:::-;:56;;;;:::i;47165:581::-;47228:17;;:::i;:::-;47281:7;47265:13;40267:10;:17;;40179:113;47265:13;:23;47257:50;;;;-1:-1:-1;;;47257:50:0;;;;;;;:::i;:::-;47323:27;47342:7;47323:18;:27::i;:::-;47318:126;;47366:45;;;;;;;;47382:3;47366:45;;;;47395:2;47366:45;;;;47407:2;47366:45;;;;;47165:581;;;:::o;47318:126::-;47458:9;47529:3;47471:55;47502:17;47511:7;47502:8;:17::i;:::-;47485:39;;;;;;;;:::i;47471:55::-;:61;;;;:::i;:::-;47458:75;;47544:9;47615:2;47557:55;47588:17;47597:7;47588:8;:17::i;:::-;47571:39;;;;;;;;:::i;47557:55::-;:60;;;;:::i;:::-;47556:67;;47621:2;47556:67;:::i;:::-;47544:79;;47634:9;47705:2;47647:55;47678:17;47687:7;47678:8;:17::i;:::-;47661:39;;;;;;;;:::i;47647:55::-;:60;;;;:::i;:::-;47646:67;;47711:2;47646:67;:::i;:::-;47724:14;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47724:14:0;47165:581;-1:-1:-1;;47165:581:0:o;47917:1280::-;48011:17;;:::i;:::-;48065:7;48049:13;40267:10;:17;;40179:113;48049:13;:23;48041:50;;;;-1:-1:-1;;;48041:50:0;;;;;;;:::i;:::-;48107:27;48126:7;48107:18;:27::i;:::-;48102:126;;48150:45;;;;;;;;48166:3;48150:45;;;;48179:2;48150:45;;;;48191:2;48150:45;;;;;;;48102:126;48240:28;48271:22;48285:7;48271:13;:22::i;:::-;48240:53;;48306:29;;:::i;:::-;48363:13;;48346:30;;48363:13;48404;;;;48387:14;;;:30;48445:13;;;;;48428:14;;;:30;48473:12;48469:690;;48569:3;48552:13;48556:9;48552:3;:13;:::i;:::-;48536;;:29;;;;:::i;:::-;48535:37;;;;:::i;:::-;48518:11;48530:1;48518:14;;;;:54;48469:690;;;48602:7;48613:1;48602:12;48599:560;;;48695:2;48679:12;48682:9;48679:2;:12;:::i;:::-;48663:13;;;;:28;;;;:::i;:::-;48662:35;;;;:::i;:::-;48661:42;;48701:2;48661:42;:::i;:::-;48644:14;;;:59;48769:2;48753:12;48756:9;48753:2;:12;:::i;:::-;48737:13;;;;:28;;;;:::i;:::-;48736:35;;;;:::i;:::-;48735:42;;48775:2;48735:42;:::i;:::-;48718:11;48730:1;48718:14;;48599:560;48807:7;48818:1;48807:12;48804:355;;;48898:3;48882:12;48885:9;48882:2;:12;:::i;48804:355::-;48931:7;48942:1;48931:12;48928:231;;;49021:3;49004:13;49008:9;49004:3;:13;:::i;48928:231::-;49054:7;49065:1;49054:12;49051:108;;;49144:3;49128:12;49131:9;49128:2;:12;:::i;:::-;49112:13;;:28;;;;:::i;:::-;49111:36;;;;:::i;:::-;49094:53;;49051:108;49178:11;-1:-1:-1;;47917:1280:0;;;;;;:::o;59695:715::-;59751:13;59964:10;59960:53;;-1:-1:-1;;59991:10:0;;;;;;;;;;;;-1:-1:-1;;;59991:10:0;;;;;59695:715::o;59960:53::-;60038:5;60023:12;60079:78;60086:9;;60079:78;;60112:8;;;;:::i;:::-;;-1:-1:-1;60135:10:0;;-1:-1:-1;60143:2:0;60135:10;;:::i;:::-;;;60079:78;;;60167:19;60199:6;60189:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60189:17:0;;60167:39;;60217:154;60224:10;;60217:154;;60251:11;60261:1;60251:11;;:::i;:::-;;-1:-1:-1;60320:10:0;60328:2;60320:5;:10;:::i;:::-;60307:24;;:2;:24;:::i;:::-;60294:39;;60277:6;60284;60277:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;60277:56:0;;;;;;;;-1:-1:-1;60348:11:0;60357:2;60348:11;;:::i;:::-;;;60217:154;;55215:248;55283:4;55299:30;55332:54;55347:16;55355:7;55347;:16::i;:::-;55364:21;;;;:12;:21;;;;;;-1:-1:-1;;;;;55364:21:0;55332:14;:54::i;:::-;55418:15;;-1:-1:-1;;;;;55404:30:0;;;;;;;:13;55418:15;55404:30;;;;;;;55435:15;;;;55404:47;;;;;;;;;;;;;;;;-1:-1:-1;;;55215:248:0:o;49661:661::-;49720:13;49769:7;49753:13;40267:10;:17;;40179:113;49753:13;:23;49745:50;;;;-1:-1:-1;;;49745:50:0;;;;;;;:::i;:::-;49806:9;49819:59;49850:17;49859:7;49850:8;:17::i;:::-;49833:43;;;;;;;;:::i;49819:59::-;49806:73;;49890:19;49944:28;49954:7;49944:28;;;;;;;;;;;;;-1:-1:-1;;;49944:28:0;;;49970:1;49944:9;:28::i;:::-;49919:58;;;;;;;;:::i;:::-;;;;-1:-1:-1;;49919:58:0;;;;;;;;;;-1:-1:-1;49993:5:0;49995:3;49993:1;:5;:::i;:::-;50002:3;49993:12;49989:56;;;50028:5;49661:661;-1:-1:-1;;;49661:661:0:o;49989:56::-;50087:5;50101:29;50111:7;50101:29;;;;;;;;;;;;;-1:-1:-1;;;50101:29:0;;;50128:1;50101:9;:29::i;:::-;50070:65;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50070:65:0;;;;;;;;;;-1:-1:-1;50158:3:0;50150:5;50152:3;50150:1;:5;:::i;:::-;:11;50147:54;;;50184:5;49661:661;-1:-1:-1;;;49661:661:0:o;50147:54::-;50243:5;50257:28;50267:7;50257:28;;;;;;;;;;;;;-1:-1:-1;;;50257:28:0;;;50283:1;50257:9;:28::i;:::-;50226:64;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50226:64:0;;;;;;;;;;49661:661;-1:-1:-1;;;;49661:661:0:o;60876:1607::-;60974:11;;60934:13;;61000:8;60996:23;;-1:-1:-1;;61010:9:0;;;;;;;;;-1:-1:-1;61010:9:0;;;60876:1607;-1:-1:-1;60876:1607:0:o;60996:23::-;61071:18;61109:1;61098:7;:3;61104:1;61098:7;:::i;:::-;61097:13;;;;:::i;:::-;61092:19;;:1;:19;:::i;:::-;61071:40;-1:-1:-1;61169:19:0;61201:15;61071:40;61214:2;61201:15;:::i;:::-;61191:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61191:26:0;;61169:48;;61230:18;61251:5;;;;;;;;;;;;;;;;;61230:26;;61320:1;61313:5;61309:13;61365:2;61357:6;61353:15;61416:1;61384:777;61439:3;61436:1;61433:10;61384:777;;;61494:1;61537:12;;;;;61531:19;61632:4;61620:2;61616:14;;;;;61598:40;;61592:47;61741:2;61737:14;;;61733:25;;61719:40;;61713:47;61870:1;61866:13;;;61862:24;;61848:39;;61842:46;61990:16;;;;61976:31;;61970:38;61668:1;61664:11;;;61762:4;61709:58;;;61700:68;61793:11;;61838:57;;;61829:67;;;;61921:11;;61966:49;;61957:59;62045:3;62041:13;62074:22;;62144:1;62129:17;;;;61487:9;61384:777;;;61388:44;62193:1;62188:3;62184:11;62214:1;62209:84;;;;62312:1;62307:82;;;;62177:212;;62209:84;-1:-1:-1;;;;;62242:17:0;;62235:43;62209:84;;62307:82;-1:-1:-1;;;;;62340:17:0;;62333:41;62177:212;-1:-1:-1;;;62405:26:0;;;62412:6;60876:1607;-1:-1:-1;;;;60876:1607:0:o;32927:321::-;33057:18;33063:2;33067:7;33057:5;:18::i;:::-;33108:54;33139:1;33143:2;33147:7;33156:5;33108:22;:54::i;:::-;33086:154;;;;-1:-1:-1;;;33086:154:0;;;;;;;:::i;41215:589::-;-1:-1:-1;;;;;41421:18:0;;41417:187;;41456:40;41488:7;42631:10;:17;;42604:24;;;;:15;:24;;;;;:44;;;42659:24;;;;;;;;;;;;42527:164;41456:40;41417:187;;;41526:2;-1:-1:-1;;;;;41518:10:0;:4;-1:-1:-1;;;;;41518:10:0;;41514:90;;41545:47;41578:4;41584:7;41545:32;:47::i;:::-;-1:-1:-1;;;;;41618:16:0;;41614:183;;41651:45;41688:7;41651:36;:45::i;41614:183::-;41724:4;-1:-1:-1;;;;;41718:10:0;:2;-1:-1:-1;;;;;41718:10:0;;41714:83;;41745:40;41773:2;41777:7;41745:27;:40::i;59516:171::-;59563:8;59599:2;59588:8;;;;:13;59584:95;;;59617:15;:8;;;;59628:4;59617:15;:::i;:::-;59610:23;;;59516:171;-1:-1:-1;;59516:171:0:o;59584:95::-;59663:15;:8;;;;59674:4;59663:15;:::i;36327:803::-;36482:4;-1:-1:-1;;;;;36503:13:0;;16815:20;16863:8;36499:624;;36539:72;;-1:-1:-1;;;36539:72:0;;-1:-1:-1;;;;;36539:36:0;;;;;:72;;9339:10;;36590:4;;36596:7;;36605:5;;36539:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36539:72:0;;;;;;;;-1:-1:-1;;36539:72:0;;;;;;;;;;;;:::i;:::-;;;36535:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36785:13:0;;36781:272;;36828:60;;-1:-1:-1;;;36828:60:0;;;;;;;:::i;36781:272::-;37003:6;36997:13;36988:6;36984:2;36980:15;36973:38;36535:533;-1:-1:-1;;;;;;36662:55:0;-1:-1:-1;;;36662:55:0;;-1:-1:-1;36655:62:0;;36499:624;-1:-1:-1;37107:4:0;36327:803;;;;;;:::o;47004:151::-;47064:7;47126:5;47132:12;;47109:36;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;47109:36:0;;;;;;;;;47099:47;;47109:36;47099:47;;;;;47004:151;-1:-1:-1;;47004:151:0:o;49205:448::-;49295:13;49344:7;49328:13;40267:10;:17;;40179:113;49328:13;:23;49320:50;;;;-1:-1:-1;;;49320:50:0;;;;;;;:::i;:::-;49381:17;49494:1;49474:10;:17;;;;;:::i;:::-;:21;;;-1:-1:-1;49474:21:0;:::i;:::-;49402:68;49433:17;49442:7;49433:8;:17::i;:::-;49451:4;49456:11;49465:1;49456:8;:11::i;:::-;49416:52;;;;;;;;;;:::i;49402:68::-;:94;;;;:::i;:::-;49381:116;-1:-1:-1;49508:14:0;49542:10;49553:11;49381:116;49563:1;49553:11;:::i;:::-;49542:23;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49542:23:0;;;49566:10;49577:11;:9;49587:1;49577:11;:::i;:::-;:13;;49589:1;49577:13;:::i;:::-;49566:25;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49566:25:0;;;49592:10;49603:11;:9;49613:1;49603:11;:::i;:::-;:13;;49615:1;49603:13;:::i;:::-;49592:25;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;49525:93;;-1:-1:-1;;;;;;4976:15:1;;;49525:93:0;;;4964:28:1;5021:15;;;5008:11;;;5001:36;49592:25:0;;-1:-1:-1;;;49592:25:0;5066:15:1;;;5053:11;;;5046:36;5098:11;;49525:93:0;;;;;;-1:-1:-1;;49525:93:0;;;;;;;49205:448;-1:-1:-1;;;;;;49205:448:0:o;33584:382::-;-1:-1:-1;;;;;33664:16:0;;33656:61;;;;-1:-1:-1;;;33656:61:0;;24464:2:1;33656:61:0;;;24446:21:1;;;24483:18;;;24476:30;24542:34;24522:18;;;24515:62;24594:18;;33656:61:0;24262:356:1;33656:61:0;31676:4;31700:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31700:16:0;:30;33728:58;;;;-1:-1:-1;;;33728:58:0;;20594:2:1;33728:58:0;;;20576:21:1;20633:2;20613:18;;;20606:30;20672;20652:18;;;20645:58;20720:18;;33728:58:0;20392:352:1;33728:58:0;33799:45;33828:1;33832:2;33836:7;33799:20;:45::i;:::-;-1:-1:-1;;;;;33857:13:0;;;;;;:9;:13;;;;;:18;;33874:1;;33857:13;:18;;33874:1;;33857:18;:::i;:::-;;;;-1:-1:-1;;33886:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33886:21:0;-1:-1:-1;;;;;33886:21:0;;;;;;;;33925:33;;33886:16;;;33925:33;;33886:16;;33925:33;33584:382;;:::o;43318:988::-;43584:22;43634:1;43609:22;43626:4;43609:16;:22::i;:::-;:26;;;;:::i;:::-;43646:18;43667:26;;;:17;:26;;;;;;43584:51;;-1:-1:-1;43800:28:0;;;43796:328;;-1:-1:-1;;;;;43867:18:0;;43845:19;43867:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43918:30;;;;;;:44;;;44035:30;;:17;:30;;;;;:43;;;43796:328;-1:-1:-1;44220:26:0;;;;:17;:26;;;;;;;;44213:33;;;-1:-1:-1;;;;;44264:18:0;;;;;:12;:18;;;;;:34;;;;;;;44257:41;43318:988::o;44601:1079::-;44879:10;:17;44854:22;;44879:21;;44899:1;;44879:21;:::i;:::-;44911:18;44932:24;;;:15;:24;;;;;;45305:10;:26;;44854:46;;-1:-1:-1;44932:24:0;;44854:46;;45305:26;;;;;;:::i;:::-;;;;;;;;;45283:48;;45369:11;45344:10;45355;45344:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45449:28;;;:15;:28;;;;;;;:41;;;45621:24;;;;;45614:31;45656:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44672:1008;;;44601:1079;:::o;42105:221::-;42190:14;42207:20;42224:2;42207:16;:20::i;:::-;-1:-1:-1;;;;;42238:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42283:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42105:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:186;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:184::-;4113:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:52;;;4182:1;4179;4172:12;4134:52;-1:-1:-1;4205:16:1;;4043:184;-1:-1:-1;4043:184:1:o;4232:254::-;4300:6;4308;4361:2;4349:9;4340:7;4336:23;4332:32;4329:52;;;4377:1;4374;4367:12;4329:52;4413:9;4400:23;4390:33;;4442:38;4476:2;4465:9;4461:18;4442:38;:::i;4491:257::-;4532:3;4570:5;4564:12;4597:6;4592:3;4585:19;4613:63;4669:6;4662:4;4657:3;4653:14;4646:4;4639:5;4635:16;4613:63;:::i;:::-;4730:2;4709:15;-1:-1:-1;;4705:29:1;4696:39;;;;4737:4;4692:50;;4491:257;-1:-1:-1;;4491:257:1:o;5120:974::-;5292:3;5321:1;5354:6;5348:13;5384:36;5410:9;5384:36;:::i;:::-;5439:1;5456:18;;;5483:104;;;;5601:1;5596:356;;;;5449:503;;5483:104;-1:-1:-1;;5516:24:1;;5504:37;;5561:16;;;;-1:-1:-1;5483:104:1;;5596:356;5627:6;5624:1;5617:17;5657:4;5702:2;5699:1;5689:16;5727:1;5741:165;5755:6;5752:1;5749:13;5741:165;;;5833:14;;5820:11;;;5813:35;5876:16;;;;5770:10;;5741:165;;;5745:3;;;5935:6;5930:3;5926:16;5919:23;;5449:503;;;;;5983:6;5977:13;5999:55;6045:8;6040:3;6033:4;6025:6;6021:17;5999:55;:::i;:::-;6070:18;;5120:974;-1:-1:-1;;;;5120:974:1:o;6099:276::-;6230:3;6268:6;6262:13;6284:53;6330:6;6325:3;6318:4;6310:6;6306:17;6284:53;:::i;:::-;6353:16;;;;;6099:276;-1:-1:-1;;6099:276:1:o;6380:664::-;6607:3;6645:6;6639:13;6661:53;6707:6;6702:3;6695:4;6687:6;6683:17;6661:53;:::i;:::-;6777:13;;6736:16;;;;6799:57;6777:13;6736:16;6833:4;6821:17;;6799:57;:::i;:::-;6923:13;;6878:20;;;6945:57;6923:13;6878:20;6979:4;6967:17;;6945:57;:::i;:::-;7018:20;;6380:664;-1:-1:-1;;;;;6380:664:1:o;7049:1776::-;7564:3;7602:6;7596:13;7618:53;7664:6;7659:3;7652:4;7644:6;7640:17;7618:53;:::i;:::-;7702:6;7696:13;7718:68;7777:8;7768:6;7763:3;7759:16;7752:4;7744:6;7740:17;7718:68;:::i;:::-;7864:13;;7812:16;;;7808:31;;7886:57;7864:13;7808:31;7920:4;7908:17;;7886:57;:::i;:::-;7974:6;7968:13;7990:72;8053:8;8042;8035:5;8031:20;8024:4;8016:6;8012:17;7990:72;:::i;:::-;8144:13;;8088:20;;;;8084:35;;8166:57;8144:13;8084:35;8200:4;8188:17;;8166:57;:::i;:::-;8254:6;8248:13;8270:72;8333:8;8322;8315:5;8311:20;8304:4;8296:6;8292:17;8270:72;:::i;:::-;8424:13;;8368:20;;;;8364:35;;8446:57;8424:13;8364:35;8480:4;8468:17;;8446:57;:::i;:::-;8570:13;;8525:20;;;8592:57;8570:13;8525:20;8626:4;8614:17;;8592:57;:::i;:::-;8680:6;8674:13;8696:72;8759:8;8748;8741:5;8737:20;8730:4;8722:6;8718:17;8696:72;:::i;:::-;8788:20;;8784:35;;7049:1776;-1:-1:-1;;;;;;;;;;;7049:1776:1:o;8830:439::-;9062:3;9100:6;9094:13;9116:53;9162:6;9157:3;9150:4;9142:6;9138:17;9116:53;:::i;:::-;-1:-1:-1;;;9191:16:1;;9216:18;;;-1:-1:-1;9261:1:1;9250:13;;8830:439;-1:-1:-1;8830:439:1:o;9274:::-;9506:3;9544:6;9538:13;9560:53;9606:6;9601:3;9594:4;9586:6;9582:17;9560:53;:::i;:::-;-1:-1:-1;;;9635:16:1;;9660:18;;;-1:-1:-1;9705:1:1;9694:13;;9274:439;-1:-1:-1;9274:439:1:o;9718:443::-;9950:3;9988:6;9982:13;10004:53;10050:6;10045:3;10038:4;10030:6;10026:17;10004:53;:::i;:::-;-1:-1:-1;;;10079:16:1;;10104:22;;;-1:-1:-1;10153:1:1;10142:13;;9718:443;-1:-1:-1;9718:443:1:o;10166:439::-;10398:3;10436:6;10430:13;10452:53;10498:6;10493:3;10486:4;10478:6;10474:17;10452:53;:::i;:::-;-1:-1:-1;;;10527:16:1;;10552:18;;;-1:-1:-1;10597:1:1;10586:13;;10166:439;-1:-1:-1;10166:439:1:o;10610:772::-;10991:3;11029:6;11023:13;11045:53;11091:6;11086:3;11079:4;11071:6;11067:17;11045:53;:::i;:::-;-1:-1:-1;;;11120:16:1;;;11145:22;;;11192:13;;11214:65;11192:13;11266:1;11255:13;;11248:4;11236:17;;11214:65;:::i;:::-;-1:-1:-1;;;11342:1:1;11298:20;;;;11334:10;;;11327:23;11374:1;11366:10;;10610:772;-1:-1:-1;;;;10610:772:1:o;11387:372::-;11546:3;11584:6;11578:13;11600:53;11646:6;11641:3;11634:4;11626:6;11622:17;11600:53;:::i;:::-;11675:16;;;;11700:21;;;-1:-1:-1;11748:4:1;11737:16;;11387:372;-1:-1:-1;11387:372:1:o;11764:813::-;11892:3;11921:1;11954:6;11948:13;11984:36;12010:9;11984:36;:::i;:::-;12039:1;12056:18;;;12083:104;;;;12201:1;12196:356;;;;12049:503;;12083:104;-1:-1:-1;;12116:24:1;;12104:37;;12161:16;;;;-1:-1:-1;12083:104:1;;12196:356;12227:6;12224:1;12217:17;12257:4;12302:2;12299:1;12289:16;12327:1;12341:165;12355:6;12352:1;12349:13;12341:165;;;12433:14;;12420:11;;;12413:35;12476:16;;;;12370:10;;12341:165;;;12345:3;;;12535:6;12530:3;12526:16;12519:23;;12049:503;-1:-1:-1;12568:3:1;;11764:813;-1:-1:-1;;;;;;11764:813:1:o;12582:419::-;-1:-1:-1;;;12839:3:1;12832:17;12814:3;12878:6;12872:13;12894:61;12948:6;12944:1;12939:3;12935:11;12928:4;12920:6;12916:17;12894:61;:::i;:::-;12975:16;;;;12993:1;12971:24;;12582:419;-1:-1:-1;;12582:419:1:o;13006:1472::-;13518:66;13513:3;13506:79;13488:3;13614:6;13608:13;13630:62;13685:6;13680:2;13675:3;13671:12;13664:4;13656:6;13652:17;13630:62;:::i;:::-;13756:66;13751:2;13711:16;;;13743:11;;;13736:87;13852:66;13847:2;13839:11;;13832:87;13948:34;13943:2;13935:11;;13928:55;14013:34;14007:3;13999:12;;13992:56;14078:34;14072:3;14064:12;;14057:56;14143:66;14137:3;14129:12;;14122:88;-1:-1:-1;;;14234:3:1;14226:12;;14219:33;14277:13;;14299:64;14277:13;14348:3;14340:12;;14333:4;14321:17;;14299:64;:::i;:::-;-1:-1:-1;;;14423:3:1;14382:17;;;;14415:12;;;14408:36;14468:3;14460:12;;13006:1472;-1:-1:-1;;;;13006:1472:1:o;14483:1279::-;-1:-1:-1;;;15139:3:1;15132:19;15114:3;15180:6;15174:13;15196:61;15250:6;15246:1;15241:3;15237:11;15230:4;15222:6;15218:17;15196:61;:::i;:::-;-1:-1:-1;;;15316:1:1;15276:16;;;15308:10;;;15301:23;15349:13;;15371:62;15349:13;15420:1;15412:10;;15405:4;15393:17;;15371:62;:::i;:::-;-1:-1:-1;;;15493:1:1;15452:17;;;;15485:10;;;15478:24;15527:13;;15549:62;15527:13;15598:1;15590:10;;15583:4;15571:17;;15549:62;:::i;:::-;-1:-1:-1;;;15671:1:1;15630:17;;;;15663:10;;;15656:73;15753:2;15745:11;;14483:1279;-1:-1:-1;;;;;14483:1279:1:o;15767:448::-;16029:31;16024:3;16017:44;15999:3;16090:6;16084:13;16106:62;16161:6;16156:2;16151:3;16147:12;16140:4;16132:6;16128:17;16106:62;:::i;:::-;16188:16;;;;16206:2;16184:25;;15767:448;-1:-1:-1;;15767:448:1:o;16431:576::-;-1:-1:-1;;;16789:3:1;16782:20;16764:3;16831:6;16825:13;16847:61;16901:6;16897:1;16892:3;16888:11;16881:4;16873:6;16869:17;16847:61;:::i;:::-;-1:-1:-1;;;16967:1:1;16927:16;;;;16959:10;;;16952:23;-1:-1:-1;16999:1:1;16991:10;;16431:576;-1:-1:-1;16431:576:1:o;17548:488::-;-1:-1:-1;;;;;17817:15:1;;;17799:34;;17869:15;;17864:2;17849:18;;17842:43;17916:2;17901:18;;17894:34;;;17964:3;17959:2;17944:18;;17937:31;;;17742:4;;17985:45;;18010:19;;18002:6;17985:45;:::i;:::-;17977:53;17548:488;-1:-1:-1;;;;;;17548:488:1:o;18233:219::-;18382:2;18371:9;18364:21;18345:4;18402:44;18442:2;18431:9;18427:18;18419:6;18402:44;:::i;19226:414::-;19428:2;19410:21;;;19467:2;19447:18;;;19440:30;19506:34;19501:2;19486:18;;19479:62;-1:-1:-1;;;19572:2:1;19557:18;;19550:48;19630:3;19615:19;;19226:414::o;23918:339::-;24120:2;24102:21;;;24159:2;24139:18;;;24132:30;-1:-1:-1;;;24193:2:1;24178:18;;24171:45;24248:2;24233:18;;23918:339::o;24975:338::-;25177:2;25159:21;;;25216:2;25196:18;;;25189:30;-1:-1:-1;;;25250:2:1;25235:18;;25228:44;25304:2;25289:18;;24975:338::o;26083:356::-;26285:2;26267:21;;;26304:18;;;26297:30;26363:34;26358:2;26343:18;;26336:62;26430:2;26415:18;;26083:356::o;28520:413::-;28722:2;28704:21;;;28761:2;28741:18;;;28734:30;28800:34;28795:2;28780:18;;28773:62;-1:-1:-1;;;28866:2:1;28851:18;;28844:47;28923:3;28908:19;;28520:413::o;29351:339::-;29553:2;29535:21;;;29592:2;29572:18;;;29565:30;-1:-1:-1;;;29626:2:1;29611:18;;29604:45;29681:2;29666:18;;29351:339::o;31357:128::-;31397:3;31428:1;31424:6;31421:1;31418:13;31415:39;;;31434:18;;:::i;:::-;-1:-1:-1;31470:9:1;;31357:128::o;31490:204::-;31528:3;31564:4;31561:1;31557:12;31596:4;31593:1;31589:12;31631:3;31625:4;31621:14;31616:3;31613:23;31610:49;;;31639:18;;:::i;:::-;31675:13;;31490:204;-1:-1:-1;;;31490:204:1:o;31699:120::-;31739:1;31765;31755:35;;31770:18;;:::i;:::-;-1:-1:-1;31804:9:1;;31699:120::o;31824:165::-;31862:1;31896:4;31893:1;31889:12;31920:3;31910:37;;31927:18;;:::i;:::-;31979:3;31972:4;31969:1;31965:12;31961:22;31956:27;;;31824:165;;;;:::o;31994:422::-;32083:1;32126:5;32083:1;32140:270;32161:7;32151:8;32148:21;32140:270;;;32220:4;32216:1;32212:6;32208:17;32202:4;32199:27;32196:53;;;32229:18;;:::i;:::-;32279:7;32269:8;32265:22;32262:55;;;32299:16;;;;32262:55;32378:22;;;;32338:15;;;;32140:270;;;32144:3;31994:422;;;;;:::o;32421:131::-;32481:5;32510:36;32537:8;32531:4;32606:5;32636:8;32626:80;;-1:-1:-1;32677:1:1;32691:5;;32626:80;32725:4;32715:76;;-1:-1:-1;32762:1:1;32776:5;;32715:76;32807:4;32825:1;32820:59;;;;32893:1;32888:130;;;;32800:218;;32820:59;32850:1;32841:10;;32864:5;;;32888:130;32925:3;32915:8;32912:17;32909:43;;;32932:18;;:::i;:::-;-1:-1:-1;;32988:1:1;32974:16;;33003:5;;32800:218;;33102:2;33092:8;33089:16;33083:3;33077:4;33074:13;33070:36;33064:2;33054:8;33051:16;33046:2;33040:4;33037:12;33033:35;33030:77;33027:159;;;-1:-1:-1;33139:19:1;;;33171:5;;33027:159;33218:34;33243:8;33237:4;33218:34;:::i;:::-;33288:6;33284:1;33280:6;33276:19;33267:7;33264:32;33261:58;;;33299:18;;:::i;:::-;33337:20;;32557:806;-1:-1:-1;;;32557:806:1:o;33368:168::-;33408:7;33474:1;33470;33466:6;33462:14;33459:1;33456:21;33451:1;33444:9;33437:17;33433:45;33430:71;;;33481:18;;:::i;:::-;-1:-1:-1;33521:9:1;;33368:168::o;33541:238::-;33579:7;33619:4;33616:1;33612:12;33651:4;33648:1;33644:12;33711:3;33705:4;33701:14;33696:3;33693:23;33686:3;33679:11;33672:19;33668:49;33665:75;;;33720:18;;:::i;33784:125::-;33824:4;33852:1;33849;33846:8;33843:34;;;33857:18;;:::i;:::-;-1:-1:-1;33894:9:1;;33784:125::o;33914:195::-;33952:4;33989;33986:1;33982:12;34021:4;34018:1;34014:12;34046:3;34041;34038:12;34035:38;;;34053:18;;:::i;:::-;34090:13;;;33914:195;-1:-1:-1;;;33914:195:1:o;34114:258::-;34186:1;34196:113;34210:6;34207:1;34204:13;34196:113;;;34286:11;;;34280:18;34267:11;;;34260:39;34232:2;34225:10;34196:113;;;34327:6;34324:1;34321:13;34318:48;;;-1:-1:-1;;34362:1:1;34344:16;;34337:27;34114:258::o;34377:380::-;34456:1;34452:12;;;;34499;;;34520:61;;34574:4;34566:6;34562:17;34552:27;;34520:61;34627:2;34619:6;34616:14;34596:18;34593:38;34590:161;;;34673:10;34668:3;34664:20;34661:1;34654:31;34708:4;34705:1;34698:15;34736:4;34733:1;34726:15;34590:161;;34377:380;;;:::o;34762:135::-;34801:3;-1:-1:-1;;34822:17:1;;34819:43;;;34842:18;;:::i;:::-;-1:-1:-1;34889:1:1;34878:13;;34762:135::o;34902:112::-;34934:1;34960;34950:35;;34965:18;;:::i;:::-;-1:-1:-1;34999:9:1;;34902:112::o;35019:127::-;35080:10;35075:3;35071:20;35068:1;35061:31;35111:4;35108:1;35101:15;35135:4;35132:1;35125:15;35151:127;35212:10;35207:3;35203:20;35200:1;35193:31;35243:4;35240:1;35233:15;35267:4;35264:1;35257:15;35283:127;35344:10;35339:3;35335:20;35332:1;35325:31;35375:4;35372:1;35365:15;35399:4;35396:1;35389:15;35415:127;35476:10;35471:3;35467:20;35464:1;35457:31;35507:4;35504:1;35497:15;35531:4;35528:1;35521:15;35547:127;35608:10;35603:3;35599:20;35596:1;35589:31;35639:4;35636:1;35629:15;35663:4;35660:1;35653:15;35679:131;-1:-1:-1;;;;;;35753:32:1;;35743:43;;35733:71;;35800:1;35797;35790:12

Swarm Source

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