ETH Price: $2,655.68 (+1.93%)

Subway Jesus Pamphlets (JESUS)
 

Overview

TokenID

158

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
SubwayJesusPamphlets

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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


/*
   ____  _    _ ______          __ __     __
  / ____| |  | |  _ \ \        / /\\ \   / /
 | (___ | |  | | |_) \ \  /\  / /  \\ \_/ /
  \___ \| |  | |  _ < \ \/  \/ / /\ \\   /
  ____) | |__| | |_) | \  /\  / ____ \| |
 |_____/ \____/|____/_ _\/  \/_/____\_\_|
      | |  ____|/ ____| |  | |/ ____|
      | | |__  | (___ | |  | | (___
  _   | |  __|  \___ \| |  | |\___ \
 | |__| | |____ ____) | |__| |____) |
  \____/|______|_____/_\____/|_____/_      ______ _______ _____
 |  __ \ /\   |  \/  |  __ \| |  | | |    |  ____|__   __/ ____|
 | |__) /  \  | \  / | |__) | |__| | |    | |__     | | | (___
 |  ___/ /\ \ | |\/| |  ___/|  __  | |    |  __|    | |  \___ \
 | |  / ____ \| |  | | |    | |  | | |____| |____   | |  ____) |
 |_| /_/    \_\_|  |_|_|    |_|  |_|______|______|  |_| |_____/

Contract by steviep.eth
absolveSins by julien.eth
*/

import "./Dependencies.sol";
import "./Metadata.sol";
import "./ChurchOfSubwayJesusPamphlets.sol";

pragma solidity ^0.8.11;

interface IOSSharedStorefront {
  function safeTransferFrom(
    address from,
    address to,
    uint256 id,
    uint256 amount,
    bytes calldata data
  ) external;

  function safeBatchTransferFrom(
    address from,
    address to,
    uint256[] calldata ids,
    uint256[] calldata amounts,
    bytes calldata data
  ) external;
}

contract SubwayJesusPamphlets is ERC721 {
  uint256 private _totalSupply = 76;
  Metadata private _metadataContract;
  address public church;
  IOSSharedStorefront private _purgatory;


  address private royaltyBenificiary;
  uint16 private royaltyBasisPoints = 1000;

  constructor(address _os) ERC721("Subway Jesus Pamphlets", 'JESUS') {
    royaltyBenificiary = msg.sender;
    _metadataContract = new Metadata();
    _purgatory = IOSSharedStorefront(_os);
    church = address(new ChurchOfSubwayJesusPamphlets(this, msg.sender));

    // mint tokens 0 - 75
    _mint(msg.sender, 0);

    for (uint256 i = 1; i < 76; i++) {
      _mint(0x6666666666666666666666666666666666666666, i);
    }
  }

  function purgatory() public view returns (address) {
    return address(_purgatory);
  }

  modifier onlyChurch {
    require(church == msg.sender, 'Caller is not the church');
    _;
  }

  function transferChurch(address newChurch) external onlyChurch {
    church = newChurch;
  }

  function absolveSins(uint256 tokenId, address to) internal {
    uint256 originalIndex = tokenId >> 40 & 0x0000000000000000000000000000000000000000FFFFFFFFFFFFFF;

    // Make sure token is from original SJP collection
    if (
      originalIndex == 9  ||
      originalIndex == 10 ||
      originalIndex == 52 ||
      originalIndex == 54 ||
      originalIndex >= 67
    ) {
      require(tokenId >> 96 == 0x0047144372eb383466d18fc91db9cd0396aa6c87a4, 'Not Subway Jesus Pamphlet token');
    } else {
      require(tokenId >> 96 == 0x007C23C1B7E544E3E805BA675C811E287FC9D71949, 'Not Subway Jesus Pamphlet token');
    }

    // Get new token ID
    uint256 newTokenId;
    if (originalIndex <= 65) {
      // Original starts at 2, so subtract by 1 to start them at 1
      newTokenId = originalIndex - 1;
    } else {
      // 66 was skipped, so subtract by 2 for the rest
      newTokenId = originalIndex - 2;
    }

    // Absolution
    _transfer(0x6666666666666666666666666666666666666666, to, newTokenId);
  }

  function onERC1155Received(
    address,
    address from,
    uint256 id,
    uint256 amount,
    bytes calldata
  ) external returns (bytes4) {
    require(msg.sender == address(_purgatory), 'Cannot absolve sins without purgatory');
    require(amount == 1, 'Must absolve a single token');

    absolveSins(id, from);
    _purgatory.safeTransferFrom(address(this), church, id, amount, '');
    return this.onERC1155Received.selector;
  }

  function onERC1155BatchReceived(
    address,
    address from,
    uint256[] calldata ids,
    uint256[] calldata amounts,
    bytes calldata
  ) external returns (bytes4) {
    require(msg.sender == address(_purgatory), 'Cannot absolve sins without purgatory');

    for (uint256 i = 0; i < ids.length; i++) {
      require(amounts[i] == 1, 'Must absolve a single token');
      absolveSins(ids[i], from);
    }
    _purgatory.safeBatchTransferFrom(address(this), church, ids, amounts, '');

    return this.onERC1155BatchReceived.selector;
  }

  function mintBatch(address[] calldata to) external onlyChurch {
    for (uint256 i; i < to.length; i++) {
      _mint(to[i], _totalSupply + i);
    }
    _totalSupply += to.length;
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

    return _metadataContract.tokenURI(tokenId);
  }

  function totalSupply() external view returns (uint256) {
    return _totalSupply;
  }

  function exists(uint256 tokenId) external view returns (bool) {
    return _exists(tokenId);
  }

  function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) {
    // ERC2981
    return interfaceId == bytes4(0x2a55205a) || super.supportsInterface(interfaceId);
  }

  function metadataContract() external view returns (address) {
    return address(_metadataContract);
  }

  function setMetadataContract(address _addr) external onlyChurch {
    _metadataContract = Metadata(_addr);
  }


  function setRoyaltyInfo(
    address _royaltyBenificiary,
    uint16 _royaltyBasisPoints
  ) external onlyChurch {
    royaltyBenificiary = _royaltyBenificiary;
    royaltyBasisPoints = _royaltyBasisPoints;
  }

  function royaltyInfo(uint256, uint256 _salePrice) external view returns (address, uint256) {
    return (royaltyBenificiary, _salePrice * royaltyBasisPoints / 10000);
  }


  event ProjectEvent(
    address indexed poster,
    string indexed eventType,
    string content
  );
  event TokenEvent(
    address indexed poster,
    uint256 indexed tokenId,
    string indexed eventType,
    string content
  );

  function emitProjectEvent(string calldata eventType, string calldata content) external onlyChurch {
    emit ProjectEvent(_msgSender(), eventType, content);
  }

  function emitTokenEvent(uint256 tokenId, string calldata eventType, string calldata content) external {
    require(
      church == _msgSender() || ERC721.ownerOf(tokenId) == _msgSender(),
      'Only project or token owner can emit token event'
    );
    emit TokenEvent(_msgSender(), tokenId, eventType, content);
  }
}

File 1 of 4: ChurchOfSubwayJesusPamphlets.sol
// SPDX-License-Identifier: MIT

/*
  _______ _    _ ______
 |__   __| |  | |  ____|
    | |  | |__| | |__
    | |  |  __  |  __|
    | |  | |  | | |____
   _|_|_ |_|  |_|______|____   _____ _    _
  / ____| |  | | |  | |  __ \ / ____| |  | |
 | |    | |__| | |  | | |__) | |    | |__| |
 | |    |  __  | |  | |  _  /| |    |  __  |
 | |____| |  | | |__| | | \ \| |____| |  | |
  \_____|_|__|_|\____/|_|  \_\\_____|_|  |_|
  / __ \|  ____|
 | |  | | |__
 | |  | |  __|
 | |__| | |
  \____/|_|   _ ______          __ __     __
  / ____| |  | |  _ \ \        / /\\ \   / /
 | (___ | |  | | |_) \ \  /\  / /  \\ \_/ /
  \___ \| |  | |  _ < \ \/  \/ / /\ \\   /
  ____) | |__| | |_) | \  /\  / ____ \| |
 |_____/ \____/|____/_ _\/  \/_/____\_\_|
      | |  ____|/ ____| |  | |/ ____|
      | | |__  | (___ | |  | | (___
  _   | |  __|  \___ \| |  | |\___ \
 | |__| | |____ ____) | |__| |____) |
  \____/|______|_____/_\____/|_____/_      ______ _______ _____
 |  __ \ /\   |  \/  |  __ \| |  | | |    |  ____|__   __/ ____|
 | |__) /  \  | \  / | |__) | |__| | |    | |__     | | | (___
 |  ___/ /\ \ | |\/| |  ___/|  __  | |    |  __|    | |  \___ \
 | |  / ____ \| |  | | |    | |  | | |____| |____   | |  ____) |
 |_| /_/    \_\_|  |_|_|    |_|  |_|______|______|  |_| |_____/

Contract by steviep.eth


"Church" multisig of Subway Jesus Pamphlets

Subway Jesus Pamphlet token holders may vote on transactions, and receive one vote per token owned

Token holders may also delegate their token's vote to another address

All proposals require a 51% quorum of existing token votes to pass

The Church may elect to update the quorum needed

The Cardinal can execute any transaction without a vote

The Church may elect a new Cardinal

*/

pragma solidity ^0.8.11;

import "./SubwayJesusPamphlets.sol";

contract ChurchOfSubwayJesusPamphlets {
  SubwayJesusPamphlets public baseContract;

  address public cardinal;
  uint256 public quorumNeeded = 51;

  struct Proposal {
    bool executed;
    uint256 totalVotes;
  }

  mapping(uint256 => Proposal) private _proposals;
  mapping(uint256 => mapping(uint256 => bool)) private _proposalVotes;
  mapping(uint256 => address) public delegations;

  constructor(SubwayJesusPamphlets _addr, address _cardinal) {
    baseContract = _addr;
    cardinal = _cardinal;
  }

  function proposalVotes(uint256 proposalId, uint256 tokenId) external view returns (bool) {
    return _proposalVotes[proposalId][tokenId];
  }

  function proposals(uint256 proposalId) external view returns (bool executed, uint256 totalVotes) {
    return (_proposals[proposalId].executed, _proposals[proposalId].totalVotes);
  }

  /*
    target    - target contract
    value     - amount of ETH to send
    calldata_ - abi.encodeWithSignature("functionToCall(string,uint256)", "arg1", 123)
    nonce     - can be any number; exists to make sure same proposal can't be executed twice
  */
  function hashProposal(
    address target,
    uint256 value,
    bytes memory calldata_,
    uint256 nonce
  ) public pure returns (uint256) {
    return uint256(keccak256(abi.encode(target, value, calldata_, nonce)));
  }

  function castVote(uint256 proposalId, uint256 tokenId, bool vote) external {
    require(baseContract.ownerOf(tokenId) == msg.sender, 'Voter must be owner of token');
    _castVote(proposalId, tokenId, vote);
  }

  function castVotes(uint256 proposalId, uint256[] calldata tokenIds, bool vote) external {
    for (uint256 i; i < tokenIds.length; i++) {
      uint256 tokenId = tokenIds[i];
      require(
        baseContract.ownerOf(tokenId) == msg.sender
        || delegations[tokenId] == msg.sender,
        "Voter must be owner or delegator of all tokens"
      );
      _castVote(proposalId, tokenId, vote);
    }
  }

  function delegate(uint256[] calldata tokenIds, address delegator) external {
    for (uint256 i; i < tokenIds.length; i++) {
      uint256 tokenId = tokenIds[i];
      require(baseContract.ownerOf(tokenId) == msg.sender, "Signer must own token to delegate");
      delegations[tokenId] = delegator;
    }
  }

  function _castVote(uint256 proposalId, uint256 tokenId, bool vote) private {
    if (_proposalVotes[proposalId][tokenId] == vote) return;

    _proposalVotes[proposalId][tokenId] = vote;

    if (vote) {
      _proposals[proposalId].totalVotes += 1;
    } else {
      _proposals[proposalId].totalVotes -= 1;
    }
  }

  function execute(
    address target,
    uint256 value,
    bytes memory calldata_,
    uint256 nonce
  ) external payable returns (uint256) {
    uint256 proposalId = hashProposal(target, value, calldata_, nonce);

    Proposal storage proposal = _proposals[proposalId];

    require(!proposal.executed, "Proposal has already been executed");

    if (msg.sender != cardinal) {
      require(
        proposal.totalVotes * 100 >= (baseContract.totalSupply() * quorumNeeded),
        "Insufficient votes to execute proposal"
      );
    }

    proposal.executed = true;


    (bool success, bytes memory returndata) = target.call{value: value}(calldata_);
    Address.verifyCallResult(success, returndata, "Proposal execution reverted");

    return proposalId;
  }

  modifier onlyChurch {
    require(address(this) == msg.sender, 'Can only be called by the church');
    _;
  }

  function electCardinal(address _cardinal) external onlyChurch {
    cardinal = _cardinal;
  }

  function updateQuorumNeeded(uint256 quorumPercent) external onlyChurch {
    quorumNeeded = quorumPercent;
  }

  function onERC721Received(address, address, uint256, bytes calldata) external pure returns(bytes4) {
    return this.onERC721Received.selector;
  }

  function onERC1155Received(address, address, uint256, uint256, bytes calldata) external pure returns (bytes4) {
    return this.onERC1155Received.selector;
  }

  function onERC1155BatchReceived(address, address, uint256[] calldata, uint256[] calldata, bytes calldata) external pure returns (bytes4) {
    return this.onERC1155BatchReceived.selector;
  }

  receive() external payable {}
  fallback() external payable {}
}

File 2 of 4: Dependencies.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);
}



/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

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

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}



/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


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

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}



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

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

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

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

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

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

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

    /*
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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


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

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

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

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

    /*
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */

    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}



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



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

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

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

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

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

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

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

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




/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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



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.
     *
     * NOTE: 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.
     *
     * NOTE: 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 3 of 4: Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.11;

import "./Dependencies.sol";

