ETH Price: $3,408.95 (-0.20%)
Gas: 8 Gwei

Token

City Street Strategies ()
 

Overview

Max Total Supply

520

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x749d7f97f048cd1776fd8ebc0c9ceaa3184abeab
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:
CityStreetStrategies

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Ownerfy-CityStreetStrategies.sol
pragma solidity ^0.8.0;
/**
* City Street Strategies
* Written and deployed by Ownerfy Inc. of Ownerfy.com
*
* This contract supports universal royalties standard EIP2981
* Media hash (sha256) / digital fingerprint is written on-chain in the Update event on mint
* Audits and relevant data are added can be added to the update event
* Metadata URIs are IPFS
* This contract is not a proxy. 
* This contract cannot pause end user transfers.
* This contract cannot be rug pulled.
* Original Author N. Juntilla

* Once an NFT URI is locked it cannot be changed.
*/

// Base libraries
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";


contract CityStreetStrategies  is Ownable, ERC1155 {

  string public name;

  uint256 private _royaltyBps = 500;
  address payable private _royaltyRecipient;

  bytes4 private constant _INTERFACE_ID_ROYALTIES_CREATORCORE = 0xbb3bafd6;
  bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;
  bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;

  event Update(string _value, uint256 indexed _id);
  event LockUri(uint256 indexed _id);
  event UpdateRoyalty(address indexed _address, uint256 _bps);

  // CIDs
  mapping (uint256 => string) public cids;

  // Locked URIs
  mapping (uint256 => bool) public lockedUris;

  constructor(string memory _name, string memory _uri) ERC1155(_uri) payable {
    name = _name;
    _royaltyRecipient = payable(msg.sender);
  }

  /**
    * @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, string calldata _update, string calldata cid) public virtual onlyOwner{

      if (bytes(_update).length > 0) {
        emit Update(_update, id);
      }

      cids[id] = cid;
      _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, string[] calldata updates, string[] calldata _cids) public virtual onlyOwner{

      _mintBatch(to, ids, amounts, data);

      for (uint i = 0; i < ids.length; i++) {
        if (bytes(_cids[i]).length > 0) {
          cids[ids[i]] = _cids[i];
        }
        if (bytes(updates[i]).length > 0) {
          emit Update(updates[i], ids[i]);
        }
      }
  }

  /**
    * @dev Emit Update Event
    * This adds miscellaneous data into the event log about a token
    */
  function emitUpdateEvent(string calldata _update, uint256 id) public virtual onlyOwner {
      emit Update(_update, id);
  }

  /**
    * @dev Update uri
    */
  function updateUri(string calldata _cid, uint256 _id) public virtual onlyOwner {
      require(lockedUris[_id] != true, "Ownerfy: This uri is locked and cannot be altered");
      cids[_id] = _cid;
      emit URI(uri(_id), _id);
  }

  /**
    * @dev Lock uri
    */
  function lockUri(uint256 _id) public virtual onlyOwner {
      lockedUris[_id] = true;
      emit LockUri(_id);
  }

  function uri(uint256 _id) public view virtual override returns (string memory) {
      return string(abi.encodePacked('https://gateway.pinata.cloud/ipfs/', cids[_id]));
  }

  /**
    * @dev Update royalties
    */
  function updateRoyalties(address payable recipient, uint256 bps) external onlyOwner {
      _royaltyRecipient = recipient;
      _royaltyBps = bps;
      emit UpdateRoyalty(recipient, bps);
  }

  /**
    * ROYALTY FUNCTIONS
    */
  function getRoyalties(uint256) external view returns (address payable[] memory recipients, uint256[] memory bps) {
      if (_royaltyRecipient != address(0x0)) {
          recipients = new address payable[](1);
          recipients[0] = _royaltyRecipient;
          bps = new uint256[](1);
          bps[0] = _royaltyBps;
      }
      return (recipients, bps);
  }

  function getFeeRecipients(uint256) external view returns (address payable[] memory recipients) {
      if (_royaltyRecipient != address(0x0)) {
          recipients = new address payable[](1);
          recipients[0] = _royaltyRecipient;
      }
      return recipients;
  }

  function getFeeBps(uint256) external view returns (uint[] memory bps) {
      if (_royaltyRecipient != address(0x0)) {
          bps = new uint256[](1);
          bps[0] = _royaltyBps;
      }
      return bps;
  }

  function royaltyInfo(uint256, uint256 value) external view returns (address, uint256) {
      return (_royaltyRecipient, value*_royaltyBps/10000);
  }

  /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155) returns (bool) {
        return ERC1155.supportsInterface(interfaceId) || interfaceId == _INTERFACE_ID_ROYALTIES_CREATORCORE
               || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981 || interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE;
    }

}

