ETH Price: $2,392.65 (+2.61%)

Token

CryptoGhost (GHOST)
 

Overview

Max Total Supply

32 GHOST

Holders

27

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cryptographics fractals that sometime look like something. The very first NFT to generate bitmaps directly from the smartcontract. Search the perfect one on [cryptoghost.art](https://cryptoghost.art) then mint it

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoGhost

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-20
*/

// File: openzeppelin-solidity/contracts/GSN/Context.sol

pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN 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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor() internal {}

    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: openzeppelin-solidity/contracts/introspection/IERC165.sol

pragma solidity ^0.5.0;

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

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.5.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
contract IERC721 is IERC165 {
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

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

    /**
     * @dev Returns the owner of the NFT specified by `tokenId`.
     */
    function ownerOf(uint256 tokenId) public view returns (address owner);

    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     *
     *
     * Requirements:
     * - `from`, `to` cannot be zero.
     * - `tokenId` must be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this
     * NFT by either {approve} or {setApprovalForAll}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public;

    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * Requirements:
     * - If the caller is not `from`, it must be approved to move this NFT by
     * either {approve} or {setApprovalForAll}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public;

    function approve(address to, uint256 tokenId) public;

    function getApproved(uint256 tokenId)
        public
        view
        returns (address operator);

    function setApprovalForAll(address operator, bool _approved) public;

    function isApprovedForAll(address owner, address operator)
        public
        view
        returns (bool);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public;
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.5.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract IERC721Receiver {
    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a {IERC721-safeTransferFrom}. This function MUST return the function selector,
     * otherwise the caller will revert the transaction. The selector to be
     * returned can be obtained as `this.onERC721Received.selector`. This
     * function MAY throw to revert and reject the transfer.
     * Note: the ERC721 contract address is always the message sender.
     * @param operator The address which called `safeTransferFrom` function
     * @param from The address which previously owned the token
     * @param tokenId The NFT identifier which is being transferred
     * @param data Additional data with no specified format
     * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes memory data
    ) public returns (bytes4);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/utils/Address.sol

pragma solidity ^0.5.5;

/**
 * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash =
            0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account)
        internal
        pure
        returns (address payable)
    {
        return address(uint160(account));
    }

    /**
     * @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].
     *
     * _Available since v2.4.0._
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-call-value
        (bool success, ) = recipient.call.value(amount)("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }
}

// File: openzeppelin-solidity/contracts/drafts/Counters.sol

pragma solidity ^0.5.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

    function increment(Counter storage counter) internal {
        // The {SafeMath} overflow check can be skipped here, see the comment at the top
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

// File: openzeppelin-solidity/contracts/introspection/ERC165.sol

pragma solidity ^0.5.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor() internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId)
        external
        view
        returns (bool)
    {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.5.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721 {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

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

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

    // Mapping from owner to number of owned token
    mapping(address => Counters.Counter) private _ownedTokensCount;

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

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    constructor() public {
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner address to query the balance of
     * @return uint256 representing the amount owned by the passed address
     */
    function balanceOf(address owner) public view returns (uint256) {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );

        return _ownedTokensCount[owner].current();
    }

    /**
     * @dev Gets the owner of the specified token ID.
     * @param tokenId uint256 ID of the token to query the owner of
     * @return address currently marked as the owner of the given token ID
     */
    function ownerOf(uint256 tokenId) public view returns (address) {
        address owner = _tokenOwner[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );

        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = 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"
        );

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Gets the approved address for a token ID, or zero if no address set
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to query the approval of
     * @return address currently approved for the given token ID
     */
    function getApproved(uint256 tokenId) public view returns (address) {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Sets or unsets the approval of a given operator
     * An operator is allowed to transfer all tokens of the sender on their behalf.
     * @param to operator address to set the approval
     * @param approved representing the status of the approval to be set
     */
    function setApprovalForAll(address to, bool approved) public {
        require(to != _msgSender(), "ERC721: approve to caller");

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

    /**
     * @dev Tells whether an operator is approved by a given owner.
     * @param owner owner address which you want to query the approval of
     * @param operator operator address which you want to query the approval of
     * @return bool whether the given operator is approved by the given owner
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Transfers the ownership of a given token ID to another address.
     * Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     * Requires the msg.sender to be the owner, approved, or operator.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transferFrom(from, to, tokenId);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received},
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received},
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the _msgSender() to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal {
        _transferFrom(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether the specified token exists.
     * @param tokenId uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        address owner = _tokenOwner[tokenId];
        return owner != address(0);
    }

    /**
     * @dev Returns whether the given spender can transfer a given token ID.
     * @param spender address of the spender to query
     * @param tokenId uint256 ID of the token to be transferred
     * @return bool whether the msg.sender is approved for the given token ID,
     * is an operator of the owner, or is the owner of the token
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Internal function to safely mint a new token.
     * Reverts if the given token ID already exists.
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _safeMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Internal function to safely mint a new token.
     * Reverts if the given token ID already exists.
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     * @param _data bytes data to send along with a safe transfer check
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _tokenOwner[tokenId] = to;
        _ownedTokensCount[to].increment();

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

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use {_burn} instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        require(
            ownerOf(tokenId) == owner,
            "ERC721: burn of token that is not own"
        );

        _clearApproval(tokenId);

        _ownedTokensCount[owner].decrement();
        _tokenOwner[tokenId] = address(0);

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

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(uint256 tokenId) internal {
        _burn(ownerOf(tokenId), tokenId);
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) internal {
        require(
            ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _clearApproval(tokenId);

        _ownedTokensCount[from].decrement();
        _ownedTokensCount[to].increment();

        _tokenOwner[tokenId] = to;

        emit Transfer(from, 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.
     *
     * This is an internal detail of the `ERC721` contract and its use is deprecated.
     * @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
    ) internal returns (bool) {
        if (!to.isContract()) {
            return true;
        }
        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) =
            to.call(
                abi.encodeWithSelector(
                    IERC721Receiver(to).onERC721Received.selector,
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            );
        if (!success) {
            if (returndata.length > 0) {
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert("ERC721: transfer to non ERC721Receiver implementer");
            }
        } else {
            bytes4 retval = abi.decode(returndata, (bytes4));
            return (retval == _ERC721_RECEIVED);
        }
    }

    /**
     * @dev Private function to clear current approval of a given token ID.
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _clearApproval(uint256 tokenId) private {
        if (_tokenApprovals[tokenId] != address(0)) {
            _tokenApprovals[tokenId] = address(0);
        }
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Enumerable.sol

pragma solidity ^0.5.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Enumerable is IERC721 {
    function totalSupply() public view returns (uint256);

    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        returns (uint256 tokenId);

    function tokenByIndex(uint256 index) public view returns (uint256);
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Enumerable.sol

pragma solidity ^0.5.0;

/**
 * @title ERC-721 Non-Fungible Token with optional enumeration extension logic
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Enumerable is Context, ERC165, ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => 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;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Constructor function.
     */
    constructor() public {
        // register the supported interface to conform to ERC721Enumerable via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev Gets the token ID at a given index of the tokens list of the requested owner.
     * @param owner address owning the tokens list to be accessed
     * @param index uint256 representing the index to be accessed of the requested tokens list
     * @return uint256 token ID at the given index of the tokens list owned by the requested address
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        returns (uint256)
    {
        require(
            index < balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev Gets the total amount of tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev Gets the token ID at a given index of all the tokens in this contract
     * Reverts if the index is greater or equal to the total number of tokens.
     * @param index uint256 representing the index to be accessed of the tokens list
     * @return uint256 token ID at the given index of the tokens list
     */
    function tokenByIndex(uint256 index) public view returns (uint256) {
        require(
            index < totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) internal {
        super._transferFrom(from, to, tokenId);

        _removeTokenFromOwnerEnumeration(from, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to address the beneficiary that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        super._mint(to, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);

        _addTokenToAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use {ERC721-_burn} instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        _removeTokenFromOwnerEnumeration(owner, tokenId);
        // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund
        _ownedTokensIndex[tokenId] = 0;

        _removeTokenFromAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Gets the list of token IDs of the requested owner.
     * @param owner address owning the tokens
     * @return uint256[] List of token IDs owned by the requested address
     */
    function _tokensOfOwner(address owner)
        internal
        view
        returns (uint256[] storage)
    {
        return _ownedTokens[owner];
    }

    /**
     * @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 {
        _ownedTokensIndex[tokenId] = _ownedTokens[to].length;
        _ownedTokens[to].push(tokenId);
    }

    /**
     * @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 = _ownedTokens[from].length.sub(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
        _ownedTokens[from].length--;

        // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by
        // lastTokenId, or just over the end of the array if the token was the last one).
    }

    /**
     * @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.sub(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
        _allTokens.length--;
        _allTokensIndex[tokenId] = 0;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Metadata.sol

pragma solidity ^0.5.0;

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

    function symbol() external view returns (string memory);

    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Metadata.sol

pragma solidity ^0.5.0;

contract ERC721Metadata is Context, ERC165, ERC721, IERC721Metadata {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Base URI
    string private _baseURI;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /**
     * @dev Constructor function
     */
    constructor(string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

    /**
     * @dev Gets the token name.
     * @return string representing the token name
     */
    function name() external view returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the token symbol.
     * @return string representing the token symbol
     */
    function symbol() external view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the URI for a given token ID. May return an empty string.
     *
     * If the token's URI is non-empty and a base URI was set (via
     * {_setBaseURI}), it will be added to the token ID's URI as a prefix.
     *
     * Reverts if the token ID does not exist.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory _tokenURI = _tokenURIs[tokenId];

        // Even if there is a base URI, it is only appended to non-empty token-specific URIs
        if (bytes(_tokenURI).length == 0) {
            return "";
        } else {
            // abi.encodePacked is being used to concatenate strings
            return string(abi.encodePacked(_baseURI, _tokenURI));
        }
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     *
     * Reverts if the token ID does not exist.
     *
     * TIP: if all token IDs share a prefix (e.g. if your URIs look like
     * `http://api.myproject.com/token/<id>`), use {_setBaseURI} to store
     * it and save gas.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI}.
     *
     * _Available since v2.5.0._
     */
    function _setBaseURI(string memory baseURI) internal {
        _baseURI = baseURI;
    }

    /**
     * @dev Returns the base URI set via {_setBaseURI}. This will be
     * automatically added as a preffix in {tokenURI} to each token's URI, when
     * they are non-empty.
     *
     * _Available since v2.5.0._
     */
    function baseURI() external view returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned by the msg.sender
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Full.sol

pragma solidity ^0.5.0;

/**
 * @title Full ERC721 Token
 * @dev This implementation includes all the required and some optional functionality of the ERC721 standard
 * Moreover, it includes approve all functionality using operator terminology.
 *
 * See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata {
    constructor(string memory name, string memory symbol)
        public
        ERC721Metadata(name, symbol)
    {
        // solhint-disable-previous-line no-empty-blocks
    }
}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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.
 */
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() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/Strings.sol

pragma solidity ^0.5.0;

library Strings {
    // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol
    function strConcat(
        string memory _a,
        string memory _b,
        string memory _c,
        string memory _d,
        string memory _e
    ) internal pure returns (string memory) {
        bytes memory _ba = bytes(_a);
        bytes memory _bb = bytes(_b);
        bytes memory _bc = bytes(_c);
        bytes memory _bd = bytes(_d);
        bytes memory _be = bytes(_e);
        string memory abcde =
            new string(
                _ba.length + _bb.length + _bc.length + _bd.length + _be.length
            );
        bytes memory babcde = bytes(abcde);
        uint256 k = 0;
        for (uint256 i = 0; i < _ba.length; i++) babcde[k++] = _ba[i];
        for (uint256 i = 0; i < _bb.length; i++) babcde[k++] = _bb[i];
        for (uint256 i = 0; i < _bc.length; i++) babcde[k++] = _bc[i];
        for (uint256 i = 0; i < _bd.length; i++) babcde[k++] = _bd[i];
        for (uint256 i = 0; i < _be.length; i++) babcde[k++] = _be[i];
        return string(babcde);
    }

    function strConcat(
        string memory _a,
        string memory _b,
        string memory _c,
        string memory _d
    ) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, _d, "");
    }

    function strConcat(
        string memory _a,
        string memory _b,
        string memory _c
    ) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, "", "");
    }

    function strConcat(string memory _a, string memory _b)
        internal
        pure
        returns (string memory)
    {
        return strConcat(_a, _b, "", "", "");
    }

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

// File: contracts/ERC721Tradable.sol

pragma solidity ^0.5.0;

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
contract ERC721Tradable is ERC721Full, Ownable {
    using Strings for string;

    address proxyRegistryAddress;
    uint256 private _currentTokenId = 0;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) public ERC721Full(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    // /**
    //  * @dev Mints a token to an address with a tokenURI.
    //  * @param _to address of the future owner of the token
    //  */
    // function mintTo(address _to) public onlyOwner {
    //     uint256 newTokenId = _getNextTokenId();
    //     _mint(_to, newTokenId);
    //     _incrementTokenId();
    // }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    /**
     * @dev increments the value of _currentTokenId
     */
    function _incrementTokenId() private {
        _currentTokenId++;
    }

    function baseTokenURI() public pure returns (string memory) {
        return "";
    }

    function tokenURI(uint256 _tokenId) external view returns (string memory) {
        return Strings.strConcat(baseTokenURI(), Strings.uint2str(_tokenId));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }
}

library BytesUtils {
    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 bytes32string(bytes32 b32)
        internal
        pure
        returns (string memory out)
    {
        bytes memory s = new bytes(64);
        for (uint32 i = 0; i < 32; i++) {
            bytes1 b = bytes1(b32[i]);
            bytes1 hi = bytes1(uint8(b) / 16);
            bytes1 lo = bytes1(uint8(b) - 16 * uint8(hi));
            s[i * 2] = char(hi);
            s[i * 2 + 1] = char(lo);
        }
        out = string(s);
    }

    function hach(string memory value) internal pure returns (string memory) {
        return bytes32string(sha256(abi.encodePacked(value)));
    }

    function MergeBytes(bytes memory a, bytes memory b)
        internal
        pure
        returns (bytes memory c)
    {
        // Store the length of the first array
        uint256 alen = a.length;
        // Store the length of BOTH arrays
        uint256 totallen = alen + b.length;
        // Count the loops required for array a (sets of 32 bytes)
        uint256 loopsa = (a.length + 31) / 32;
        // Count the loops required for array b (sets of 32 bytes)
        uint256 loopsb = (b.length + 31) / 32;
        assembly {
            let m := mload(0x40)
            // Load the length of both arrays to the head of the new bytes array
            mstore(m, totallen)
            // Add the contents of a to the array
            for {
                let i := 0
            } lt(i, loopsa) {
                i := add(1, i)
            } {
                mstore(
                    add(m, mul(32, add(1, i))),
                    mload(add(a, mul(32, add(1, i))))
                )
            }
            // Add the contents of b to the array
            for {
                let i := 0
            } lt(i, loopsb) {
                i := add(1, i)
            } {
                mstore(
                    add(m, add(mul(32, add(1, i)), alen)),
                    mload(add(b, mul(32, add(1, i))))
                )
            }
            mstore(0x40, add(m, add(32, totallen)))
            c := m
        }
    }
}

// File: contracts/Creature.sol

pragma solidity ^0.5.0;

/**
 * @title CryptoGhost
 */
contract CryptoGhost is ERC721Tradable {
    uint256 currentMintId = 0;
    
    mapping(uint256 => string) private idToGhostKey;
    mapping(string => uint256) private ghostKeyToTokenId;
    mapping(string => bool) private ghostKeyToIsGhostKeyReserved;
    mapping(uint256 => string) private idToGhostName;

    constructor(address _proxyRegistryAddress)
        public
        ERC721Tradable("CryptoGhost", "GHOST", _proxyRegistryAddress)
    {}

    function getGhostKey(uint256 tokenId) public view returns (string memory) {
        require(tokenId < totalSupply(), "Token does not exist");
        string memory ghostKey = idToGhostKey[tokenId];
        return ghostKey;
    }

    function getGhostName(uint256 tokenId) public view returns (string memory) {
        return idToGhostName[tokenId];
    }

    function getTokenIdFromGhostKey(string memory ghostKey)
        public
        view
        returns (uint256)
    {
        require(ghostKeyToIsGhostKeyReserved[ghostKey]);
        return ghostKeyToTokenId[ghostKey];
    }

    function checkGhostKey(string memory str) public pure returns (bool) {
        bytes memory b = bytes(str);
        if (b.length > 25) return false;
        if (b.length == 0) return false;

        for (uint256 i; i < b.length; i++) {
            bytes1 char = b[i];
            if (
                !(char >= 0x30 && char <= 0x39) && //9-0
                !(char >= 0x41 && char <= 0x5A) && //A-Z
                !(char >= 0x61 && char <= 0x7A) //a-z
            ) return false;
        }
        return true;
    }

    function checkGhostName(string memory str) public pure returns (bool) {
        bytes memory b = bytes(str);
        if (b.length > 30) return false;
        if (b.length == 0) return false;

        for (uint256 i; i < b.length; i++) {
            bytes1 char = b[i];
            if (
                !(char >= 0x30 && char <= 0x39) && //9-0
                !(char >= 0x41 && char <= 0x5A) && //A-Z
                !(char >= 0x61 && char <= 0x7A) && //a-z
                !(char == 0x20) // space
            ) return false;
        }
        return true;
    }

    function claimGhost(string memory ghostKey, string memory ghostName)
        public
        payable
    {
        require(block.timestamp < 1647730800, "Minting is over");
        require(msg.value == 0.2 ether, "Need to send 0.2 ether");
        require(
            checkGhostKey(ghostKey),
            "Ghost Key validation failure"
        );
        require(
            checkGhostName(ghostName),
            "Ghost Name validation failure"
        );
        super._mint(msg.sender, currentMintId);
        idToGhostKey[currentMintId] = ghostKey;
        idToGhostName[currentMintId] = ghostName;
        ghostKeyToTokenId[ghostKey] = currentMintId;
        ghostKeyToIsGhostKeyReserved[ghostKey] = true;
        address payable _owner = address(uint160(owner()));
        _owner.transfer(msg.value);
        currentMintId += 1;
    }

    function baseTokenURI() public pure returns (string memory) {
        return "https://cryptoghost.art/meta/items/";
    }

    function contractURI() public pure returns (string memory) {
        return "https://cryptoghost.art/meta/ghost.json";
    }

    function getBitmapFromghostKey(string memory value)
        public
        view
        returns (bytes memory)
    {
        bytes memory headers =
            hex"424d384400000000000036040000280000008000000080000000010008000000000002400000120b0000120b0000000000000000000000000000000000000100010002010200030103000401030005020400060205000703060008030600090307000a0408000b0409000c0409000d050a000e050b000f060c0010060c0011060d0012070e0013070f0013070f001408100015081100160912001709130018091300190a14001a0a15001b0b16001c0b16001d0b17001e0c18001f0c1900200c1900210d1a00220d1b00230e1c00240e1c00250e1d00260f1e00260f1f00270f1f0028102000291021002a1122002b1122002c1123002d1224002e1225002f132600301326003113270032142800331429003414290035152a0036152b0037162c0038162c0039162d0039172e003a172f003b172f003c1830003d1831003e1932003f19320040193300411a3400421a3500431a3500441b3600451b3700461c3800471c3900481c3900491d3a004a1d3b004b1e3c004c1e3c004c1e3d004d1f3e004e1f3f004f1f3f00502040005120410052214200532142005421430055224400562245005722450058234600592347005a2448005b2448005c2449005d254a005e254b005f264c005f264c0060264d0061274e0062274f0063274f006428500065285100662952006729520068295300692a54006a2a55006b2a55006c2b56006d2b57006e2c58006f2c5800702c5900712d5a00722d5b00722d5b00732e5c00742e5d00752f5e00762f5f00772f5f0078306000793061007a3162007b3162007c3163007d3264007e3265007f326500803366008133670082346800833468008434690085356a0085356b0086356b0087366c0088366d0089376e008a376e008b376f008c3870008d3871008e3972008f39720090397300913a7400923a7500933a7500943b7600953b7700963c7800973c7800983c7900983d7a00993d7b009a3d7b009b3e7c009c3e7d009d3f7e009e3f7e009f3f7f00a0408000a1408100a2408100a3418200a4418300a5428400a6428500a7428500a8438600a9438700aa448800ab448800ab448900ac458a00ad458b00ae458b00af468c00b0468d00b1478e00b2478e00b3478f00b4489000b5489100b6489100b7499200b8499300b94a9400ba4a9400bb4a9500bc4b9600bd4b9700be4c9800be4c9800bf4c9900c04d9a00c14d9b00c24d9b00c34e9c00c44e9d00c54f9e00c64f9e00c74f9f00c850a000c950a100ca50a100cb51a200cc51a300cd52a400ce52a400cf52a500d053a600d153a700d153a700d254a800d354a900d455aa00d555ab00d655ab00d756ac00d856ad00d957ae00da57ae00db57af00dc58b000dd58b100de58b100df59b200e059b300e15ab400e25ab400e35ab500e45bb600e45bb700e55bb700e65cb800e75cb900e85dba00e95dba00ea5dbb00eb5ebc00ec5ebd00ed5fbe00ee5fbe00ef5fbf00f060c000f160c100ffffff00";
        bytes memory pixels = new bytes(16384);

        int256 x = 64;
        int256 y = 64;

        int256 totalIndex = 0;
        int256 colorIndex = 0;
        string memory tmp = value;
        bytes memory cha;

        for (uint256 iFill = 0; iFill < 16384; iFill++) {
            pixels[iFill] = bytes1(uint8(255));
        }

        for (uint256 i = 0; i < 151; i++) {
            tmp = BytesUtils.hach(tmp);
            cha = bytes(tmp);
            for (uint256 iChar = 0; iChar < 64; iChar++) {
                if (uint8(cha[iChar]) == 48 || uint8(cha[iChar]) == 49) {
                    x += 1;
                } else if (uint8(cha[iChar]) == 50 || uint8(cha[iChar]) == 51) {
                    x += -1;
                } else if (uint8(cha[iChar]) == 52 || uint8(cha[iChar]) == 53) {
                    y += 1;
                } else if (uint8(cha[iChar]) == 54 || uint8(cha[iChar]) == 55) {
                    y += -1;
                } else if (uint8(cha[iChar]) == 56 || uint8(cha[iChar]) == 57) {
                    x += 1;
                    y += 1;
                } else if (uint8(cha[iChar]) == 97 || uint8(cha[iChar]) == 98) {
                    x += -1;
                    y += 1;
                } else if (
                    uint8(cha[iChar]) == 99 || uint8(cha[iChar]) == 100
                ) {
                    x += 1;
                    y += -1;
                } else if (
                    uint8(cha[iChar]) == 101 || uint8(cha[iChar]) == 102
                ) {
                    x += -1;
                    y += -1;
                }
                if (y >= 128 || y < 0 || x >= 128 || x < 0) {
                    y = 64;
                    x = 64;
                    totalIndex = 0;
                }

                pixels[uint256(x) + (128 * uint256(127 - y))] = bytes1(
                    uint8(totalIndex / 38)
                );
                totalIndex += 1;
            }
        }
        return BytesUtils.MergeBytes(headers, pixels);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"payable":false,"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"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"checkGhostKey","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"checkGhostName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"ghostKey","type":"string"},{"internalType":"string","name":"ghostName","type":"string"}],"name":"claimGhost","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"value","type":"string"}],"name":"getBitmapFromghostKey","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGhostKey","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGhostName","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"ghostKey","type":"string"}],"name":"getTokenIdFromGhostKey","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526000600f5560006010553480156200001b57600080fd5b506040516200549f3803806200549f833981810160405260208110156200004157600080fd5b81019080805190602001909291905050506040518060400160405280600b81526020017f43727970746f47686f73740000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47484f53540000000000000000000000000000000000000000000000000000008152508282828181620000db6301ffc9a760e01b6200025560201b60201c565b620000f36380ac58cd60e01b6200025560201b60201c565b6200010b63780e9d6360e01b6200025560201b60201c565b81600990805190602001906200012392919062000366565b5080600a90805190602001906200013c92919062000366565b5062000155635b5e139f60e01b6200025560201b60201c565b5050505060006200016b6200035e60201b60201c565b905080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000415565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003a957805160ff1916838001178555620003da565b82800160010185558215620003da579182015b82811115620003d9578251825591602001919060010190620003bc565b5b509050620003e99190620003ed565b5090565b6200041291905b808211156200040e576000816000905550600101620003f4565b5090565b90565b61507a80620004256000396000f3fe6080604052600436106101cd5760003560e01c806387f2057b116100f7578063b7c1b83711610095578063e8a3d48511610064578063e8a3d48514611090578063e985e9c514611120578063efedee01146111a9578063f2fde38b14611289576101cd565b8063b7c1b83714610ce8578063b88d4fde14610e3a578063c87b56dd14610f4c578063d547cfb714611000576101cd565b80638f32d59b116100d15780638f32d59b14610b18578063917f17ce14610b4757806395d89b4114610bfb578063a22cb46514610c8b576101cd565b806387f2057b146108a45780638d3f8012146109e55780638da5cb5b14610ac1576101cd565b806342842e0e1161016f5780636a126f311161013e5780636a126f31146106b85780636c0360eb1461079857806370a0823114610828578063715018a61461088d576101cd565b806342842e0e146104bf57806343a369bd1461053a5780634f6ccce7146105ee5780636352211e1461063d576101cd565b8063095ea7b3116101ab578063095ea7b31461034f57806318160ddd146103aa57806323b872dd146103d55780632f745c5914610450576101cd565b806301ffc9a7146101d257806306fdde0314610244578063081812fc146102d4575b600080fd5b3480156101de57600080fd5b5061022a600480360360208110156101f557600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506112da565b604051808215151515815260200191505060405180910390f35b34801561025057600080fd5b50610259611341565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029957808201518184015260208101905061027e565b50505050905090810190601f1680156102c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e057600080fd5b5061030d600480360360208110156102f757600080fd5b81019080803590602001909291905050506113e3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561035b57600080fd5b506103a86004803603604081101561037257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061147e565b005b3480156103b657600080fd5b506103bf611665565b6040518082815260200191505060405180910390f35b3480156103e157600080fd5b5061044e600480360360608110156103f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611672565b005b34801561045c57600080fd5b506104a96004803603604081101561047357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116e8565b6040518082815260200191505060405180910390f35b3480156104cb57600080fd5b50610538600480360360608110156104e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117a7565b005b34801561054657600080fd5b506105736004803603602081101561055d57600080fd5b81019080803590602001909291905050506117c7565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105b3578082015181840152602081019050610598565b50505050905090810190601f1680156105e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156105fa57600080fd5b506106276004803603602081101561061157600080fd5b81019080803590602001909291905050506118fe565b6040518082815260200191505060405180910390f35b34801561064957600080fd5b506106766004803603602081101561066057600080fd5b810190808035906020019092919050505061197e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106c457600080fd5b5061077e600480360360208110156106db57600080fd5b81019080803590602001906401000000008111156106f857600080fd5b82018360208201111561070a57600080fd5b8035906020019184600183028401116401000000008311171561072c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611a46565b604051808215151515815260200191505060405180910390f35b3480156107a457600080fd5b506107ad611c20565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107ed5780820151818401526020810190506107d2565b50505050905090810190601f16801561081a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561083457600080fd5b506108776004803603602081101561084b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc2565b6040518082815260200191505060405180910390f35b34801561089957600080fd5b506108a2611d97565b005b3480156108b057600080fd5b5061096a600480360360208110156108c757600080fd5b81019080803590602001906401000000008111156108e457600080fd5b8201836020820111156108f657600080fd5b8035906020019184600183028401116401000000008311171561091857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611ed2565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109aa57808201518184015260208101905061098f565b50505050905090810190601f1680156109d75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109f157600080fd5b50610aab60048036036020811015610a0857600080fd5b8101908080359060200190640100000000811115610a2557600080fd5b820183602082011115610a3757600080fd5b80359060200191846001830284011164010000000083111715610a5957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612426565b6040518082815260200191505060405180910390f35b348015610acd57600080fd5b50610ad6612519565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b2457600080fd5b50610b2d612543565b604051808215151515815260200191505060405180910390f35b348015610b5357600080fd5b50610b8060048036036020811015610b6a57600080fd5b81019080803590602001909291905050506125a2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc0578082015181840152602081019050610ba5565b50505050905090810190601f168015610bed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c0757600080fd5b50610c10612657565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c50578082015181840152602081019050610c35565b50505050905090810190601f168015610c7d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c9757600080fd5b50610ce660048036036040811015610cae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506126f9565b005b610e3860048036036040811015610cfe57600080fd5b8101908080359060200190640100000000811115610d1b57600080fd5b820183602082011115610d2d57600080fd5b80359060200191846001830284011164010000000083111715610d4f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610db257600080fd5b820183602082011115610dc457600080fd5b80359060200191846001830284011164010000000083111715610de657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506128b1565b005b348015610e4657600080fd5b50610f4a60048036036080811015610e5d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ec457600080fd5b820183602082011115610ed657600080fd5b80359060200191846001830284011164010000000083111715610ef857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612c58565b005b348015610f5857600080fd5b50610f8560048036036020811015610f6f57600080fd5b8101908080359060200190929190505050612cd0565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fc5578082015181840152602081019050610faa565b50505050905090810190601f168015610ff25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561100c57600080fd5b50611015612cf2565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561105557808201518184015260208101905061103a565b50505050905090810190601f1680156110825780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561109c57600080fd5b506110a5612d12565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156110e55780820151818401526020810190506110ca565b50505050905090810190601f1680156111125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561112c57600080fd5b5061118f6004803603604081101561114357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d32565b604051808215151515815260200191505060405180910390f35b3480156111b557600080fd5b5061126f600480360360208110156111cc57600080fd5b81019080803590602001906401000000008111156111e957600080fd5b8201836020820111156111fb57600080fd5b8035906020019184600183028401116401000000008311171561121d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612e63565b604051808215151515815260200191505060405180910390f35b34801561129557600080fd5b506112d8600480360360208110156112ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061300b565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113d95780601f106113ae576101008083540402835291602001916113d9565b820191906000526020600020905b8154815290600101906020018083116113bc57829003601f168201915b5050505050905090565b60006113ee82613091565b611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614b16602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006114898261197e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614fa16021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661152f613103565b73ffffffffffffffffffffffffffffffffffffffff16148061155e575061155d81611558613103565b612d32565b5b6115b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614a8b6038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600780549050905090565b61168361167d613103565b8261310b565b6116d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614fc26031913960400191505060405180910390fd5b6116e38383836131ff565b505050565b60006116f383611cc2565b821061174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614995602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061179457fe5b9060005260206000200154905092915050565b6117c283838360405180602001604052806000815250612c58565b505050565b60606117d1611665565b8210611845576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f546f6b656e20646f6573206e6f7420657869737400000000000000000000000081525060200191505060405180910390fd5b6060601160008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118ee5780601f106118c3576101008083540402835291602001916118ee565b820191906000526020600020905b8154815290600101906020018083116118d157829003601f168201915b5050505050905080915050919050565b6000611908611665565b821061195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614ff3602c913960400191505060405180910390fd5b6007828154811061196c57fe5b90600052602060002001549050919050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614aed6029913960400191505060405180910390fd5b80915050919050565b60006060829050601e81511115611a61576000915050611c1b565b600081511415611a75576000915050611c1b565b60005b8151811015611c14576000828281518110611a8f57fe5b602001015160f81c60f81b9050603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611af85750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b158015611b5e5750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611b5c5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015611bc35750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611bc15750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015611bf55750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611c065760009350505050611c1b565b508080600101915050611a78565b5060019150505b919050565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611cb85780601f10611c8d57610100808354040283529160200191611cb8565b820191906000526020600020905b815481529060010190602001808311611c9b57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614ac3602a913960400191505060405180910390fd5b611d90600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613223565b9050919050565b611d9f612543565b611e11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060806040518061046001604052806104368152602001614b426104369139905060606140006040519080825280601f01601f191660200182016040528015611f2a5781602001600182028038833980820191505090505b509050600060409050600060409050600080905060008090506060889050606060008090505b614000811015611fa75760ff60f81b888281518110611f6b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050611f50565b5060008090505b609781101561240c57611fc083613231565b925082915060008090505b60408110156123fe576030838281518110611fe257fe5b602001015160f81c60f81b60f81c60ff16148061201b5750603183828151811061200857fe5b602001015160f81c60f81b60f81c60ff16145b1561202b57600188019750612361565b603283828151811061203957fe5b602001015160f81c60f81b60f81c60ff1614806120725750603383828151811061205f57fe5b602001015160f81c60f81b60f81c60ff16145b156120a1577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff88019750612360565b60348382815181106120af57fe5b602001015160f81c60f81b60f81c60ff1614806120e8575060358382815181106120d557fe5b602001015160f81c60f81b60f81c60ff16145b156120f85760018701965061235f565b603683828151811061210657fe5b602001015160f81c60f81b60f81c60ff16148061213f5750603783828151811061212c57fe5b602001015160f81c60f81b60f81c60ff16145b1561216e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8701965061235e565b603883828151811061217c57fe5b602001015160f81c60f81b60f81c60ff1614806121b5575060398382815181106121a257fe5b602001015160f81c60f81b60f81c60ff16145b156121cb5760018801975060018701965061235d565b60618382815181106121d957fe5b602001015160f81c60f81b60f81c60ff161480612212575060628382815181106121ff57fe5b602001015160f81c60f81b60f81c60ff16145b15612247577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8801975060018701965061235c565b606383828151811061225557fe5b602001015160f81c60f81b60f81c60ff16148061228e5750606483828151811061227b57fe5b602001015160f81c60f81b60f81c60ff16145b156122c3576001880197507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8701965061235b565b60658382815181106122d157fe5b602001015160f81c60f81b60f81c60ff16148061230a575060668382815181106122f757fe5b602001015160f81c60f81b60f81c60ff16145b1561235a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880197507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff870196505b5b5b5b5b5b5b5b6080871215806123715750600087125b8061237d575060808812155b806123885750600088125b1561239a576040965060409750600095505b602686816123a457fe5b0560f81b8988607f036080028a01815181106123bc57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506001860195508080600101915050611fcb565b508080600101915050611fae565b50612417888861334a565b98505050505050505050919050565b60006013826040518082805190602001908083835b6020831061245e578051825260208201915060208101905060208303925061243b565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060009054906101000a900460ff166124a857600080fd5b6012826040518082805190602001908083835b602083106124de57805182526020820191506020810190506020830392506124bb565b6001836020036101000a0380198251168184511680821785525050505050509050019150509081526020016040518091039020549050919050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612586613103565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060601460008381526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561264b5780601f106126205761010080835404028352916020019161264b565b820191906000526020600020905b81548152906001019060200180831161262e57829003601f168201915b50505050509050919050565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126ef5780601f106126c4576101008083540402835291602001916126ef565b820191906000526020600020905b8154815290600101906020018083116126d257829003601f168201915b5050505050905090565b612701613103565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600460006127af613103565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661285c613103565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b6362366070421061292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4d696e74696e67206973206f766572000000000000000000000000000000000081525060200191505060405180910390fd5b6702c68af0bb14000034146129a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4e65656420746f2073656e6420302e322065746865720000000000000000000081525060200191505060405180910390fd5b6129b082612e63565b612a22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f47686f7374204b65792076616c69646174696f6e206661696c7572650000000081525060200191505060405180910390fd5b612a2b81611a46565b612a9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f47686f7374204e616d652076616c69646174696f6e206661696c75726500000081525060200191505060405180910390fd5b612aa9336010546133f5565b816011600060105481526020019081526020016000209080519060200190612ad29291906148c3565b50806014600060105481526020019081526020016000209080519060200190612afc9291906148c3565b506010546012836040518082805190602001908083835b60208310612b365780518252602082019150602081019050602083039250612b13565b6001836020036101000a03801982511681845116808217855250505050505090500191505090815260200160405180910390208190555060016013836040518082805190602001908083835b60208310612ba55780518252602082019150602081019050602083039250612b82565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060006101000a81548160ff0219169083151502179055506000612bf9612519565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015612c41573d6000803e3d6000fd5b506001601060008282540192505081905550505050565b612c69612c63613103565b8361310b565b612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614fc26031913960400191505060405180910390fd5b612cca84848484613416565b50505050565b6060612ceb612cdd612cf2565b612ce684613488565b6135b5565b9050919050565b6060604051806060016040528060238152602001614a1860239139905090565b606060405180606001604052806027815260200161501f60279139905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612dee57600080fd5b505afa158015612e02573d6000803e3d6000fd5b505050506040513d6020811015612e1857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff161415612e4f576001915050612e5d565b612e5984846135f9565b9150505b92915050565b60006060829050601981511115612e7e576000915050613006565b600081511415612e92576000915050613006565b60005b8151811015612fff576000828281518110612eac57fe5b602001015160f81c60f81b9050603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612f155750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b158015612f7b5750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612f795750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015612fe05750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612fde5750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b15612ff15760009350505050613006565b508080600101915050612e95565b5060019150505b919050565b613013612543565b613085576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61308e8161368d565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b600061311682613091565b61316b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614a5f602c913960400191505060405180910390fd5b60006131768361197e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806131e557508373ffffffffffffffffffffffffffffffffffffffff166131cd846113e3565b73ffffffffffffffffffffffffffffffffffffffff16145b806131f657506131f58185612d32565b5b91505092915050565b61320a8383836137d3565b6132148382613a2e565b61321e8282613bcc565b505050565b600081600001549050919050565b60606133436002836040516020018082805190602001908083835b6020831061326f578051825260208201915060208101905060208303925061324c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b602083106132d657805182526020820191506020810190506020830392506132b3565b6001836020036101000a038019825116818451168082178552505050505050905001915050602060405180830381855afa158015613318573d6000803e3d6000fd5b5050506040513d602081101561332d57600080fd5b8101908080519060200190929190505050613c93565b9050919050565b6060600083519050600083518201905060006020601f8751018161336a57fe5b04905060006020601f8751018161337d57fe5b04905060405183815260005b838110156133b0578060010160200289015181600101602002830152806001019050613389565b5060005b828110156133dd57806001016020028801518682600101602002018301528060010190506133b4565b50836020018101604052809550505050505092915050565b6133ff8282613ddd565b6134098282613bcc565b61341281613ff5565b5050565b6134218484846131ff565b61342d84848484614041565b613482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806149c06032913960400191505060405180910390fd5b50505050565b606060008214156134d0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135b0565b600082905060005b600082146134fa578080600101915050600a82816134f257fe5b0491506134d8565b6060816040519080825280601f01601f19166020018201604052801561352f5781602001600182028038833980820191505090505b50905060006001830390505b600086146135a857600a868161354d57fe5b0660300160f81b8282806001900393508151811061356757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a86816135a057fe5b04955061353b565b819450505050505b919050565b60606135f1838360405180602001604052806000815250604051806020016040528060008152506040518060200160405280600081525061437d565b905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613713576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806149f26026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff166137f38261197e565b73ffffffffffffffffffffffffffffffffffffffff161461385f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f786029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614a3b6024913960400191505060405180910390fd5b6138ee81614643565b613935600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614701565b61397c600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614724565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613a866001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061473a90919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114613b73576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613af357fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613b4b57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003613bc59190614943565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b606080604080519080825280601f01601f191660200182016040528015613cc95781602001600182028038833980820191505090505b50905060008090505b60208163ffffffff161015613dd3576000848263ffffffff1660208110613cf557fe5b1a60f81b9050600060108260f81c60ff1681613d0d57fe5b0460f81b905060008160f81c6010028360f81c0360f81b9050613d2f82614784565b856002860263ffffffff1681518110613d4457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613d7c81614784565b856001600287020163ffffffff1681518110613d9457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505050508080600101915050613cd2565b5080915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613e8981613091565b15613efc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550613f95600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614724565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b60006140628473ffffffffffffffffffffffffffffffffffffffff166147b8565b61406f5760019050614375565b600060608573ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1663150b7a02905060e01b6140b3613103565b898888604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614163578082015181840152602081019050614148565b50505050905090810190601f1680156141905780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518082805190602001908083835b602083106142285780518252602082019150602081019050602083039250614205565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461428a576040519150601f19603f3d011682016040523d82523d6000602084013e61428f565b606091505b5091509150816142fd576000815111156142ac5780518082602001fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806149c06032913960400191505060405180910390fd5b600081806020019051602081101561431457600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161493505050505b949350505050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156143d95781602001600182028038833980820191505090505b5090506060819050600080905060008090505b885181101561445a5788818151811061440157fe5b602001015160f81c60f81b83838060010194508151811061441e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506143ec565b5060008090505b87518110156144cf5787818151811061447657fe5b602001015160f81c60f81b83838060010194508151811061449357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050614461565b5060008090505b8651811015614544578681815181106144eb57fe5b602001015160f81c60f81b83838060010194508151811061450857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506144d6565b5060008090505b85518110156145b95785818151811061456057fe5b602001015160f81c60f81b83838060010194508151811061457d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061454b565b5060008090505b845181101561462e578481815181106145d557fe5b602001015160f81c60f81b8383806001019450815181106145f257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506145c0565b50819850505050505050505095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146146fe5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6147196001826000015461473a90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b600061477c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614803565b905092915050565b6000600a8260f81c60ff1610156147a65760308260f81c0160f81b90506147b3565b60578260f81c0160f81b90505b919050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91508082141580156147fa57506000801b8214155b92505050919050565b60008383111582906148b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561487557808201518184015260208101905061485a565b50505050905090810190601f1680156148a25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061490457805160ff1916838001178555614932565b82800160010185558215614932579182015b82811115614931578251825591602001919060010190614916565b5b50905061493f919061496f565b5090565b81548183558181111561496a57818360005260206000209182019101614969919061496f565b5b505050565b61499191905b8082111561498d576000816000905550600101614975565b5090565b9056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737368747470733a2f2f63727970746f67686f73742e6172742f6d6574612f6974656d732f4552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e424d384400000000000036040000280000008000000080000000010008000000000002400000120b0000120b0000000000000000000000000000000000000100010002010200030103000401030005020400060205000703060008030600090307000a0408000b0409000c0409000d050a000e050b000f060c0010060c0011060d0012070e0013070f0013070f001408100015081100160912001709130018091300190a14001a0a15001b0b16001c0b16001d0b17001e0c18001f0c1900200c1900210d1a00220d1b00230e1c00240e1c00250e1d00260f1e00260f1f00270f1f0028102000291021002a1122002b1122002c1123002d1224002e1225002f132600301326003113270032142800331429003414290035152a0036152b0037162c0038162c0039162d0039172e003a172f003b172f003c1830003d1831003e1932003f19320040193300411a3400421a3500431a3500441b3600451b3700461c3800471c3900481c3900491d3a004a1d3b004b1e3c004c1e3c004c1e3d004d1f3e004e1f3f004f1f3f00502040005120410052214200532142005421430055224400562245005722450058234600592347005a2448005b2448005c2449005d254a005e254b005f264c005f264c0060264d0061274e0062274f0063274f006428500065285100662952006729520068295300692a54006a2a55006b2a55006c2b56006d2b57006e2c58006f2c5800702c5900712d5a00722d5b00722d5b00732e5c00742e5d00752f5e00762f5f00772f5f0078306000793061007a3162007b3162007c3163007d3264007e3265007f326500803366008133670082346800833468008434690085356a0085356b0086356b0087366c0088366d0089376e008a376e008b376f008c3870008d3871008e3972008f39720090397300913a7400923a7500933a7500943b7600953b7700963c7800973c7800983c7900983d7a00993d7b009a3d7b009b3e7c009c3e7d009d3f7e009e3f7e009f3f7f00a0408000a1408100a2408100a3418200a4418300a5428400a6428500a7428500a8438600a9438700aa448800ab448800ab448900ac458a00ad458b00ae458b00af468c00b0468d00b1478e00b2478e00b3478f00b4489000b5489100b6489100b7499200b8499300b94a9400ba4a9400bb4a9500bc4b9600bd4b9700be4c9800be4c9800bf4c9900c04d9a00c14d9b00c24d9b00c34e9c00c44e9d00c54f9e00c64f9e00c74f9f00c850a000c950a100ca50a100cb51a200cc51a300cd52a400ce52a400cf52a500d053a600d153a700d153a700d254a800d354a900d455aa00d555ab00d655ab00d756ac00d856ad00d957ae00da57ae00db57af00dc58b000dd58b100de58b100df59b200e059b300e15ab400e25ab400e35ab500e45bb600e45bb700e55bb700e65cb800e75cb900e85dba00e95dba00ea5dbb00eb5ebc00ec5ebd00ed5fbe00ee5fbe00ef5fbf00f060c000f160c100ffffff004552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e647368747470733a2f2f63727970746f67686f73742e6172742f6d6574612f67686f73742e6a736f6ea265627a7a72315820b6d3b88ecca7f0f6dde6409e04f57985266397516fab3202f448b96aee508e8964736f6c63430005110032000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806387f2057b116100f7578063b7c1b83711610095578063e8a3d48511610064578063e8a3d48514611090578063e985e9c514611120578063efedee01146111a9578063f2fde38b14611289576101cd565b8063b7c1b83714610ce8578063b88d4fde14610e3a578063c87b56dd14610f4c578063d547cfb714611000576101cd565b80638f32d59b116100d15780638f32d59b14610b18578063917f17ce14610b4757806395d89b4114610bfb578063a22cb46514610c8b576101cd565b806387f2057b146108a45780638d3f8012146109e55780638da5cb5b14610ac1576101cd565b806342842e0e1161016f5780636a126f311161013e5780636a126f31146106b85780636c0360eb1461079857806370a0823114610828578063715018a61461088d576101cd565b806342842e0e146104bf57806343a369bd1461053a5780634f6ccce7146105ee5780636352211e1461063d576101cd565b8063095ea7b3116101ab578063095ea7b31461034f57806318160ddd146103aa57806323b872dd146103d55780632f745c5914610450576101cd565b806301ffc9a7146101d257806306fdde0314610244578063081812fc146102d4575b600080fd5b3480156101de57600080fd5b5061022a600480360360208110156101f557600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506112da565b604051808215151515815260200191505060405180910390f35b34801561025057600080fd5b50610259611341565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029957808201518184015260208101905061027e565b50505050905090810190601f1680156102c65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e057600080fd5b5061030d600480360360208110156102f757600080fd5b81019080803590602001909291905050506113e3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561035b57600080fd5b506103a86004803603604081101561037257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061147e565b005b3480156103b657600080fd5b506103bf611665565b6040518082815260200191505060405180910390f35b3480156103e157600080fd5b5061044e600480360360608110156103f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611672565b005b34801561045c57600080fd5b506104a96004803603604081101561047357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116e8565b6040518082815260200191505060405180910390f35b3480156104cb57600080fd5b50610538600480360360608110156104e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117a7565b005b34801561054657600080fd5b506105736004803603602081101561055d57600080fd5b81019080803590602001909291905050506117c7565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105b3578082015181840152602081019050610598565b50505050905090810190601f1680156105e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156105fa57600080fd5b506106276004803603602081101561061157600080fd5b81019080803590602001909291905050506118fe565b6040518082815260200191505060405180910390f35b34801561064957600080fd5b506106766004803603602081101561066057600080fd5b810190808035906020019092919050505061197e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106c457600080fd5b5061077e600480360360208110156106db57600080fd5b81019080803590602001906401000000008111156106f857600080fd5b82018360208201111561070a57600080fd5b8035906020019184600183028401116401000000008311171561072c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611a46565b604051808215151515815260200191505060405180910390f35b3480156107a457600080fd5b506107ad611c20565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107ed5780820151818401526020810190506107d2565b50505050905090810190601f16801561081a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561083457600080fd5b506108776004803603602081101561084b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc2565b6040518082815260200191505060405180910390f35b34801561089957600080fd5b506108a2611d97565b005b3480156108b057600080fd5b5061096a600480360360208110156108c757600080fd5b81019080803590602001906401000000008111156108e457600080fd5b8201836020820111156108f657600080fd5b8035906020019184600183028401116401000000008311171561091857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611ed2565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109aa57808201518184015260208101905061098f565b50505050905090810190601f1680156109d75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109f157600080fd5b50610aab60048036036020811015610a0857600080fd5b8101908080359060200190640100000000811115610a2557600080fd5b820183602082011115610a3757600080fd5b80359060200191846001830284011164010000000083111715610a5957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612426565b6040518082815260200191505060405180910390f35b348015610acd57600080fd5b50610ad6612519565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b2457600080fd5b50610b2d612543565b604051808215151515815260200191505060405180910390f35b348015610b5357600080fd5b50610b8060048036036020811015610b6a57600080fd5b81019080803590602001909291905050506125a2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc0578082015181840152602081019050610ba5565b50505050905090810190601f168015610bed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c0757600080fd5b50610c10612657565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c50578082015181840152602081019050610c35565b50505050905090810190601f168015610c7d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c9757600080fd5b50610ce660048036036040811015610cae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506126f9565b005b610e3860048036036040811015610cfe57600080fd5b8101908080359060200190640100000000811115610d1b57600080fd5b820183602082011115610d2d57600080fd5b80359060200191846001830284011164010000000083111715610d4f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610db257600080fd5b820183602082011115610dc457600080fd5b80359060200191846001830284011164010000000083111715610de657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506128b1565b005b348015610e4657600080fd5b50610f4a60048036036080811015610e5d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ec457600080fd5b820183602082011115610ed657600080fd5b80359060200191846001830284011164010000000083111715610ef857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612c58565b005b348015610f5857600080fd5b50610f8560048036036020811015610f6f57600080fd5b8101908080359060200190929190505050612cd0565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fc5578082015181840152602081019050610faa565b50505050905090810190601f168015610ff25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561100c57600080fd5b50611015612cf2565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561105557808201518184015260208101905061103a565b50505050905090810190601f1680156110825780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561109c57600080fd5b506110a5612d12565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156110e55780820151818401526020810190506110ca565b50505050905090810190601f1680156111125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561112c57600080fd5b5061118f6004803603604081101561114357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d32565b604051808215151515815260200191505060405180910390f35b3480156111b557600080fd5b5061126f600480360360208110156111cc57600080fd5b81019080803590602001906401000000008111156111e957600080fd5b8201836020820111156111fb57600080fd5b8035906020019184600183028401116401000000008311171561121d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612e63565b604051808215151515815260200191505060405180910390f35b34801561129557600080fd5b506112d8600480360360208110156112ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061300b565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113d95780601f106113ae576101008083540402835291602001916113d9565b820191906000526020600020905b8154815290600101906020018083116113bc57829003601f168201915b5050505050905090565b60006113ee82613091565b611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614b16602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006114898261197e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614fa16021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661152f613103565b73ffffffffffffffffffffffffffffffffffffffff16148061155e575061155d81611558613103565b612d32565b5b6115b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614a8b6038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600780549050905090565b61168361167d613103565b8261310b565b6116d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614fc26031913960400191505060405180910390fd5b6116e38383836131ff565b505050565b60006116f383611cc2565b821061174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614995602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061179457fe5b9060005260206000200154905092915050565b6117c283838360405180602001604052806000815250612c58565b505050565b60606117d1611665565b8210611845576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f546f6b656e20646f6573206e6f7420657869737400000000000000000000000081525060200191505060405180910390fd5b6060601160008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118ee5780601f106118c3576101008083540402835291602001916118ee565b820191906000526020600020905b8154815290600101906020018083116118d157829003601f168201915b5050505050905080915050919050565b6000611908611665565b821061195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614ff3602c913960400191505060405180910390fd5b6007828154811061196c57fe5b90600052602060002001549050919050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614aed6029913960400191505060405180910390fd5b80915050919050565b60006060829050601e81511115611a61576000915050611c1b565b600081511415611a75576000915050611c1b565b60005b8151811015611c14576000828281518110611a8f57fe5b602001015160f81c60f81b9050603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611af85750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b158015611b5e5750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611b5c5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015611bc35750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611bc15750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015611bf55750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611c065760009350505050611c1b565b508080600101915050611a78565b5060019150505b919050565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611cb85780601f10611c8d57610100808354040283529160200191611cb8565b820191906000526020600020905b815481529060010190602001808311611c9b57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614ac3602a913960400191505060405180910390fd5b611d90600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613223565b9050919050565b611d9f612543565b611e11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060806040518061046001604052806104368152602001614b426104369139905060606140006040519080825280601f01601f191660200182016040528015611f2a5781602001600182028038833980820191505090505b509050600060409050600060409050600080905060008090506060889050606060008090505b614000811015611fa75760ff60f81b888281518110611f6b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050611f50565b5060008090505b609781101561240c57611fc083613231565b925082915060008090505b60408110156123fe576030838281518110611fe257fe5b602001015160f81c60f81b60f81c60ff16148061201b5750603183828151811061200857fe5b602001015160f81c60f81b60f81c60ff16145b1561202b57600188019750612361565b603283828151811061203957fe5b602001015160f81c60f81b60f81c60ff1614806120725750603383828151811061205f57fe5b602001015160f81c60f81b60f81c60ff16145b156120a1577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff88019750612360565b60348382815181106120af57fe5b602001015160f81c60f81b60f81c60ff1614806120e8575060358382815181106120d557fe5b602001015160f81c60f81b60f81c60ff16145b156120f85760018701965061235f565b603683828151811061210657fe5b602001015160f81c60f81b60f81c60ff16148061213f5750603783828151811061212c57fe5b602001015160f81c60f81b60f81c60ff16145b1561216e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8701965061235e565b603883828151811061217c57fe5b602001015160f81c60f81b60f81c60ff1614806121b5575060398382815181106121a257fe5b602001015160f81c60f81b60f81c60ff16145b156121cb5760018801975060018701965061235d565b60618382815181106121d957fe5b602001015160f81c60f81b60f81c60ff161480612212575060628382815181106121ff57fe5b602001015160f81c60f81b60f81c60ff16145b15612247577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8801975060018701965061235c565b606383828151811061225557fe5b602001015160f81c60f81b60f81c60ff16148061228e5750606483828151811061227b57fe5b602001015160f81c60f81b60f81c60ff16145b156122c3576001880197507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8701965061235b565b60658382815181106122d157fe5b602001015160f81c60f81b60f81c60ff16148061230a575060668382815181106122f757fe5b602001015160f81c60f81b60f81c60ff16145b1561235a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880197507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff870196505b5b5b5b5b5b5b5b6080871215806123715750600087125b8061237d575060808812155b806123885750600088125b1561239a576040965060409750600095505b602686816123a457fe5b0560f81b8988607f036080028a01815181106123bc57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506001860195508080600101915050611fcb565b508080600101915050611fae565b50612417888861334a565b98505050505050505050919050565b60006013826040518082805190602001908083835b6020831061245e578051825260208201915060208101905060208303925061243b565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060009054906101000a900460ff166124a857600080fd5b6012826040518082805190602001908083835b602083106124de57805182526020820191506020810190506020830392506124bb565b6001836020036101000a0380198251168184511680821785525050505050509050019150509081526020016040518091039020549050919050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612586613103565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060601460008381526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561264b5780601f106126205761010080835404028352916020019161264b565b820191906000526020600020905b81548152906001019060200180831161262e57829003601f168201915b50505050509050919050565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126ef5780601f106126c4576101008083540402835291602001916126ef565b820191906000526020600020905b8154815290600101906020018083116126d257829003601f168201915b5050505050905090565b612701613103565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600460006127af613103565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661285c613103565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b6362366070421061292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4d696e74696e67206973206f766572000000000000000000000000000000000081525060200191505060405180910390fd5b6702c68af0bb14000034146129a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4e65656420746f2073656e6420302e322065746865720000000000000000000081525060200191505060405180910390fd5b6129b082612e63565b612a22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f47686f7374204b65792076616c69646174696f6e206661696c7572650000000081525060200191505060405180910390fd5b612a2b81611a46565b612a9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f47686f7374204e616d652076616c69646174696f6e206661696c75726500000081525060200191505060405180910390fd5b612aa9336010546133f5565b816011600060105481526020019081526020016000209080519060200190612ad29291906148c3565b50806014600060105481526020019081526020016000209080519060200190612afc9291906148c3565b506010546012836040518082805190602001908083835b60208310612b365780518252602082019150602081019050602083039250612b13565b6001836020036101000a03801982511681845116808217855250505050505090500191505090815260200160405180910390208190555060016013836040518082805190602001908083835b60208310612ba55780518252602082019150602081019050602083039250612b82565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060006101000a81548160ff0219169083151502179055506000612bf9612519565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015612c41573d6000803e3d6000fd5b506001601060008282540192505081905550505050565b612c69612c63613103565b8361310b565b612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614fc26031913960400191505060405180910390fd5b612cca84848484613416565b50505050565b6060612ceb612cdd612cf2565b612ce684613488565b6135b5565b9050919050565b6060604051806060016040528060238152602001614a1860239139905090565b606060405180606001604052806027815260200161501f60279139905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612dee57600080fd5b505afa158015612e02573d6000803e3d6000fd5b505050506040513d6020811015612e1857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff161415612e4f576001915050612e5d565b612e5984846135f9565b9150505b92915050565b60006060829050601981511115612e7e576000915050613006565b600081511415612e92576000915050613006565b60005b8151811015612fff576000828281518110612eac57fe5b602001015160f81c60f81b9050603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612f155750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b158015612f7b5750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612f795750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015612fe05750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612fde5750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b15612ff15760009350505050613006565b508080600101915050612e95565b5060019150505b919050565b613013612543565b613085576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61308e8161368d565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b600061311682613091565b61316b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614a5f602c913960400191505060405180910390fd5b60006131768361197e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806131e557508373ffffffffffffffffffffffffffffffffffffffff166131cd846113e3565b73ffffffffffffffffffffffffffffffffffffffff16145b806131f657506131f58185612d32565b5b91505092915050565b61320a8383836137d3565b6132148382613a2e565b61321e8282613bcc565b505050565b600081600001549050919050565b60606133436002836040516020018082805190602001908083835b6020831061326f578051825260208201915060208101905060208303925061324c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b602083106132d657805182526020820191506020810190506020830392506132b3565b6001836020036101000a038019825116818451168082178552505050505050905001915050602060405180830381855afa158015613318573d6000803e3d6000fd5b5050506040513d602081101561332d57600080fd5b8101908080519060200190929190505050613c93565b9050919050565b6060600083519050600083518201905060006020601f8751018161336a57fe5b04905060006020601f8751018161337d57fe5b04905060405183815260005b838110156133b0578060010160200289015181600101602002830152806001019050613389565b5060005b828110156133dd57806001016020028801518682600101602002018301528060010190506133b4565b50836020018101604052809550505050505092915050565b6133ff8282613ddd565b6134098282613bcc565b61341281613ff5565b5050565b6134218484846131ff565b61342d84848484614041565b613482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806149c06032913960400191505060405180910390fd5b50505050565b606060008214156134d0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135b0565b600082905060005b600082146134fa578080600101915050600a82816134f257fe5b0491506134d8565b6060816040519080825280601f01601f19166020018201604052801561352f5781602001600182028038833980820191505090505b50905060006001830390505b600086146135a857600a868161354d57fe5b0660300160f81b8282806001900393508151811061356757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a86816135a057fe5b04955061353b565b819450505050505b919050565b60606135f1838360405180602001604052806000815250604051806020016040528060008152506040518060200160405280600081525061437d565b905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613713576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806149f26026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff166137f38261197e565b73ffffffffffffffffffffffffffffffffffffffff161461385f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f786029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614a3b6024913960400191505060405180910390fd5b6138ee81614643565b613935600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614701565b61397c600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614724565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613a866001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061473a90919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114613b73576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613af357fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613b4b57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003613bc59190614943565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b606080604080519080825280601f01601f191660200182016040528015613cc95781602001600182028038833980820191505090505b50905060008090505b60208163ffffffff161015613dd3576000848263ffffffff1660208110613cf557fe5b1a60f81b9050600060108260f81c60ff1681613d0d57fe5b0460f81b905060008160f81c6010028360f81c0360f81b9050613d2f82614784565b856002860263ffffffff1681518110613d4457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613d7c81614784565b856001600287020163ffffffff1681518110613d9457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505050508080600101915050613cd2565b5080915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613e8981613091565b15613efc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550613f95600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614724565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b60006140628473ffffffffffffffffffffffffffffffffffffffff166147b8565b61406f5760019050614375565b600060608573ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1663150b7a02905060e01b6140b3613103565b898888604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614163578082015181840152602081019050614148565b50505050905090810190601f1680156141905780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518082805190602001908083835b602083106142285780518252602082019150602081019050602083039250614205565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461428a576040519150601f19603f3d011682016040523d82523d6000602084013e61428f565b606091505b5091509150816142fd576000815111156142ac5780518082602001fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806149c06032913960400191505060405180910390fd5b600081806020019051602081101561431457600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161493505050505b949350505050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156143d95781602001600182028038833980820191505090505b5090506060819050600080905060008090505b885181101561445a5788818151811061440157fe5b602001015160f81c60f81b83838060010194508151811061441e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506143ec565b5060008090505b87518110156144cf5787818151811061447657fe5b602001015160f81c60f81b83838060010194508151811061449357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050614461565b5060008090505b8651811015614544578681815181106144eb57fe5b602001015160f81c60f81b83838060010194508151811061450857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506144d6565b5060008090505b85518110156145b95785818151811061456057fe5b602001015160f81c60f81b83838060010194508151811061457d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061454b565b5060008090505b845181101561462e578481815181106145d557fe5b602001015160f81c60f81b8383806001019450815181106145f257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506145c0565b50819850505050505050505095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146146fe5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6147196001826000015461473a90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b600061477c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614803565b905092915050565b6000600a8260f81c60ff1610156147a65760308260f81c0160f81b90506147b3565b60578260f81c0160f81b90505b919050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91508082141580156147fa57506000801b8214155b92505050919050565b60008383111582906148b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561487557808201518184015260208101905061485a565b50505050905090810190601f1680156148a25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061490457805160ff1916838001178555614932565b82800160010185558215614932579182015b82811115614931578251825591602001919060010190614916565b5b50905061493f919061496f565b5090565b81548183558181111561496a57818360005260206000209182019101614969919061496f565b5b505050565b61499191905b8082111561498d576000816000905550600101614975565b5090565b9056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737368747470733a2f2f63727970746f67686f73742e6172742f6d6574612f6974656d732f4552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e424d384400000000000036040000280000008000000080000000010008000000000002400000120b0000120b0000000000000000000000000000000000000100010002010200030103000401030005020400060205000703060008030600090307000a0408000b0409000c0409000d050a000e050b000f060c0010060c0011060d0012070e0013070f0013070f001408100015081100160912001709130018091300190a14001a0a15001b0b16001c0b16001d0b17001e0c18001f0c1900200c1900210d1a00220d1b00230e1c00240e1c00250e1d00260f1e00260f1f00270f1f0028102000291021002a1122002b1122002c1123002d1224002e1225002f132600301326003113270032142800331429003414290035152a0036152b0037162c0038162c0039162d0039172e003a172f003b172f003c1830003d1831003e1932003f19320040193300411a3400421a3500431a3500441b3600451b3700461c3800471c3900481c3900491d3a004a1d3b004b1e3c004c1e3c004c1e3d004d1f3e004e1f3f004f1f3f00502040005120410052214200532142005421430055224400562245005722450058234600592347005a2448005b2448005c2449005d254a005e254b005f264c005f264c0060264d0061274e0062274f0063274f006428500065285100662952006729520068295300692a54006a2a55006b2a55006c2b56006d2b57006e2c58006f2c5800702c5900712d5a00722d5b00722d5b00732e5c00742e5d00752f5e00762f5f00772f5f0078306000793061007a3162007b3162007c3163007d3264007e3265007f326500803366008133670082346800833468008434690085356a0085356b0086356b0087366c0088366d0089376e008a376e008b376f008c3870008d3871008e3972008f39720090397300913a7400923a7500933a7500943b7600953b7700963c7800973c7800983c7900983d7a00993d7b009a3d7b009b3e7c009c3e7d009d3f7e009e3f7e009f3f7f00a0408000a1408100a2408100a3418200a4418300a5428400a6428500a7428500a8438600a9438700aa448800ab448800ab448900ac458a00ad458b00ae458b00af468c00b0468d00b1478e00b2478e00b3478f00b4489000b5489100b6489100b7499200b8499300b94a9400ba4a9400bb4a9500bc4b9600bd4b9700be4c9800be4c9800bf4c9900c04d9a00c14d9b00c24d9b00c34e9c00c44e9d00c54f9e00c64f9e00c74f9f00c850a000c950a100ca50a100cb51a200cc51a300cd52a400ce52a400cf52a500d053a600d153a700d153a700d254a800d354a900d455aa00d555ab00d655ab00d756ac00d856ad00d957ae00da57ae00db57af00dc58b000dd58b100de58b100df59b200e059b300e15ab400e25ab400e35ab500e45bb600e45bb700e55bb700e65cb800e75cb900e85dba00e95dba00ea5dbb00eb5ebc00ec5ebd00ed5fbe00ee5fbe00ef5fbf00f060c000f160c100ffffff004552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e647368747470733a2f2f63727970746f67686f73742e6172742f6d6574612f67686f73742e6a736f6ea265627a7a72315820b6d3b88ecca7f0f6dde6409e04f57985266397516fab3202f448b96aee508e8964736f6c63430005110032

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

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


Deployed Bytecode Sourcemap

59221:7737:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17098:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17098:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17098:167:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45962:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45962:85:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;45962:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22168:241;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22168:241:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22168:241:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21436:439;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21436:439:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21436:439:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37428:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37428:96:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23920:363;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23920:363:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23920:363:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36968:301;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36968:301:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36968:301:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24945:168;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24945:168:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24945:168:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59687:232;;8:9:-1;5:2;;;30:1;27;20:12;5:2;59687:232:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;59687:232:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;59687:232:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37870:236;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37870:236:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37870:236:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20740:265;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20740:265:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20740:265:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;60834:577;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60834:577:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;60834:577:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;60834:577:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;60834:577:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;60834:577:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;60834:577:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48295:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48295:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;48295:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20266:248;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20266:248:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20266:248:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51377:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51377:140:0;;;:::i;:::-;;62555:4400;;8:9:-1;5:2;;;30:1;27;20:12;5:2;62555:4400:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;62555:4400:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;62555:4400:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;62555:4400:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;62555:4400:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;62555:4400:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;62555:4400:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60058:229;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60058:229:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;60058:229:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;60058:229:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;60058:229:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;60058:229:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;60058:229:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50566:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50566:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;50932:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50932:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;59927:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;59927:123:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;59927:123:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;59927:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46162:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46162:89:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46162:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22710:254;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22710:254:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22710:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61419:863;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;61419:863:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;61419:863:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;61419:863:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;61419:863:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;61419:863:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;61419:863:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;61419:863:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;61419:863:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;61419:863:0;;;;;;;;;;;;;;;:::i;:::-;;25850:352;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25850:352:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;25850:352:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;25850:352:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25850:352:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25850:352:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;25850:352:0;;;;;;;;;;;;;;;:::i;:::-;;56087:161;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56087:161:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56087:161:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;56087:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62290:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;62290:123:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;62290:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62421:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;62421:126:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;62421:126:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56380:427;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56380:427:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56380:427:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;60295:531;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60295:531:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;60295:531:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;60295:531:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;60295:531:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;60295:531:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;60295:531:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;51672:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51672:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51672:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;17098:167;17195:4;17224:20;:33;17245:11;17224:33;;;;;;;;;;;;;;;;;;;;;;;;;;;17217:40;;17098:167;;;:::o;45962:85::-;46001:13;46034:5;46027:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45962:85;:::o;22168:241::-;22227:7;22269:16;22277:7;22269;:16::i;:::-;22247:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22377:15;:24;22393:7;22377:24;;;;;;;;;;;;;;;;;;;;;22370:31;;22168:241;;;:::o;21436:439::-;21500:13;21516:16;21524:7;21516;:16::i;:::-;21500:32;;21557:5;21551:11;;:2;:11;;;;21543:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21651:5;21635:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21660:37;21677:5;21684:12;:10;:12::i;:::-;21660:16;:37::i;:::-;21635:62;21613:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21821:2;21794:15;:24;21810:7;21794:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;21859:7;21855:2;21839:28;;21848:5;21839:28;;;;;;;;;;;;21436:439;;;:::o;37428:96::-;37472:7;37499:10;:17;;;;37492:24;;37428:96;:::o;23920:363::-;24112:41;24131:12;:10;:12::i;:::-;24145:7;24112:18;:41::i;:::-;24090:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24243:32;24257:4;24263:2;24267:7;24243:13;:32::i;:::-;23920:363;;;:::o;36968:301::-;37075:7;37130:16;37140:5;37130:9;:16::i;:::-;37122:5;:24;37100:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37235:12;:19;37248:5;37235:19;;;;;;;;;;;;;;;37255:5;37235:26;;;;;;;;;;;;;;;;37228:33;;36968:301;;;;:::o;24945:168::-;25066:39;25083:4;25089:2;25093:7;25066:39;;;;;;;;;;;;:16;:39::i;:::-;24945:168;;;:::o;59687:232::-;59746:13;59790;:11;:13::i;:::-;59780:7;:23;59772:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59839:22;59864:12;:21;59877:7;59864:21;;;;;;;;;;;59839:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59903:8;59896:15;;;59687:232;;;:::o;37870:236::-;37928:7;37978:13;:11;:13::i;:::-;37970:5;:21;37948:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38081:10;38092:5;38081:17;;;;;;;;;;;;;;;;38074:24;;37870:236;;;:::o;20740:265::-;20795:7;20815:13;20831:11;:20;20843:7;20831:20;;;;;;;;;;;;;;;;;;;;;20815:36;;20901:1;20884:19;;:5;:19;;;;20862:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20992:5;20985:12;;;20740:265;;;:::o;60834:577::-;60898:4;60915:14;60938:3;60915:27;;60968:2;60957:1;:8;:13;60953:31;;;60979:5;60972:12;;;;;60953:31;61011:1;60999;:8;:13;60995:31;;;61021:5;61014:12;;;;;60995:31;61044:9;61039:343;61059:1;:8;61055:1;:12;61039:343;;;61089:11;61103:1;61105;61103:4;;;;;;;;;;;;;;;;61089:18;;61154:4;61146:12;;:4;:12;;;;;:28;;;;;61170:4;61162:12;;:4;:12;;;;;61146:28;61144:31;:89;;;;;61212:4;61204:12;;:4;:12;;;;;:28;;;;;61228:4;61220:12;;:4;:12;;;;;61204:28;61202:31;61144:89;:147;;;;;61270:4;61262:12;;:4;:12;;;;;:28;;;;;61286:4;61278:12;;:4;:12;;;;;61262:28;61260:31;61144:147;:189;;;;;61328:4;61320:12;;:4;:12;;;;61318:15;61144:189;61122:248;;;61365:5;61358:12;;;;;;;61122:248;61039:343;61069:3;;;;;;;61039:343;;;;61399:4;61392:11;;;60834:577;;;;:::o;48295:91::-;48337:13;48370:8;48363:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48295:91;:::o;20266:248::-;20321:7;20380:1;20363:19;;:5;:19;;;;20341:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20472:34;:17;:24;20490:5;20472:24;;;;;;;;;;;;;;;:32;:34::i;:::-;20465:41;;20266:248;;;:::o;51377:140::-;50778:9;:7;:9::i;:::-;50770:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51476:1;51439:40;;51460:6;;;;;;;;;;;51439:40;;;;;;;;;;;;51507:1;51490:6;;:19;;;;;;;;;;;;;;;;;;51377:140::o;62555:4400::-;62655:12;62685:20;:2197;;;;;;;;;;;;;;;;;;;64893:19;64925:5;64915:16;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;64915:16:0;;;;64893:38;;64944:8;64955:2;64944:13;;64968:8;64979:2;64968:13;;64994:17;65014:1;64994:21;;65026:17;65046:1;65026:21;;65058:17;65078:5;65058:25;;65094:16;65128:13;65144:1;65128:17;;65123:109;65155:5;65147;:13;65123:109;;;65215:3;65202:18;;65186:6;65193:5;65186:13;;;;;;;;;;;:34;;;;;;;;;;;65162:7;;;;;;;65123:109;;;;65249:9;65261:1;65249:13;;65244:1648;65268:3;65264:1;:7;65244:1648;;;65299:20;65315:3;65299:15;:20::i;:::-;65293:26;;65346:3;65334:16;;65370:13;65386:1;65370:17;;65365:1516;65397:2;65389:5;:10;65365:1516;;;65454:2;65439:3;65443:5;65439:10;;;;;;;;;;;;;;;;65433:17;;:23;;;:50;;;;65481:2;65466:3;65470:5;65466:10;;;;;;;;;;;;;;;;65460:17;;:23;;;65433:50;65429:1087;;;65513:1;65508:6;;;;65429:1087;;;65565:2;65550:3;65554:5;65550:10;;;;;;;;;;;;;;;;65544:17;;:23;;;:50;;;;65592:2;65577:3;65581:5;65577:10;;;;;;;;;;;;;;;;65571:17;;:23;;;65544:50;65540:976;;;65624:2;65619:7;;;;65540:976;;;65677:2;65662:3;65666:5;65662:10;;;;;;;;;;;;;;;;65656:17;;:23;;;:50;;;;65704:2;65689:3;65693:5;65689:10;;;;;;;;;;;;;;;;65683:17;;:23;;;65656:50;65652:864;;;65736:1;65731:6;;;;65652:864;;;65788:2;65773:3;65777:5;65773:10;;;;;;;;;;;;;;;;65767:17;;:23;;;:50;;;;65815:2;65800:3;65804:5;65800:10;;;;;;;;;;;;;;;;65794:17;;:23;;;65767:50;65763:753;;;65847:2;65842:7;;;;65763:753;;;65900:2;65885:3;65889:5;65885:10;;;;;;;;;;;;;;;;65879:17;;:23;;;:50;;;;65927:2;65912:3;65916:5;65912:10;;;;;;;;;;;;;;;;65906:17;;:23;;;65879:50;65875:641;;;65959:1;65954:6;;;;65988:1;65983:6;;;;65875:641;;;66040:2;66025:3;66029:5;66025:10;;;;;;;;;;;;;;;;66019:17;;:23;;;:50;;;;66067:2;66052:3;66056:5;66052:10;;;;;;;;;;;;;;;;66046:17;;:23;;;66019:50;66015:501;;;66099:2;66094:7;;;;66129:1;66124:6;;;;66015:501;;;66203:2;66188:3;66192:5;66188:10;;;;;;;;;;;;;;;;66182:17;;:23;;;:51;;;;66230:3;66215;66219:5;66215:10;;;;;;;;;;;;;;;;66209:17;;:24;;;66182:51;66156:360;;;66281:1;66276:6;;;;66310:2;66305:7;;;;66156:360;;;66385:3;66370;66374:5;66370:10;;;;;;;;;;;;;;;;66364:17;;:24;;;:52;;;;66413:3;66398;66402:5;66398:10;;;;;;;;;;;;;;;;66392:17;;:24;;;66364:52;66338:178;;;66464:2;66459:7;;;;66494:2;66489:7;;;;66338:178;66156:360;66015:501;65875:641;65763:753;65652:864;65540:976;65429:1087;66543:3;66538:1;:8;;:17;;;;66554:1;66550;:5;66538:17;:29;;;;66564:3;66559:1;:8;;66538:29;:38;;;;66575:1;66571;:5;66538:38;66534:159;;;66605:2;66601:6;;66634:2;66630:6;;66672:1;66659:14;;66534:159;66809:2;66796:10;:15;;;;;;66761:70;;66713:6;66754:1;66748:3;:7;66734:3;:22;66728:1;66720:37;66713:45;;;;;;;;;;;:118;;;;;;;;;;;66864:1;66850:15;;;;65401:7;;;;;;;65365:1516;;;;65273:3;;;;;;;65244:1648;;;;66909:38;66931:7;66940:6;66909:21;:38::i;:::-;66902:45;;;;;;;;;;62555:4400;;;:::o;60058:229::-;60162:7;60195:28;60224:8;60195:38;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;60195:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60187:47;;;;;;60252:17;60270:8;60252:27;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;60252:27:0;;;;;;;;;;;;;;;;;;;;;;60245:34;;60058:229;;;:::o;50566:79::-;50604:7;50631:6;;;;;;;;;;;50624:13;;50566:79;:::o;50932:94::-;50972:4;51012:6;;;;;;;;;;;50996:22;;:12;:10;:12::i;:::-;:22;;;50989:29;;50932:94;:::o;59927:123::-;59987:13;60020;:22;60034:7;60020:22;;;;;;;;;;;60013:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59927:123;;;:::o;46162:89::-;46203:13;46236:7;46229:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46162:89;:::o;22710:254::-;22796:12;:10;:12::i;:::-;22790:18;;:2;:18;;;;22782:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22890:8;22851:18;:32;22870:12;:10;:12::i;:::-;22851:32;;;;;;;;;;;;;;;:36;22884:2;22851:36;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;22943:2;22914:42;;22929:12;:10;:12::i;:::-;22914:42;;;22947:8;22914:42;;;;;;;;;;;;;;;;;;;;;;22710:254;;:::o;61419:863::-;61563:10;61545:15;:28;61537:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61625:9;61612;:22;61604:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61694:23;61708:8;61694:13;:23::i;:::-;61672:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61806:25;61821:9;61806:14;:25::i;:::-;61784:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61899:38;61911:10;61923:13;;61899:11;:38::i;:::-;61978:8;61948:12;:27;61961:13;;61948:27;;;;;;;;;;;:38;;;;;;;;;;;;:::i;:::-;;62028:9;61997:13;:28;62011:13;;61997:28;;;;;;;;;;;:40;;;;;;;;;;;;:::i;:::-;;62078:13;;62048:17;62066:8;62048:27;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;62048:27:0;;;;;;;;;;;;;;;;;;;;;:43;;;;62143:4;62102:28;62131:8;62102:38;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;62102:38:0;;;;;;;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;62158:22;62199:7;:5;:7::i;:::-;62158:50;;62219:6;:15;;:26;62235:9;62219:26;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;62219:26:0;62273:1;62256:13;;:18;;;;;;;;;;;61419:863;;;:::o;25850:352::-;26022:41;26041:12;:10;:12::i;:::-;26055:7;26022:18;:41::i;:::-;26000:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26151:43;26169:4;26175:2;26179:7;26188:5;26151:17;:43::i;:::-;25850:352;;;;:::o;56087:161::-;56146:13;56179:61;56197:14;:12;:14::i;:::-;56213:26;56230:8;56213:16;:26::i;:::-;56179:17;:61::i;:::-;56172:68;;56087:161;;;:::o;62290:123::-;62335:13;62361:44;;;;;;;;;;;;;;;;;;;62290:123;:::o;62421:126::-;62465:13;62491:48;;;;;;;;;;;;;;;;;;;62421:126;:::o;56380:427::-;56487:4;56572:27;56616:20;;;;;;;;;;;56572:65;;56693:8;56652:49;;56660:13;:21;;;56682:5;56660:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56660:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56660:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56660:28:0;;;;;;;;;;;;;;;;56652:49;;;56648:93;;;56725:4;56718:11;;;;;56648:93;56760:39;56783:5;56790:8;56760:22;:39::i;:::-;56753:46;;;56380:427;;;;;:::o;60295:531::-;60358:4;60375:14;60398:3;60375:27;;60428:2;60417:1;:8;:13;60413:31;;;60439:5;60432:12;;;;;60413:31;60471:1;60459;:8;:13;60455:31;;;60481:5;60474:12;;;;;60455:31;60504:9;60499:298;60519:1;:8;60515:1;:12;60499:298;;;60549:11;60563:1;60565;60563:4;;;;;;;;;;;;;;;;60549:18;;60614:4;60606:12;;:4;:12;;;;;:28;;;;;60630:4;60622:12;;:4;:12;;;;;60606:28;60604:31;:89;;;;;60672:4;60664:12;;:4;:12;;;;;:28;;;;;60688:4;60680:12;;:4;:12;;;;;60664:28;60662:31;60604:89;:147;;;;;60730:4;60722:12;;:4;:12;;;;;:28;;;;;60746:4;60738:12;;:4;:12;;;;;60722:28;60720:31;60604:147;60582:203;;;60780:5;60773:12;;;;;;;60582:203;60499:298;60529:3;;;;;;;60499:298;;;;60814:4;60807:11;;;60295:531;;;;:::o;51672:109::-;50778:9;:7;:9::i;:::-;50770:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51745:28;51764:8;51745:18;:28::i;:::-;51672:109;:::o;27475:155::-;27532:4;27549:13;27565:11;:20;27577:7;27565:20;;;;;;;;;;;;;;;;;;;;;27549:36;;27620:1;27603:19;;:5;:19;;;;27596:26;;;27475:155;;;:::o;866:98::-;911:15;946:10;939:17;;866:98;:::o;28000:428::-;28112:4;28156:16;28164:7;28156;:16::i;:::-;28134:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28255:13;28271:16;28279:7;28271;:16::i;:::-;28255:32;;28317:5;28306:16;;:7;:16;;;:64;;;;28363:7;28339:31;;:20;28351:7;28339:11;:20::i;:::-;:31;;;28306:64;:113;;;;28387:32;28404:5;28411:7;28387:16;:32::i;:::-;28306:113;28298:122;;;28000:428;;;;:::o;38490:279::-;38610:38;38630:4;38636:2;38640:7;38610:19;:38::i;:::-;38661:47;38694:4;38700:7;38661:32;:47::i;:::-;38721:40;38749:2;38753:7;38721:27;:40::i;:::-;38490:279;;;:::o;15682:114::-;15747:7;15774;:14;;;15767:21;;15682:114;;;:::o;57486:145::-;57544:13;57577:46;57591:31;57615:5;57598:23;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;57598:23:0;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;57598:23:0;;;57591:31;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;57591:31:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;57591:31:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;57591:31:0;;;;;;;;;;;;;;;;57577:13;:46::i;:::-;57570:53;;57486:145;;;:::o;57639:1480::-;57741:14;57821:12;57836:1;:8;57821:23;;57899:16;57925:1;:8;57918:4;:15;57899:34;;58012:14;58047:2;58041;58030:1;:8;:13;58029:20;;;;;;58012:37;;58128:14;58163:2;58157;58146:1;:8;:13;58145:20;;;;;;58128:37;;58215:4;58209:11;58326:8;58323:1;58316:19;58432:1;58400:276;58455:6;58452:1;58449:13;58400:276;;;58637:1;58634;58630:9;58626:2;58622:18;58619:1;58615:26;58609:33;58582:1;58579;58575:9;58571:2;58567:18;58564:1;58560:26;58531:130;58494:1;58491;58487:9;58482:14;;58400:276;;;58404:44;58773:1;58741:287;58796:6;58793:1;58790:13;58741:287;;;58989:1;58986;58982:9;58978:2;58974:18;58971:1;58967:26;58961:33;58932:4;58927:1;58924;58920:9;58916:2;58912:18;58908:29;58905:1;58901:37;58872:141;58835:1;58832;58828:9;58823:14;;58741:287;;;58745:44;59070:8;59066:2;59062:17;59059:1;59055:25;59049:4;59042:39;59100:1;59095:6;;58185:927;;;;;;;;;:::o;39034:202::-;39098:24;39110:2;39114:7;39098:11;:24::i;:::-;39135:40;39163:2;39167:7;39135:27;:40::i;:::-;39188;39220:7;39188:31;:40::i;:::-;39034:202;;:::o;26921:352::-;27074:32;27088:4;27094:2;27098:7;27074:13;:32::i;:::-;27139:48;27162:4;27168:2;27172:7;27181:5;27139:22;:48::i;:::-;27117:148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26921:352;;;;:::o;53983:530::-;54063:27;54118:1;54112:2;:7;54108:50;;;54136:10;;;;;;;;;;;;;;;;;;;;;54108:50;54168:9;54180:2;54168:14;;54193:11;54215:69;54227:1;54222;:6;54215:69;;54245:5;;;;;;;54270:2;54265:7;;;;;;;;;54215:69;;;54294:17;54324:3;54314:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;54314:14:0;;;;54294:34;;54339:9;54357:1;54351:3;:7;54339:19;;54369:107;54382:1;54376:2;:7;54369:107;;54436:2;54431;:7;;;;;;54425:2;:14;54412:29;;54400:4;54405:3;;;;;;;54400:9;;;;;;;;;;;:41;;;;;;;;;;;54462:2;54456:8;;;;;;;;;54369:107;;;54500:4;54486:19;;;;;;53983:530;;;;:::o;53795:180::-;53900:13;53938:29;53948:2;53952;53938:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;53931:36;;53795:180;;;;:::o;23294:179::-;23401:4;23430:18;:25;23449:5;23430:25;;;;;;;;;;;;;;;:35;23456:8;23430:35;;;;;;;;;;;;;;;;;;;;;;;;;23423:42;;23294:179;;;;:::o;51887:266::-;51995:1;51975:22;;:8;:22;;;;51953:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52108:8;52079:38;;52100:6;;;;;;;;;;;52079:38;;;;;;;;;;;;52137:8;52128:6;;:17;;;;;;;;;;;;;;;;;;51887:266;:::o;31899:530::-;32061:4;32041:24;;:16;32049:7;32041;:16::i;:::-;:24;;;32019:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32167:1;32153:16;;:2;:16;;;;32145:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32223:23;32238:7;32223:14;:23::i;:::-;32259:35;:17;:23;32277:4;32259:23;;;;;;;;;;;;;;;:33;:35::i;:::-;32305:33;:17;:21;32323:2;32305:21;;;;;;;;;;;;;;;:31;:33::i;:::-;32374:2;32351:11;:20;32363:7;32351:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;32413:7;32409:2;32394:27;;32403:4;32394:27;;;;;;;;;;;;31899:530;;;:::o;41741:1162::-;42021:22;42046:32;42076:1;42046:12;:18;42059:4;42046:18;;;;;;;;;;;;;;;:25;;;;:29;;:32;;;;:::i;:::-;42021:57;;42089:18;42110:17;:26;42128:7;42110:26;;;;;;;;;;;;42089:47;;42257:14;42243:10;:28;42239:328;;42288:19;42310:12;:18;42323:4;42310:18;;;;;;;;;;;;;;;42329:14;42310:34;;;;;;;;;;;;;;;;42288:56;;42394:11;42361:12;:18;42374:4;42361:18;;;;;;;;;;;;;;;42380:10;42361:30;;;;;;;;;;;;;;;:44;;;;42511:10;42478:17;:30;42496:11;42478:30;;;;;;;;;;;:43;;;;42239:328;;42656:12;:18;42669:4;42656:18;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;41741:1162;;;;:::o;40563:186::-;40677:12;:16;40690:2;40677:16;;;;;;;;;;;;;;;:23;;;;40648:17;:26;40666:7;40648:26;;;;;;;;;;;:52;;;;40711:12;:16;40724:2;40711:16;;;;;;;;;;;;;;;40733:7;40711:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;40711:30:0;;;;;;;;;;;;;;;;;;;;;;40563:186;;:::o;57019:459::-;57105:17;57140:14;57167:2;57157:13;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;57157:13:0;;;;57140:30;;57186:8;57197:1;57186:12;;57181:264;57204:2;57200:1;:6;;;57181:264;;;57228:8;57246:3;57250:1;57246:6;;;;;;;;;;;;57228:25;;57268:9;57298:2;57293:1;57287:8;;:13;;;;;;;;57280:21;;57268:33;;57316:9;57357:2;57351:9;;57346:2;:14;57341:1;57335:8;;:25;57328:33;;57316:45;;57387:8;57392:2;57387:4;:8::i;:::-;57376:1;57382;57378;:5;57376:8;;;;;;;;;;;;;:19;;;;;;;;;;;57425:8;57430:2;57425:4;:8::i;:::-;57410:1;57420;57416;57412;:5;:9;57410:12;;;;;;;;;;;;;:23;;;;;;;;;;;57181:264;;;57208:3;;;;;;;57181:264;;;;57468:1;57455:15;;57019:459;;;;:::o;30251:335::-;30337:1;30323:16;;:2;:16;;;;30315:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30396:16;30404:7;30396;:16::i;:::-;30395:17;30387:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30481:2;30458:11;:20;30470:7;30458:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;30494:33;:17;:21;30512:2;30494:21;;;;;;;;;;;;;;;:31;:33::i;:::-;30570:7;30566:2;30545:33;;30562:1;30545:33;;;;;;;;;;;;30251:335;;:::o;40950:164::-;41054:10;:17;;;;41027:15;:24;41043:7;41027:24;;;;;;;;;;;:44;;;;41082:10;41098:7;41082:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;41082:24:0;;;;;;;;;;;;;;;;;;;;;;40950:164;:::o;33081:1201::-;33237:4;33259:15;:2;:13;;;:15::i;:::-;33254:60;;33298:4;33291:11;;;;33254:60;33385:12;33399:23;33439:2;:7;;33526:2;33510:36;;;:45;;;;33578:12;:10;:12::i;:::-;33613:4;33640:7;33670:5;33465:229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;33465:229:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;33465:229:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;33465:229:0;33439:270;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;33439:270:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;33384:325:0;;;;33725:7;33720:555;;33773:1;33753:10;:17;:21;33749:384;;;33921:10;33915:17;33982:15;33969:10;33965:2;33961:19;33954:44;33869:148;34057:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33720:555;34165:13;34192:10;34181:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34181:32:0;;;;;;;;;;;;;;;;34165:48;;18473:10;34246:16;;34236:26;;;:6;:26;;;;34228:35;;;;;33081:1201;;;;;;;:::o;52329:1015::-;52513:13;52539:16;52564:2;52539:28;;52578:16;52603:2;52578:28;;52617:16;52642:2;52617:28;;52656:16;52681:2;52656:28;;52695:16;52720:2;52695:28;;52734:19;52850:3;:10;52837:3;:10;52824:3;:10;52811:3;:10;52798:3;:10;:23;:36;:49;:62;52769:106;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;52769:106:0;;;;52734:141;;52886:19;52914:5;52886:34;;52931:9;52943:1;52931:13;;52960:9;52972:1;52960:13;;52955:61;52979:3;:10;52975:1;:14;52955:61;;;53010:3;53014:1;53010:6;;;;;;;;;;;;;;;;52996;53003:3;;;;;;52996:11;;;;;;;;;;;:20;;;;;;;;;;;52991:3;;;;;;;52955:61;;;;53032:9;53044:1;53032:13;;53027:61;53051:3;:10;53047:1;:14;53027:61;;;53082:3;53086:1;53082:6;;;;;;;;;;;;;;;;53068;53075:3;;;;;;53068:11;;;;;;;;;;;:20;;;;;;;;;;;53063:3;;;;;;;53027:61;;;;53104:9;53116:1;53104:13;;53099:61;53123:3;:10;53119:1;:14;53099:61;;;53154:3;53158:1;53154:6;;;;;;;;;;;;;;;;53140;53147:3;;;;;;53140:11;;;;;;;;;;;:20;;;;;;;;;;;53135:3;;;;;;;53099:61;;;;53176:9;53188:1;53176:13;;53171:61;53195:3;:10;53191:1;:14;53171:61;;;53226:3;53230:1;53226:6;;;;;;;;;;;;;;;;53212;53219:3;;;;;;53212:11;;;;;;;;;;;:20;;;;;;;;;;;53207:3;;;;;;;53171:61;;;;53248:9;53260:1;53248:13;;53243:61;53267:3;:10;53263:1;:14;53243:61;;;53298:3;53302:1;53298:6;;;;;;;;;;;;;;;;53284;53291:3;;;;;;53284:11;;;;;;;;;;;:20;;;;;;;;;;;53279:3;;;;;;;53243:61;;;;53329:6;53315:21;;;;;;;;;;52329:1015;;;;;;;:::o;34450:175::-;34550:1;34514:38;;:15;:24;34530:7;34514:24;;;;;;;;;;;;;;;;;;;;;:38;;;34510:108;;34604:1;34569:15;:24;34585:7;34569:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;34510:108;34450:175;:::o;15993:110::-;16074:21;16093:1;16074:7;:14;;;:18;;:21;;;;:::i;:::-;16057:7;:14;;:38;;;;15993:110;:::o;15804:181::-;15976:1;15958:7;:14;;;:19;;;;;;;;;;;15804:181;:::o;7090:136::-;7148:7;7175:43;7179:1;7182;7175:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7168:50;;7090:136;;;;:::o;56840:171::-;56887:8;56923:2;56918:1;56912:8;;:13;;;56908:95;;;56952:4;56947:1;56941:8;;:15;56934:23;;56927:30;;;;56908:95;56998:4;56993:1;56987:8;;:15;56980:23;;56973:30;;56840:171;;;;:::o;12103:654::-;12163:4;12425:16;12452:19;12487:66;12452:101;;;;12669:7;12657:20;12645:32;;12718:11;12706:8;:23;;:42;;;;;12745:3;12733:15;;:8;:15;;12706:42;12698:51;;;;12103:654;;;:::o;7563:226::-;7683:7;7716:1;7711;:6;;7719:12;7703:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7703:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7743:9;7759:1;7755;:5;7743:17;;7780:1;7773:8;;;7563:226;;;;;:::o;59221:7737::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://b6d3b88ecca7f0f6dde6409e04f57985266397516fab3202f448b96aee508e89
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.