contract Metadata {
  using Strings for uint256;

  function tokenURI(uint256 tokenId) external pure returns (string memory) {
    return string(abi.encodePacked('ipfs://bafybeib5wqab3uj7zcoajmmykwqiglqgdkb5dnuc2fecdaxx6tkwfhlrse/', tokenId.toString(), '.json'));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_os","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"poster","type":"address"},{"indexed":true,"internalType":"string","name":"eventType","type":"string"},{"indexed":false,"internalType":"string","name":"content","type":"string"}],"name":"ProjectEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"poster","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"string","name":"eventType","type":"string"},{"indexed":false,"internalType":"string","name":"content","type":"string"}],"name":"TokenEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"church","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"eventType","type":"string"},{"internalType":"string","name":"content","type":"string"}],"name":"emitProjectEvent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"eventType","type":"string"},{"internalType":"string","name":"content","type":"string"}],"name":"emitTokenEvent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purgatory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setMetadataContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyBenificiary","type":"address"},{"internalType":"uint16","name":"_royaltyBasisPoints","type":"uint16"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newChurch","type":"address"}],"name":"transferChurch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604c6006556103e8600a60146101000a81548161ffff021916908361ffff1602179055503480156200003557600080fd5b5060405162006f6b38038062006f6b83398181016040528101906200005b919062000659565b6040518060400160405280601681526020017f537562776179204a657375732050616d70686c657473000000000000000000008152506040518060400160405280600581526020017f4a455355530000000000000000000000000000000000000000000000000000008152508160009080519060200190620000df92919062000523565b508060019080519060200190620000f892919062000523565b50505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040516200014a90620005b4565b604051809103906000f08015801562000167573d6000803e3d6000fd5b50600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503033604051620001f990620005c2565b6200020692919062000707565b604051809103906000f08015801562000223573d6000803e3d6000fd5b50600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000277336000620002cc60201b60201c565b6000600190505b604c811015620002c457620002ae73666666666666666666666666666666666666666682620002cc60201b60201c565b8080620002bb906200076d565b9150506200027e565b505062000972565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200033f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000336906200081c565b60405180910390fd5b6200035081620004b260201b60201c565b1562000393576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038a906200088e565b60405180910390fd5b620003a7600083836200051e60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003f99190620008b0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b82805462000531906200093c565b90600052602060002090601f016020900481019282620005555760008555620005a1565b82601f106200057057805160ff1916838001178555620005a1565b82800160010185558215620005a1579182015b82811115620005a057825182559160200191906001019062000583565b5b509050620005b09190620005d0565b5090565b6106a9806200482083390190565b6120a28062004ec983390190565b5b80821115620005eb576000816000905550600101620005d1565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200062182620005f4565b9050919050565b620006338162000614565b81146200063f57600080fd5b50565b600081519050620006538162000628565b92915050565b600060208284031215620006725762000671620005ef565b5b6000620006828482850162000642565b91505092915050565b6000819050919050565b6000620006b6620006b0620006aa84620005f4565b6200068b565b620005f4565b9050919050565b6000620006ca8262000695565b9050919050565b6000620006de82620006bd565b9050919050565b620006f081620006d1565b82525050565b620007018162000614565b82525050565b60006040820190506200071e6000830185620006e5565b6200072d6020830184620006f6565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b60006200077a8262000763565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620007b057620007af62000734565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000804602083620007bb565b91506200081182620007cc565b602082019050919050565b600060208201905081810360008301526200083781620007f5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000876601c83620007bb565b915062000883826200083e565b602082019050919050565b60006020820190508181036000830152620008a98162000867565b9050919050565b6000620008bd8262000763565b9150620008ca8362000763565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000902576200090162000734565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200095557607f821691505b602082108114156200096c576200096b6200090d565b5b50919050565b613e9e80620009826000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063b88d4fde11610097578063d4434ab011610071578063d4434ab0146104df578063e5187f43146104fb578063e985e9c514610517578063f23a6e6114610547576101a9565b8063b88d4fde14610463578063bc197c811461047f578063c87b56dd146104af576101a9565b8063927f59ba116100d3578063927f59ba146103f157806395d89b411461040d578063976461181461042b578063a22cb46514610447576101a9565b806370a082311461038757806372504a24146103b757806374aed3fd146103d3576101a9565b806323b872dd1161016657806342842e0e1161014057806342842e0e146102ef5780634f558e791461030b57806352a6c8c91461033b5780636352211e14610357576101a9565b806323b872dd146102845780632a55205a146102a057806335209821146102d1576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c5780630fa7bf1a1461024857806318160ddd14610266575b600080fd5b6101c860048036038101906101c391906123ca565b610577565b6040516101d59190612412565b60405180910390f35b6101e66105d8565b6040516101f391906124c6565b60405180910390f35b6102166004803603810190610211919061251e565b61066a565b604051610223919061258c565b60405180910390f35b610246600480360381019061024191906125d3565b6106ef565b005b610250610807565b60405161025d919061258c565b60405180910390f35b61026e61082d565b60405161027b9190612622565b60405180910390f35b61029e6004803603810190610299919061263d565b610837565b005b6102ba60048036038101906102b59190612690565b610897565b6040516102c89291906126d0565b60405180910390f35b6102d96108f5565b6040516102e6919061258c565b60405180910390f35b6103096004803603810190610304919061263d565b61091f565b005b6103256004803603810190610320919061251e565b61093f565b6040516103329190612412565b60405180910390f35b6103556004803603810190610350919061275e565b610951565b005b610371600480360381019061036c919061251e565b610aa4565b60405161037e919061258c565b60405180910390f35b6103a1600480360381019061039c91906127f3565b610b56565b6040516103ae9190612622565b60405180910390f35b6103d160048036038101906103cc919061285a565b610c0e565b005b6103db610d00565b6040516103e8919061258c565b60405180910390f35b61040b600480360381019061040691906128f0565b610d2a565b005b610415610e3a565b60405161042291906124c6565b60405180910390f35b610445600480360381019061044091906127f3565b610ecc565b005b610461600480360381019061045c9190612969565b610fa0565b005b61047d60048036038101906104789190612ad9565b611121565b005b61049960048036038101906104949190612c08565b611183565b6040516104a69190612cf3565b60405180910390f35b6104c960048036038101906104c4919061251e565b611385565b6040516104d691906124c6565b60405180910390f35b6104f960048036038101906104f49190612d0e565b611477565b005b610515600480360381019061051091906127f3565b61157c565b005b610531600480360381019061052c9190612d8f565b611650565b60405161053e9190612412565b60405180910390f35b610561600480360381019061055c9190612dcf565b6116e4565b60405161056e9190612cf3565b60405180910390f35b6000632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105d157506105d08261188c565b5b9050919050565b6060600080546105e790612e98565b80601f016020809104026020016040519081016040528092919081815260200182805461061390612e98565b80156106605780601f1061063557610100808354040283529160200191610660565b820191906000526020600020905b81548152906001019060200180831161064357829003601f168201915b5050505050905090565b60006106758261196e565b6106b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ab90612f3c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106fa82610aa4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076290612fce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661078a6119da565b73ffffffffffffffffffffffffffffffffffffffff1614806107b957506107b8816107b36119da565b611650565b5b6107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef90613060565b60405180910390fd5b61080283836119e2565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b6108486108426119da565b82611a9b565b610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e906130f2565b60405180910390fd5b610892838383611b79565b505050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600a60149054906101000a900461ffff1661ffff16856108e09190613141565b6108ea91906131ca565b915091509250929050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61093a83838360405180602001604052806000815250611121565b505050565b600061094a8261196e565b9050919050565b6109596119da565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806109ee57506109b76119da565b73ffffffffffffffffffffffffffffffffffffffff166109d686610aa4565b73ffffffffffffffffffffffffffffffffffffffff16145b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a249061326d565b60405180910390fd5b8383604051610a3d9291906132bd565b604051809103902085610a4e6119da565b73ffffffffffffffffffffffffffffffffffffffff167fad000c5a693465b4555f1044ddd1221ef0bfc49e5621ceb705b952ff97e2caac8585604051610a95929190613303565b60405180910390a45050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490613399565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe9061342b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590613497565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60146101000a81548161ffff021916908361ffff1602179055505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190613497565b60405180910390fd5b60005b82829050811015610e1957610e06838383818110610dde57610ddd6134b7565b5b9050602002016020810190610df391906127f3565b82600654610e0191906134e6565b611dd5565b8080610e119061353c565b915050610dbd565b508181905060066000828254610e2f91906134e6565b925050819055505050565b606060018054610e4990612e98565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7590612e98565b8015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390613497565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610fa86119da565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d906135d1565b60405180910390fd5b80600560006110236119da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110d06119da565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111159190612412565b60405180910390a35050565b61113261112c6119da565b83611a9b565b611171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611168906130f2565b60405180910390fd5b61117d84848484611fa3565b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c90613663565b60405180910390fd5b60005b878790508110156112b5576001868683818110611238576112376134b7565b5b905060200201351461127f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611276906136cf565b60405180910390fd5b6112a2888883818110611295576112946134b7565b5b905060200201358a611fff565b80806112ad9061353c565b915050611218565b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632eb2c2d630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168a8a8a8a6040518763ffffffff1660e01b815260040161133d96959493929190613798565b600060405180830381600087803b15801561135757600080fd5b505af115801561136b573d6000803e3d6000fd5b5050505063bc197c8160e01b905098975050505050505050565b60606113908261196e565b6113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690613874565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b815260040161142a9190612622565b600060405180830381865afa158015611447573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906114709190613935565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613497565b60405180910390fd5b83836040516115179291906132bd565b60405180910390206115276119da565b73ffffffffffffffffffffffffffffffffffffffff167f3d366eac52dec4372766dc4b15bba20b935b45d33171465a598eedabb5a5dff8848460405161156e929190613303565b60405180910390a350505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613497565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d90613663565b60405180910390fd5b600184146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b0906136cf565b60405180910390fd5b6117c38587611fff565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1688886040518563ffffffff1660e01b8152600401611846949392919061397e565b600060405180830381600087803b15801561186057600080fd5b505af1158015611874573d6000803e3d6000fd5b5050505063f23a6e6160e01b90509695505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061195757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611967575061196682612154565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a5583610aa4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611aa68261196e565b611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90613a48565b60405180910390fd5b6000611af083610aa4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5f57508373ffffffffffffffffffffffffffffffffffffffff16611b478461066a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b705750611b6f8185611650565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b9982610aa4565b73ffffffffffffffffffffffffffffffffffffffff1614611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690613ada565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690613b6c565b60405180910390fd5b611c6a8383836121be565b611c756000826119e2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc59190613b8c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1c91906134e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c90613c0c565b60405180910390fd5b611e4e8161196e565b15611e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8590613c78565b60405180910390fd5b611e9a600083836121be565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eea91906134e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b611fae848484611b79565b611fba848484846121c3565b611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613d0a565b60405180910390fd5b50505050565b600066ffffffffffffff602884901c16905060098114806120205750600a81145b8061202b5750603481145b806120365750603681145b80612042575060438110155b156120a6577347144372eb383466d18fc91db9cd0396aa6c87a4606084901c146120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613d76565b60405180910390fd5b612101565b737c23c1b7e544e3e805ba675c811e287fc9d71949606084901c14612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613d76565b60405180910390fd5b5b60006041821161211f576001826121189190613b8c565b905061212f565b60028261212c9190613b8c565b90505b61214e7366666666666666666666666666666666666666668483611b79565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60006121e48473ffffffffffffffffffffffffffffffffffffffff1661234b565b1561233e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261220d6119da565b8786866040518563ffffffff1660e01b815260040161222f9493929190613dda565b6020604051808303816000875af192505050801561226b57506040513d601f19601f820116820180604052508101906122689190613e3b565b60015b6122ee573d806000811461229b576040519150601f19603f3d011682016040523d82523d6000602084013e6122a0565b606091505b506000815114156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90613d0a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612343565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123a781612372565b81146123b257600080fd5b50565b6000813590506123c48161239e565b92915050565b6000602082840312156123e0576123df612368565b5b60006123ee848285016123b5565b91505092915050565b60008115159050919050565b61240c816123f7565b82525050565b60006020820190506124276000830184612403565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561246757808201518184015260208101905061244c565b83811115612476576000848401525b50505050565b6000601f19601f8301169050919050565b60006124988261242d565b6124a28185612438565b93506124b2818560208601612449565b6124bb8161247c565b840191505092915050565b600060208201905081810360008301526124e0818461248d565b905092915050565b6000819050919050565b6124fb816124e8565b811461250657600080fd5b50565b600081359050612518816124f2565b92915050565b60006020828403121561253457612533612368565b5b600061254284828501612509565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125768261254b565b9050919050565b6125868161256b565b82525050565b60006020820190506125a1600083018461257d565b92915050565b6125b08161256b565b81146125bb57600080fd5b50565b6000813590506125cd816125a7565b92915050565b600080604083850312156125ea576125e9612368565b5b60006125f8858286016125be565b925050602061260985828601612509565b9150509250929050565b61261c816124e8565b82525050565b60006020820190506126376000830184612613565b92915050565b60008060006060848603121561265657612655612368565b5b6000612664868287016125be565b9350506020612675868287016125be565b925050604061268686828701612509565b9150509250925092565b600080604083850312156126a7576126a6612368565b5b60006126b585828601612509565b92505060206126c685828601612509565b9150509250929050565b60006040820190506126e5600083018561257d565b6126f26020830184612613565b9392505050565b600080fd5b600080fd5b600080fd5b60008083601f84011261271e5761271d6126f9565b5b8235905067ffffffffffffffff81111561273b5761273a6126fe565b5b60208301915083600182028301111561275757612756612703565b5b9250929050565b60008060008060006060868803121561277a57612779612368565b5b600061278888828901612509565b955050602086013567ffffffffffffffff8111156127a9576127a861236d565b5b6127b588828901612708565b9450945050604086013567ffffffffffffffff8111156127d8576127d761236d565b5b6127e488828901612708565b92509250509295509295909350565b60006020828403121561280957612808612368565b5b6000612817848285016125be565b91505092915050565b600061ffff82169050919050565b61283781612820565b811461284257600080fd5b50565b6000813590506128548161282e565b92915050565b6000806040838503121561287157612870612368565b5b600061287f858286016125be565b925050602061289085828601612845565b9150509250929050565b60008083601f8401126128b0576128af6126f9565b5b8235905067ffffffffffffffff8111156128cd576128cc6126fe565b5b6020830191508360208202830111156128e9576128e8612703565b5b9250929050565b6000806020838503121561290757612906612368565b5b600083013567ffffffffffffffff8111156129255761292461236d565b5b6129318582860161289a565b92509250509250929050565b612946816123f7565b811461295157600080fd5b50565b6000813590506129638161293d565b92915050565b600080604083850312156129805761297f612368565b5b600061298e858286016125be565b925050602061299f85828601612954565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129e68261247c565b810181811067ffffffffffffffff82111715612a0557612a046129ae565b5b80604052505050565b6000612a1861235e565b9050612a2482826129dd565b919050565b600067ffffffffffffffff821115612a4457612a436129ae565b5b612a4d8261247c565b9050602081019050919050565b82818337600083830152505050565b6000612a7c612a7784612a29565b612a0e565b905082815260208101848484011115612a9857612a976129a9565b5b612aa3848285612a5a565b509392505050565b600082601f830112612ac057612abf6126f9565b5b8135612ad0848260208601612a69565b91505092915050565b60008060008060808587031215612af357612af2612368565b5b6000612b01878288016125be565b9450506020612b12878288016125be565b9350506040612b2387828801612509565b925050606085013567ffffffffffffffff811115612b4457612b4361236d565b5b612b5087828801612aab565b91505092959194509250565b60008083601f840112612b7257612b716126f9565b5b8235905067ffffffffffffffff811115612b8f57612b8e6126fe565b5b602083019150836020820283011115612bab57612baa612703565b5b9250929050565b60008083601f840112612bc857612bc76126f9565b5b8235905067ffffffffffffffff811115612be557612be46126fe565b5b602083019150836001820283011115612c0157612c00612703565b5b9250929050565b60008060008060008060008060a0898b031215612c2857612c27612368565b5b6000612c368b828c016125be565b9850506020612c478b828c016125be565b975050604089013567ffffffffffffffff811115612c6857612c6761236d565b5b612c748b828c01612b5c565b9650965050606089013567ffffffffffffffff811115612c9757612c9661236d565b5b612ca38b828c01612b5c565b9450945050608089013567ffffffffffffffff811115612cc657612cc561236d565b5b612cd28b828c01612bb2565b92509250509295985092959890939650565b612ced81612372565b82525050565b6000602082019050612d086000830184612ce4565b92915050565b60008060008060408587031215612d2857612d27612368565b5b600085013567ffffffffffffffff811115612d4657612d4561236d565b5b612d5287828801612708565b9450945050602085013567ffffffffffffffff811115612d7557612d7461236d565b5b612d8187828801612708565b925092505092959194509250565b60008060408385031215612da657612da5612368565b5b6000612db4858286016125be565b9250506020612dc5858286016125be565b9150509250929050565b60008060008060008060a08789031215612dec57612deb612368565b5b6000612dfa89828a016125be565b9650506020612e0b89828a016125be565b9550506040612e1c89828a01612509565b9450506060612e2d89828a01612509565b935050608087013567ffffffffffffffff811115612e4e57612e4d61236d565b5b612e5a89828a01612bb2565b92509250509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eb057607f821691505b60208210811415612ec457612ec3612e69565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612f26602c83612438565b9150612f3182612eca565b604082019050919050565b60006020820190508181036000830152612f5581612f19565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fb8602183612438565b9150612fc382612f5c565b604082019050919050565b60006020820190508181036000830152612fe781612fab565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061304a603883612438565b915061305582612fee565b604082019050919050565b600060208201905081810360008301526130798161303d565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006130dc603183612438565b91506130e782613080565b604082019050919050565b6000602082019050818103600083015261310b816130cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061314c826124e8565b9150613157836124e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131905761318f613112565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131d5826124e8565b91506131e0836124e8565b9250826131f0576131ef61319b565b5b828204905092915050565b7f4f6e6c792070726f6a656374206f7220746f6b656e206f776e65722063616e2060008201527f656d697420746f6b656e206576656e7400000000000000000000000000000000602082015250565b6000613257603083612438565b9150613262826131fb565b604082019050919050565b600060208201905081810360008301526132868161324a565b9050919050565b600081905092915050565b60006132a4838561328d565b93506132b1838584612a5a565b82840190509392505050565b60006132ca828486613298565b91508190509392505050565b60006132e28385612438565b93506132ef838584612a5a565b6132f88361247c565b840190509392505050565b6000602082019050818103600083015261331e8184866132d6565b90509392505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613383602983612438565b915061338e82613327565b604082019050919050565b600060208201905081810360008301526133b281613376565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613415602a83612438565b9150613420826133b9565b604082019050919050565b6000602082019050818103600083015261344481613408565b9050919050565b7f43616c6c6572206973206e6f7420746865206368757263680000000000000000600082015250565b6000613481601883612438565b915061348c8261344b565b602082019050919050565b600060208201905081810360008301526134b081613474565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006134f1826124e8565b91506134fc836124e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561353157613530613112565b5b828201905092915050565b6000613547826124e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561357a57613579613112565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006135bb601983612438565b91506135c682613585565b602082019050919050565b600060208201905081810360008301526135ea816135ae565b9050919050565b7f43616e6e6f74206162736f6c76652073696e7320776974686f7574207075726760008201527f61746f7279000000000000000000000000000000000000000000000000000000602082015250565b600061364d602583612438565b9150613658826135f1565b604082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b7f4d757374206162736f6c766520612073696e676c6520746f6b656e0000000000600082015250565b60006136b9601b83612438565b91506136c482613683565b602082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b600082825260208201905092915050565b600080fd5b600061371183856136ef565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561374457613743613700565b5b602083029250613755838584612a5a565b82840190509392505050565b600082825260208201905092915050565b50565b6000613782600083613761565b915061378d82613772565b600082019050919050565b600060a0820190506137ad600083018961257d565b6137ba602083018861257d565b81810360408301526137cd818688613705565b905081810360608301526137e2818486613705565b905081810360808301526137f581613775565b9050979650505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061385e602f83612438565b915061386982613802565b604082019050919050565b6000602082019050818103600083015261388d81613851565b9050919050565b600067ffffffffffffffff8211156138af576138ae6129ae565b5b6138b88261247c565b9050602081019050919050565b60006138d86138d384613894565b612a0e565b9050828152602081018484840111156138f4576138f36129a9565b5b6138ff848285612449565b509392505050565b600082601f83011261391c5761391b6126f9565b5b815161392c8482602086016138c5565b91505092915050565b60006020828403121561394b5761394a612368565b5b600082015167ffffffffffffffff8111156139695761396861236d565b5b61397584828501613907565b91505092915050565b600060a082019050613993600083018761257d565b6139a0602083018661257d565b6139ad6040830185612613565b6139ba6060830184612613565b81810360808301526139cb81613775565b905095945050505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613a32602c83612438565b9150613a3d826139d6565b604082019050919050565b60006020820190508181036000830152613a6181613a25565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613ac4602983612438565b9150613acf82613a68565b604082019050919050565b60006020820190508181036000830152613af381613ab7565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b56602483612438565b9150613b6182613afa565b604082019050919050565b60006020820190508181036000830152613b8581613b49565b9050919050565b6000613b97826124e8565b9150613ba2836124e8565b925082821015613bb557613bb4613112565b5b828203905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613bf6602083612438565b9150613c0182613bc0565b602082019050919050565b60006020820190508181036000830152613c2581613be9565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613c62601c83612438565b9150613c6d82613c2c565b602082019050919050565b60006020820190508181036000830152613c9181613c55565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613cf4603283612438565b9150613cff82613c98565b604082019050919050565b60006020820190508181036000830152613d2381613ce7565b9050919050565b7f4e6f7420537562776179204a657375732050616d70686c657420746f6b656e00600082015250565b6000613d60601f83612438565b9150613d6b82613d2a565b602082019050919050565b60006020820190508181036000830152613d8f81613d53565b9050919050565b600081519050919050565b6000613dac82613d96565b613db68185613761565b9350613dc6818560208601612449565b613dcf8161247c565b840191505092915050565b6000608082019050613def600083018761257d565b613dfc602083018661257d565b613e096040830185612613565b8181036060830152613e1b8184613da1565b905095945050505050565b600081519050613e358161239e565b92915050565b600060208284031215613e5157613e50612368565b5b6000613e5f84828501613e26565b9150509291505056fea2646970667358221220d61f1eb2e16f623af377a515cfdcdeae17db62f4a34e5bd91cc2b506b9f9d25f64736f6c634300080b0033608060405234801561001057600080fd5b50610689806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063c87b56dd14610030575b600080fd5b61004a6004803603810190610045919061022d565b610060565b60405161005791906102f3565b60405180910390f35b606061006b82610091565b60405160200161007b9190610435565b6040516020818303038152906040529050919050565b606060008214156100d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506101ed565b600082905060005b6000821461010b5780806100f490610491565b915050600a826101049190610509565b91506100e1565b60008167ffffffffffffffff8111156101275761012661053a565b5b6040519080825280601f01601f1916602001820160405280156101595781602001600182028036833780820191505090505b5090505b600085146101e6576001826101729190610569565b9150600a85610181919061059d565b603061018d91906105ce565b60f81b8183815181106101a3576101a2610624565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856101df9190610509565b945061015d565b8093505050505b919050565b600080fd5b6000819050919050565b61020a816101f7565b811461021557600080fd5b50565b60008135905061022781610201565b92915050565b600060208284031215610243576102426101f2565b5b600061025184828501610218565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610294578082015181840152602081019050610279565b838111156102a3576000848401525b50505050565b6000601f19601f8301169050919050565b60006102c58261025a565b6102cf8185610265565b93506102df818560208601610276565b6102e8816102a9565b840191505092915050565b6000602082019050818103600083015261030d81846102ba565b905092915050565b600081905092915050565b7f697066733a2f2f6261667962656962357771616233756a377a636f616a6d6d7960008201527f6b777169676c7167646b6235646e7563326665636461787836746b7766686c7260208201527f73652f0000000000000000000000000000000000000000000000000000000000604082015250565b60006103a2604383610315565b91506103ad82610320565b604382019050919050565b60006103c38261025a565b6103cd8185610315565b93506103dd818560208601610276565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061041f600583610315565b915061042a826103e9565b600582019050919050565b600061044082610395565b915061044c82846103b8565b915061045782610412565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061049c826101f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156104cf576104ce610462565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000610514826101f7565b915061051f836101f7565b92508261052f5761052e6104da565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000610574826101f7565b915061057f836101f7565b92508282101561059257610591610462565b5b828203905092915050565b60006105a8826101f7565b91506105b3836101f7565b9250826105c3576105c26104da565b5b828206905092915050565b60006105d9826101f7565b91506105e4836101f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561061957610618610462565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220651fa0061fe51b26d38ae886145ffaf402a89c311ed8803707d6080437f1b22164736f6c634300080b0033608060405260336002553480156200001657600080fd5b50604051620020a2380380620020a283398181016040528101906200003c919062000174565b816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620001bb565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620000f782620000ca565b9050919050565b60006200010b82620000ea565b9050919050565b6200011d81620000fe565b81146200012957600080fd5b50565b6000815190506200013d8162000112565b92915050565b6200014e81620000ea565b81146200015a57600080fd5b50565b6000815190506200016e8162000143565b92915050565b600080604083850312156200018e576200018d620000c5565b5b60006200019e858286016200012c565b9250506020620001b1858286016200015d565b9150509250929050565b611ed780620001cb6000396000f3fe6080604052600436106100f75760003560e01c8063b2d821471161008a578063e1f872a411610059578063e1f872a41461035e578063eec2471c14610387578063f23a6e61146103c4578063f9000ba814610401576100fe565b8063b2d8214714610290578063bc197c81146102b9578063c4336c1c146102f6578063cb57121114610333576100fe565b80631b5fd5cb116100c65780631b5fd5cb146101e1578063209928871461020c5780635b32619c1461023557806374420f4c14610260576100fe565b8063013cf08b146101005780630d68eb9e1461013e578063150b7a021461017b578063194b6b10146101b8576100fe565b366100fe57005b005b34801561010c57600080fd5b5061012760048036038101906101229190610f89565b61042a565b604051610135929190610fe0565b60405180910390f35b34801561014a57600080fd5b5061016560048036038101906101609190611009565b610471565b6040516101729190611049565b60405180910390f35b34801561018757600080fd5b506101a2600480360381019061019d9190611127565b6104ad565b6040516101af91906111ea565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190611287565b6104c2565b005b3480156101ed57600080fd5b506101f6610684565b604051610203919061130a565b60405180910390f35b34801561021857600080fd5b50610233600480360381019061022e9190611325565b6106aa565b005b34801561024157600080fd5b5061024a61075c565b60405161025791906113b1565b60405180910390f35b61027a6004803603810190610275919061150d565b610780565b6040516102879190611590565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906115ab565b610a1b565b005b3480156102c557600080fd5b506102e060048036038101906102db919061160b565b610bba565b6040516102ed91906111ea565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190610f89565b610bd2565b60405161032a919061130a565b60405180910390f35b34801561033f57600080fd5b50610348610c05565b6040516103559190611590565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190610f89565b610c0b565b005b34801561039357600080fd5b506103ae60048036038101906103a9919061150d565b610c83565b6040516103bb9190611590565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906116e7565b610cbf565b6040516103f891906111ea565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190611781565b610cd5565b005b6000806003600084815260200190815260200160002060000160009054906101000a900460ff16600360008581526020019081526020016000206001015491509150915091565b600060046000848152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff16905092915050565b600063150b7a0260e01b905095945050505050565b60005b8383905081101561067d5760008484838181106104e5576104e46117d4565b5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161055e9190611590565b602060405180830381865afa15801561057b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059f9190611818565b73ffffffffffffffffffffffffffffffffffffffff16148061061f57503373ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61065e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610655906118c8565b60405180910390fd5b610669868285610dec565b50808061067590611917565b9150506104c5565b5050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f906119ac565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061078f86868686610c83565b905060006003600083815260200190815260200160002090508060000160009054906101000a900460ff16156107fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f190611a3e565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461093e5760025460008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e19190611a73565b6108eb9190611aa0565b606482600101546108fc9190611aa0565b101561093d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093490611b6c565b60405180910390fd5b5b60018160000160006101000a81548160ff0219169083151502179055506000808873ffffffffffffffffffffffffffffffffffffffff1688886040516109849190611c06565b60006040518083038185875af1925050503d80600081146109c1576040519150601f19603f3d011682016040523d82523d6000602084013e6109c6565b606091505b5091509150610a0b82826040518060400160405280601b81526020017f50726f706f73616c20657865637574696f6e2072657665727465640000000000815250610ed8565b5083945050505050949350505050565b60005b83839050811015610bb4576000848483818110610a3e57610a3d6117d4565b5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610ab79190611590565b602060405180830381865afa158015610ad4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af89190611818565b73ffffffffffffffffffffffffffffffffffffffff1614610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590611c8f565b60405180910390fd5b826005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550508080610bac90611917565b915050610a1e565b50505050565b600063bc197c8160e01b905098975050505050505050565b60056020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60025481565b3373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c70906119ac565b60405180910390fd5b8060028190555050565b600084848484604051602001610c9c9493929190611cf9565b6040516020818303038152906040528051906020012060001c9050949350505050565b600063f23a6e6160e01b90509695505050505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610d459190611590565b602060405180830381865afa158015610d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d869190611818565b73ffffffffffffffffffffffffffffffffffffffff1614610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390611d91565b60405180910390fd5b610de7838383610dec565b505050565b80151560046000858152602001908152602001600020600084815260200190815260200160002060009054906101000a900460ff1615151415610e2e57610ed3565b8060046000858152602001908152602001600020600084815260200190815260200160002060006101000a81548160ff0219169083151502179055508015610ea3576001600360008581526020019081526020016000206001016000828254610e979190611db1565b92505081905550610ed2565b6001600360008581526020019081526020016000206001016000828254610eca9190611e07565b925050819055505b5b505050565b60608315610ee857829050610f38565b600083511115610efb5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f9190611e7f565b60405180910390fd5b9392505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b610f6681610f53565b8114610f7157600080fd5b50565b600081359050610f8381610f5d565b92915050565b600060208284031215610f9f57610f9e610f49565b5b6000610fad84828501610f74565b91505092915050565b60008115159050919050565b610fcb81610fb6565b82525050565b610fda81610f53565b82525050565b6000604082019050610ff56000830185610fc2565b6110026020830184610fd1565b9392505050565b600080604083850312156110205761101f610f49565b5b600061102e85828601610f74565b925050602061103f85828601610f74565b9150509250929050565b600060208201905061105e6000830184610fc2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061108f82611064565b9050919050565b61109f81611084565b81146110aa57600080fd5b50565b6000813590506110bc81611096565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126110e7576110e66110c2565b5b8235905067ffffffffffffffff811115611104576111036110c7565b5b6020830191508360018202830111156111205761111f6110cc565b5b9250929050565b60008060008060006080868803121561114357611142610f49565b5b6000611151888289016110ad565b9550506020611162888289016110ad565b945050604061117388828901610f74565b935050606086013567ffffffffffffffff81111561119457611193610f4e565b5b6111a0888289016110d1565b92509250509295509295909350565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6111e4816111af565b82525050565b60006020820190506111ff60008301846111db565b92915050565b60008083601f84011261121b5761121a6110c2565b5b8235905067ffffffffffffffff811115611238576112376110c7565b5b602083019150836020820283011115611254576112536110cc565b5b9250929050565b61126481610fb6565b811461126f57600080fd5b50565b6000813590506112818161125b565b92915050565b600080600080606085870312156112a1576112a0610f49565b5b60006112af87828801610f74565b945050602085013567ffffffffffffffff8111156112d0576112cf610f4e565b5b6112dc87828801611205565b935093505060406112ef87828801611272565b91505092959194509250565b61130481611084565b82525050565b600060208201905061131f60008301846112fb565b92915050565b60006020828403121561133b5761133a610f49565b5b6000611349848285016110ad565b91505092915050565b6000819050919050565b600061137761137261136d84611064565b611352565b611064565b9050919050565b60006113898261135c565b9050919050565b600061139b8261137e565b9050919050565b6113ab81611390565b82525050565b60006020820190506113c660008301846113a2565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61141a826113d1565b810181811067ffffffffffffffff82111715611439576114386113e2565b5b80604052505050565b600061144c610f3f565b90506114588282611411565b919050565b600067ffffffffffffffff821115611478576114776113e2565b5b611481826113d1565b9050602081019050919050565b82818337600083830152505050565b60006114b06114ab8461145d565b611442565b9050828152602081018484840111156114cc576114cb6113cc565b5b6114d784828561148e565b509392505050565b600082601f8301126114f4576114f36110c2565b5b813561150484826020860161149d565b91505092915050565b6000806000806080858703121561152757611526610f49565b5b6000611535878288016110ad565b945050602061154687828801610f74565b935050604085013567ffffffffffffffff81111561156757611566610f4e565b5b611573878288016114df565b925050606061158487828801610f74565b91505092959194509250565b60006020820190506115a56000830184610fd1565b92915050565b6000806000604084860312156115c4576115c3610f49565b5b600084013567ffffffffffffffff8111156115e2576115e1610f4e565b5b6115ee86828701611205565b93509350506020611601868287016110ad565b9150509250925092565b60008060008060008060008060a0898b03121561162b5761162a610f49565b5b60006116398b828c016110ad565b985050602061164a8b828c016110ad565b975050604089013567ffffffffffffffff81111561166b5761166a610f4e565b5b6116778b828c01611205565b9650965050606089013567ffffffffffffffff81111561169a57611699610f4e565b5b6116a68b828c01611205565b9450945050608089013567ffffffffffffffff8111156116c9576116c8610f4e565b5b6116d58b828c016110d1565b92509250509295985092959890939650565b60008060008060008060a0878903121561170457611703610f49565b5b600061171289828a016110ad565b965050602061172389828a016110ad565b955050604061173489828a01610f74565b945050606061174589828a01610f74565b935050608087013567ffffffffffffffff81111561176657611765610f4e565b5b61177289828a016110d1565b92509250509295509295509295565b60008060006060848603121561179a57611799610f49565b5b60006117a886828701610f74565b93505060206117b986828701610f74565b92505060406117ca86828701611272565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061181281611096565b92915050565b60006020828403121561182e5761182d610f49565b5b600061183c84828501611803565b91505092915050565b600082825260208201905092915050565b7f566f746572206d757374206265206f776e6572206f722064656c656761746f7260008201527f206f6620616c6c20746f6b656e73000000000000000000000000000000000000602082015250565b60006118b2602e83611845565b91506118bd82611856565b604082019050919050565b600060208201905081810360008301526118e1816118a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061192282610f53565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611955576119546118e8565b5b600182019050919050565b7f43616e206f6e6c792062652063616c6c65642062792074686520636875726368600082015250565b6000611996602083611845565b91506119a182611960565b602082019050919050565b600060208201905081810360008301526119c581611989565b9050919050565b7f50726f706f73616c2068617320616c7265616479206265656e2065786563757460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a28602283611845565b9150611a33826119cc565b604082019050919050565b60006020820190508181036000830152611a5781611a1b565b9050919050565b600081519050611a6d81610f5d565b92915050565b600060208284031215611a8957611a88610f49565b5b6000611a9784828501611a5e565b91505092915050565b6000611aab82610f53565b9150611ab683610f53565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611aef57611aee6118e8565b5b828202905092915050565b7f496e73756666696369656e7420766f74657320746f206578656375746520707260008201527f6f706f73616c0000000000000000000000000000000000000000000000000000602082015250565b6000611b56602683611845565b9150611b6182611afa565b604082019050919050565b60006020820190508181036000830152611b8581611b49565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015611bc0578082015181840152602081019050611ba5565b83811115611bcf576000848401525b50505050565b6000611be082611b8c565b611bea8185611b97565b9350611bfa818560208601611ba2565b80840191505092915050565b6000611c128284611bd5565b915081905092915050565b7f5369676e6572206d757374206f776e20746f6b656e20746f2064656c6567617460008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c79602183611845565b9150611c8482611c1d565b604082019050919050565b60006020820190508181036000830152611ca881611c6c565b9050919050565b600082825260208201905092915050565b6000611ccb82611b8c565b611cd58185611caf565b9350611ce5818560208601611ba2565b611cee816113d1565b840191505092915050565b6000608082019050611d0e60008301876112fb565b611d1b6020830186610fd1565b8181036040830152611d2d8185611cc0565b9050611d3c6060830184610fd1565b95945050505050565b7f566f746572206d757374206265206f776e6572206f6620746f6b656e00000000600082015250565b6000611d7b601c83611845565b9150611d8682611d45565b602082019050919050565b60006020820190508181036000830152611daa81611d6e565b9050919050565b6000611dbc82610f53565b9150611dc783610f53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611dfc57611dfb6118e8565b5b828201905092915050565b6000611e1282610f53565b9150611e1d83610f53565b925082821015611e3057611e2f6118e8565b5b828203905092915050565b600081519050919050565b6000611e5182611e3b565b611e5b8185611845565b9350611e6b818560208601611ba2565b611e74816113d1565b840191505092915050565b60006020820190508181036000830152611e998184611e46565b90509291505056fea26469706673582212204b4a3c556e02aa92d5c533566b08659fdb14a45294621a60b15b9dddf62362e464736f6c634300080b0033000000000000000000000000495f947276749ce646f68ac8c248420045cb7b5e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063b88d4fde11610097578063d4434ab011610071578063d4434ab0146104df578063e5187f43146104fb578063e985e9c514610517578063f23a6e6114610547576101a9565b8063b88d4fde14610463578063bc197c811461047f578063c87b56dd146104af576101a9565b8063927f59ba116100d3578063927f59ba146103f157806395d89b411461040d578063976461181461042b578063a22cb46514610447576101a9565b806370a082311461038757806372504a24146103b757806374aed3fd146103d3576101a9565b806323b872dd1161016657806342842e0e1161014057806342842e0e146102ef5780634f558e791461030b57806352a6c8c91461033b5780636352211e14610357576101a9565b806323b872dd146102845780632a55205a146102a057806335209821146102d1576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c5780630fa7bf1a1461024857806318160ddd14610266575b600080fd5b6101c860048036038101906101c391906123ca565b610577565b6040516101d59190612412565b60405180910390f35b6101e66105d8565b6040516101f391906124c6565b60405180910390f35b6102166004803603810190610211919061251e565b61066a565b604051610223919061258c565b60405180910390f35b610246600480360381019061024191906125d3565b6106ef565b005b610250610807565b60405161025d919061258c565b60405180910390f35b61026e61082d565b60405161027b9190612622565b60405180910390f35b61029e6004803603810190610299919061263d565b610837565b005b6102ba60048036038101906102b59190612690565b610897565b6040516102c89291906126d0565b60405180910390f35b6102d96108f5565b6040516102e6919061258c565b60405180910390f35b6103096004803603810190610304919061263d565b61091f565b005b6103256004803603810190610320919061251e565b61093f565b6040516103329190612412565b60405180910390f35b6103556004803603810190610350919061275e565b610951565b005b610371600480360381019061036c919061251e565b610aa4565b60405161037e919061258c565b60405180910390f35b6103a1600480360381019061039c91906127f3565b610b56565b6040516103ae9190612622565b60405180910390f35b6103d160048036038101906103cc919061285a565b610c0e565b005b6103db610d00565b6040516103e8919061258c565b60405180910390f35b61040b600480360381019061040691906128f0565b610d2a565b005b610415610e3a565b60405161042291906124c6565b60405180910390f35b610445600480360381019061044091906127f3565b610ecc565b005b610461600480360381019061045c9190612969565b610fa0565b005b61047d60048036038101906104789190612ad9565b611121565b005b61049960048036038101906104949190612c08565b611183565b6040516104a69190612cf3565b60405180910390f35b6104c960048036038101906104c4919061251e565b611385565b6040516104d691906124c6565b60405180910390f35b6104f960048036038101906104f49190612d0e565b611477565b005b610515600480360381019061051091906127f3565b61157c565b005b610531600480360381019061052c9190612d8f565b611650565b60405161053e9190612412565b60405180910390f35b610561600480360381019061055c9190612dcf565b6116e4565b60405161056e9190612cf3565b60405180910390f35b6000632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105d157506105d08261188c565b5b9050919050565b6060600080546105e790612e98565b80601f016020809104026020016040519081016040528092919081815260200182805461061390612e98565b80156106605780601f1061063557610100808354040283529160200191610660565b820191906000526020600020905b81548152906001019060200180831161064357829003601f168201915b5050505050905090565b60006106758261196e565b6106b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ab90612f3c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106fa82610aa4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076290612fce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661078a6119da565b73ffffffffffffffffffffffffffffffffffffffff1614806107b957506107b8816107b36119da565b611650565b5b6107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef90613060565b60405180910390fd5b61080283836119e2565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b6108486108426119da565b82611a9b565b610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e906130f2565b60405180910390fd5b610892838383611b79565b505050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600a60149054906101000a900461ffff1661ffff16856108e09190613141565b6108ea91906131ca565b915091509250929050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61093a83838360405180602001604052806000815250611121565b505050565b600061094a8261196e565b9050919050565b6109596119da565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806109ee57506109b76119da565b73ffffffffffffffffffffffffffffffffffffffff166109d686610aa4565b73ffffffffffffffffffffffffffffffffffffffff16145b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a249061326d565b60405180910390fd5b8383604051610a3d9291906132bd565b604051809103902085610a4e6119da565b73ffffffffffffffffffffffffffffffffffffffff167fad000c5a693465b4555f1044ddd1221ef0bfc49e5621ceb705b952ff97e2caac8585604051610a95929190613303565b60405180910390a45050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490613399565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe9061342b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590613497565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60146101000a81548161ffff021916908361ffff1602179055505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190613497565b60405180910390fd5b60005b82829050811015610e1957610e06838383818110610dde57610ddd6134b7565b5b9050602002016020810190610df391906127f3565b82600654610e0191906134e6565b611dd5565b8080610e119061353c565b915050610dbd565b508181905060066000828254610e2f91906134e6565b925050819055505050565b606060018054610e4990612e98565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7590612e98565b8015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390613497565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610fa86119da565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d906135d1565b60405180910390fd5b80600560006110236119da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110d06119da565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111159190612412565b60405180910390a35050565b61113261112c6119da565b83611a9b565b611171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611168906130f2565b60405180910390fd5b61117d84848484611fa3565b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c90613663565b60405180910390fd5b60005b878790508110156112b5576001868683818110611238576112376134b7565b5b905060200201351461127f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611276906136cf565b60405180910390fd5b6112a2888883818110611295576112946134b7565b5b905060200201358a611fff565b80806112ad9061353c565b915050611218565b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632eb2c2d630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168a8a8a8a6040518763ffffffff1660e01b815260040161133d96959493929190613798565b600060405180830381600087803b15801561135757600080fd5b505af115801561136b573d6000803e3d6000fd5b5050505063bc197c8160e01b905098975050505050505050565b60606113908261196e565b6113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690613874565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b815260040161142a9190612622565b600060405180830381865afa158015611447573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906114709190613935565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613497565b60405180910390fd5b83836040516115179291906132bd565b60405180910390206115276119da565b73ffffffffffffffffffffffffffffffffffffffff167f3d366eac52dec4372766dc4b15bba20b935b45d33171465a598eedabb5a5dff8848460405161156e929190613303565b60405180910390a350505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613497565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d90613663565b60405180910390fd5b600184146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b0906136cf565b60405180910390fd5b6117c38587611fff565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1688886040518563ffffffff1660e01b8152600401611846949392919061397e565b600060405180830381600087803b15801561186057600080fd5b505af1158015611874573d6000803e3d6000fd5b5050505063f23a6e6160e01b90509695505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061195757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611967575061196682612154565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a5583610aa4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611aa68261196e565b611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90613a48565b60405180910390fd5b6000611af083610aa4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5f57508373ffffffffffffffffffffffffffffffffffffffff16611b478461066a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b705750611b6f8185611650565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b9982610aa4565b73ffffffffffffffffffffffffffffffffffffffff1614611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690613ada565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690613b6c565b60405180910390fd5b611c6a8383836121be565b611c756000826119e2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc59190613b8c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1c91906134e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c90613c0c565b60405180910390fd5b611e4e8161196e565b15611e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8590613c78565b60405180910390fd5b611e9a600083836121be565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eea91906134e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b611fae848484611b79565b611fba848484846121c3565b611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613d0a565b60405180910390fd5b50505050565b600066ffffffffffffff602884901c16905060098114806120205750600a81145b8061202b5750603481145b806120365750603681145b80612042575060438110155b156120a6577347144372eb383466d18fc91db9cd0396aa6c87a4606084901c146120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613d76565b60405180910390fd5b612101565b737c23c1b7e544e3e805ba675c811e287fc9d71949606084901c14612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613d76565b60405180910390fd5b5b60006041821161211f576001826121189190613b8c565b905061212f565b60028261212c9190613b8c565b90505b61214e7366666666666666666666666666666666666666668483611b79565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60006121e48473ffffffffffffffffffffffffffffffffffffffff1661234b565b1561233e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261220d6119da565b8786866040518563ffffffff1660e01b815260040161222f9493929190613dda565b6020604051808303816000875af192505050801561226b57506040513d601f19601f820116820180604052508101906122689190613e3b565b60015b6122ee573d806000811461229b576040519150601f19603f3d011682016040523d82523d6000602084013e6122a0565b606091505b506000815114156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90613d0a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612343565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123a781612372565b81146123b257600080fd5b50565b6000813590506123c48161239e565b92915050565b6000602082840312156123e0576123df612368565b5b60006123ee848285016123b5565b91505092915050565b60008115159050919050565b61240c816123f7565b82525050565b60006020820190506124276000830184612403565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561246757808201518184015260208101905061244c565b83811115612476576000848401525b50505050565b6000601f19601f8301169050919050565b60006124988261242d565b6124a28185612438565b93506124b2818560208601612449565b6124bb8161247c565b840191505092915050565b600060208201905081810360008301526124e0818461248d565b905092915050565b6000819050919050565b6124fb816124e8565b811461250657600080fd5b50565b600081359050612518816124f2565b92915050565b60006020828403121561253457612533612368565b5b600061254284828501612509565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125768261254b565b9050919050565b6125868161256b565b82525050565b60006020820190506125a1600083018461257d565b92915050565b6125b08161256b565b81146125bb57600080fd5b50565b6000813590506125cd816125a7565b92915050565b600080604083850312156125ea576125e9612368565b5b60006125f8858286016125be565b925050602061260985828601612509565b9150509250929050565b61261c816124e8565b82525050565b60006020820190506126376000830184612613565b92915050565b60008060006060848603121561265657612655612368565b5b6000612664868287016125be565b9350506020612675868287016125be565b925050604061268686828701612509565b9150509250925092565b600080604083850312156126a7576126a6612368565b5b60006126b585828601612509565b92505060206126c685828601612509565b9150509250929050565b60006040820190506126e5600083018561257d565b6126f26020830184612613565b9392505050565b600080fd5b600080fd5b600080fd5b60008083601f84011261271e5761271d6126f9565b5b8235905067ffffffffffffffff81111561273b5761273a6126fe565b5b60208301915083600182028301111561275757612756612703565b5b9250929050565b60008060008060006060868803121561277a57612779612368565b5b600061278888828901612509565b955050602086013567ffffffffffffffff8111156127a9576127a861236d565b5b6127b588828901612708565b9450945050604086013567ffffffffffffffff8111156127d8576127d761236d565b5b6127e488828901612708565b92509250509295509295909350565b60006020828403121561280957612808612368565b5b6000612817848285016125be565b91505092915050565b600061ffff82169050919050565b61283781612820565b811461284257600080fd5b50565b6000813590506128548161282e565b92915050565b6000806040838503121561287157612870612368565b5b600061287f858286016125be565b925050602061289085828601612845565b9150509250929050565b60008083601f8401126128b0576128af6126f9565b5b8235905067ffffffffffffffff8111156128cd576128cc6126fe565b5b6020830191508360208202830111156128e9576128e8612703565b5b9250929050565b6000806020838503121561290757612906612368565b5b600083013567ffffffffffffffff8111156129255761292461236d565b5b6129318582860161289a565b92509250509250929050565b612946816123f7565b811461295157600080fd5b50565b6000813590506129638161293d565b92915050565b600080604083850312156129805761297f612368565b5b600061298e858286016125be565b925050602061299f85828601612954565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129e68261247c565b810181811067ffffffffffffffff82111715612a0557612a046129ae565b5b80604052505050565b6000612a1861235e565b9050612a2482826129dd565b919050565b600067ffffffffffffffff821115612a4457612a436129ae565b5b612a4d8261247c565b9050602081019050919050565b82818337600083830152505050565b6000612a7c612a7784612a29565b612a0e565b905082815260208101848484011115612a9857612a976129a9565b5b612aa3848285612a5a565b509392505050565b600082601f830112612ac057612abf6126f9565b5b8135612ad0848260208601612a69565b91505092915050565b60008060008060808587031215612af357612af2612368565b5b6000612b01878288016125be565b9450506020612b12878288016125be565b9350506040612b2387828801612509565b925050606085013567ffffffffffffffff811115612b4457612b4361236d565b5b612b5087828801612aab565b91505092959194509250565b60008083601f840112612b7257612b716126f9565b5b8235905067ffffffffffffffff811115612b8f57612b8e6126fe565b5b602083019150836020820283011115612bab57612baa612703565b5b9250929050565b60008083601f840112612bc857612bc76126f9565b5b8235905067ffffffffffffffff811115612be557612be46126fe565b5b602083019150836001820283011115612c0157612c00612703565b5b9250929050565b60008060008060008060008060a0898b031215612c2857612c27612368565b5b6000612c368b828c016125be565b9850506020612c478b828c016125be565b975050604089013567ffffffffffffffff811115612c6857612c6761236d565b5b612c748b828c01612b5c565b9650965050606089013567ffffffffffffffff811115612c9757612c9661236d565b5b612ca38b828c01612b5c565b9450945050608089013567ffffffffffffffff811115612cc657612cc561236d565b5b612cd28b828c01612bb2565b92509250509295985092959890939650565b612ced81612372565b82525050565b6000602082019050612d086000830184612ce4565b92915050565b60008060008060408587031215612d2857612d27612368565b5b600085013567ffffffffffffffff811115612d4657612d4561236d565b5b612d5287828801612708565b9450945050602085013567ffffffffffffffff811115612d7557612d7461236d565b5b612d8187828801612708565b925092505092959194509250565b60008060408385031215612da657612da5612368565b5b6000612db4858286016125be565b9250506020612dc5858286016125be565b9150509250929050565b60008060008060008060a08789031215612dec57612deb612368565b5b6000612dfa89828a016125be565b9650506020612e0b89828a016125be565b9550506040612e1c89828a01612509565b9450506060612e2d89828a01612509565b935050608087013567ffffffffffffffff811115612e4e57612e4d61236d565b5b612e5a89828a01612bb2565b92509250509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eb057607f821691505b60208210811415612ec457612ec3612e69565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612f26602c83612438565b9150612f3182612eca565b604082019050919050565b60006020820190508181036000830152612f5581612f19565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fb8602183612438565b9150612fc382612f5c565b604082019050919050565b60006020820190508181036000830152612fe781612fab565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061304a603883612438565b915061305582612fee565b604082019050919050565b600060208201905081810360008301526130798161303d565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006130dc603183612438565b91506130e782613080565b604082019050919050565b6000602082019050818103600083015261310b816130cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061314c826124e8565b9150613157836124e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131905761318f613112565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131d5826124e8565b91506131e0836124e8565b9250826131f0576131ef61319b565b5b828204905092915050565b7f4f6e6c792070726f6a656374206f7220746f6b656e206f776e65722063616e2060008201527f656d697420746f6b656e206576656e7400000000000000000000000000000000602082015250565b6000613257603083612438565b9150613262826131fb565b604082019050919050565b600060208201905081810360008301526132868161324a565b9050919050565b600081905092915050565b60006132a4838561328d565b93506132b1838584612a5a565b82840190509392505050565b60006132ca828486613298565b91508190509392505050565b60006132e28385612438565b93506132ef838584612a5a565b6132f88361247c565b840190509392505050565b6000602082019050818103600083015261331e8184866132d6565b90509392505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613383602983612438565b915061338e82613327565b604082019050919050565b600060208201905081810360008301526133b281613376565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613415602a83612438565b9150613420826133b9565b604082019050919050565b6000602082019050818103600083015261344481613408565b9050919050565b7f43616c6c6572206973206e6f7420746865206368757263680000000000000000600082015250565b6000613481601883612438565b915061348c8261344b565b602082019050919050565b600060208201905081810360008301526134b081613474565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006134f1826124e8565b91506134fc836124e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561353157613530613112565b5b828201905092915050565b6000613547826124e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561357a57613579613112565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006135bb601983612438565b91506135c682613585565b602082019050919050565b600060208201905081810360008301526135ea816135ae565b9050919050565b7f43616e6e6f74206162736f6c76652073696e7320776974686f7574207075726760008201527f61746f7279000000000000000000000000000000000000000000000000000000602082015250565b600061364d602583612438565b9150613658826135f1565b604082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b7f4d757374206162736f6c766520612073696e676c6520746f6b656e0000000000600082015250565b60006136b9601b83612438565b91506136c482613683565b602082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b600082825260208201905092915050565b600080fd5b600061371183856136ef565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561374457613743613700565b5b602083029250613755838584612a5a565b82840190509392505050565b600082825260208201905092915050565b50565b6000613782600083613761565b915061378d82613772565b600082019050919050565b600060a0820190506137ad600083018961257d565b6137ba602083018861257d565b81810360408301526137cd818688613705565b905081810360608301526137e2818486613705565b905081810360808301526137f581613775565b9050979650505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061385e602f83612438565b915061386982613802565b604082019050919050565b6000602082019050818103600083015261388d81613851565b9050919050565b600067ffffffffffffffff8211156138af576138ae6129ae565b5b6138b88261247c565b9050602081019050919050565b60006138d86138d384613894565b612a0e565b9050828152602081018484840111156138f4576138f36129a9565b5b6138ff848285612449565b509392505050565b600082601f83011261391c5761391b6126f9565b5b815161392c8482602086016138c5565b91505092915050565b60006020828403121561394b5761394a612368565b5b600082015167ffffffffffffffff8111156139695761396861236d565b5b61397584828501613907565b91505092915050565b600060a082019050613993600083018761257d565b6139a0602083018661257d565b6139ad6040830185612613565b6139ba6060830184612613565b81810360808301526139cb81613775565b905095945050505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613a32602c83612438565b9150613a3d826139d6565b604082019050919050565b60006020820190508181036000830152613a6181613a25565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613ac4602983612438565b9150613acf82613a68565b604082019050919050565b60006020820190508181036000830152613af381613ab7565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b56602483612438565b9150613b6182613afa565b604082019050919050565b60006020820190508181036000830152613b8581613b49565b9050919050565b6000613b97826124e8565b9150613ba2836124e8565b925082821015613bb557613bb4613112565b5b828203905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613bf6602083612438565b9150613c0182613bc0565b602082019050919050565b60006020820190508181036000830152613c2581613be9565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613c62601c83612438565b9150613c6d82613c2c565b602082019050919050565b60006020820190508181036000830152613c9181613c55565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613cf4603283612438565b9150613cff82613c98565b604082019050919050565b60006020820190508181036000830152613d2381613ce7565b9050919050565b7f4e6f7420537562776179204a657375732050616d70686c657420746f6b656e00600082015250565b6000613d60601f83612438565b9150613d6b82613d2a565b602082019050919050565b60006020820190508181036000830152613d8f81613d53565b9050919050565b600081519050919050565b6000613dac82613d96565b613db68185613761565b9350613dc6818560208601612449565b613dcf8161247c565b840191505092915050565b6000608082019050613def600083018761257d565b613dfc602083018661257d565b613e096040830185612613565b8181036060830152613e1b8184613da1565b905095945050505050565b600081519050613e358161239e565b92915050565b600060208284031215613e5157613e50612368565b5b6000613e5f84828501613e26565b9150509291505056fea2646970667358221220d61f1eb2e16f623af377a515cfdcdeae17db62f4a34e5bd91cc2b506b9f9d25f64736f6c634300080b0033

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

