ETH Price: $2,641.65 (+1.40%)

Token

TAMAG Accessory NiFTygotchi (TMA)
 

Overview

Max Total Supply

346 TMA

Holders

30

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xd3abd40212649e9b100df7b26f6792ed91034a56
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TMA

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-20
*/

// File: node_modules\@openzeppelin\contracts\utils\EnumerableSet.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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



pragma solidity ^0.6.2;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

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

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

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

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

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

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: node_modules\@openzeppelin\contracts\GSN\Context.sol



pragma solidity ^0.6.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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

// File: node_modules\@openzeppelin\contracts\access\AccessControl.sol



pragma solidity ^0.6.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: node_modules\@openzeppelin\contracts\introspection\IERC165.sol



pragma solidity ^0.6.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: node_modules\@openzeppelin\contracts\token\ERC1155\IERC1155.sol



pragma solidity ^0.6.2;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

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

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external;
}

// File: node_modules\@openzeppelin\contracts\token\ERC1155\IERC1155MetadataURI.sol



pragma solidity ^0.6.2;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: node_modules\@openzeppelin\contracts\token\ERC1155\IERC1155Receiver.sol



pragma solidity ^0.6.0;


/**
 * _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    )
        external
        returns(bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    )
        external
        returns(bytes4);
}

// File: node_modules\@openzeppelin\contracts\introspection\ERC165.sol



pragma solidity ^0.6.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) public view override 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 virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: node_modules\@openzeppelin\contracts\math\SafeMath.sol



pragma solidity ^0.6.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.
     */
    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.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        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.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: node_modules\@openzeppelin\contracts\token\ERC1155\ERC1155.sol



pragma solidity ^0.6.0;








/**
 *
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using SafeMath for uint256;
    using Address for address;

    // Mapping from token ID to account balances
    mapping (uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /*
     *     bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e
     *     bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a
     *     bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6
     *
     *     => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^
     *        0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26
     */
    bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26;

    /*
     *     bytes4(keccak256('uri(uint256)')) == 0x0e89341c
     */
    bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c;

    /**
     * @dev See {_setURI}.
     */
    constructor (string memory uri) public {
        _setURI(uri);

        // register the supported interfaces to conform to ERC1155 via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155);

        // register the supported interfaces to conform to ERC1155MetadataURI via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) external view override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    )
        public
        view
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            require(accounts[i] != address(0), "ERC1155: batch balance query for the zero address");
            batchBalances[i] = _balances[ids[i]][accounts[i]];
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][from] = _balances[id][from].sub(amount, "ERC1155: insufficient balance for transfer");
        _balances[id][to] = _balances[id][to].add(amount);

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            _balances[id][from] = _balances[id][from].sub(
                amount,
                "ERC1155: insufficient balance for transfer"
            );
            _balances[id][to] = _balances[id][to].add(amount);
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] = _balances[id][account].add(amount);
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] = amounts[i].add(_balances[ids[i]][to]);
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(address account, uint256 id, uint256 amount) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        _balances[id][account] = _balances[id][account].sub(
            amount,
            "ERC1155: burn amount exceeds balance"
        );

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][account] = _balances[ids[i]][account].sub(
                amounts[i],
                "ERC1155: burn amount exceeds balance"
            );
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        internal virtual
    { }

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: node_modules\@openzeppelin\contracts\token\ERC1155\ERC1155Burnable.sol



pragma solidity ^0.6.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(address account, uint256 id, uint256 value) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(address account, uint256[] memory ids, uint256[] memory values) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: node_modules\@openzeppelin\contracts\utils\Pausable.sol



pragma solidity ^0.6.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: node_modules\@openzeppelin\contracts\token\ERC1155\ERC1155Pausable.sol



pragma solidity ^0.6.0;



/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        internal virtual override
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

// File: @openzeppelin\contracts\presets\ERC1155PresetMinterPauser.sol



pragma solidity ^0.6.0;