File 2 of 10 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @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) public view virtual 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 virtual 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
        virtual
        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) {
            batchBalances[i] = balanceOf(accounts[i], ids[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 virtual 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(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(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(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `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 memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

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

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - 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[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        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];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += 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 `account` 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] += 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 (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        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), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        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 (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 4 of 10 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 5 of 10 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 10 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 10 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"payable","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":"uint256","name":"_id","type":"uint256"}],"name":"LockUri","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"Update","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"uint256","name":"_bps","type":"uint256"}],"name":"UpdateRoyalty","type":"event"},{"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":"cids","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_update","type":"string"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"emitUpdateEvent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"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":"uint256","name":"_id","type":"uint256"}],"name":"lockUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockedUris","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":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"string","name":"_update","type":"string"},{"internalType":"string","name":"cid","type":"string"}],"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"},{"internalType":"string[]","name":"updates","type":"string[]"},{"internalType":"string[]","name":"_cids","type":"string[]"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cid","type":"string"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"updateUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526101f460055560405162004c3138038062004c3183398181016040528101906200002f9190620002ce565b806200005062000044620000c460201b60201c565b620000cc60201b60201c565b62000061816200019060201b60201c565b5081600490805190602001906200007a929190620001ac565b5033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000472565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060039080519060200190620001a8929190620001ac565b5050565b828054620001ba90620003de565b90600052602060002090601f016020900481019282620001de57600085556200022a565b82601f10620001f957805160ff19168380011785556200022a565b828001600101855582156200022a579182015b82811115620002295782518255916020019190600101906200020c565b5b5090506200023991906200023d565b5090565b5b80821115620002585760008160009055506001016200023e565b5090565b6000620002736200026d8462000375565b62000341565b9050828152602081018484840111156200028c57600080fd5b62000299848285620003a8565b509392505050565b600082601f830112620002b357600080fd5b8151620002c58482602086016200025c565b91505092915050565b60008060408385031215620002e257600080fd5b600083015167ffffffffffffffff811115620002fd57600080fd5b6200030b85828601620002a1565b925050602083015167ffffffffffffffff8111156200032957600080fd5b6200033785828601620002a1565b9150509250929050565b6000604051905081810181811067ffffffffffffffff821117156200036b576200036a62000443565b5b8060405250919050565b600067ffffffffffffffff82111562000393576200039262000443565b5b601f19601f8301169050602081019050919050565b60005b83811015620003c8578082015181840152602081019050620003ab565b83811115620003d8576000848401525b50505050565b60006002820490506001821680620003f757607f821691505b602082108114156200040e576200040d62000414565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6147af80620004826000396000f3fe608060405234801561001057600080fd5b50600436106101575760003560e01c8063715018a6116100c3578063d5e8e3531161007c578063d5e8e353146103fc578063e985e9c514610418578063f242432a14610448578063f2fde38b14610464578063f74bee2814610480578063fce32bee1461049c57610157565b8063715018a61461033b5780638328a652146103455780638da5cb5b14610361578063a22cb4651461037f578063b9c4d9fb1461039b578063bb3bafd6146103cb57610157565b80632eb2c2d6116101155780632eb2c2d61461026b5780634e1273f414610287578063571b76f5146102b75780635ed12364146102d35780636c2f5acd146102ef578063704fe7101461030b57610157565b8062fdd58e1461015c57806301ffc9a71461018c57806306fdde03146101bc5780630e89341c146101da5780630ebd4c7f1461020a5780632a55205a1461023a575b600080fd5b6101766004803603810190610171919061327e565b6104cc565b6040516101839190614134565b60405180910390f35b6101a660048036038101906101a19190613401565b610596565b6040516101b39190613f13565b60405180910390f35b6101c4610695565b6040516101d19190613f52565b60405180910390f35b6101f460048036038101906101ef91906134ab565b610723565b6040516102019190613f52565b60405180910390f35b610224600480360381019061021f91906134ab565b61075e565b6040516102319190613eba565b60405180910390f35b610254600480360381019061024f91906134d4565b610877565b604051610262929190613e38565b60405180910390f35b61028560048036038101906102809190612fe9565b6108c3565b005b6102a1600480360381019061029c9190613395565b610964565b6040516102ae9190613eba565b60405180910390f35b6102d160048036038101906102cc9190613137565b610b15565b005b6102ed60048036038101906102e89190613453565b610de2565b005b61030960048036038101906103049190612f71565b610f2e565b005b610325600480360381019061032091906134ab565b611044565b6040516103329190613f52565b60405180910390f35b6103436110e4565b005b61035f600480360381019061035a9190613453565b61116c565b005b610369611227565b6040516103769190613d5b565b60405180910390f35b61039960048036038101906103949190613242565b611250565b005b6103b560048036038101906103b091906134ab565b6113d1565b6040516103c29190613e61565b60405180910390f35b6103e560048036038101906103e091906134ab565b611538565b6040516103f3929190613e83565b60405180910390f35b610416600480360381019061041191906132ba565b61175b565b005b610432600480360381019061042d9190612fad565b611857565b60405161043f9190613f13565b60405180910390f35b610462600480360381019061045d91906130a8565b6118eb565b005b61047e60048036038101906104799190612f48565b61198c565b005b61049a600480360381019061049591906134ab565b611a84565b005b6104b660048036038101906104b191906134ab565b611b5c565b6040516104c39190613f13565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561053d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053490613fb4565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006105a182611b7c565b806105f0575063bb3bafd660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063f5750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068e575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600480546106a2906144fb565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce906144fb565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b505050505081565b6060600760008381526020019081526020016000206040516020016107489190613d39565b6040516020818303038152906040529050919050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461087257600167ffffffffffffffff8111156107f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156108255781602001602082028036833780820191505090505b50905060055481600081518110610865577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b919050565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600554856108ae91906143d9565b6108b891906143a8565b915091509250929050565b6108cb611c5e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061091157506109108561090b611c5e565b611857565b5b610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790614034565b60405180910390fd5b61095d8585858585611c66565b5050505050565b606081518351146109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a1906140d4565b60405180910390fd5b6000835167ffffffffffffffff8111156109ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a1b5781602001602082028036833780820191505090505b50905060005b8451811015610b0a57610ab4858281518110610a66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610aa7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516104cc565b828281518110610aed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610b039061452d565b9050610a21565b508091505092915050565b610b1d611c5e565b73ffffffffffffffffffffffffffffffffffffffff16610b3b611227565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890614074565b60405180910390fd5b610b9d88888888611fc9565b60005b8751811015610dd7576000838383818110610be4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610bf69190614178565b90501115610cab57828282818110610c37577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610c499190614178565b600760008b8581518110610c86577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000209190610ca9929190612bff565b505b6000858583818110610ce6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610cf89190614178565b90501115610dc457878181518110610d39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101517f68569b533bfdeb53ee0f87318e7aa1ad56335f80086c45dfaa733c24fa43ea7b868684818110610d9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610dad9190614178565b604051610dbb929190613f2e565b60405180910390a25b8080610dcf9061452d565b915050610ba0565b505050505050505050565b610dea611c5e565b73ffffffffffffffffffffffffffffffffffffffff16610e08611227565b73ffffffffffffffffffffffffffffffffffffffff1614610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614074565b60405180910390fd5b600115156008600083815260200190815260200160002060009054906101000a900460ff1615151415610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90614094565b60405180910390fd5b8282600760008481526020019081526020016000209190610ee8929190612bff565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b610f1483610723565b604051610f219190613f52565b60405180910390a2505050565b610f36611c5e565b73ffffffffffffffffffffffffffffffffffffffff16610f54611227565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190614074565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806005819055508173ffffffffffffffffffffffffffffffffffffffff167fa0a3764a6a020070a984037ddad31af783c92eae7581e99c957792d105717dd4826040516110389190614134565b60405180910390a25050565b60076020528060005260406000206000915090508054611063906144fb565b80601f016020809104026020016040519081016040528092919081815260200182805461108f906144fb565b80156110dc5780601f106110b1576101008083540402835291602001916110dc565b820191906000526020600020905b8154815290600101906020018083116110bf57829003601f168201915b505050505081565b6110ec611c5e565b73ffffffffffffffffffffffffffffffffffffffff1661110a611227565b73ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790614074565b60405180910390fd5b61116a6000612234565b565b611174611c5e565b73ffffffffffffffffffffffffffffffffffffffff16611192611227565b73ffffffffffffffffffffffffffffffffffffffff16146111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90614074565b60405180910390fd5b807f68569b533bfdeb53ee0f87318e7aa1ad56335f80086c45dfaa733c24fa43ea7b848460405161121a929190613f2e565b60405180910390a2505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff1661126f611c5e565b73ffffffffffffffffffffffffffffffffffffffff1614156112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd906140b4565b60405180910390fd5b80600260006112d3611c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611380611c5e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113c59190613f13565b60405180910390a35050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461153357600167ffffffffffffffff81111561146a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114985781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106114f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b606080600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175657600167ffffffffffffffff8111156115d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116005781602001602082028036833780820191505090505b509150600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600081518110611660577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600167ffffffffffffffff8111156116db577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117095781602001602082028036833780820191505090505b50905060055481600081518110611749577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b915091565b611763611c5e565b73ffffffffffffffffffffffffffffffffffffffff16611781611227565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90614074565b60405180910390fd5b600084849050111561181e57867f68569b533bfdeb53ee0f87318e7aa1ad56335f80086c45dfaa733c24fa43ea7b8585604051611815929190613f2e565b60405180910390a25b8181600760008a81526020019081526020016000209190611840929190612bff565b5061184d888888886122f8565b5050505050505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118f3611c5e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611939575061193885611933611c5e565b611857565b5b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90613ff4565b60405180910390fd5b611985858585858561248f565b5050505050565b611994611c5e565b73ffffffffffffffffffffffffffffffffffffffff166119b2611227565b73ffffffffffffffffffffffffffffffffffffffff1614611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90614074565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90613fd4565b60405180910390fd5b611a8181612234565b50565b611a8c611c5e565b73ffffffffffffffffffffffffffffffffffffffff16611aaa611227565b73ffffffffffffffffffffffffffffffffffffffff1614611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790614074565b60405180910390fd5b60016008600083815260200190815260200160002060006101000a81548160ff021916908315150217905550807f5a1c79180a856a008d8aa135ea13b4cde5a08f359cea6c74a98e67eb6ce6caa560405160405180910390a250565b60086020528060005260406000206000915054906101000a900460ff1681565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c575750611c5682612714565b5b9050919050565b600033905090565b8151835114611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca1906140f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1190614014565b60405180910390fd5b6000611d24611c5e565b9050611d3481878787878761277e565b60005b8451811015611f34576000858281518110611d7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611dc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5990614054565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f199190614352565b9250508190555050505080611f2d9061452d565b9050611d37565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611fab929190613edc565b60405180910390a4611fc1818787878787612786565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090614114565b60405180910390fd5b815183511461207d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612074906140f4565b60405180910390fd5b6000612087611c5e565b90506120988160008787878761277e565b60005b845181101561219e578381815181106120dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016000878481518110612122577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121849190614352565b9250508190555080806121969061452d565b91505061209b565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612216929190613edc565b60405180910390a461222d81600087878787612786565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90614114565b60405180910390fd5b6000612372611c5e565b90506123938160008761238488612956565b61238d88612956565b8761277e565b826001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f39190614352565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161247192919061414f565b60405180910390a461248881600087878787612a1c565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f690614014565b60405180910390fd5b6000612509611c5e565b905061252981878761251a88612956565b61252388612956565b8761277e565b60006001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156125c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b890614054565b60405180910390fd5b8381036001600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126789190614352565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516126f592919061414f565b60405180910390a461270b828888888888612a1c565b50505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b6127a58473ffffffffffffffffffffffffffffffffffffffff16612bec565b1561294e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016127eb959493929190613d76565b602060405180830381600087803b15801561280557600080fd5b505af192505050801561283657506040513d601f19601f82011682018060405250810190612833919061342a565b60015b6128c557612842614650565b8061284d575061288a565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128819190613f52565b60405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90613f74565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461294c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294390613f94565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561299b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156129c95781602001602082028036833780820191505090505b5090508281600081518110612a07577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612a3b8473ffffffffffffffffffffffffffffffffffffffff16612bec565b15612be4578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612a81959493929190613dde565b602060405180830381600087803b158015612a9b57600080fd5b505af1925050508015612acc57506040513d601f19601f82011682018060405250810190612ac9919061342a565b60015b612b5b57612ad8614650565b80612ae35750612b20565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b179190613f52565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5290613f74565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd990613f94565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054612c0b906144fb565b90600052602060002090601f016020900481019282612c2d5760008555612c74565b82601f10612c4657803560ff1916838001178555612c74565b82800160010185558215612c74579182015b82811115612c73578235825591602001919060010190612c58565b5b509050612c819190612c85565b5090565b5b80821115612c9e576000816000905550600101612c86565b5090565b6000612cb5612cb084614200565b6141cf565b90508083825260208201905082856020860282011115612cd457600080fd5b60005b85811015612d045781612cea8882612db8565b845260208401935060208301925050600181019050612cd7565b5050509392505050565b6000612d21612d1c8461422c565b6141cf565b90508083825260208201905082856020860282011115612d4057600080fd5b60005b85811015612d705781612d568882612f33565b845260208401935060208301925050600181019050612d43565b5050509392505050565b6000612d8d612d8884614258565b6141cf565b905082815260208101848484011115612da557600080fd5b612db08482856144b9565b509392505050565b600081359050612dc781614706565b92915050565b600081359050612ddc8161471d565b92915050565b600082601f830112612df357600080fd5b8135612e03848260208601612ca2565b91505092915050565b60008083601f840112612e1e57600080fd5b8235905067ffffffffffffffff811115612e3757600080fd5b602083019150836020820283011115612e4f57600080fd5b9250929050565b600082601f830112612e6757600080fd5b8135612e77848260208601612d0e565b91505092915050565b600081359050612e8f81614734565b92915050565b600081359050612ea48161474b565b92915050565b600081519050612eb98161474b565b92915050565b600082601f830112612ed057600080fd5b8135612ee0848260208601612d7a565b91505092915050565b60008083601f840112612efb57600080fd5b8235905067ffffffffffffffff811115612f1457600080fd5b602083019150836001820283011115612f2c57600080fd5b9250929050565b600081359050612f4281614762565b92915050565b600060208284031215612f5a57600080fd5b6000612f6884828501612db8565b91505092915050565b60008060408385031215612f8457600080fd5b6000612f9285828601612dcd565b9250506020612fa385828601612f33565b9150509250929050565b60008060408385031215612fc057600080fd5b6000612fce85828601612db8565b9250506020612fdf85828601612db8565b9150509250929050565b600080600080600060a0868803121561300157600080fd5b600061300f88828901612db8565b955050602061302088828901612db8565b945050604086013567ffffffffffffffff81111561303d57600080fd5b61304988828901612e56565b935050606086013567ffffffffffffffff81111561306657600080fd5b61307288828901612e56565b925050608086013567ffffffffffffffff81111561308f57600080fd5b61309b88828901612ebf565b9150509295509295909350565b600080600080600060a086880312156130c057600080fd5b60006130ce88828901612db8565b95505060206130df88828901612db8565b94505060406130f088828901612f33565b935050606061310188828901612f33565b925050608086013567ffffffffffffffff81111561311e57600080fd5b61312a88828901612ebf565b9150509295509295909350565b60008060008060008060008060c0898b03121561315357600080fd5b60006131618b828c01612db8565b985050602089013567ffffffffffffffff81111561317e57600080fd5b61318a8b828c01612e56565b975050604089013567ffffffffffffffff8111156131a757600080fd5b6131b38b828c01612e56565b965050606089013567ffffffffffffffff8111156131d057600080fd5b6131dc8b828c01612ebf565b955050608089013567ffffffffffffffff8111156131f957600080fd5b6132058b828c01612e0c565b945094505060a089013567ffffffffffffffff81111561322457600080fd5b6132308b828c01612e0c565b92509250509295985092959890939650565b6000806040838503121561325557600080fd5b600061326385828601612db8565b925050602061327485828601612e80565b9150509250929050565b6000806040838503121561329157600080fd5b600061329f85828601612db8565b92505060206132b085828601612f33565b9150509250929050565b60008060008060008060008060c0898b0312156132d657600080fd5b60006132e48b828c01612db8565b98505060206132f58b828c01612f33565b97505060406133068b828c01612f33565b965050606089013567ffffffffffffffff81111561332357600080fd5b61332f8b828c01612ebf565b955050608089013567ffffffffffffffff81111561334c57600080fd5b6133588b828c01612ee9565b945094505060a089013567ffffffffffffffff81111561337757600080fd5b6133838b828c01612ee9565b92509250509295985092959890939650565b600080604083850312156133a857600080fd5b600083013567ffffffffffffffff8111156133c257600080fd5b6133ce85828601612de2565b925050602083013567ffffffffffffffff8111156133eb57600080fd5b6133f785828601612e56565b9150509250929050565b60006020828403121561341357600080fd5b600061342184828501612e95565b91505092915050565b60006020828403121561343c57600080fd5b600061344a84828501612eaa565b91505092915050565b60008060006040848603121561346857600080fd5b600084013567ffffffffffffffff81111561348257600080fd5b61348e86828701612ee9565b935093505060206134a186828701612f33565b9150509250925092565b6000602082840312156134bd57600080fd5b60006134cb84828501612f33565b91505092915050565b600080604083850312156134e757600080fd5b60006134f585828601612f33565b925050602061350685828601612f33565b9150509250929050565b600061351c8383613540565b60208301905092915050565b60006135348383613d1b565b60208301905092915050565b61354981614445565b82525050565b61355881614433565b82525050565b6000613569826142bd565b6135738185614303565b935061357e83614288565b8060005b838110156135af5781516135968882613510565b97506135a1836142e9565b925050600181019050613582565b5085935050505092915050565b60006135c7826142c8565b6135d18185614314565b93506135dc83614298565b8060005b8381101561360d5781516135f48882613528565b97506135ff836142f6565b9250506001810190506135e0565b5085935050505092915050565b61362381614457565b82525050565b6000613634826142d3565b61363e8185614325565b935061364e8185602086016144c8565b61365781614632565b840191505092915050565b600061366e8385614336565b935061367b8385846144b9565b61368483614632565b840190509392505050565b600061369a826142de565b6136a48185614336565b93506136b48185602086016144c8565b6136bd81614632565b840191505092915050565b600081546136d5816144fb565b6136df8186614347565b945060018216600081146136fa576001811461370b5761373e565b60ff1983168652818601935061373e565b613714856142a8565b60005b8381101561373657815481890152600182019150602081019050613717565b838801955050505b50505092915050565b6000613754603483614336565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b60006137ba602883614336565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613820602b83614336565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613886602683614336565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ec602983614336565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b6000613952602583614336565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139b8603283614336565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613a1e602a83614336565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a84602083614336565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613ac4602283614347565b91507f68747470733a2f2f676174657761792e70696e6174612e636c6f75642f69706660008301527f732f0000000000000000000000000000000000000000000000000000000000006020830152602282019050919050565b6000613b2a603183614336565b91507f4f776e657266793a205468697320757269206973206c6f636b656420616e642060008301527f63616e6e6f7420626520616c74657265640000000000000000000000000000006020830152604082019050919050565b6000613b90602983614336565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bf6602983614336565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c5c602883614336565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cc2602183614336565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613d24816144af565b82525050565b613d33816144af565b82525050565b6000613d4482613ab7565b9150613d5082846136c8565b915081905092915050565b6000602082019050613d70600083018461354f565b92915050565b600060a082019050613d8b600083018861354f565b613d98602083018761354f565b8181036040830152613daa81866135bc565b90508181036060830152613dbe81856135bc565b90508181036080830152613dd28184613629565b90509695505050505050565b600060a082019050613df3600083018861354f565b613e00602083018761354f565b613e0d6040830186613d2a565b613e1a6060830185613d2a565b8181036080830152613e2c8184613629565b90509695505050505050565b6000604082019050613e4d600083018561354f565b613e5a6020830184613d2a565b9392505050565b60006020820190508181036000830152613e7b818461355e565b905092915050565b60006040820190508181036000830152613e9d818561355e565b90508181036020830152613eb181846135bc565b90509392505050565b60006020820190508181036000830152613ed481846135bc565b905092915050565b60006040820190508181036000830152613ef681856135bc565b90508181036020830152613f0a81846135bc565b90509392505050565b6000602082019050613f28600083018461361a565b92915050565b60006020820190508181036000830152613f49818486613662565b90509392505050565b60006020820190508181036000830152613f6c818461368f565b905092915050565b60006020820190508181036000830152613f8d81613747565b9050919050565b60006020820190508181036000830152613fad816137ad565b9050919050565b60006020820190508181036000830152613fcd81613813565b9050919050565b60006020820190508181036000830152613fed81613879565b9050919050565b6000602082019050818103600083015261400d816138df565b9050919050565b6000602082019050818103600083015261402d81613945565b9050919050565b6000602082019050818103600083015261404d816139ab565b9050919050565b6000602082019050818103600083015261406d81613a11565b9050919050565b6000602082019050818103600083015261408d81613a77565b9050919050565b600060208201905081810360008301526140ad81613b1d565b9050919050565b600060208201905081810360008301526140cd81613b83565b9050919050565b600060208201905081810360008301526140ed81613be9565b9050919050565b6000602082019050818103600083015261410d81613c4f565b9050919050565b6000602082019050818103600083015261412d81613cb5565b9050919050565b60006020820190506141496000830184613d2a565b92915050565b60006040820190506141646000830185613d2a565b6141716020830184613d2a565b9392505050565b6000808335600160200384360303811261419157600080fd5b80840192508235915067ffffffffffffffff8211156141af57600080fd5b6020830192506001820236038313156141c757600080fd5b509250929050565b6000604051905081810181811067ffffffffffffffff821117156141f6576141f5614603565b5b8060405250919050565b600067ffffffffffffffff82111561421b5761421a614603565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561424757614246614603565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561427357614272614603565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061435d826144af565b9150614368836144af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561439d5761439c614576565b5b828201905092915050565b60006143b3826144af565b91506143be836144af565b9250826143ce576143cd6145a5565b5b828204905092915050565b60006143e4826144af565b91506143ef836144af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561442857614427614576565b5b828202905092915050565b600061443e8261448f565b9050919050565b60006144508261448f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144e65780820151818401526020810190506144cb565b838111156144f5576000848401525b50505050565b6000600282049050600182168061451357607f821691505b60208210811415614527576145266145d4565b5b50919050565b6000614538826144af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561456b5761456a614576565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d101561466057614703565b60046000803e614671600051614643565b6308c379a081146146825750614703565b60405160043d036004823e80513d602482011167ffffffffffffffff821117156146ae57505050614703565b808201805167ffffffffffffffff8111156146cd575050505050614703565b8060208301013d85018111156146e857505050505050614703565b6146f182614632565b60208401016040528296505050505050505b90565b61470f81614433565b811461471a57600080fd5b50565b61472681614445565b811461473157600080fd5b50565b61473d81614457565b811461474857600080fd5b50565b61475481614463565b811461475f57600080fd5b50565b61476b816144af565b811461477657600080fd5b5056fea2646970667358221220899b68d0bde55eab456ed87f4f7745fe43ba5d708bd9099770ed4d7171c4c28664736f6c634300080000330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000164369747920537472656574205374726174656769657300000000000000000000000000000000000000000000000000000000000000000000000000000000000868747470733a2f2f000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101575760003560e01c8063715018a6116100c3578063d5e8e3531161007c578063d5e8e353146103fc578063e985e9c514610418578063f242432a14610448578063f2fde38b14610464578063f74bee2814610480578063fce32bee1461049c57610157565b8063715018a61461033b5780638328a652146103455780638da5cb5b14610361578063a22cb4651461037f578063b9c4d9fb1461039b578063bb3bafd6146103cb57610157565b80632eb2c2d6116101155780632eb2c2d61461026b5780634e1273f414610287578063571b76f5146102b75780635ed12364146102d35780636c2f5acd146102ef578063704fe7101461030b57610157565b8062fdd58e1461015c57806301ffc9a71461018c57806306fdde03146101bc5780630e89341c146101da5780630ebd4c7f1461020a5780632a55205a1461023a575b600080fd5b6101766004803603810190610171919061327e565b6104cc565b6040516101839190614134565b60405180910390f35b6101a660048036038101906101a19190613401565b610596565b6040516101b39190613f13565b60405180910390f35b6101c4610695565b6040516101d19190613f52565b60405180910390f35b6101f460048036038101906101ef91906134ab565b610723565b6040516102019190613f52565b60405180910390f35b610224600480360381019061021f91906134ab565b61075e565b6040516102319190613eba565b60405180910390f35b610254600480360381019061024f91906134d4565b610877565b604051610262929190613e38565b60405180910390f35b61028560048036038101906102809190612fe9565b6108c3565b005b6102a1600480360381019061029c9190613395565b610964565b6040516102ae9190613eba565b60405180910390f35b6102d160048036038101906102cc9190613137565b610b15565b005b6102ed60048036038101906102e89190613453565b610de2565b005b61030960048036038101906103049190612f71565b610f2e565b005b610325600480360381019061032091906134ab565b611044565b6040516103329190613f52565b60405180910390f35b6103436110e4565b005b61035f600480360381019061035a9190613453565b61116c565b005b610369611227565b6040516103769190613d5b565b60405180910390f35b61039960048036038101906103949190613242565b611250565b005b6103b560048036038101906103b091906134ab565b6113d1565b6040516103c29190613e61565b60405180910390f35b6103e560048036038101906103e091906134ab565b611538565b6040516103f3929190613e83565b60405180910390f35b610416600480360381019061041191906132ba565b61175b565b005b610432600480360381019061042d9190612fad565b611857565b60405161043f9190613f13565b60405180910390f35b610462600480360381019061045d91906130a8565b6118eb565b005b61047e60048036038101906104799190612f48565b61198c565b005b61049a600480360381019061049591906134ab565b611a84565b005b6104b660048036038101906104b191906134ab565b611b5c565b6040516104c39190613f13565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561053d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053490613fb4565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006105a182611b7c565b806105f0575063bb3bafd660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063f5750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068e575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600480546106a2906144fb565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce906144fb565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b505050505081565b6060600760008381526020019081526020016000206040516020016107489190613d39565b6040516020818303038152906040529050919050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461087257600167ffffffffffffffff8111156107f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156108255781602001602082028036833780820191505090505b50905060055481600081518110610865577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b919050565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600554856108ae91906143d9565b6108b891906143a8565b915091509250929050565b6108cb611c5e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061091157506109108561090b611c5e565b611857565b5b610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790614034565b60405180910390fd5b61095d8585858585611c66565b5050505050565b606081518351146109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a1906140d4565b60405180910390fd5b6000835167ffffffffffffffff8111156109ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a1b5781602001602082028036833780820191505090505b50905060005b8451811015610b0a57610ab4858281518110610a66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610aa7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516104cc565b828281518110610aed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610b039061452d565b9050610a21565b508091505092915050565b610b1d611c5e565b73ffffffffffffffffffffffffffffffffffffffff16610b3b611227565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890614074565b60405180910390fd5b610b9d88888888611fc9565b60005b8751811015610dd7576000838383818110610be4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610bf69190614178565b90501115610cab57828282818110610c37577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610c499190614178565b600760008b8581518110610c86577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000209190610ca9929190612bff565b505b6000858583818110610ce6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610cf89190614178565b90501115610dc457878181518110610d39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101517f68569b533bfdeb53ee0f87318e7aa1ad56335f80086c45dfaa733c24fa43ea7b868684818110610d9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610dad9190614178565b604051610dbb929190613f2e565b60405180910390a25b8080610dcf9061452d565b915050610ba0565b505050505050505050565b610dea611c5e565b73ffffffffffffffffffffffffffffffffffffffff16610e08611227565b73ffffffffffffffffffffffffffffffffffffffff1614610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614074565b60405180910390fd5b600115156008600083815260200190815260200160002060009054906101000a900460ff1615151415610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90614094565b60405180910390fd5b8282600760008481526020019081526020016000209190610ee8929190612bff565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b610f1483610723565b604051610f219190613f52565b60405180910390a2505050565b610f36611c5e565b73ffffffffffffffffffffffffffffffffffffffff16610f54611227565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190614074565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806005819055508173ffffffffffffffffffffffffffffffffffffffff167fa0a3764a6a020070a984037ddad31af783c92eae7581e99c957792d105717dd4826040516110389190614134565b60405180910390a25050565b60076020528060005260406000206000915090508054611063906144fb565b80601f016020809104026020016040519081016040528092919081815260200182805461108f906144fb565b80156110dc5780601f106110b1576101008083540402835291602001916110dc565b820191906000526020600020905b8154815290600101906020018083116110bf57829003601f168201915b505050505081565b6110ec611c5e565b73ffffffffffffffffffffffffffffffffffffffff1661110a611227565b73ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790614074565b60405180910390fd5b61116a6000612234565b565b611174611c5e565b73ffffffffffffffffffffffffffffffffffffffff16611192611227565b73ffffffffffffffffffffffffffffffffffffffff16146111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90614074565b60405180910390fd5b807f68569b533bfdeb53ee0f87318e7aa1ad56335f80086c45dfaa733c24fa43ea7b848460405161121a929190613f2e565b60405180910390a2505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff1661126f611c5e565b73ffffffffffffffffffffffffffffffffffffffff1614156112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd906140b4565b60405180910390fd5b80600260006112d3611c5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611380611c5e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113c59190613f13565b60405180910390a35050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461153357600167ffffffffffffffff81111561146a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114985781602001602082028036833780820191505090505b509050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106114f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b606080600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175657600167ffffffffffffffff8111156115d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116005781602001602082028036833780820191505090505b509150600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600081518110611660577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600167ffffffffffffffff8111156116db577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117095781602001602082028036833780820191505090505b50905060055481600081518110611749577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b915091565b611763611c5e565b73ffffffffffffffffffffffffffffffffffffffff16611781611227565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90614074565b60405180910390fd5b600084849050111561181e57867f68569b533bfdeb53ee0f87318e7aa1ad56335f80086c45dfaa733c24fa43ea7b8585604051611815929190613f2e565b60405180910390a25b8181600760008a81526020019081526020016000209190611840929190612bff565b5061184d888888886122f8565b5050505050505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118f3611c5e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611939575061193885611933611c5e565b611857565b5b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90613ff4565b60405180910390fd5b611985858585858561248f565b5050505050565b611994611c5e565b73ffffffffffffffffffffffffffffffffffffffff166119b2611227565b73ffffffffffffffffffffffffffffffffffffffff1614611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90614074565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90613fd4565b60405180910390fd5b611a8181612234565b50565b611a8c611c5e565b73ffffffffffffffffffffffffffffffffffffffff16611aaa611227565b73ffffffffffffffffffffffffffffffffffffffff1614611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790614074565b60405180910390fd5b60016008600083815260200190815260200160002060006101000a81548160ff021916908315150217905550807f5a1c79180a856a008d8aa135ea13b4cde5a08f359cea6c74a98e67eb6ce6caa560405160405180910390a250565b60086020528060005260406000206000915054906101000a900460ff1681565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c575750611c5682612714565b5b9050919050565b600033905090565b8151835114611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca1906140f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1190614014565b60405180910390fd5b6000611d24611c5e565b9050611d3481878787878761277e565b60005b8451811015611f34576000858281518110611d7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611dc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5990614054565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f199190614352565b9250508190555050505080611f2d9061452d565b9050611d37565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611fab929190613edc565b60405180910390a4611fc1818787878787612786565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090614114565b60405180910390fd5b815183511461207d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612074906140f4565b60405180910390fd5b6000612087611c5e565b90506120988160008787878761277e565b60005b845181101561219e578381815181106120dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016000878481518110612122577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121849190614352565b9250508190555080806121969061452d565b91505061209b565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612216929190613edc565b60405180910390a461222d81600087878787612786565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90614114565b60405180910390fd5b6000612372611c5e565b90506123938160008761238488612956565b61238d88612956565b8761277e565b826001600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f39190614352565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161247192919061414f565b60405180910390a461248881600087878787612a1c565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f690614014565b60405180910390fd5b6000612509611c5e565b905061252981878761251a88612956565b61252388612956565b8761277e565b60006001600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156125c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b890614054565b60405180910390fd5b8381036001600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836001600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126789190614352565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516126f592919061414f565b60405180910390a461270b828888888888612a1c565b50505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b6127a58473ffffffffffffffffffffffffffffffffffffffff16612bec565b1561294e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016127eb959493929190613d76565b602060405180830381600087803b15801561280557600080fd5b505af192505050801561283657506040513d601f19601f82011682018060405250810190612833919061342a565b60015b6128c557612842614650565b8061284d575061288a565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128819190613f52565b60405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90613f74565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461294c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294390613f94565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561299b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156129c95781602001602082028036833780820191505090505b5090508281600081518110612a07577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612a3b8473ffffffffffffffffffffffffffffffffffffffff16612bec565b15612be4578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612a81959493929190613dde565b602060405180830381600087803b158015612a9b57600080fd5b505af1925050508015612acc57506040513d601f19601f82011682018060405250810190612ac9919061342a565b60015b612b5b57612ad8614650565b80612ae35750612b20565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b179190613f52565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5290613f74565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd990613f94565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054612c0b906144fb565b90600052602060002090601f016020900481019282612c2d5760008555612c74565b82601f10612c4657803560ff1916838001178555612c74565b82800160010185558215612c74579182015b82811115612c73578235825591602001919060010190612c58565b5b509050612c819190612c85565b5090565b5b80821115612c9e576000816000905550600101612c86565b5090565b6000612cb5612cb084614200565b6141cf565b90508083825260208201905082856020860282011115612cd457600080fd5b60005b85811015612d045781612cea8882612db8565b845260208401935060208301925050600181019050612cd7565b5050509392505050565b6000612d21612d1c8461422c565b6141cf565b90508083825260208201905082856020860282011115612d4057600080fd5b60005b85811015612d705781612d568882612f33565b845260208401935060208301925050600181019050612d43565b5050509392505050565b6000612d8d612d8884614258565b6141cf565b905082815260208101848484011115612da557600080fd5b612db08482856144b9565b509392505050565b600081359050612dc781614706565b92915050565b600081359050612ddc8161471d565b92915050565b600082601f830112612df357600080fd5b8135612e03848260208601612ca2565b91505092915050565b60008083601f840112612e1e57600080fd5b8235905067ffffffffffffffff811115612e3757600080fd5b602083019150836020820283011115612e4f57600080fd5b9250929050565b600082601f830112612e6757600080fd5b8135612e77848260208601612d0e565b91505092915050565b600081359050612e8f81614734565b92915050565b600081359050612ea48161474b565b92915050565b600081519050612eb98161474b565b92915050565b600082601f830112612ed057600080fd5b8135612ee0848260208601612d7a565b91505092915050565b60008083601f840112612efb57600080fd5b8235905067ffffffffffffffff811115612f1457600080fd5b602083019150836001820283011115612f2c57600080fd5b9250929050565b600081359050612f4281614762565b92915050565b600060208284031215612f5a57600080fd5b6000612f6884828501612db8565b91505092915050565b60008060408385031215612f8457600080fd5b6000612f9285828601612dcd565b9250506020612fa385828601612f33565b9150509250929050565b60008060408385031215612fc057600080fd5b6000612fce85828601612db8565b9250506020612fdf85828601612db8565b9150509250929050565b600080600080600060a0868803121561300157600080fd5b600061300f88828901612db8565b955050602061302088828901612db8565b945050604086013567ffffffffffffffff81111561303d57600080fd5b61304988828901612e56565b935050606086013567ffffffffffffffff81111561306657600080fd5b61307288828901612e56565b925050608086013567ffffffffffffffff81111561308f57600080fd5b61309b88828901612ebf565b9150509295509295909350565b600080600080600060a086880312156130c057600080fd5b60006130ce88828901612db8565b95505060206130df88828901612db8565b94505060406130f088828901612f33565b935050606061310188828901612f33565b925050608086013567ffffffffffffffff81111561311e57600080fd5b61312a88828901612ebf565b9150509295509295909350565b60008060008060008060008060c0898b03121561315357600080fd5b60006131618b828c01612db8565b985050602089013567ffffffffffffffff81111561317e57600080fd5b61318a8b828c01612e56565b975050604089013567ffffffffffffffff8111156131a757600080fd5b6131b38b828c01612e56565b965050606089013567ffffffffffffffff8111156131d057600080fd5b6131dc8b828c01612ebf565b955050608089013567ffffffffffffffff8111156131f957600080fd5b6132058b828c01612e0c565b945094505060a089013567ffffffffffffffff81111561322457600080fd5b6132308b828c01612e0c565b92509250509295985092959890939650565b6000806040838503121561325557600080fd5b600061326385828601612db8565b925050602061327485828601612e80565b9150509250929050565b6000806040838503121561329157600080fd5b600061329f85828601612db8565b92505060206132b085828601612f33565b9150509250929050565b60008060008060008060008060c0898b0312156132d657600080fd5b60006132e48b828c01612db8565b98505060206132f58b828c01612f33565b97505060406133068b828c01612f33565b965050606089013567ffffffffffffffff81111561332357600080fd5b61332f8b828c01612ebf565b955050608089013567ffffffffffffffff81111561334c57600080fd5b6133588b828c01612ee9565b945094505060a089013567ffffffffffffffff81111561337757600080fd5b6133838b828c01612ee9565b92509250509295985092959890939650565b600080604083850312156133a857600080fd5b600083013567ffffffffffffffff8111156133c257600080fd5b6133ce85828601612de2565b925050602083013567ffffffffffffffff8111156133eb57600080fd5b6133f785828601612e56565b9150509250929050565b60006020828403121561341357600080fd5b600061342184828501612e95565b91505092915050565b60006020828403121561343c57600080fd5b600061344a84828501612eaa565b91505092915050565b60008060006040848603121561346857600080fd5b600084013567ffffffffffffffff81111561348257600080fd5b61348e86828701612ee9565b935093505060206134a186828701612f33565b9150509250925092565b6000602082840312156134bd57600080fd5b60006134cb84828501612f33565b91505092915050565b600080604083850312156134e757600080fd5b60006134f585828601612f33565b925050602061350685828601612f33565b9150509250929050565b600061351c8383613540565b60208301905092915050565b60006135348383613d1b565b60208301905092915050565b61354981614445565b82525050565b61355881614433565b82525050565b6000613569826142bd565b6135738185614303565b935061357e83614288565b8060005b838110156135af5781516135968882613510565b97506135a1836142e9565b925050600181019050613582565b5085935050505092915050565b60006135c7826142c8565b6135d18185614314565b93506135dc83614298565b8060005b8381101561360d5781516135f48882613528565b97506135ff836142f6565b9250506001810190506135e0565b5085935050505092915050565b61362381614457565b82525050565b6000613634826142d3565b61363e8185614325565b935061364e8185602086016144c8565b61365781614632565b840191505092915050565b600061366e8385614336565b935061367b8385846144b9565b61368483614632565b840190509392505050565b600061369a826142de565b6136a48185614336565b93506136b48185602086016144c8565b6136bd81614632565b840191505092915050565b600081546136d5816144fb565b6136df8186614347565b945060018216600081146136fa576001811461370b5761373e565b60ff1983168652818601935061373e565b613714856142a8565b60005b8381101561373657815481890152600182019150602081019050613717565b838801955050505b50505092915050565b6000613754603483614336565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b60006137ba602883614336565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613820602b83614336565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613886602683614336565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ec602983614336565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b6000613952602583614336565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139b8603283614336565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613a1e602a83614336565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a84602083614336565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613ac4602283614347565b91507f68747470733a2f2f676174657761792e70696e6174612e636c6f75642f69706660008301527f732f0000000000000000000000000000000000000000000000000000000000006020830152602282019050919050565b6000613b2a603183614336565b91507f4f776e657266793a205468697320757269206973206c6f636b656420616e642060008301527f63616e6e6f7420626520616c74657265640000000000000000000000000000006020830152604082019050919050565b6000613b90602983614336565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bf6602983614336565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c5c602883614336565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cc2602183614336565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613d24816144af565b82525050565b613d33816144af565b82525050565b6000613d4482613ab7565b9150613d5082846136c8565b915081905092915050565b6000602082019050613d70600083018461354f565b92915050565b600060a082019050613d8b600083018861354f565b613d98602083018761354f565b8181036040830152613daa81866135bc565b90508181036060830152613dbe81856135bc565b90508181036080830152613dd28184613629565b90509695505050505050565b600060a082019050613df3600083018861354f565b613e00602083018761354f565b613e0d6040830186613d2a565b613e1a6060830185613d2a565b8181036080830152613e2c8184613629565b90509695505050505050565b6000604082019050613e4d600083018561354f565b613e5a6020830184613d2a565b9392505050565b60006020820190508181036000830152613e7b818461355e565b905092915050565b60006040820190508181036000830152613e9d818561355e565b90508181036020830152613eb181846135bc565b90509392505050565b60006020820190508181036000830152613ed481846135bc565b905092915050565b60006040820190508181036000830152613ef681856135bc565b90508181036020830152613f0a81846135bc565b90509392505050565b6000602082019050613f28600083018461361a565b92915050565b60006020820190508181036000830152613f49818486613662565b90509392505050565b60006020820190508181036000830152613f6c818461368f565b905092915050565b60006020820190508181036000830152613f8d81613747565b9050919050565b60006020820190508181036000830152613fad816137ad565b9050919050565b60006020820190508181036000830152613fcd81613813565b9050919050565b60006020820190508181036000830152613fed81613879565b9050919050565b6000602082019050818103600083015261400d816138df565b9050919050565b6000602082019050818103600083015261402d81613945565b9050919050565b6000602082019050818103600083015261404d816139ab565b9050919050565b6000602082019050818103600083015261406d81613a11565b9050919050565b6000602082019050818103600083015261408d81613a77565b9050919050565b600060208201905081810360008301526140ad81613b1d565b9050919050565b600060208201905081810360008301526140cd81613b83565b9050919050565b600060208201905081810360008301526140ed81613be9565b9050919050565b6000602082019050818103600083015261410d81613c4f565b9050919050565b6000602082019050818103600083015261412d81613cb5565b9050919050565b60006020820190506141496000830184613d2a565b92915050565b60006040820190506141646000830185613d2a565b6141716020830184613d2a565b9392505050565b6000808335600160200384360303811261419157600080fd5b80840192508235915067ffffffffffffffff8211156141af57600080fd5b6020830192506001820236038313156141c757600080fd5b509250929050565b6000604051905081810181811067ffffffffffffffff821117156141f6576141f5614603565b5b8060405250919050565b600067ffffffffffffffff82111561421b5761421a614603565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561424757614246614603565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561427357614272614603565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061435d826144af565b9150614368836144af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561439d5761439c614576565b5b828201905092915050565b60006143b3826144af565b91506143be836144af565b9250826143ce576143cd6145a5565b5b828204905092915050565b60006143e4826144af565b91506143ef836144af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561442857614427614576565b5b828202905092915050565b600061443e8261448f565b9050919050565b60006144508261448f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144e65780820151818401526020810190506144cb565b838111156144f5576000848401525b50505050565b6000600282049050600182168061451357607f821691505b60208210811415614527576145266145d4565b5b50919050565b6000614538826144af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561456b5761456a614576565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d101561466057614703565b60046000803e614671600051614643565b6308c379a081146146825750614703565b60405160043d036004823e80513d602482011167ffffffffffffffff821117156146ae57505050614703565b808201805167ffffffffffffffff8111156146cd575050505050614703565b8060208301013d85018111156146e857505050505050614703565b6146f182614632565b60208401016040528296505050505050505b90565b61470f81614433565b811461471a57600080fd5b50565b61472681614445565b811461473157600080fd5b50565b61473d81614457565b811461474857600080fd5b50565b61475481614463565b811461475f57600080fd5b50565b61476b816144af565b811461477657600080fd5b5056fea2646970667358221220899b68d0bde55eab456ed87f4f7745fe43ba5d708bd9099770ed4d7171c4c28664736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000164369747920537472656574205374726174656769657300000000000000000000000000000000000000000000000000000000000000000000000000000000000868747470733a2f2f000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): City Street Strategies
Arg [1] : _uri (string): https://

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [3] : 4369747920537472656574205374726174656769657300000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 68747470733a2f2f000000000000000000000000000000000000000000000000


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.