000000000000000000000000495f947276749ce646f68ac8c248420045cb7b5e

-----Decoded View---------------
Arg [0] : _os (address): 0x495f947276749Ce646f68AC8c248420045cb7b5e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000495f947276749ce646f68ac8c248420045cb7b5e


Deployed Bytecode Sourcemap

1352:5150:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4958:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22335:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23846:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23384:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1471:21:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4769:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24710:330:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5604:170:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;5167:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25106:179:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4858:96:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6179:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22038:235:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21776:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5390:210:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2052:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4353:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22497:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2243:92:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24130:290:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25351:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3803:546:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4541:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6015:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5275:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24486:162:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3360:439:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4958:205;5051:4;5107:10;5100:18;;5085:33;;;:11;:33;;;;:73;;;;5122:36;5146:11;5122:23;:36::i;:::-;5085:73;5078:80;;4958:205;;;:::o;22335:98:1:-;22389:13;22421:5;22414:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22335:98;:::o;23846:217::-;23922:7;23949:16;23957:7;23949;:16::i;:::-;23941:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24032:15;:24;24048:7;24032:24;;;;;;;;;;;;;;;;;;;;;24025:31;;23846:217;;;:::o;23384:401::-;23464:13;23480:23;23495:7;23480:14;:23::i;:::-;23464:39;;23527:5;23521:11;;:2;:11;;;;23513:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23618:5;23602:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23627:37;23644:5;23651:12;:10;:12::i;:::-;23627:16;:37::i;:::-;23602:62;23581:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;23757:21;23766:2;23770:7;23757:8;:21::i;:::-;23454:331;23384:401;;:::o;1471:21:3:-;;;;;;;;;;;;;:::o;4769:85::-;4815:7;4837:12;;4830:19;;4769:85;:::o;24710:330:1:-;24899:41;24918:12;:10;:12::i;:::-;24932:7;24899:18;:41::i;:::-;24891:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25005:28;25015:4;25021:2;25025:7;25005:9;:28::i;:::-;24710:330;;;:::o;5604:170:3:-;5677:7;5686;5709:18;;;;;;;;;;;5763:5;5742:18;;;;;;;;;;;5729:31;;:10;:31;;;;:::i;:::-;:39;;;;:::i;:::-;5701:68;;;;5604:170;;;;;:::o;5167:104::-;5218:7;5248:17;;;;;;;;;;;5233:33;;5167:104;:::o;25106:179:1:-;25239:39;25256:4;25262:2;25266:7;25239:39;;;;;;;;;;;;:16;:39::i;:::-;25106:179;;;:::o;4858:96:3:-;4914:4;4933:16;4941:7;4933;:16::i;:::-;4926:23;;4858:96;;;:::o;6179:321::-;6312:12;:10;:12::i;:::-;6302:22;;:6;;;;;;;;;;;:22;;;:65;;;;6355:12;:10;:12::i;:::-;6328:39;;:23;6343:7;6328:14;:23::i;:::-;:39;;;6302:65;6287:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;6476:9;;6442:53;;;;;;;:::i;:::-;;;;;;;;6467:7;6453:12;:10;:12::i;:::-;6442:53;;;6487:7;;6442:53;;;;;;;:::i;:::-;;;;;;;;6179:321;;;;;:::o;22038:235:1:-;22110:7;22129:13;22145:7;:16;22153:7;22145:16;;;;;;;;;;;;;;;;;;;;;22129:32;;22196:1;22179:19;;:5;:19;;;;22171:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22261:5;22254:12;;;22038:235;;;:::o;21776:205::-;21848:7;21892:1;21875:19;;:5;:19;;;;21867:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21958:9;:16;21968:5;21958:16;;;;;;;;;;;;;;;;21951:23;;21776:205;;;:::o;5390:210:3:-;2188:10;2178:20;;:6;;;;;;;;;;;:20;;;2170:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;5530:19:::1;5509:18;;:40;;;;;;;;;;;;;;;;;;5576:19;5555:18;;:40;;;;;;;;;;;;;;;;;;5390:210:::0;;:::o;2052:88::-;2094:7;2124:10;;;;;;;;;;;2109:26;;2052:88;:::o;4353:184::-;2188:10;2178:20;;:6;;;;;;;;;;;:20;;;2170:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;4426:9:::1;4421:81;4441:2;;:9;;4437:1;:13;4421:81;;;4465:30;4471:2;;4474:1;4471:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4493:1;4478:12;;:16;;;;:::i;:::-;4465:5;:30::i;:::-;4452:3;;;;;:::i;:::-;;;;4421:81;;;;4523:2;;:9;;4507:12;;:25;;;;;;;:::i;:::-;;;;;;;;4353:184:::0;;:::o;22497:102:1:-;22553:13;22585:7;22578:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22497:102;:::o;2243:92:3:-;2188:10;2178:20;;:6;;;;;;;;;;;:20;;;2170:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;2321:9:::1;2312:6;;:18;;;;;;;;;;;;;;;;;;2243:92:::0;:::o;24130:290:1:-;24244:12;:10;:12::i;:::-;24232:24;;:8;:24;;;;24224:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24342:8;24297:18;:32;24316:12;:10;:12::i;:::-;24297:32;;;;;;;;;;;;;;;:42;24330:8;24297:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24394:8;24365:48;;24380:12;:10;:12::i;:::-;24365:48;;;24404:8;24365:48;;;;;;:::i;:::-;;;;;;;;24130:290;;:::o;25351:320::-;25520:41;25539:12;:10;:12::i;:::-;25553:7;25520:18;:41::i;:::-;25512:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25625:39;25639:4;25645:2;25649:7;25658:5;25625:13;:39::i;:::-;25351:320;;;;:::o;3803:546:3:-;3968:6;4012:10;;;;;;;;;;;3990:33;;:10;:33;;;3982:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;4077:9;4072:144;4096:3;;:10;;4092:1;:14;4072:144;;;4143:1;4129:7;;4137:1;4129:10;;;;;;;:::i;:::-;;;;;;;;:15;4121:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;4184:25;4196:3;;4200:1;4196:6;;;;;;;:::i;:::-;;;;;;;;4204:4;4184:11;:25::i;:::-;4108:3;;;;;:::i;:::-;;;;4072:144;;;;4221:10;;;;;;;;;;;:32;;;4262:4;4269:6;;;;;;;;;;;4277:3;;4282:7;;4221:73;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4308:36;;;4301:43;;3803:546;;;;;;;;;;:::o;4541:224::-;4614:13;4643:16;4651:7;4643;:16::i;:::-;4635:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;4725:17;;;;;;;;;;;:26;;;4752:7;4725:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4718:42;;4541:224;;;:::o;6015:160::-;2188:10;2178:20;;:6;;;;;;;;;;;:20;;;2170:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;6151:9:::1;;6124:46;;;;;;;:::i;:::-;;;;;;;;6137:12;:10;:12::i;:::-;6124:46;;;6162:7;;6124:46;;;;;;;:::i;:::-;;;;;;;;6015:160:::0;;;;:::o;5275:110::-;2188:10;2178:20;;:6;;;;;;;;;;;:20;;;2170:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;5374:5:::1;5345:17;;:35;;;;;;;;;;;;;;;;;;5275:110:::0;:::o;24486:162:1:-;24583:4;24606:18;:25;24625:5;24606:25;;;;;;;;;;;;;;;:35;24632:8;24606:35;;;;;;;;;;;;;;;;;;;;;;;;;24599:42;;24486:162;;;;:::o;3360:439:3:-;3496:6;3540:10;;;;;;;;;;;3518:33;;:10;:33;;;3510:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;3617:1;3607:6;:11;3599:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3657:21;3669:2;3673:4;3657:11;:21::i;:::-;3684:10;;;;;;;;;;;:27;;;3720:4;3727:6;;;;;;;;;;;3735:2;3739:6;3684:66;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3763:31;;;3756:38;;3360:439;;;;;;;;:::o;21417:300:1:-;21519:4;21569:25;21554:40;;;:11;:40;;;;:104;;;;21625:33;21610:48;;;:11;:48;;;;21554:104;:156;;;;21674:36;21698:11;21674:23;:36::i;:::-;21554:156;21535:175;;21417:300;;;:::o;27143:125::-;27208:4;27259:1;27231:30;;:7;:16;27239:7;27231:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27224:37;;27143:125;;;:::o;15130:96::-;15183:7;15209:10;15202:17;;15130:96;:::o;30994:171::-;31095:2;31068:15;:24;31084:7;31068:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31150:7;31146:2;31112:46;;31121:23;31136:7;31121:14;:23::i;:::-;31112:46;;;;;;;;;;;;30994:171;;:::o;27426:344::-;27519:4;27543:16;27551:7;27543;:16::i;:::-;27535:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27618:13;27634:23;27649:7;27634:14;:23::i;:::-;27618:39;;27686:5;27675:16;;:7;:16;;;:51;;;;27719:7;27695:31;;:20;27707:7;27695:11;:20::i;:::-;:31;;;27675:51;:87;;;;27730:32;27747:5;27754:7;27730:16;:32::i;:::-;27675:87;27667:96;;;27426:344;;;;:::o;30323:560::-;30477:4;30450:31;;:23;30465:7;30450:14;:23::i;:::-;:31;;;30442:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30559:1;30545:16;;:2;:16;;;;30537:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30613:39;30634:4;30640:2;30644:7;30613:20;:39::i;:::-;30714:29;30731:1;30735:7;30714:8;:29::i;:::-;30773:1;30754:9;:15;30764:4;30754:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30801:1;30784:9;:13;30794:2;30784:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30831:2;30812:7;:16;30820:7;30812:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30868:7;30864:2;30849:27;;30858:4;30849:27;;;;;;;;;;;;30323:560;;;:::o;29062:372::-;29155:1;29141:16;;:2;:16;;;;29133:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29213:16;29221:7;29213;:16::i;:::-;29212:17;29204:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29273:45;29302:1;29306:2;29310:7;29273:20;:45::i;:::-;29346:1;29329:9;:13;29339:2;29329:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29376:2;29357:7;:16;29365:7;29357:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29419:7;29415:2;29394:33;;29411:1;29394:33;;;;;;;;;;;;29062:372;;:::o;26533:307::-;26684:28;26694:4;26700:2;26704:7;26684:9;:28::i;:::-;26730:48;26753:4;26759:2;26763:7;26772:5;26730:22;:48::i;:::-;26722:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26533:307;;;;:::o;2339:1017:3:-;2404:21;2444:56;2439:2;2428:7;:13;;:72;2404:96;;2590:1;2573:13;:18;:48;;;;2619:2;2602:13;:19;2573:48;:77;;;;2648:2;2631:13;:19;2573:77;:106;;;;2677:2;2660:13;:19;2573:106;:135;;;;2706:2;2689:13;:19;;2573:135;2562:399;;;2748:44;2742:2;2731:7;:13;;:61;2723:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;2562:399;;;2874:44;2868:2;2857:7;:13;;:61;2849:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;2562:399;2991:18;3036:2;3019:13;:19;3015:243;;3144:1;3128:13;:17;;;;:::i;:::-;3115:30;;3015:243;;;3250:1;3234:13;:17;;;;:::i;:::-;3221:30;;3015:243;3282:69;3292:42;3336:2;3340:10;3282:9;:69::i;:::-;2398:958;;2339:1017;;:::o;17940:155:1:-;18025:4;18063:25;18048:40;;;:11;:40;;;;18041:47;;17940:155;;;:::o;33056:122::-;;;;:::o;31718:782::-;31868:4;31888:15;:2;:13;;;:15::i;:::-;31884:610;;;31939:2;31923:36;;;31960:12;:10;:12::i;:::-;31974:4;31980:7;31989:5;31923:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31919:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32183:1;32166:6;:13;:18;32162:266;;;32208:60;;;;;;;;;;:::i;:::-;;;;;;;;32162:266;32380:6;32374:13;32365:6;32361:2;32357:15;32350:38;31919:523;32055:45;;;32045:55;;;:6;:55;;;;32038:62;;;;;31884:610;32479:4;32472:11;;31718:782;;;;;;;:::o;7462:377::-;7522:4;7725:12;7790:7;7778:20;7770:28;;7831:1;7824:4;:8;7817:15;;;7462:377;;;:::o;7:75:4:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:474::-;5983:6;5991;6040:2;6028:9;6019:7;6015:23;6011:32;6008:119;;;6046:79;;:::i;:::-;6008:119;6166:1;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6137:117;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5915:474;;;;;:::o;6395:332::-;6516:4;6554:2;6543:9;6539:18;6531:26;;6567:71;6635:1;6624:9;6620:17;6611:6;6567:71;:::i;:::-;6648:72;6716:2;6705:9;6701:18;6692:6;6648:72;:::i;:::-;6395:332;;;;;:::o;6733:117::-;6842:1;6839;6832:12;6856:117;6965:1;6962;6955:12;6979:117;7088:1;7085;7078:12;7116:553;7174:8;7184:6;7234:3;7227:4;7219:6;7215:17;7211:27;7201:122;;7242:79;;:::i;:::-;7201:122;7355:6;7342:20;7332:30;;7385:18;7377:6;7374:30;7371:117;;;7407:79;;:::i;:::-;7371:117;7521:4;7513:6;7509:17;7497:29;;7575:3;7567:4;7559:6;7555:17;7545:8;7541:32;7538:41;7535:128;;;7582:79;;:::i;:::-;7535:128;7116:553;;;;;:::o;7675:1019::-;7776:6;7784;7792;7800;7808;7857:2;7845:9;7836:7;7832:23;7828:32;7825:119;;;7863:79;;:::i;:::-;7825:119;7983:1;8008:53;8053:7;8044:6;8033:9;8029:22;8008:53;:::i;:::-;7998:63;;7954:117;8138:2;8127:9;8123:18;8110:32;8169:18;8161:6;8158:30;8155:117;;;8191:79;;:::i;:::-;8155:117;8304:65;8361:7;8352:6;8341:9;8337:22;8304:65;:::i;:::-;8286:83;;;;8081:298;8446:2;8435:9;8431:18;8418:32;8477:18;8469:6;8466:30;8463:117;;;8499:79;;:::i;:::-;8463:117;8612:65;8669:7;8660:6;8649:9;8645:22;8612:65;:::i;:::-;8594:83;;;;8389:298;7675:1019;;;;;;;;:::o;8700:329::-;8759:6;8808:2;8796:9;8787:7;8783:23;8779:32;8776:119;;;8814:79;;:::i;:::-;8776:119;8934:1;8959:53;9004:7;8995:6;8984:9;8980:22;8959:53;:::i;:::-;8949:63;;8905:117;8700:329;;;;:::o;9035:89::-;9071:7;9111:6;9104:5;9100:18;9089:29;;9035:89;;;:::o;9130:120::-;9202:23;9219:5;9202:23;:::i;:::-;9195:5;9192:34;9182:62;;9240:1;9237;9230:12;9182:62;9130:120;:::o;9256:137::-;9301:5;9339:6;9326:20;9317:29;;9355:32;9381:5;9355:32;:::i;:::-;9256:137;;;;:::o;9399:472::-;9466:6;9474;9523:2;9511:9;9502:7;9498:23;9494:32;9491:119;;;9529:79;;:::i;:::-;9491:119;9649:1;9674:53;9719:7;9710:6;9699:9;9695:22;9674:53;:::i;:::-;9664:63;;9620:117;9776:2;9802:52;9846:7;9837:6;9826:9;9822:22;9802:52;:::i;:::-;9792:62;;9747:117;9399:472;;;;;:::o;9894:568::-;9967:8;9977:6;10027:3;10020:4;10012:6;10008:17;10004:27;9994:122;;10035:79;;:::i;:::-;9994:122;10148:6;10135:20;10125:30;;10178:18;10170:6;10167:30;10164:117;;;10200:79;;:::i;:::-;10164:117;10314:4;10306:6;10302:17;10290:29;;10368:3;10360:4;10352:6;10348:17;10338:8;10334:32;10331:41;10328:128;;;10375:79;;:::i;:::-;10328:128;9894:568;;;;;:::o;10468:559::-;10554:6;10562;10611:2;10599:9;10590:7;10586:23;10582:32;10579:119;;;10617:79;;:::i;:::-;10579:119;10765:1;10754:9;10750:17;10737:31;10795:18;10787:6;10784:30;10781:117;;;10817:79;;:::i;:::-;10781:117;10930:80;11002:7;10993:6;10982:9;10978:22;10930:80;:::i;:::-;10912:98;;;;10708:312;10468:559;;;;;:::o;11033:116::-;11103:21;11118:5;11103:21;:::i;:::-;11096:5;11093:32;11083:60;;11139:1;11136;11129:12;11083:60;11033:116;:::o;11155:133::-;11198:5;11236:6;11223:20;11214:29;;11252:30;11276:5;11252:30;:::i;:::-;11155:133;;;;:::o;11294:468::-;11359:6;11367;11416:2;11404:9;11395:7;11391:23;11387:32;11384:119;;;11422:79;;:::i;:::-;11384:119;11542:1;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11513:117;11669:2;11695:50;11737:7;11728:6;11717:9;11713:22;11695:50;:::i;:::-;11685:60;;11640:115;11294:468;;;;;:::o;11768:117::-;11877:1;11874;11867:12;11891:180;11939:77;11936:1;11929:88;12036:4;12033:1;12026:15;12060:4;12057:1;12050:15;12077:281;12160:27;12182:4;12160:27;:::i;:::-;12152:6;12148:40;12290:6;12278:10;12275:22;12254:18;12242:10;12239:34;12236:62;12233:88;;;12301:18;;:::i;:::-;12233:88;12341:10;12337:2;12330:22;12120:238;12077:281;;:::o;12364:129::-;12398:6;12425:20;;:::i;:::-;12415:30;;12454:33;12482:4;12474:6;12454:33;:::i;:::-;12364:129;;;:::o;12499:307::-;12560:4;12650:18;12642:6;12639:30;12636:56;;;12672:18;;:::i;:::-;12636:56;12710:29;12732:6;12710:29;:::i;:::-;12702:37;;12794:4;12788;12784:15;12776:23;;12499:307;;;:::o;12812:154::-;12896:6;12891:3;12886;12873:30;12958:1;12949:6;12944:3;12940:16;12933:27;12812:154;;;:::o;12972:410::-;13049:5;13074:65;13090:48;13131:6;13090:48;:::i;:::-;13074:65;:::i;:::-;13065:74;;13162:6;13155:5;13148:21;13200:4;13193:5;13189:16;13238:3;13229:6;13224:3;13220:16;13217:25;13214:112;;;13245:79;;:::i;:::-;13214:112;13335:41;13369:6;13364:3;13359;13335:41;:::i;:::-;13055:327;12972:410;;;;;:::o;13401:338::-;13456:5;13505:3;13498:4;13490:6;13486:17;13482:27;13472:122;;13513:79;;:::i;:::-;13472:122;13630:6;13617:20;13655:78;13729:3;13721:6;13714:4;13706:6;13702:17;13655:78;:::i;:::-;13646:87;;13462:277;13401:338;;;;:::o;13745:943::-;13840:6;13848;13856;13864;13913:3;13901:9;13892:7;13888:23;13884:33;13881:120;;;13920:79;;:::i;:::-;13881:120;14040:1;14065:53;14110:7;14101:6;14090:9;14086:22;14065:53;:::i;:::-;14055:63;;14011:117;14167:2;14193:53;14238:7;14229:6;14218:9;14214:22;14193:53;:::i;:::-;14183:63;;14138:118;14295:2;14321:53;14366:7;14357:6;14346:9;14342:22;14321:53;:::i;:::-;14311:63;;14266:118;14451:2;14440:9;14436:18;14423:32;14482:18;14474:6;14471:30;14468:117;;;14504:79;;:::i;:::-;14468:117;14609:62;14663:7;14654:6;14643:9;14639:22;14609:62;:::i;:::-;14599:72;;14394:287;13745:943;;;;;;;:::o;14711:568::-;14784:8;14794:6;14844:3;14837:4;14829:6;14825:17;14821:27;14811:122;;14852:79;;:::i;:::-;14811:122;14965:6;14952:20;14942:30;;14995:18;14987:6;14984:30;14981:117;;;15017:79;;:::i;:::-;14981:117;15131:4;15123:6;15119:17;15107:29;;15185:3;15177:4;15169:6;15165:17;15155:8;15151:32;15148:41;15145:128;;;15192:79;;:::i;:::-;15145:128;14711:568;;;;;:::o;15298:552::-;15355:8;15365:6;15415:3;15408:4;15400:6;15396:17;15392:27;15382:122;;15423:79;;:::i;:::-;15382:122;15536:6;15523:20;15513:30;;15566:18;15558:6;15555:30;15552:117;;;15588:79;;:::i;:::-;15552:117;15702:4;15694:6;15690:17;15678:29;;15756:3;15748:4;15740:6;15736:17;15726:8;15722:32;15719:41;15716:128;;;15763:79;;:::i;:::-;15716:128;15298:552;;;;;:::o;15856:1569::-;16016:6;16024;16032;16040;16048;16056;16064;16072;16121:3;16109:9;16100:7;16096:23;16092:33;16089:120;;;16128:79;;:::i;:::-;16089:120;16248:1;16273:53;16318:7;16309:6;16298:9;16294:22;16273:53;:::i;:::-;16263:63;;16219:117;16375:2;16401:53;16446:7;16437:6;16426:9;16422:22;16401:53;:::i;:::-;16391:63;;16346:118;16531:2;16520:9;16516:18;16503:32;16562:18;16554:6;16551:30;16548:117;;;16584:79;;:::i;:::-;16548:117;16697:80;16769:7;16760:6;16749:9;16745:22;16697:80;:::i;:::-;16679:98;;;;16474:313;16854:2;16843:9;16839:18;16826:32;16885:18;16877:6;16874:30;16871:117;;;16907:79;;:::i;:::-;16871:117;17020:80;17092:7;17083:6;17072:9;17068:22;17020:80;:::i;:::-;17002:98;;;;16797:313;17177:3;17166:9;17162:19;17149:33;17209:18;17201:6;17198:30;17195:117;;;17231:79;;:::i;:::-;17195:117;17344:64;17400:7;17391:6;17380:9;17376:22;17344:64;:::i;:::-;17326:82;;;;17120:298;15856:1569;;;;;;;;;;;:::o;17431:115::-;17516:23;17533:5;17516:23;:::i;:::-;17511:3;17504:36;17431:115;;:::o;17552:218::-;17643:4;17681:2;17670:9;17666:18;17658:26;;17694:69;17760:1;17749:9;17745:17;17736:6;17694:69;:::i;:::-;17552:218;;;;:::o;17776:874::-;17868:6;17876;17884;17892;17941:2;17929:9;17920:7;17916:23;17912:32;17909:119;;;17947:79;;:::i;:::-;17909:119;18095:1;18084:9;18080:17;18067:31;18125:18;18117:6;18114:30;18111:117;;;18147:79;;:::i;:::-;18111:117;18260:65;18317:7;18308:6;18297:9;18293:22;18260:65;:::i;:::-;18242:83;;;;18038:297;18402:2;18391:9;18387:18;18374:32;18433:18;18425:6;18422:30;18419:117;;;18455:79;;:::i;:::-;18419:117;18568:65;18625:7;18616:6;18605:9;18601:22;18568:65;:::i;:::-;18550:83;;;;18345:298;17776:874;;;;;;;:::o;18656:474::-;18724:6;18732;18781:2;18769:9;18760:7;18756:23;18752:32;18749:119;;;18787:79;;:::i;:::-;18749:119;18907:1;18932:53;18977:7;18968:6;18957:9;18953:22;18932:53;:::i;:::-;18922:63;;18878:117;19034:2;19060:53;19105:7;19096:6;19085:9;19081:22;19060:53;:::i;:::-;19050:63;;19005:118;18656:474;;;;;:::o;19136:1109::-;19242:6;19250;19258;19266;19274;19282;19331:3;19319:9;19310:7;19306:23;19302:33;19299:120;;;19338:79;;:::i;:::-;19299:120;19458:1;19483:53;19528:7;19519:6;19508:9;19504:22;19483:53;:::i;:::-;19473:63;;19429:117;19585:2;19611:53;19656:7;19647:6;19636:9;19632:22;19611:53;:::i;:::-;19601:63;;19556:118;19713:2;19739:53;19784:7;19775:6;19764:9;19760:22;19739:53;:::i;:::-;19729:63;;19684:118;19841:2;19867:53;19912:7;19903:6;19892:9;19888:22;19867:53;:::i;:::-;19857:63;;19812:118;19997:3;19986:9;19982:19;19969:33;20029:18;20021:6;20018:30;20015:117;;;20051:79;;:::i;:::-;20015:117;20164:64;20220:7;20211:6;20200:9;20196:22;20164:64;:::i;:::-;20146:82;;;;19940:298;19136:1109;;;;;;;;:::o;20251:180::-;20299:77;20296:1;20289:88;20396:4;20393:1;20386:15;20420:4;20417:1;20410:15;20437:320;20481:6;20518:1;20512:4;20508:12;20498:22;;20565:1;20559:4;20555:12;20586:18;20576:81;;20642:4;20634:6;20630:17;20620:27;;20576:81;20704:2;20696:6;20693:14;20673:18;20670:38;20667:84;;;20723:18;;:::i;:::-;20667:84;20488:269;20437:320;;;:::o;20763:231::-;20903:34;20899:1;20891:6;20887:14;20880:58;20972:14;20967:2;20959:6;20955:15;20948:39;20763:231;:::o;21000:366::-;21142:3;21163:67;21227:2;21222:3;21163:67;:::i;:::-;21156:74;;21239:93;21328:3;21239:93;:::i;:::-;21357:2;21352:3;21348:12;21341:19;;21000:366;;;:::o;21372:419::-;21538:4;21576:2;21565:9;21561:18;21553:26;;21625:9;21619:4;21615:20;21611:1;21600:9;21596:17;21589:47;21653:131;21779:4;21653:131;:::i;:::-;21645:139;;21372:419;;;:::o;21797:220::-;21937:34;21933:1;21925:6;21921:14;21914:58;22006:3;22001:2;21993:6;21989:15;21982:28;21797:220;:::o;22023:366::-;22165:3;22186:67;22250:2;22245:3;22186:67;:::i;:::-;22179:74;;22262:93;22351:3;22262:93;:::i;:::-;22380:2;22375:3;22371:12;22364:19;;22023:366;;;:::o;22395:419::-;22561:4;22599:2;22588:9;22584:18;22576:26;;22648:9;22642:4;22638:20;22634:1;22623:9;22619:17;22612:47;22676:131;22802:4;22676:131;:::i;:::-;22668:139;;22395:419;;;:::o;22820:243::-;22960:34;22956:1;22948:6;22944:14;22937:58;23029:26;23024:2;23016:6;23012:15;23005:51;22820:243;:::o;23069:366::-;23211:3;23232:67;23296:2;23291:3;23232:67;:::i;:::-;23225:74;;23308:93;23397:3;23308:93;:::i;:::-;23426:2;23421:3;23417:12;23410:19;;23069:366;;;:::o;23441:419::-;23607:4;23645:2;23634:9;23630:18;23622:26;;23694:9;23688:4;23684:20;23680:1;23669:9;23665:17;23658:47;23722:131;23848:4;23722:131;:::i;:::-;23714:139;;23441:419;;;:::o;23866:236::-;24006:34;24002:1;23994:6;23990:14;23983:58;24075:19;24070:2;24062:6;24058:15;24051:44;23866:236;:::o;24108:366::-;24250:3;24271:67;24335:2;24330:3;24271:67;:::i;:::-;24264:74;;24347:93;24436:3;24347:93;:::i;:::-;24465:2;24460:3;24456:12;24449:19;;24108:366;;;:::o;24480:419::-;24646:4;24684:2;24673:9;24669:18;24661:26;;24733:9;24727:4;24723:20;24719:1;24708:9;24704:17;24697:47;24761:131;24887:4;24761:131;:::i;:::-;24753:139;;24480:419;;;:::o;24905:180::-;24953:77;24950:1;24943:88;25050:4;25047:1;25040:15;25074:4;25071:1;25064:15;25091:348;25131:7;25154:20;25172:1;25154:20;:::i;:::-;25149:25;;25188:20;25206:1;25188:20;:::i;:::-;25183:25;;25376:1;25308:66;25304:74;25301:1;25298:81;25293:1;25286:9;25279:17;25275:105;25272:131;;;25383:18;;:::i;:::-;25272:131;25431:1;25428;25424:9;25413:20;;25091:348;;;;:::o;25445:180::-;25493:77;25490:1;25483:88;25590:4;25587:1;25580:15;25614:4;25611:1;25604:15;25631:185;25671:1;25688:20;25706:1;25688:20;:::i;:::-;25683:25;;25722:20;25740:1;25722:20;:::i;:::-;25717:25;;25761:1;25751:35;;25766:18;;:::i;:::-;25751:35;25808:1;25805;25801:9;25796:14;;25631:185;;;;:::o;25822:235::-;25962:34;25958:1;25950:6;25946:14;25939:58;26031:18;26026:2;26018:6;26014:15;26007:43;25822:235;:::o;26063:366::-;26205:3;26226:67;26290:2;26285:3;26226:67;:::i;:::-;26219:74;;26302:93;26391:3;26302:93;:::i;:::-;26420:2;26415:3;26411:12;26404:19;;26063:366;;;:::o;26435:419::-;26601:4;26639:2;26628:9;26624:18;26616:26;;26688:9;26682:4;26678:20;26674:1;26663:9;26659:17;26652:47;26716:131;26842:4;26716:131;:::i;:::-;26708:139;;26435:419;;;:::o;26860:148::-;26962:11;26999:3;26984:18;;26860:148;;;;:::o;27038:317::-;27154:3;27175:89;27257:6;27252:3;27175:89;:::i;:::-;27168:96;;27274:43;27310:6;27305:3;27298:5;27274:43;:::i;:::-;27342:6;27337:3;27333:16;27326:23;;27038:317;;;;;:::o;27361:295::-;27503:3;27525:105;27626:3;27617:6;27609;27525:105;:::i;:::-;27518:112;;27647:3;27640:10;;27361:295;;;;;:::o;27686:304::-;27784:3;27805:71;27869:6;27864:3;27805:71;:::i;:::-;27798:78;;27886:43;27922:6;27917:3;27910:5;27886:43;:::i;:::-;27954:29;27976:6;27954:29;:::i;:::-;27949:3;27945:39;27938:46;;27686:304;;;;;:::o;27996:333::-;28119:4;28157:2;28146:9;28142:18;28134:26;;28206:9;28200:4;28196:20;28192:1;28181:9;28177:17;28170:47;28234:88;28317:4;28308:6;28300;28234:88;:::i;:::-;28226:96;;27996:333;;;;;:::o;28335:228::-;28475:34;28471:1;28463:6;28459:14;28452:58;28544:11;28539:2;28531:6;28527:15;28520:36;28335:228;:::o;28569:366::-;28711:3;28732:67;28796:2;28791:3;28732:67;:::i;:::-;28725:74;;28808:93;28897:3;28808:93;:::i;:::-;28926:2;28921:3;28917:12;28910:19;;28569:366;;;:::o;28941:419::-;29107:4;29145:2;29134:9;29130:18;29122:26;;29194:9;29188:4;29184:20;29180:1;29169:9;29165:17;29158:47;29222:131;29348:4;29222:131;:::i;:::-;29214:139;;28941:419;;;:::o;29366:229::-;29506:34;29502:1;29494:6;29490:14;29483:58;29575:12;29570:2;29562:6;29558:15;29551:37;29366:229;:::o;29601:366::-;29743:3;29764:67;29828:2;29823:3;29764:67;:::i;:::-;29757:74;;29840:93;29929:3;29840:93;:::i;:::-;29958:2;29953:3;29949:12;29942:19;;29601:366;;;:::o;29973:419::-;30139:4;30177:2;30166:9;30162:18;30154:26;;30226:9;30220:4;30216:20;30212:1;30201:9;30197:17;30190:47;30254:131;30380:4;30254:131;:::i;:::-;30246:139;;29973:419;;;:::o;30398:174::-;30538:26;30534:1;30526:6;30522:14;30515:50;30398:174;:::o;30578:366::-;30720:3;30741:67;30805:2;30800:3;30741:67;:::i;:::-;30734:74;;30817:93;30906:3;30817:93;:::i;:::-;30935:2;30930:3;30926:12;30919:19;;30578:366;;;:::o;30950:419::-;31116:4;31154:2;31143:9;31139:18;31131:26;;31203:9;31197:4;31193:20;31189:1;31178:9;31174:17;31167:47;31231:131;31357:4;31231:131;:::i;:::-;31223:139;;30950:419;;;:::o;31375:180::-;31423:77;31420:1;31413:88;31520:4;31517:1;31510:15;31544:4;31541:1;31534:15;31561:305;31601:3;31620:20;31638:1;31620:20;:::i;:::-;31615:25;;31654:20;31672:1;31654:20;:::i;:::-;31649:25;;31808:1;31740:66;31736:74;31733:1;31730:81;31727:107;;;31814:18;;:::i;:::-;31727:107;31858:1;31855;31851:9;31844:16;;31561:305;;;;:::o;31872:233::-;31911:3;31934:24;31952:5;31934:24;:::i;:::-;31925:33;;31980:66;31973:5;31970:77;31967:103;;;32050:18;;:::i;:::-;31967:103;32097:1;32090:5;32086:13;32079:20;;31872:233;;;:::o;32111:175::-;32251:27;32247:1;32239:6;32235:14;32228:51;32111:175;:::o;32292:366::-;32434:3;32455:67;32519:2;32514:3;32455:67;:::i;:::-;32448:74;;32531:93;32620:3;32531:93;:::i;:::-;32649:2;32644:3;32640:12;32633:19;;32292:366;;;:::o;32664:419::-;32830:4;32868:2;32857:9;32853:18;32845:26;;32917:9;32911:4;32907:20;32903:1;32892:9;32888:17;32881:47;32945:131;33071:4;32945:131;:::i;:::-;32937:139;;32664:419;;;:::o;33089:224::-;33229:34;33225:1;33217:6;33213:14;33206:58;33298:7;33293:2;33285:6;33281:15;33274:32;33089:224;:::o;33319:366::-;33461:3;33482:67;33546:2;33541:3;33482:67;:::i;:::-;33475:74;;33558:93;33647:3;33558:93;:::i;:::-;33676:2;33671:3;33667:12;33660:19;;33319:366;;;:::o;33691:419::-;33857:4;33895:2;33884:9;33880:18;33872:26;;33944:9;33938:4;33934:20;33930:1;33919:9;33915:17;33908:47;33972:131;34098:4;33972:131;:::i;:::-;33964:139;;33691:419;;;:::o;34116:177::-;34256:29;34252:1;34244:6;34240:14;34233:53;34116:177;:::o;34299:366::-;34441:3;34462:67;34526:2;34521:3;34462:67;:::i;:::-;34455:74;;34538:93;34627:3;34538:93;:::i;:::-;34656:2;34651:3;34647:12;34640:19;;34299:366;;;:::o;34671:419::-;34837:4;34875:2;34864:9;34860:18;34852:26;;34924:9;34918:4;34914:20;34910:1;34899:9;34895:17;34888:47;34952:131;35078:4;34952:131;:::i;:::-;34944:139;;34671:419;;;:::o;35096:184::-;35195:11;35229:6;35224:3;35217:19;35269:4;35264:3;35260:14;35245:29;;35096:184;;;;:::o;35286:117::-;35395:1;35392;35385:12;35439:537;35567:3;35588:86;35667:6;35662:3;35588:86;:::i;:::-;35581:93;;35698:66;35690:6;35687:78;35684:165;;;35768:79;;:::i;:::-;35684:165;35880:4;35872:6;35868:17;35858:27;;35895:43;35931:6;35926:3;35919:5;35895:43;:::i;:::-;35963:6;35958:3;35954:16;35947:23;;35439:537;;;;;:::o;35982:168::-;36065:11;36099:6;36094:3;36087:19;36139:4;36134:3;36130:14;36115:29;;35982:168;;;;:::o;36156:114::-;;:::o;36276:362::-;36417:3;36438:65;36501:1;36496:3;36438:65;:::i;:::-;36431:72;;36512:93;36601:3;36512:93;:::i;:::-;36630:1;36625:3;36621:11;36614:18;;36276:362;;;:::o;36644:1201::-;37041:4;37079:3;37068:9;37064:19;37056:27;;37093:71;37161:1;37150:9;37146:17;37137:6;37093:71;:::i;:::-;37174:72;37242:2;37231:9;37227:18;37218:6;37174:72;:::i;:::-;37293:9;37287:4;37283:20;37278:2;37267:9;37263:18;37256:48;37321:118;37434:4;37425:6;37417;37321:118;:::i;:::-;37313:126;;37486:9;37480:4;37476:20;37471:2;37460:9;37456:18;37449:48;37514:118;37627:4;37618:6;37610;37514:118;:::i;:::-;37506:126;;37680:9;37674:4;37670:20;37664:3;37653:9;37649:19;37642:49;37708:130;37833:4;37708:130;:::i;:::-;37700:138;;36644:1201;;;;;;;;;:::o;37851:234::-;37991:34;37987:1;37979:6;37975:14;37968:58;38060:17;38055:2;38047:6;38043:15;38036:42;37851:234;:::o;38091:366::-;38233:3;38254:67;38318:2;38313:3;38254:67;:::i;:::-;38247:74;;38330:93;38419:3;38330:93;:::i;:::-;38448:2;38443:3;38439:12;38432:19;;38091:366;;;:::o;38463:419::-;38629:4;38667:2;38656:9;38652:18;38644:26;;38716:9;38710:4;38706:20;38702:1;38691:9;38687:17;38680:47;38744:131;38870:4;38744:131;:::i;:::-;38736:139;;38463:419;;;:::o;38888:308::-;38950:4;39040:18;39032:6;39029:30;39026:56;;;39062:18;;:::i;:::-;39026:56;39100:29;39122:6;39100:29;:::i;:::-;39092:37;;39184:4;39178;39174:15;39166:23;;38888:308;;;:::o;39202:421::-;39291:5;39316:66;39332:49;39374:6;39332:49;:::i;:::-;39316:66;:::i;:::-;39307:75;;39405:6;39398:5;39391:21;39443:4;39436:5;39432:16;39481:3;39472:6;39467:3;39463:16;39460:25;39457:112;;;39488:79;;:::i;:::-;39457:112;39578:39;39610:6;39605:3;39600;39578:39;:::i;:::-;39297:326;39202:421;;;;;:::o;39643:355::-;39710:5;39759:3;39752:4;39744:6;39740:17;39736:27;39726:122;;39767:79;;:::i;:::-;39726:122;39877:6;39871:13;39902:90;39988:3;39980:6;39973:4;39965:6;39961:17;39902:90;:::i;:::-;39893:99;;39716:282;39643:355;;;;:::o;40004:524::-;40084:6;40133:2;40121:9;40112:7;40108:23;40104:32;40101:119;;;40139:79;;:::i;:::-;40101:119;40280:1;40269:9;40265:17;40259:24;40310:18;40302:6;40299:30;40296:117;;;40332:79;;:::i;:::-;40296:117;40437:74;40503:7;40494:6;40483:9;40479:22;40437:74;:::i;:::-;40427:84;;40230:291;40004:524;;;;:::o;40534:859::-;40811:4;40849:3;40838:9;40834:19;40826:27;;40863:71;40931:1;40920:9;40916:17;40907:6;40863:71;:::i;:::-;40944:72;41012:2;41001:9;40997:18;40988:6;40944:72;:::i;:::-;41026;41094:2;41083:9;41079:18;41070:6;41026:72;:::i;:::-;41108;41176:2;41165:9;41161:18;41152:6;41108:72;:::i;:::-;41228:9;41222:4;41218:20;41212:3;41201:9;41197:19;41190:49;41256:130;41381:4;41256:130;:::i;:::-;41248:138;;40534:859;;;;;;;:::o;41399:231::-;41539:34;41535:1;41527:6;41523:14;41516:58;41608:14;41603:2;41595:6;41591:15;41584:39;41399:231;:::o;41636:366::-;41778:3;41799:67;41863:2;41858:3;41799:67;:::i;:::-;41792:74;;41875:93;41964:3;41875:93;:::i;:::-;41993:2;41988:3;41984:12;41977:19;;41636:366;;;:::o;42008:419::-;42174:4;42212:2;42201:9;42197:18;42189:26;;42261:9;42255:4;42251:20;42247:1;42236:9;42232:17;42225:47;42289:131;42415:4;42289:131;:::i;:::-;42281:139;;42008:419;;;:::o;42433:228::-;42573:34;42569:1;42561:6;42557:14;42550:58;42642:11;42637:2;42629:6;42625:15;42618:36;42433:228;:::o;42667:366::-;42809:3;42830:67;42894:2;42889:3;42830:67;:::i;:::-;42823:74;;42906:93;42995:3;42906:93;:::i;:::-;43024:2;43019:3;43015:12;43008:19;;42667:366;;;:::o;43039:419::-;43205:4;43243:2;43232:9;43228:18;43220:26;;43292:9;43286:4;43282:20;43278:1;43267:9;43263:17;43256:47;43320:131;43446:4;43320:131;:::i;:::-;43312:139;;43039:419;;;:::o;43464:223::-;43604:34;43600:1;43592:6;43588:14;43581:58;43673:6;43668:2;43660:6;43656:15;43649:31;43464:223;:::o;43693:366::-;43835:3;43856:67;43920:2;43915:3;43856:67;:::i;:::-;43849:74;;43932:93;44021:3;43932:93;:::i;:::-;44050:2;44045:3;44041:12;44034:19;;43693:366;;;:::o;44065:419::-;44231:4;44269:2;44258:9;44254:18;44246:26;;44318:9;44312:4;44308:20;44304:1;44293:9;44289:17;44282:47;44346:131;44472:4;44346:131;:::i;:::-;44338:139;;44065:419;;;:::o;44490:191::-;44530:4;44550:20;44568:1;44550:20;:::i;:::-;44545:25;;44584:20;44602:1;44584:20;:::i;:::-;44579:25;;44623:1;44620;44617:8;44614:34;;;44628:18;;:::i;:::-;44614:34;44673:1;44670;44666:9;44658:17;;44490:191;;;;:::o;44687:182::-;44827:34;44823:1;44815:6;44811:14;44804:58;44687:182;:::o;44875:366::-;45017:3;45038:67;45102:2;45097:3;45038:67;:::i;:::-;45031:74;;45114:93;45203:3;45114:93;:::i;:::-;45232:2;45227:3;45223:12;45216:19;;44875:366;;;:::o;45247:419::-;45413:4;45451:2;45440:9;45436:18;45428:26;;45500:9;45494:4;45490:20;45486:1;45475:9;45471:17;45464:47;45528:131;45654:4;45528:131;:::i;:::-;45520:139;;45247:419;;;:::o;45672:178::-;45812:30;45808:1;45800:6;45796:14;45789:54;45672:178;:::o;45856:366::-;45998:3;46019:67;46083:2;46078:3;46019:67;:::i;:::-;46012:74;;46095:93;46184:3;46095:93;:::i;:::-;46213:2;46208:3;46204:12;46197:19;;45856:366;;;:::o;46228:419::-;46394:4;46432:2;46421:9;46417:18;46409:26;;46481:9;46475:4;46471:20;46467:1;46456:9;46452:17;46445:47;46509:131;46635:4;46509:131;:::i;:::-;46501:139;;46228:419;;;:::o;46653:237::-;46793:34;46789:1;46781:6;46777:14;46770:58;46862:20;46857:2;46849:6;46845:15;46838:45;46653:237;:::o;46896:366::-;47038:3;47059:67;47123:2;47118:3;47059:67;:::i;:::-;47052:74;;47135:93;47224:3;47135:93;:::i;:::-;47253:2;47248:3;47244:12;47237:19;;46896:366;;;:::o;47268:419::-;47434:4;47472:2;47461:9;47457:18;47449:26;;47521:9;47515:4;47511:20;47507:1;47496:9;47492:17;47485:47;47549:131;47675:4;47549:131;:::i;:::-;47541:139;;47268:419;;;:::o;47693:181::-;47833:33;47829:1;47821:6;47817:14;47810:57;47693:181;:::o;47880:366::-;48022:3;48043:67;48107:2;48102:3;48043:67;:::i;:::-;48036:74;;48119:93;48208:3;48119:93;:::i;:::-;48237:2;48232:3;48228:12;48221:19;;47880:366;;;:::o;48252:419::-;48418:4;48456:2;48445:9;48441:18;48433:26;;48505:9;48499:4;48495:20;48491:1;48480:9;48476:17;48469:47;48533:131;48659:4;48533:131;:::i;:::-;48525:139;;48252:419;;;:::o;48677:98::-;48728:6;48762:5;48756:12;48746:22;;48677:98;;;:::o;48781:360::-;48867:3;48895:38;48927:5;48895:38;:::i;:::-;48949:70;49012:6;49007:3;48949:70;:::i;:::-;48942:77;;49028:52;49073:6;49068:3;49061:4;49054:5;49050:16;49028:52;:::i;:::-;49105:29;49127:6;49105:29;:::i;:::-;49100:3;49096:39;49089:46;;48871:270;48781:360;;;;:::o;49147:640::-;49342:4;49380:3;49369:9;49365:19;49357:27;;49394:71;49462:1;49451:9;49447:17;49438:6;49394:71;:::i;:::-;49475:72;49543:2;49532:9;49528:18;49519:6;49475:72;:::i;:::-;49557;49625:2;49614:9;49610:18;49601:6;49557:72;:::i;:::-;49676:9;49670:4;49666:20;49661:2;49650:9;49646:18;49639:48;49704:76;49775:4;49766:6;49704:76;:::i;:::-;49696:84;;49147:640;;;;;;;:::o;49793:141::-;49849:5;49880:6;49874:13;49865:22;;49896:32;49922:5;49896:32;:::i;:::-;49793:141;;;;:::o;49940:349::-;50009:6;50058:2;50046:9;50037:7;50033:23;50029:32;50026:119;;;50064:79;;:::i;:::-;50026:119;50184:1;50209:63;50264:7;50255:6;50244:9;50240:22;50209:63;:::i;:::-;50199:73;;50155:127;49940:349;;;;:::o

Swarm Source

ipfs://4b4a3c556e02aa92d5c533566b08659fdb14a45294621a60b15b9dddf62362e4
Loading...
Loading
Loading...
Loading
[ 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.