/**
 * @dev {ERC1155} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC1155PresetMinterPauser is Context, AccessControl, ERC1155Burnable, ERC1155Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE`, and `PAUSER_ROLE` to the account that
     * deploys the contract.
     */
    constructor(string memory uri) public ERC1155(uri) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`, of token type `id`.
     *
     * See {ERC1155-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 id, uint256 amount, bytes memory data) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint");

        _mint(to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] variant of {mint}.
     */
    function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint");

        _mintBatch(to, ids, amounts, data);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC1155Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC1155Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        internal virtual override(ERC1155, ERC1155Pausable)
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }
}



// File: contracts\MyOwnable.sol



pragma solidity ^0.6.0;

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

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

    /**
     * @dev Initializes the contract.
     */
    constructor (address o) internal {
        _owner = o;
        emit OwnershipTransferred(address(0), o);
    }

    /**
     * @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(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts\TMA.sol

pragma solidity ^0.6.12;




contract TMA is 
    ERC1155PresetMinterPauser("https://us-central1-nfgotchi-c88dd.cloudfunctions.net/widgets/resource/tma/{id}"), 
    MyOwnable
{
    using SafeMath for uint256;

    string public name;
    string public symbol;
    mapping (uint256 => uint256) public tokenSupply;

    constructor(string memory _name, string memory _symbol, address owner) public MyOwnable(owner) {
        name = _name;
        symbol = _symbol;

        _setupRole(DEFAULT_ADMIN_ROLE, owner);
        _setupRole(MINTER_ROLE, owner);
        _setupRole(PAUSER_ROLE, owner);
        
        // deployed via eth.deployer
        address a = _msgSender();
        renounceRole(DEFAULT_ADMIN_ROLE,a);
        renounceRole(MINTER_ROLE,a);
        renounceRole(PAUSER_ROLE,a);
    }

    function setURI(string memory uri) public onlyOwner{
        _setURI(uri);
    }

    function totalSupply(
        uint256 _id
    ) public view returns (uint256) {
        return tokenSupply[_id];
    }

    function mint(address _to, uint256 _id, uint256 _quantity, bytes memory _data) public override onlyOwner{
        _mint(_to, _id, _quantity, _data);
        tokenSupply[_id] = tokenSupply[_id].add(_quantity);
    }
    
    function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) public override onlyOwner{
        _mintBatch(to, ids, amounts, data);
        for (uint256 i = 0; i < ids.length; i++){
            tokenSupply[ids[i]] = tokenSupply[ids[i]].add(amounts[i]);
        }
    }

    function burn(address account, uint256 id, uint256 value) public override{
        ERC1155Burnable.burn(account, id, value);
        tokenSupply[id] = tokenSupply[id].sub(value);
    }

    function burnBatch(address account, uint256[] memory ids, uint256[] memory values) public override {
        ERC1155Burnable.burnBatch(account, ids, values);
        for (uint256 i = 0; i < ids.length; i++){
            tokenSupply[ids[i]] = tokenSupply[ids[i]].sub(values[i]);
        }
    }

    mapping(uint256 => uint256) public bonusEffect;
    function setBonusEffect(uint256 tokenId, uint256 amt) public onlyOwner{
        bonusEffect[tokenId] = amt;
    }
    function close() public onlyOwner { 
        address payable p = payable(owner());
        selfdestruct(p); 
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"bonusEffect","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"close","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"setBonusEffect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162005cf838038062005cf8833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190505050806040518060800160405280604f815260200162005c7a604f913980620001f66301ffc9a760e01b620004d960201b60201c565b6200020781620005e260201b60201c565b6200021f63d9b67a2660e01b620004d960201b60201c565b62000237630e89341c60e01b620004d960201b60201c565b506000600560006101000a81548160ff021916908315150217905550620002776000801b6200026b620005fe60201b60201c565b6200060660201b60201c565b620002b87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620002ac620005fe60201b60201c565b6200060660201b60201c565b620002f97f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620002ed620005fe60201b60201c565b6200060660201b60201c565b5080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508260069080519060200190620003af92919062000a07565b508160079080519060200190620003c892919062000a07565b50620003de6000801b826200060660201b60201c565b620004107f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826200060660201b60201c565b620004427f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a826200060660201b60201c565b600062000454620005fe60201b60201c565b90506200046b6000801b826200061c60201b60201c565b6200049d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826200061c60201b60201c565b620004cf7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a826200061c60201b60201c565b5050505062000aad565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b8060049080519060200190620005fa92919062000a07565b5050565b600033905090565b620006188282620006c760201b60201c565b5050565b6200062c620005fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614620006b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018062005cc9602f913960400191505060405180910390fd5b620006c382826200076a60201b60201c565b5050565b620006f5816000808581526020019081526020016000206000016200080d60201b6200313a1790919060201c565b1562000766576200070b620005fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62000798816000808581526020019081526020016000206000016200084560201b6200316a1790919060201c565b156200080957620007ae620005fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006200083d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200087d60201b60201c565b905092915050565b600062000875836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620008f760201b60201c565b905092915050565b6000620008918383620009e460201b60201c565b620008ec578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620008f1565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114620009d857600060018203905060006001866000018054905003905060008660000182815481106200094457fe5b90600052602060002001549050808760000184815481106200096257fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806200099b57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050620009de565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000a4a57805160ff191683800117855562000a7b565b8280016001018555821562000a7b579182015b8281111562000a7a57825182559160200191906001019062000a5d565b5b50905062000a8a919062000a8e565b5090565b5b8082111562000aa957600081600090555060010162000a8f565b5090565b6151bd8062000abd6000396000f3fe608060405234801561001057600080fd5b506004361061021b5760003560e01c8063731133e911610125578063bd85b039116100ad578063e63ab1e91161007c578063e63ab1e9146111a9578063e985e9c5146111c7578063f242432a14611241578063f2fde38b14611350578063f5298aca146113945761021b565b8063bd85b039146110b9578063ca15c873146110fb578063d53913931461113d578063d547741f1461115b5761021b565b806391d14854116100f457806391d1485414610f2257806395d89b4114610f86578063a217fddf14611009578063a22cb46514611027578063bc99d8a8146110775761021b565b8063731133e914610d935780638456cb5914610e825780638da5cb5b14610e8c5780639010d07c14610ec05761021b565b80632f2ff15d116101a857806343d726d61161017757806343d726d614610a525780634e1273f414610a5c5780635c975abb14610bfd5780636b20c45414610c1d578063715018a614610d895761021b565b80632f2ff15d1461097457806330772d47146109c257806336568abe146109fa5780633f4ba83a14610a485761021b565b80630e89341c116101ef5780630e89341c146104235780631f7fdffa146104ca578063248a9ca3146106cd5780632693ebf21461070f5780632eb2c2d6146107515761021b565b8062fdd58e1461022057806301ffc9a71461028257806302fe5305146102e557806306fdde03146103a0575b600080fd5b61026c6004803603604081101561023657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113ec565b6040518082815260200191505060405180910390f35b6102cd6004803603602081101561029857600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506114cc565b60405180821515815260200191505060405180910390f35b61039e600480360360208110156102fb57600080fd5b810190808035906020019064010000000081111561031857600080fd5b82018360208201111561032a57600080fd5b8035906020019184600183028401116401000000008311171561034c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611534565b005b6103a861160a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103e85780820151818401526020810190506103cd565b50505050905090810190601f1680156104155780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61044f6004803603602081101561043957600080fd5b81019080803590602001909291905050506116a8565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561048f578082015181840152602081019050610474565b50505050905090810190601f1680156104bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106cb600480360360808110156104e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561051d57600080fd5b82018360208201111561052f57600080fd5b8035906020019184602083028401116401000000008311171561055157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156105b157600080fd5b8201836020820111156105c357600080fd5b803590602001918460208302840111640100000000831117156105e557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561064557600080fd5b82018360208201111561065757600080fd5b8035906020019184600183028401116401000000008311171561067957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061174c565b005b6106f9600480360360208110156106e357600080fd5b81019080803590602001909291905050506118b8565b6040518082815260200191505060405180910390f35b61073b6004803603602081101561072557600080fd5b81019080803590602001909291905050506118d7565b6040518082815260200191505060405180910390f35b610972600480360360a081101561076757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156107c457600080fd5b8201836020820111156107d657600080fd5b803590602001918460208302840111640100000000831117156107f857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561085857600080fd5b82018360208201111561086a57600080fd5b8035906020019184602083028401116401000000008311171561088c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156108ec57600080fd5b8201836020820111156108fe57600080fd5b8035906020019184600183028401116401000000008311171561092057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506118ef565b005b6109c06004803603604081101561098a57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d7a565b005b6109f8600480360360408110156109d857600080fd5b810190808035906020019092919080359060200190929190505050611e03565b005b610a4660048036036040811015610a1057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ee9565b005b610a50611f82565b005b610a5a612012565b005b610ba660048036036040811015610a7257600080fd5b8101908080359060200190640100000000811115610a8f57600080fd5b820183602082011115610aa157600080fd5b80359060200191846020830284011164010000000083111715610ac357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610b2357600080fd5b820183602082011115610b3557600080fd5b80359060200191846020830284011164010000000083111715610b5757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612101565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610be9578082015181840152602081019050610bce565b505050509050019250505060405180910390f35b610c056122f3565b60405180821515815260200191505060405180910390f35b610d8760048036036060811015610c3357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610c7057600080fd5b820183602082011115610c8257600080fd5b80359060200191846020830284011164010000000083111715610ca457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610d0457600080fd5b820183602082011115610d1657600080fd5b80359060200191846020830284011164010000000083111715610d3857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929050505061230a565b005b610d916123aa565b005b610e8060048036036080811015610da957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610dfa57600080fd5b820183602082011115610e0c57600080fd5b80359060200191846001830284011164010000000083111715610e2e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612535565b005b610e8a61264e565b005b610e946126de565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ef660048036036040811015610ed657600080fd5b810190808035906020019092919080359060200190929190505050612708565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610f6e60048036036040811015610f3857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612739565b60405180821515815260200191505060405180910390f35b610f8e61276a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fce578082015181840152602081019050610fb3565b50505050905090810190601f168015610ffb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b611011612808565b6040518082815260200191505060405180910390f35b6110756004803603604081101561103d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061280f565b005b6110a36004803603602081101561108d57600080fd5b81019080803590602001909291905050506129a8565b6040518082815260200191505060405180910390f35b6110e5600480360360208110156110cf57600080fd5b81019080803590602001909291905050506129c0565b6040518082815260200191505060405180910390f35b6111276004803603602081101561111157600080fd5b81019080803590602001909291905050506129dd565b6040518082815260200191505060405180910390f35b611145612a03565b6040518082815260200191505060405180910390f35b6111a76004803603604081101561117157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a27565b005b6111b1612ab0565b6040518082815260200191505060405180910390f35b611229600480360360408110156111dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ad4565b60405180821515815260200191505060405180910390f35b61134e600480360360a081101561125757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803590602001906401000000008111156112c857600080fd5b8201836020820111156112da57600080fd5b803590602001918460018302840111640100000000831117156112fc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612b68565b005b6113926004803603602081101561136657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612edd565b005b6113ea600480360360608110156113aa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506130ed565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614e7b602b913960400191505060405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b61153c61319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611607816131a2565b50565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b505050505081565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117405780601f1061171557610100808354040283529160200191611740565b820191906000526020600020905b81548152906001019060200180831161172357829003601f168201915b50505050509050919050565b61175461319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611816576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611822848484846131bc565b60005b83518110156118b15761187a83828151811061183d57fe5b60200260200101516008600087858151811061185557fe5b60200260200101518152602001908152602001600020546134de90919063ffffffff16565b6008600086848151811061188a57fe5b60200260200101518152602001908152602001600020819055508080600101915050611825565b5050505050565b6000806000838152602001908152602001600020600201549050919050565b60086020528060005260406000206000915090505481565b8151835114611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806151106028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614fa66025913960400191505060405180910390fd5b6119d761319a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611a1d5750611a1c85611a1761319a565b612ad4565b5b611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fcb6032913960400191505060405180910390fd5b6000611a7c61319a565b9050611a8c818787878787613566565b60005b8451811015611c5d576000858281518110611aa657fe5b602002602001015190506000858381518110611abe57fe5b60200260200101519050611b45816040518060600160405280602a8152602001615020602a91396002600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c9092919063ffffffff16565b6002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bfc816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134de90919063ffffffff16565b6002600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050806001019050611a8f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015611d0d578082015181840152602081019050611cf2565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015611d4f578082015181840152602081019050611d34565b5050505090500194505050505060405180910390a4611d7281878787878761363c565b505050505050565b611da060008084815260200190815260200160002060020154611d9b61319a565b612739565b611df5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614e4c602f913960400191505060405180910390fd5b611dff82826139cb565b5050565b611e0b61319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ecd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060096000848152602001908152602001600020819055505050565b611ef161319a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615159602f913960400191505060405180910390fd5b611f7e8282613a5e565b5050565b611fb37f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611fae61319a565b612739565b612008576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b81526020018061504a603b913960400191505060405180910390fd5b612010613af1565b565b61201a61319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006120e66126de565b90508073ffffffffffffffffffffffffffffffffffffffff16ff5b6060815183511461215d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806150e76029913960400191505060405180910390fd5b6060835167ffffffffffffffff8111801561217757600080fd5b506040519080825280602002602001820160405280156121a65781602001602082028036833780820191505090505b50905060005b84518110156122e857600073ffffffffffffffffffffffffffffffffffffffff168582815181106121d957fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16141561224e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614ea66031913960400191505060405180910390fd5b6002600085838151811061225e57fe5b60200260200101518152602001908152602001600020600086838151811061228257fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548282815181106122d157fe5b6020026020010181815250508060010190506121ac565b508091505092915050565b6000600560009054906101000a900460ff16905090565b612315838383613be4565b60005b82518110156123a45761236d82828151811061233057fe5b60200260200101516008600086858151811061234857fe5b6020026020010151815260200190815260200160002054613c9790919063ffffffff16565b6008600085848151811061237d57fe5b60200260200101518152602001908152602001600020819055508080600101915050612318565b50505050565b6123b261319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612474576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61253d61319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61260b84848484613ce1565b6126318260086000868152602001908152602001600020546134de90919063ffffffff16565b600860008581526020019081526020016000208190555050505050565b61267f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61267a61319a565b612739565b6126d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806150856039913960400191505060405180910390fd5b6126dc613ee4565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061273182600080868152602001908152602001600020600001613fd890919063ffffffff16565b905092915050565b600061276282600080868152602001908152602001600020600001613ff290919063ffffffff16565b905092915050565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128005780601f106127d557610100808354040283529160200191612800565b820191906000526020600020905b8154815290600101906020018083116127e357829003601f168201915b505050505081565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff1661282e61319a565b73ffffffffffffffffffffffffffffffffffffffff16141561289b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806150be6029913960400191505060405180910390fd5b80600360006128a861319a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661295561319a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60096020528060005260406000206000915090505481565b600060086000838152602001908152602001600020549050919050565b60006129fc600080848152602001908152602001600020600001614022565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b612a4d60008084815260200190815260200160002060020154612a4861319a565b612739565b612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614f766030913960400191505060405180910390fd5b612aac8282613a5e565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614fa66025913960400191505060405180910390fd5b612bf661319a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612c3c5750612c3b85612c3661319a565b612ad4565b5b612c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f4d6029913960400191505060405180910390fd5b6000612c9b61319a565b9050612cbb818787612cac88614037565b612cb588614037565b87613566565b612d38836040518060600160405280602a8152602001615020602a91396002600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c9092919063ffffffff16565b6002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612def836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134de90919063ffffffff16565b6002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a4612ed58187878787876140a7565b505050505050565b612ee561319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612fa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561302d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614ed76026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6130f88383836143b4565b61311e816008600085815260200190815260200160002054613c9790919063ffffffff16565b6008600084815260200190815260200160002081905550505050565b6000613162836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614467565b905092915050565b6000613192836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6144d7565b905092915050565b600033905090565b80600490805190602001906131b8929190614c5c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613242576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151386021913960400191505060405180910390fd5b815183511461329c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806151106028913960400191505060405180910390fd5b60006132a661319a565b90506132b781600087878787613566565b60005b84518110156133c05761334c600260008784815181106132d657fe5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485838151811061333657fe5b60200260200101516134de90919063ffffffff16565b6002600087848151811061335c57fe5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806001019150506132ba565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015613471578082015181840152602081019050613456565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156134b3578082015181840152602081019050613498565b5050505090500194505050505060405180910390a46134d78160008787878761363c565b5050505050565b60008082840190508381101561355c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6135748686868686866145bf565b505050505050565b6000838311158290613629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156135ee5780820151818401526020810190506135d3565b50505050905090810190601f16801561361b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61365b8473ffffffffffffffffffffffffffffffffffffffff16614633565b156139c3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156137135780820151818401526020810190506136f8565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561375557808201518184015260208101905061373a565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015613794578082015181840152602081019050613779565b50505050905090810190601f1680156137c15780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156137e657600080fd5b505af192505050801561381a57506040513d602081101561380657600080fd5b810190808051906020019092919050505060015b61392457613826614d17565b8061383157506138d3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561389857808201518184015260208101905061387d565b50505050905090810190601f1680156138c55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614dce6034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146139c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e246028913960400191505060405180910390fd5b505b505050505050565b6139f28160008085815260200190815260200160002060000161313a90919063ffffffff16565b15613a5a576139ff61319a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b613a858160008085815260200190815260200160002060000161316a90919063ffffffff16565b15613aed57613a9261319a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600560009054906101000a900460ff16613b73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613bb761319a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b613bec61319a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480613c325750613c3183613c2c61319a565b612ad4565b5b613c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f4d6029913960400191505060405180910390fd5b613c92838383614646565b505050565b6000613cd983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061357c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613d67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151386021913960400191505060405180910390fd5b6000613d7161319a565b9050613d9281600087613d8388614037565b613d8c88614037565b87613566565b613df5836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134de90919063ffffffff16565b6002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a4613edd816000878787876140a7565b5050505050565b600560009054906101000a900460ff1615613f67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613fab61319a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000613fe78360000183614981565b60001c905092915050565b600061401a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614a04565b905092915050565b600061403082600001614a27565b9050919050565b606080600167ffffffffffffffff8111801561405257600080fd5b506040519080825280602002602001820160405280156140815781602001602082028036833780820191505090505b509050828160008151811061409257fe5b60200260200101818152505080915050919050565b6140c68473ffffffffffffffffffffffffffffffffffffffff16614633565b156143ac578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561417f578082015181840152602081019050614164565b50505050905090810190601f1680156141ac5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156141cf57600080fd5b505af192505050801561420357506040513d60208110156141ef57600080fd5b810190808051906020019092919050505060015b61430d5761420f614d17565b8061421a57506142bc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614281578082015181840152602081019050614266565b50505050905090810190601f1680156142ae5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614dce6034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146143aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e246028913960400191505060405180910390fd5b505b505050505050565b6143bc61319a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806144025750614401836143fc61319a565b612ad4565b5b614457576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f4d6029913960400191505060405180910390fd5b614462838383614a38565b505050565b60006144738383614a04565b6144cc5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506144d1565b600090505b92915050565b600080836001016000848152602001908152602001600020549050600081146145b3576000600182039050600060018660000180549050039050600086600001828154811061452257fe5b906000526020600020015490508087600001848154811061453f57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061457757fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506145b9565b60009150505b92915050565b6145cd868686868686614c54565b6145d56122f3565b1561462b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614f21602c913960400191505060405180910390fd5b505050505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156146cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ffd6023913960400191505060405180910390fd5b8051825114614726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806151106028913960400191505060405180910390fd5b600061473061319a565b905061475081856000868660405180602001604052806000815250613566565b60005b8351811015614873576147ff83828151811061476b57fe5b6020026020010151604051806060016040528060248152602001614efd602491396002600088868151811061479c57fe5b6020026020010151815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c9092919063ffffffff16565b6002600086848151811061480f57fe5b6020026020010151815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050614753565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015614924578082015181840152602081019050614909565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561496657808201518184015260208101905061494b565b5050505090500194505050505060405180910390a450505050565b6000818360000180549050116149e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e026022913960400191505060405180910390fd5b8260000182815481106149f157fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ffd6023913960400191505060405180910390fd5b6000614ac861319a565b9050614af881856000614ada87614037565b614ae387614037565b60405180602001604052806000815250613566565b614b7582604051806060016040528060248152602001614efd602491396002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c9092919063ffffffff16565b6002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a450505050565b505050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614c9d57805160ff1916838001178555614ccb565b82800160010185558215614ccb579182015b82811115614cca578251825591602001919060010190614caf565b5b509050614cd89190614cdc565b5090565b5b80821115614cf5576000816000905550600101614cdd565b5090565b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015614d2757614dca565b60046000803e614d38600051614d0a565b6308c379a08114614d495750614dca565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715614d7557505050614dca565b808201805167ffffffffffffffff811115614d94575050505050614dca565b8060208301013d8501811115614daf57505050505050614dca565b614db882614cf9565b60208401016040528296505050505050505b9056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135355061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572455243313135355072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e7061757365455243313135355072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f207061757365455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122019b2d221e1d6018c426a1537c42146fa49570c741cdb0e6fe8f435af96cfb56c64736f6c634300060c003368747470733a2f2f75732d63656e7472616c312d6e66676f746368692d63383864642e636c6f756466756e6374696f6e732e6e65742f776964676574732f7265736f757263652f746d612f7b69647d416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000c2884de64ceff15211bb884a1e84f5aead9fdc7c000000000000000000000000000000000000000000000000000000000000001b54414d4147204163636573736f7279204e69465479676f7463686900000000000000000000000000000000000000000000000000000000000000000000000003544d410000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021b5760003560e01c8063731133e911610125578063bd85b039116100ad578063e63ab1e91161007c578063e63ab1e9146111a9578063e985e9c5146111c7578063f242432a14611241578063f2fde38b14611350578063f5298aca146113945761021b565b8063bd85b039146110b9578063ca15c873146110fb578063d53913931461113d578063d547741f1461115b5761021b565b806391d14854116100f457806391d1485414610f2257806395d89b4114610f86578063a217fddf14611009578063a22cb46514611027578063bc99d8a8146110775761021b565b8063731133e914610d935780638456cb5914610e825780638da5cb5b14610e8c5780639010d07c14610ec05761021b565b80632f2ff15d116101a857806343d726d61161017757806343d726d614610a525780634e1273f414610a5c5780635c975abb14610bfd5780636b20c45414610c1d578063715018a614610d895761021b565b80632f2ff15d1461097457806330772d47146109c257806336568abe146109fa5780633f4ba83a14610a485761021b565b80630e89341c116101ef5780630e89341c146104235780631f7fdffa146104ca578063248a9ca3146106cd5780632693ebf21461070f5780632eb2c2d6146107515761021b565b8062fdd58e1461022057806301ffc9a71461028257806302fe5305146102e557806306fdde03146103a0575b600080fd5b61026c6004803603604081101561023657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113ec565b6040518082815260200191505060405180910390f35b6102cd6004803603602081101561029857600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506114cc565b60405180821515815260200191505060405180910390f35b61039e600480360360208110156102fb57600080fd5b810190808035906020019064010000000081111561031857600080fd5b82018360208201111561032a57600080fd5b8035906020019184600183028401116401000000008311171561034c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611534565b005b6103a861160a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103e85780820151818401526020810190506103cd565b50505050905090810190601f1680156104155780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61044f6004803603602081101561043957600080fd5b81019080803590602001909291905050506116a8565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561048f578082015181840152602081019050610474565b50505050905090810190601f1680156104bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106cb600480360360808110156104e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561051d57600080fd5b82018360208201111561052f57600080fd5b8035906020019184602083028401116401000000008311171561055157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156105b157600080fd5b8201836020820111156105c357600080fd5b803590602001918460208302840111640100000000831117156105e557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561064557600080fd5b82018360208201111561065757600080fd5b8035906020019184600183028401116401000000008311171561067957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061174c565b005b6106f9600480360360208110156106e357600080fd5b81019080803590602001909291905050506118b8565b6040518082815260200191505060405180910390f35b61073b6004803603602081101561072557600080fd5b81019080803590602001909291905050506118d7565b6040518082815260200191505060405180910390f35b610972600480360360a081101561076757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156107c457600080fd5b8201836020820111156107d657600080fd5b803590602001918460208302840111640100000000831117156107f857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561085857600080fd5b82018360208201111561086a57600080fd5b8035906020019184602083028401116401000000008311171561088c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156108ec57600080fd5b8201836020820111156108fe57600080fd5b8035906020019184600183028401116401000000008311171561092057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506118ef565b005b6109c06004803603604081101561098a57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d7a565b005b6109f8600480360360408110156109d857600080fd5b810190808035906020019092919080359060200190929190505050611e03565b005b610a4660048036036040811015610a1057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ee9565b005b610a50611f82565b005b610a5a612012565b005b610ba660048036036040811015610a7257600080fd5b8101908080359060200190640100000000811115610a8f57600080fd5b820183602082011115610aa157600080fd5b80359060200191846020830284011164010000000083111715610ac357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610b2357600080fd5b820183602082011115610b3557600080fd5b80359060200191846020830284011164010000000083111715610b5757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612101565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610be9578082015181840152602081019050610bce565b505050509050019250505060405180910390f35b610c056122f3565b60405180821515815260200191505060405180910390f35b610d8760048036036060811015610c3357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610c7057600080fd5b820183602082011115610c8257600080fd5b80359060200191846020830284011164010000000083111715610ca457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610d0457600080fd5b820183602082011115610d1657600080fd5b80359060200191846020830284011164010000000083111715610d3857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929050505061230a565b005b610d916123aa565b005b610e8060048036036080811015610da957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610dfa57600080fd5b820183602082011115610e0c57600080fd5b80359060200191846001830284011164010000000083111715610e2e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612535565b005b610e8a61264e565b005b610e946126de565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ef660048036036040811015610ed657600080fd5b810190808035906020019092919080359060200190929190505050612708565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610f6e60048036036040811015610f3857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612739565b60405180821515815260200191505060405180910390f35b610f8e61276a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fce578082015181840152602081019050610fb3565b50505050905090810190601f168015610ffb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b611011612808565b6040518082815260200191505060405180910390f35b6110756004803603604081101561103d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061280f565b005b6110a36004803603602081101561108d57600080fd5b81019080803590602001909291905050506129a8565b6040518082815260200191505060405180910390f35b6110e5600480360360208110156110cf57600080fd5b81019080803590602001909291905050506129c0565b6040518082815260200191505060405180910390f35b6111276004803603602081101561111157600080fd5b81019080803590602001909291905050506129dd565b6040518082815260200191505060405180910390f35b611145612a03565b6040518082815260200191505060405180910390f35b6111a76004803603604081101561117157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a27565b005b6111b1612ab0565b6040518082815260200191505060405180910390f35b611229600480360360408110156111dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ad4565b60405180821515815260200191505060405180910390f35b61134e600480360360a081101561125757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803590602001906401000000008111156112c857600080fd5b8201836020820111156112da57600080fd5b803590602001918460018302840111640100000000831117156112fc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612b68565b005b6113926004803603602081101561136657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612edd565b005b6113ea600480360360608110156113aa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506130ed565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614e7b602b913960400191505060405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b61153c61319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611607816131a2565b50565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b505050505081565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117405780601f1061171557610100808354040283529160200191611740565b820191906000526020600020905b81548152906001019060200180831161172357829003601f168201915b50505050509050919050565b61175461319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611816576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611822848484846131bc565b60005b83518110156118b15761187a83828151811061183d57fe5b60200260200101516008600087858151811061185557fe5b60200260200101518152602001908152602001600020546134de90919063ffffffff16565b6008600086848151811061188a57fe5b60200260200101518152602001908152602001600020819055508080600101915050611825565b5050505050565b6000806000838152602001908152602001600020600201549050919050565b60086020528060005260406000206000915090505481565b8151835114611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806151106028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614fa66025913960400191505060405180910390fd5b6119d761319a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611a1d5750611a1c85611a1761319a565b612ad4565b5b611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fcb6032913960400191505060405180910390fd5b6000611a7c61319a565b9050611a8c818787878787613566565b60005b8451811015611c5d576000858281518110611aa657fe5b602002602001015190506000858381518110611abe57fe5b60200260200101519050611b45816040518060600160405280602a8152602001615020602a91396002600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c9092919063ffffffff16565b6002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bfc816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134de90919063ffffffff16565b6002600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050806001019050611a8f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015611d0d578082015181840152602081019050611cf2565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015611d4f578082015181840152602081019050611d34565b5050505090500194505050505060405180910390a4611d7281878787878761363c565b505050505050565b611da060008084815260200190815260200160002060020154611d9b61319a565b612739565b611df5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614e4c602f913960400191505060405180910390fd5b611dff82826139cb565b5050565b611e0b61319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ecd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060096000848152602001908152602001600020819055505050565b611ef161319a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615159602f913960400191505060405180910390fd5b611f7e8282613a5e565b5050565b611fb37f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611fae61319a565b612739565b612008576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b81526020018061504a603b913960400191505060405180910390fd5b612010613af1565b565b61201a61319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006120e66126de565b90508073ffffffffffffffffffffffffffffffffffffffff16ff5b6060815183511461215d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806150e76029913960400191505060405180910390fd5b6060835167ffffffffffffffff8111801561217757600080fd5b506040519080825280602002602001820160405280156121a65781602001602082028036833780820191505090505b50905060005b84518110156122e857600073ffffffffffffffffffffffffffffffffffffffff168582815181106121d957fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16141561224e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614ea66031913960400191505060405180910390fd5b6002600085838151811061225e57fe5b60200260200101518152602001908152602001600020600086838151811061228257fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548282815181106122d157fe5b6020026020010181815250508060010190506121ac565b508091505092915050565b6000600560009054906101000a900460ff16905090565b612315838383613be4565b60005b82518110156123a45761236d82828151811061233057fe5b60200260200101516008600086858151811061234857fe5b6020026020010151815260200190815260200160002054613c9790919063ffffffff16565b6008600085848151811061237d57fe5b60200260200101518152602001908152602001600020819055508080600101915050612318565b50505050565b6123b261319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612474576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61253d61319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61260b84848484613ce1565b6126318260086000868152602001908152602001600020546134de90919063ffffffff16565b600860008581526020019081526020016000208190555050505050565b61267f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61267a61319a565b612739565b6126d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806150856039913960400191505060405180910390fd5b6126dc613ee4565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061273182600080868152602001908152602001600020600001613fd890919063ffffffff16565b905092915050565b600061276282600080868152602001908152602001600020600001613ff290919063ffffffff16565b905092915050565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128005780601f106127d557610100808354040283529160200191612800565b820191906000526020600020905b8154815290600101906020018083116127e357829003601f168201915b505050505081565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff1661282e61319a565b73ffffffffffffffffffffffffffffffffffffffff16141561289b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806150be6029913960400191505060405180910390fd5b80600360006128a861319a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661295561319a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60096020528060005260406000206000915090505481565b600060086000838152602001908152602001600020549050919050565b60006129fc600080848152602001908152602001600020600001614022565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b612a4d60008084815260200190815260200160002060020154612a4861319a565b612739565b612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614f766030913960400191505060405180910390fd5b612aac8282613a5e565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614fa66025913960400191505060405180910390fd5b612bf661319a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612c3c5750612c3b85612c3661319a565b612ad4565b5b612c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f4d6029913960400191505060405180910390fd5b6000612c9b61319a565b9050612cbb818787612cac88614037565b612cb588614037565b87613566565b612d38836040518060600160405280602a8152602001615020602a91396002600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c9092919063ffffffff16565b6002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612def836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134de90919063ffffffff16565b6002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a4612ed58187878787876140a7565b505050505050565b612ee561319a565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612fa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561302d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614ed76026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6130f88383836143b4565b61311e816008600085815260200190815260200160002054613c9790919063ffffffff16565b6008600084815260200190815260200160002081905550505050565b6000613162836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614467565b905092915050565b6000613192836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6144d7565b905092915050565b600033905090565b80600490805190602001906131b8929190614c5c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613242576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151386021913960400191505060405180910390fd5b815183511461329c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806151106028913960400191505060405180910390fd5b60006132a661319a565b90506132b781600087878787613566565b60005b84518110156133c05761334c600260008784815181106132d657fe5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485838151811061333657fe5b60200260200101516134de90919063ffffffff16565b6002600087848151811061335c57fe5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806001019150506132ba565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015613471578082015181840152602081019050613456565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156134b3578082015181840152602081019050613498565b5050505090500194505050505060405180910390a46134d78160008787878761363c565b5050505050565b60008082840190508381101561355c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6135748686868686866145bf565b505050505050565b6000838311158290613629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156135ee5780820151818401526020810190506135d3565b50505050905090810190601f16801561361b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61365b8473ffffffffffffffffffffffffffffffffffffffff16614633565b156139c3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156137135780820151818401526020810190506136f8565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561375557808201518184015260208101905061373a565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015613794578082015181840152602081019050613779565b50505050905090810190601f1680156137c15780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156137e657600080fd5b505af192505050801561381a57506040513d602081101561380657600080fd5b810190808051906020019092919050505060015b61392457613826614d17565b8061383157506138d3565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561389857808201518184015260208101905061387d565b50505050905090810190601f1680156138c55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614dce6034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146139c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e246028913960400191505060405180910390fd5b505b505050505050565b6139f28160008085815260200190815260200160002060000161313a90919063ffffffff16565b15613a5a576139ff61319a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b613a858160008085815260200190815260200160002060000161316a90919063ffffffff16565b15613aed57613a9261319a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600560009054906101000a900460ff16613b73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613bb761319a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b613bec61319a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480613c325750613c3183613c2c61319a565b612ad4565b5b613c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f4d6029913960400191505060405180910390fd5b613c92838383614646565b505050565b6000613cd983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061357c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613d67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151386021913960400191505060405180910390fd5b6000613d7161319a565b9050613d9281600087613d8388614037565b613d8c88614037565b87613566565b613df5836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134de90919063ffffffff16565b6002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a4613edd816000878787876140a7565b5050505050565b600560009054906101000a900460ff1615613f67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613fab61319a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000613fe78360000183614981565b60001c905092915050565b600061401a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614a04565b905092915050565b600061403082600001614a27565b9050919050565b606080600167ffffffffffffffff8111801561405257600080fd5b506040519080825280602002602001820160405280156140815781602001602082028036833780820191505090505b509050828160008151811061409257fe5b60200260200101818152505080915050919050565b6140c68473ffffffffffffffffffffffffffffffffffffffff16614633565b156143ac578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561417f578082015181840152602081019050614164565b50505050905090810190601f1680156141ac5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156141cf57600080fd5b505af192505050801561420357506040513d60208110156141ef57600080fd5b810190808051906020019092919050505060015b61430d5761420f614d17565b8061421a57506142bc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614281578082015181840152602081019050614266565b50505050905090810190601f1680156142ae5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614dce6034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146143aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e246028913960400191505060405180910390fd5b505b505050505050565b6143bc61319a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806144025750614401836143fc61319a565b612ad4565b5b614457576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f4d6029913960400191505060405180910390fd5b614462838383614a38565b505050565b60006144738383614a04565b6144cc5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506144d1565b600090505b92915050565b600080836001016000848152602001908152602001600020549050600081146145b3576000600182039050600060018660000180549050039050600086600001828154811061452257fe5b906000526020600020015490508087600001848154811061453f57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061457757fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506145b9565b60009150505b92915050565b6145cd868686868686614c54565b6145d56122f3565b1561462b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614f21602c913960400191505060405180910390fd5b505050505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156146cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ffd6023913960400191505060405180910390fd5b8051825114614726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806151106028913960400191505060405180910390fd5b600061473061319a565b905061475081856000868660405180602001604052806000815250613566565b60005b8351811015614873576147ff83828151811061476b57fe5b6020026020010151604051806060016040528060248152602001614efd602491396002600088868151811061479c57fe5b6020026020010151815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c9092919063ffffffff16565b6002600086848151811061480f57fe5b6020026020010151815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050614753565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015614924578082015181840152602081019050614909565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561496657808201518184015260208101905061494b565b5050505090500194505050505060405180910390a450505050565b6000818360000180549050116149e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e026022913960400191505060405180910390fd5b8260000182815481106149f157fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ffd6023913960400191505060405180910390fd5b6000614ac861319a565b9050614af881856000614ada87614037565b614ae387614037565b60405180602001604052806000815250613566565b614b7582604051806060016040528060248152602001614efd602491396002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c9092919063ffffffff16565b6002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a450505050565b505050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614c9d57805160ff1916838001178555614ccb565b82800160010185558215614ccb579182015b82811115614cca578251825591602001919060010190614caf565b5b509050614cd89190614cdc565b5090565b5b80821115614cf5576000816000905550600101614cdd565b5090565b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015614d2757614dca565b60046000803e614d38600051614d0a565b6308c379a08114614d495750614dca565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715614d7557505050614dca565b808201805167ffffffffffffffff811115614d94575050505050614dca565b8060208301013d8501811115614daf57505050505050614dca565b614db882614cf9565b60208401016040528296505050505050505b9056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135355061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572455243313135355072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e7061757365455243313135355072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f207061757365455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122019b2d221e1d6018c426a1537c42146fa49570c741cdb0e6fe8f435af96cfb56c64736f6c634300060c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000c2884de64ceff15211bb884a1e84f5aead9fdc7c000000000000000000000000000000000000000000000000000000000000001b54414d4147204163636573736f7279204e69465479676f7463686900000000000000000000000000000000000000000000000000000000000000000000000003544d410000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): TAMAG Accessory NiFTygotchi
Arg [1] : _symbol (string): TMA
Arg [2] : owner (address): 0xC2884De64ceFF15211Bb884a1E84F5aeaD9fdc7c

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000c2884de64ceff15211bb884a1e84f5aead9fdc7c
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [4] : 54414d4147204163636573736f7279204e69465479676f746368690000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 544d410000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62126:2358:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40647:223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31637:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;62922:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62317:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40397:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63371:310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19497:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;62369:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43359:1220;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19873:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64243:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21082:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59329:180;;;:::i;:::-;;64364:117;;;:::i;:::-;;41036:634;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54335:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;63884:298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61508:148;;;:::i;:::-;;63142:217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58935:174;;;:::i;:::-;;60866:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19170:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18131:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;62342:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16876:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41743:311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64190:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;63012:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18444:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57363:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20345:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57432:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42126:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42358:924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61811:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;63689:187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40647:223;40725:7;40772:1;40753:21;;:7;:21;;;;40745:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40840:9;:13;40850:2;40840:13;;;;;;;;;;;:22;40854:7;40840:22;;;;;;;;;;;;;;;;40833:29;;40647:223;;;;:::o;31637:142::-;31714:4;31738:20;:33;31759:11;31738:33;;;;;;;;;;;;;;;;;;;;;;;;;;;31731:40;;31637:142;;;:::o;62922:82::-;61088:12;:10;:12::i;:::-;61078:22;;:6;;;;;;;;;;;:22;;;61070:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62984:12:::1;62992:3;62984:7;:12::i;:::-;62922:82:::0;:::o;62317:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40397:99::-;40451:13;40484:4;40477:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40397:99;;;:::o;63371:310::-;61088:12;:10;:12::i;:::-;61078:22;;:6;;;;;;;;;;;:22;;;61070:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63505:34:::1;63516:2;63520:3;63525:7;63534:4;63505:10;:34::i;:::-;63555:9;63550:124;63574:3;:10;63570:1;:14;63550:124;;;63627:35;63651:7;63659:1;63651:10;;;;;;;;;;;;;;63627:11;:19;63639:3;63643:1;63639:6;;;;;;;;;;;;;;63627:19;;;;;;;;;;;;:23;;:35;;;;:::i;:::-;63605:11;:19;63617:3;63621:1;63617:6;;;;;;;;;;;;;;63605:19;;;;;;;;;;;:57;;;;63586:3;;;;;;;63550:124;;;;63371:310:::0;;;;:::o;19497:114::-;19554:7;19581:6;:12;19588:4;19581:12;;;;;;;;;;;:22;;;19574:29;;19497:114;;;:::o;62369:47::-;;;;;;;;;;;;;;;;;:::o;43359:1220::-;43624:7;:14;43610:3;:10;:28;43602:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43716:1;43702:16;;:2;:16;;;;43694:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43801:12;:10;:12::i;:::-;43793:20;;:4;:20;;;:60;;;;43817:36;43834:4;43840:12;:10;:12::i;:::-;43817:16;:36::i;:::-;43793:60;43771:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43944:16;43963:12;:10;:12::i;:::-;43944:31;;43988:60;44009:8;44019:4;44025:2;44029:3;44034:7;44043:4;43988:20;:60::i;:::-;44066:9;44061:358;44085:3;:10;44081:1;:14;44061:358;;;44117:10;44130:3;44134:1;44130:6;;;;;;;;;;;;;;44117:19;;44151:14;44168:7;44176:1;44168:10;;;;;;;;;;;;;;44151:27;;44217:126;44259:6;44217:126;;;;;;;;;;;;;;;;;:9;:13;44227:2;44217:13;;;;;;;;;;;:19;44231:4;44217:19;;;;;;;;;;;;;;;;:23;;:126;;;;;:::i;:::-;44195:9;:13;44205:2;44195:13;;;;;;;;;;;:19;44209:4;44195:19;;;;;;;;;;;;;;;:148;;;;44378:29;44400:6;44378:9;:13;44388:2;44378:13;;;;;;;;;;;:17;44392:2;44378:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;44358:9;:13;44368:2;44358:13;;;;;;;;;;;:17;44372:2;44358:17;;;;;;;;;;;;;;;:49;;;;44061:358;;44097:3;;;;;44061:358;;;;44466:2;44436:47;;44460:4;44436:47;;44450:8;44436:47;;;44470:3;44475:7;44436:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44496:75;44532:8;44542:4;44548:2;44552:3;44557:7;44566:4;44496:35;:75::i;:::-;43359:1220;;;;;;:::o;19873:227::-;19957:45;19965:6;:12;19972:4;19965:12;;;;;;;;;;;:22;;;19989:12;:10;:12::i;:::-;19957:7;:45::i;:::-;19949:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20067:25;20078:4;20084:7;20067:10;:25::i;:::-;19873:227;;:::o;64243:115::-;61088:12;:10;:12::i;:::-;61078:22;;:6;;;;;;;;;;;:22;;;61070:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64347:3:::1;64324:11;:20;64336:7;64324:20;;;;;;;;;;;:26;;;;64243:115:::0;;:::o;21082:209::-;21180:12;:10;:12::i;:::-;21169:23;;:7;:23;;;21161:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21257:26;21269:4;21275:7;21257:11;:26::i;:::-;21082:209;;:::o;59329:180::-;59382:34;57470:24;59403:12;:10;:12::i;:::-;59382:7;:34::i;:::-;59374:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59491:10;:8;:10::i;:::-;59329:180::o;64364:117::-;61088:12;:10;:12::i;:::-;61078:22;;:6;;;;;;;;;;;:22;;;61070:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64410:17:::1;64438:7;:5;:7::i;:::-;64410:36;;64470:1;64457:15;;;41036:634:::0;41200:16;41261:3;:10;41242:8;:15;:29;41234:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41330:30;41377:8;:15;41363:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41330:63;;41411:9;41406:224;41430:8;:15;41426:1;:19;41406:224;;;41498:1;41475:25;;:8;41484:1;41475:11;;;;;;;;;;;;;;:25;;;;41467:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41588:9;:17;41598:3;41602:1;41598:6;;;;;;;;;;;;;;41588:17;;;;;;;;;;;:30;41606:8;41615:1;41606:11;;;;;;;;;;;;;;41588:30;;;;;;;;;;;;;;;;41569:13;41583:1;41569:16;;;;;;;;;;;;;:49;;;;;41447:3;;;;;41406:224;;;;41649:13;41642:20;;;41036:634;;;;:::o;54335:78::-;54374:4;54398:7;;;;;;;;;;;54391:14;;54335:78;:::o;63884:298::-;63994:47;64020:7;64029:3;64034:6;63994:25;:47::i;:::-;64057:9;64052:123;64076:3;:10;64072:1;:14;64052:123;;;64129:34;64153:6;64160:1;64153:9;;;;;;;;;;;;;;64129:11;:19;64141:3;64145:1;64141:6;;;;;;;;;;;;;;64129:19;;;;;;;;;;;;:23;;:34;;;;:::i;:::-;64107:11;:19;64119:3;64123:1;64119:6;;;;;;;;;;;;;;64107:19;;;;;;;;;;;:56;;;;64088:3;;;;;;;64052:123;;;;63884:298;;;:::o;61508:148::-;61088:12;:10;:12::i;:::-;61078:22;;:6;;;;;;;;;;;:22;;;61070:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61615:1:::1;61578:40;;61599:6;;;;;;;;;;;61578:40;;;;;;;;;;;;61646:1;61629:6;;:19;;;;;;;;;;;;;;;;;;61508:148::o:0;63142:217::-;61088:12;:10;:12::i;:::-;61078:22;;:6;;;;;;;;;;;:22;;;61070:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63257:33:::1;63263:3;63268;63273:9;63284:5;63257;:33::i;:::-;63320:31;63341:9;63320:11;:16;63332:3;63320:16;;;;;;;;;;;;:20;;:31;;;;:::i;:::-;63301:11;:16;63313:3;63301:16;;;;;;;;;;;:50;;;;63142:217:::0;;;;:::o;58935:174::-;58986:34;57470:24;59007:12;:10;:12::i;:::-;58986:7;:34::i;:::-;58978:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59093:8;:6;:8::i;:::-;58935:174::o;60866:79::-;60904:7;60931:6;;;;;;;;;;;60924:13;;60866:79;:::o;19170:138::-;19243:7;19270:30;19294:5;19270:6;:12;19277:4;19270:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;19263:37;;19170:138;;;;:::o;18131:139::-;18200:4;18224:38;18254:7;18224:6;:12;18231:4;18224:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;18217:45;;18131:139;;;;:::o;62342:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16876:49::-;16921:4;16876:49;;;:::o;41743:311::-;41862:8;41846:24;;:12;:10;:12::i;:::-;:24;;;;41838:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41974:8;41929:18;:32;41948:12;:10;:12::i;:::-;41929:32;;;;;;;;;;;;;;;:42;41962:8;41929:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;42027:8;41998:48;;42013:12;:10;:12::i;:::-;41998:48;;;42037:8;41998:48;;;;;;;;;;;;;;;;;;;;41743:311;;:::o;64190:46::-;;;;;;;;;;;;;;;;;:::o;63012:122::-;63083:7;63110:11;:16;63122:3;63110:16;;;;;;;;;;;;63103:23;;63012:122;;;:::o;18444:127::-;18507:7;18534:29;:6;:12;18541:4;18534:12;;;;;;;;;;;:20;;:27;:29::i;:::-;18527:36;;18444:127;;;:::o;57363:62::-;57401:24;57363:62;:::o;20345:230::-;20430:45;20438:6;:12;20445:4;20438:12;;;;;;;;;;;:22;;;20462:12;:10;:12::i;:::-;20430:7;:45::i;:::-;20422:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20541:26;20553:4;20559:7;20541:11;:26::i;:::-;20345:230;;:::o;57432:62::-;57470:24;57432:62;:::o;42126:160::-;42217:4;42241:18;:27;42260:7;42241:27;;;;;;;;;;;;;;;:37;42269:8;42241:37;;;;;;;;;;;;;;;;;;;;;;;;;42234:44;;42126:160;;;;:::o;42358:924::-;42598:1;42584:16;;:2;:16;;;;42576:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42683:12;:10;:12::i;:::-;42675:20;;:4;:20;;;:60;;;;42699:36;42716:4;42722:12;:10;:12::i;:::-;42699:16;:36::i;:::-;42675:60;42653:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42817:16;42836:12;:10;:12::i;:::-;42817:31;;42861:96;42882:8;42892:4;42898:2;42902:21;42920:2;42902:17;:21::i;:::-;42925:25;42943:6;42925:17;:25::i;:::-;42952:4;42861:20;:96::i;:::-;42992:77;43016:6;42992:77;;;;;;;;;;;;;;;;;:9;:13;43002:2;42992:13;;;;;;;;;;;:19;43006:4;42992:19;;;;;;;;;;;;;;;;:23;;:77;;;;;:::i;:::-;42970:9;:13;42980:2;42970:13;;;;;;;;;;;:19;42984:4;42970:19;;;;;;;;;;;;;;;:99;;;;43100:29;43122:6;43100:9;:13;43110:2;43100:13;;;;;;;;;;;:17;43114:2;43100:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;43080:9;:13;43090:2;43080:13;;;;;;;;;;;:17;43094:2;43080:17;;;;;;;;;;;;;;;:49;;;;43178:2;43147:46;;43172:4;43147:46;;43162:8;43147:46;;;43182:2;43186:6;43147:46;;;;;;;;;;;;;;;;;;;;;;;;43206:68;43237:8;43247:4;43253:2;43257;43261:6;43269:4;43206:30;:68::i;:::-;42358:924;;;;;;:::o;61811:244::-;61088:12;:10;:12::i;:::-;61078:22;;:6;;;;;;;;;;;:22;;;61070:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61920:1:::1;61900:22;;:8;:22;;;;61892:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62010:8;61981:38;;62002:6;;;;;;;;;;;61981:38;;;;;;;;;;;;62039:8;62030:6;;:17;;;;;;;;;;;;;;;;;;61811:244:::0;:::o;63689:187::-;63773:40;63794:7;63803:2;63807:5;63773:20;:40::i;:::-;63842:26;63862:5;63842:11;:15;63854:2;63842:15;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;63824:11;:15;63836:2;63824:15;;;;;;;;;;;:44;;;;63689:187;;;:::o;5083:143::-;5153:4;5177:41;5182:3;:10;;5210:5;5202:14;;5194:23;;5177:4;:41::i;:::-;5170:48;;5083:143;;;;:::o;5402:149::-;5475:4;5499:44;5507:3;:10;;5535:5;5527:14;;5519:23;;5499:7;:44::i;:::-;5492:51;;5402:149;;;;:::o;14804:106::-;14857:15;14892:10;14885:17;;14804:106;:::o;45423:88::-;45497:6;45490:4;:13;;;;;;;;;;;;:::i;:::-;;45423:88;:::o;46846:715::-;46995:1;46981:16;;:2;:16;;;;46973:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47068:7;:14;47054:3;:10;:28;47046:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47140:16;47159:12;:10;:12::i;:::-;47140:31;;47184:66;47205:8;47223:1;47227:2;47231:3;47236:7;47245:4;47184:20;:66::i;:::-;47268:6;47263:126;47284:3;:10;47280:1;:14;47263:126;;;47340:37;47355:9;:17;47365:3;47369:1;47365:6;;;;;;;;;;;;;;47355:17;;;;;;;;;;;:21;47373:2;47355:21;;;;;;;;;;;;;;;;47340:7;47348:1;47340:10;;;;;;;;;;;;;;:14;;:37;;;;:::i;:::-;47316:9;:17;47326:3;47330:1;47326:6;;;;;;;;;;;;;;47316:17;;;;;;;;;;;:21;47334:2;47316:21;;;;;;;;;;;;;;;:61;;;;47296:3;;;;;;;47263:126;;;;47442:2;47406:53;;47438:1;47406:53;;47420:8;47406:53;;;47446:3;47451:7;47406:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47472:81;47508:8;47526:1;47530:2;47534:3;47539:7;47548:4;47472:35;:81::i;:::-;46846:715;;;;;:::o;33332:181::-;33390:7;33410:9;33426:1;33422;:5;33410:17;;33451:1;33446;:6;;33438:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33504:1;33497:8;;;33332:181;;;;:::o;59517:353::-;59796:66;59823:8;59833:4;59839:2;59843:3;59848:7;59857:4;59796:26;:66::i;:::-;59517:353;;;;;;:::o;34235:192::-;34321:7;34354:1;34349;:6;;34357:12;34341:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34381:9;34397:1;34393;:5;34381:17;;34418:1;34411:8;;;34235:192;;;;;:::o;51265:799::-;51519:15;:2;:13;;;:15::i;:::-;51515:542;;;51572:2;51555:43;;;51599:8;51609:4;51615:3;51620:7;51629:4;51555:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51551:495;;;;:::i;:::-;;;;;;;;51919:6;51912:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51551:495;51968:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51551:495;51696:52;;;51684:64;;;:8;:64;;;;51680:163;;51773:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51680:163;51635:223;51515:542;51265:799;;;;;;:::o;22325:188::-;22399:33;22424:7;22399:6;:12;22406:4;22399:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;22395:111;;;22481:12;:10;:12::i;:::-;22454:40;;22472:7;22454:40;;22466:4;22454:40;;;;;;;;;;22395:111;22325:188;;:::o;22521:192::-;22596:36;22624:7;22596:6;:12;22603:4;22596:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;22592:114;;;22681:12;:10;:12::i;:::-;22654:40;;22672:7;22654:40;;22666:4;22654:40;;;;;;;;;;22592:114;22521:192;;:::o;55384:120::-;54929:7;;;;;;;;;;;54921:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55453:5:::1;55443:7;;:15;;;;;;;;;;;;;;;;;;55474:22;55483:12;:10;:12::i;:::-;55474:22;;;;;;;;;;;;;;;;;;;;55384:120::o:0;52924:319::-;53066:12;:10;:12::i;:::-;53055:23;;:7;:23;;;:66;;;;53082:39;53099:7;53108:12;:10;:12::i;:::-;53082:16;:39::i;:::-;53055:66;53033:157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53203:32;53214:7;53223:3;53228:6;53203:10;:32::i;:::-;52924:319;;;:::o;33796:136::-;33854:7;33881:43;33885:1;33888;33881:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;33874:50;;33796:136;;;;:::o;45907:583::-;46041:1;46022:21;;:7;:21;;;;46014:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46094:16;46113:12;:10;:12::i;:::-;46094:31;;46138:107;46159:8;46177:1;46181:7;46190:21;46208:2;46190:17;:21::i;:::-;46213:25;46231:6;46213:17;:25::i;:::-;46240:4;46138:20;:107::i;:::-;46283:34;46310:6;46283:9;:13;46293:2;46283:13;;;;;;;;;;;:22;46297:7;46283:22;;;;;;;;;;;;;;;;:26;;:34;;;;:::i;:::-;46258:9;:13;46268:2;46258:13;;;;;;;;;;;:22;46272:7;46258:22;;;;;;;;;;;;;;;:59;;;;46370:7;46333:57;;46366:1;46333:57;;46348:8;46333:57;;;46379:2;46383:6;46333:57;;;;;;;;;;;;;;;;;;;;;;;;46403:79;46434:8;46452:1;46456:7;46465:2;46469:6;46477:4;46403:30;:79::i;:::-;45907:583;;;;;:::o;55125:118::-;54653:7;;;;;;;;;;;54652:8;54644:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55195:4:::1;55185:7;;:14;;;;;;;;;;;;;;;;;;55215:20;55222:12;:10;:12::i;:::-;55215:20;;;;;;;;;;;;;;;;;;;;55125:118::o:0;6342:149::-;6416:7;6459:22;6463:3;:10;;6475:5;6459:3;:22::i;:::-;6451:31;;6436:47;;6342:149;;;;:::o;5637:158::-;5717:4;5741:46;5751:3;:10;;5779:5;5771:14;;5763:23;;5741:9;:46::i;:::-;5734:53;;5637:158;;;;:::o;5881:117::-;5944:7;5971:19;5979:3;:10;;5971:7;:19::i;:::-;5964:26;;5881:117;;;:::o;52072:198::-;52138:16;52167:22;52206:1;52192:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52167:41;;52230:7;52219:5;52225:1;52219:8;;;;;;;;;;;;;:18;;;;;52257:5;52250:12;;;52072:198;;;:::o;50495:762::-;50724:15;:2;:13;;;:15::i;:::-;50720:530;;;50777:2;50760:38;;;50799:8;50809:4;50815:2;50819:6;50827:4;50760:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50756:483;;;;:::i;:::-;;;;;;;;51112:6;51105:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50756:483;51161:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50756:483;50894:47;;;50882:59;;;:8;:59;;;;50878:158;;50966:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50878:158;50833:218;50720:530;50495:762;;;;;;:::o;52629:287::-;52746:12;:10;:12::i;:::-;52735:23;;:7;:23;;;:66;;;;52762:39;52779:7;52788:12;:10;:12::i;:::-;52762:16;:39::i;:::-;52735:66;52713:157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52883:25;52889:7;52898:2;52902:5;52883;:25::i;:::-;52629:287;;;:::o;1737:414::-;1800:4;1822:21;1832:3;1837:5;1822:9;:21::i;:::-;1817:327;;1860:3;:11;;1877:5;1860:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2043:3;:11;;:18;;;;2021:3;:12;;:19;2034:5;2021:19;;;;;;;;;;;:40;;;;2083:4;2076:11;;;;1817:327;2127:5;2120:12;;1737:414;;;;;:::o;2327:1544::-;2393:4;2511:18;2532:3;:12;;:19;2545:5;2532:19;;;;;;;;;;;;2511:40;;2582:1;2568:10;:15;2564:1300;;2930:21;2967:1;2954:10;:14;2930:38;;2983:17;3024:1;3003:3;:11;;:18;;;;:22;2983:42;;3270:17;3290:3;:11;;3302:9;3290:22;;;;;;;;;;;;;;;;3270:42;;3436:9;3407:3;:11;;3419:13;3407:26;;;;;;;;;;;;;;;:38;;;;3555:1;3539:13;:17;3513:3;:12;;:23;3526:9;3513:23;;;;;;;;;;;:43;;;;3665:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;3760:3;:12;;:19;3773:5;3760:19;;;;;;;;;;;3753:26;;;3803:4;3796:11;;;;;;;;2564:1300;3847:5;3840:12;;;2327:1544;;;;;:::o;56150:406::-;56403:66;56430:8;56440:4;56446:2;56450:3;56455:7;56464:4;56403:26;:66::i;:::-;56491:8;:6;:8::i;:::-;56490:9;56482:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56150:406;;;;;;:::o;8884:422::-;8944:4;9152:12;9263:7;9251:20;9243:28;;9297:1;9290:4;:8;9283:15;;;8884:422;;;:::o;48574:721::-;48714:1;48695:21;;:7;:21;;;;48687:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48789:7;:14;48775:3;:10;:28;48767:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48861:16;48880:12;:10;:12::i;:::-;48861:31;;48905:69;48926:8;48936:7;48953:1;48957:3;48962:7;48905:69;;;;;;;;;;;;:20;:69::i;:::-;48992:6;48987:225;49008:3;:10;49004:1;:14;48987:225;;;49069:131;49118:7;49126:1;49118:10;;;;;;;;;;;;;;49069:131;;;;;;;;;;;;;;;;;:9;:17;49079:3;49083:1;49079:6;;;;;;;;;;;;;;49069:17;;;;;;;;;;;:26;49087:7;49069:26;;;;;;;;;;;;;;;;:30;;:131;;;;;:::i;:::-;49040:9;:17;49050:3;49054:1;49050:6;;;;;;;;;;;;;;49040:17;;;;;;;;;;;:26;49058:7;49040:26;;;;;;;;;;;;;;;:160;;;;49020:3;;;;;;;48987:225;;;;49270:1;49229:58;;49253:7;49229:58;;49243:8;49229:58;;;49274:3;49279:7;49229:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48574:721;;;;:::o;4625:204::-;4692:7;4741:5;4720:3;:11;;:18;;;;:26;4712:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4803:3;:11;;4815:5;4803:18;;;;;;;;;;;;;;;;4796:25;;4625:204;;;;:::o;3957:129::-;4030:4;4077:1;4054:3;:12;;:19;4067:5;4054:19;;;;;;;;;;;;:24;;4047:31;;3957:129;;;;:::o;4172:109::-;4228:7;4255:3;:11;;:18;;;;4248:25;;4172:109;;;:::o;47820:551::-;47935:1;47916:21;;:7;:21;;;;47908:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47990:16;48009:12;:10;:12::i;:::-;47990:31;;48034:105;48055:8;48065:7;48082:1;48086:21;48104:2;48086:17;:21::i;:::-;48109:25;48127:6;48109:17;:25::i;:::-;48034:105;;;;;;;;;;;;:20;:105::i;:::-;48177:111;48218:6;48177:111;;;;;;;;;;;;;;;;;:9;:13;48187:2;48177:13;;;;;;;;;;;:22;48191:7;48177:22;;;;;;;;;;;;;;;;:26;;:111;;;;;:::i;:::-;48152:9;:13;48162:2;48152:13;;;;;;;;;;;:22;48166:7;48152:22;;;;;;;;;;;;;;;:136;;;;48348:1;48306:57;;48331:7;48306:57;;48321:8;48306:57;;;48352:2;48356:6;48306:57;;;;;;;;;;;;;;;;;;;;;;;;47820:551;;;;:::o;50251:236::-;;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;5:97::-;;93:2;89:7;84:2;77:5;73:14;69:28;59:38;;53:49;;;:::o;110:106::-;;200:5;195:3;191:15;169:37;;163:53;;;:::o;224:739::-;;297:4;279:16;276:26;273:2;;;305:5;;273:2;339:1;336;333;318:23;357:34;388:1;382:8;357:34;:::i;:::-;414:10;409:3;406:19;396:2;;429:5;;;396:2;460;454:9;514:1;496:16;492:24;489:1;483:4;468:49;543:4;537:11;624:16;617:4;609:6;605:17;602:39;576:18;568:6;565:30;556:91;553:2;;;655:5;;;;;553:2;693:6;687:4;683:17;725:3;719:10;748:18;740:6;737:30;734:2;;;770:5;;;;;;;734:2;814:6;807:4;802:3;798:14;794:27;847:16;841:4;837:27;832:3;829:36;826:2;;;868:5;;;;;;;;826:2;912:29;934:6;912:29;:::i;:::-;905:4;900:3;896:14;892:50;888:2;881:62;955:3;948:10;;267:696;;;;;;;;:::o

Swarm Source

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