ETH Price: $2,525.47 (+0.41%)

Token

BlankFaceHaylosPiece3 (BFH3)
 

Overview

Max Total Supply

711 BFH3

Holders

696

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
zy2e8u.eth
Balance
1 BFH3
0x56c675575ac3b2ffb55595c6ec54cba8931600e7
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:
BlankFaceHaylos3

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 15: BlankFaceHaylosCollabPiece3.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


abstract contract BLANKFACE {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

import './ERC721Enumerable.sol';
import './Ownable.sol';
import './Strings.sol';
import './Functions.sol';
import './Metadata.sol';

contract BlankFaceHaylos3 is ERC721Enumerable, Ownable, Functions, Metadata {
  using Strings for uint256;
  
  BLANKFACE private blankface;

  uint256 public constant COLLECTION1_MAX = 10000;
  uint256 public constant COLLECTION2_MAX = 10000;
  uint256 public constant COLLECTION3_MAX = 10000;
  uint256 public constant BUG = 1000;
  uint256 public constant NFT_MAX = COLLECTION1_MAX + COLLECTION2_MAX + COLLECTION3_MAX;
  uint256 public constant PURCHASE_LIMIT = 3;
  uint256 public constant PRICE = 0.01 ether;
  uint256 public constant mint3loop = 1;

  bool public isCollection1Active = false;
  bool public isCollection2Active = false;
  bool public isCollection3Active = false;
  bool public isMasterActive = false;
  
  string public message;

  uint256 public Collection1MaxMint = 1;
  uint256 public Collection2MaxMint = 1;
  uint256 public Collection3MaxMint = 1;

  /// @dev We will use these to be able to calculate remaining correctly.
  uint256 public totalCollection1Supply;
  uint256 public totalCollection2Supply;
  uint256 public totalCollection3Supply;

  mapping(address => bool) private _Collection1;
  mapping(address => uint256) private _Collection1Claimed;
  mapping(address => bool) private _Collection2;
  mapping(address => uint256) private _Collection2Claimed;
  mapping(address => bool) private _Collection3;
  mapping(address => uint256) private _Collection3Claimed;

  string private _contractURI = '';
  string private _tokenBaseURI = '';
  string private _tokenRevealedBaseURI = '';
  

  constructor(string memory name, string memory symbol, address dependentContractAddress) ERC721(name, symbol) {
 
    blankface = BLANKFACE(dependentContractAddress);
  }
      


//Collection1
  function addToCollection1(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Collection1[addresses[i]] = true;
      _Collection1Claimed[addresses[i]] > 0 ? _Collection1Claimed[addresses[i]] : 0;
    }
  }
  
  function onCollection1(address addr) external view override returns (bool) {
    return _Collection1[addr];
  }
  
  function removeFromCollection1(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Collection1[addresses[i]] = false;
    }
  }
  
  function Collection1ClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address');
    return _Collection1Claimed[owner];
  }

//Collection2
  function addToCollection2(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Collection2[addresses[i]] = true;
      _Collection2Claimed[addresses[i]] > 0 ? _Collection2Claimed[addresses[i]] : 0;
    }
  }
  
  function onCollection2(address addr) external view override returns (bool) {
    return _Collection2[addr];
  }
  
  function removeFromCollection2(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Collection2[addresses[i]] = false;
    }
  }
  
  function Collection2ClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address');
    return _Collection2Claimed[owner];
  }

//Collection3
  function addToCollection3(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Collection3[addresses[i]] = true;
      _Collection3Claimed[addresses[i]] > 0 ? _Collection3Claimed[addresses[i]] : 0;
    }
  }
  
  function onCollection3(address addr) external view override returns (bool) {
    return _Collection3[addr];
  }
  
  function removeFromCollection3(address[] calldata addresses) external override onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add the null address");
      _Collection3[addresses[i]] = false;
    }
  }
  
  function Collection3ClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address');
    return _Collection3Claimed[owner];
  }

  function mintCollection1(uint256 numberOfTokens) external override payable {
      
    uint balance = blankface.balanceOf(msg.sender);
    
    if (balance>0) {
    
    require(balance > 0, "Must hold at least BlankFace");
    
    
    
    require(isMasterActive, 'Contract is not active');
    require(isCollection1Active, 'Collection is not active');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection1MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection1Supply + numberOfTokens <= COLLECTION1_MAX, 'Purchase would exceed max supply');
    require(_Collection1Claimed[msg.sender] + numberOfTokens <= Collection1MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = totalCollection1Supply + 1;

      totalCollection1Supply += 1;
      _Collection1Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }
    
    if (balance == 0) {

    require(isMasterActive, 'Contract is not active');
    require(isCollection1Active, 'Collection is not active');
    require(_Collection1[msg.sender], 'Must be on Haylos Whitelist');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection2MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection1Supply + numberOfTokens <= COLLECTION1_MAX, 'Purchase would exceed max supply');
    require(_Collection1Claimed[msg.sender] + numberOfTokens <= Collection1MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = totalCollection1Supply + 1;

      totalCollection1Supply += 1;
      _Collection1Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }

  
  }
  
 function mintCollection2(uint256 numberOfTokens) external override payable {
      
    uint balance = blankface.balanceOf(msg.sender);
    
    if (balance>0) {
    
    require(balance > 0, "Must hold at least BlankFace");
    
    
    
    require(isMasterActive, 'Contract is not active');
    require(isCollection2Active, 'Collection is not active');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection2MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection2Supply + numberOfTokens <= COLLECTION2_MAX, 'Purchase would exceed max supply');
    require(_Collection2Claimed[msg.sender] + numberOfTokens <= Collection2MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = COLLECTION1_MAX + totalCollection2Supply + 1;

      totalCollection2Supply += 1;
      _Collection2Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }
    
    if (balance == 0) {

    require(isMasterActive, 'Contract is not active');
    require(isCollection2Active, 'Collection is not active');
    require(_Collection2[msg.sender], 'Must be on Haylos Whitelist');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection2MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection2Supply + numberOfTokens <= COLLECTION2_MAX, 'Purchase would exceed max supply');
    require(_Collection2Claimed[msg.sender] + numberOfTokens <= Collection2MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = COLLECTION1_MAX + totalCollection2Supply + 1;

      totalCollection2Supply += 1;
      _Collection2Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }

  
  }
  
  function mintCollection3(uint256 numberOfTokens) external override payable {
      
    uint balance = blankface.balanceOf(msg.sender);
    
    if (balance>0) {
    
    require(balance > 0, "Must hold at least BlankFace");
    
    
    
    require(isMasterActive, 'Contract is not active');
    require(isCollection3Active, 'Collection is not active');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection3MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection3Supply + numberOfTokens <= COLLECTION3_MAX, 'Purchase would exceed max supply');
    require(_Collection3Claimed[msg.sender] + numberOfTokens <= Collection3MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = BUG + COLLECTION1_MAX + COLLECTION2_MAX + totalCollection3Supply + 1;

      totalCollection3Supply += 1;
      _Collection3Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }
    
    if (balance == 0) {

    require(isMasterActive, 'Contract is not active');
    require(isCollection3Active, 'Collection is not active');
    require(_Collection3[msg.sender], 'Must be on Haylos Whitelist');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens <= Collection3MaxMint, 'Cannot purchase this many tokens');
    require(totalCollection3Supply + numberOfTokens <= COLLECTION3_MAX, 'Purchase would exceed max supply');
    require(_Collection3Claimed[msg.sender] + numberOfTokens <= Collection3MaxMint, 'Purchase exceeds max allowed');
    require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = BUG + COLLECTION1_MAX + COLLECTION2_MAX + totalCollection3Supply + 1;

      totalCollection3Supply += 1;
      _Collection3Claimed[msg.sender] += 1;
      _safeMint(msg.sender, tokenId);
    }
    
    }

  
  }
  


  function MasterActive(bool _isMasterActive) external override onlyOwner {
    isMasterActive = _isMasterActive;
  }
  


  function Collection1Active(bool _isCollection1Active) external override onlyOwner {
    isCollection1Active = _isCollection1Active;
  }
  
  function Collection2Active(bool _isCollection2Active) external override onlyOwner {
    isCollection2Active = _isCollection2Active;
  }
  
  function Collection3Active(bool _isCollection3Active) external override onlyOwner {
    isCollection3Active = _isCollection3Active;
  }

  function setMessage(string calldata messageString) external override onlyOwner {
    message = messageString;
  }
  
  function withdraw() external override onlyOwner {
    uint256 balance = address(this).balance;
    payable(msg.sender).transfer(balance);
  }

  function setContractURI(string calldata URI) external override onlyOwner {
    _contractURI = URI;
  }

  function setBaseURI(string calldata URI) external override onlyOwner {
    _tokenBaseURI = URI;
  }

  function setRevealedBaseURI(string calldata revealedBaseURI) external override onlyOwner {
    _tokenRevealedBaseURI = revealedBaseURI;
  }

  function contractURI() public view override returns (string memory) {
    return _contractURI;
  }

  function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), 'Token does not exist');

    /// @dev Convert string to bytes so we can check if it's empty or not.
    string memory revealedBaseURI = _tokenRevealedBaseURI;
    return bytes(revealedBaseURI).length > 0 ?
      string(abi.encodePacked(revealedBaseURI, tokenId.toString())) :
      _tokenBaseURI;
  }
}

File 1 of 15: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 15: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 15: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

File 6 of 15: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 15: Functions.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface Functions {
  function addToCollection1(address[] calldata addresses) external;

  function onCollection1(address addr) external returns (bool);

  function removeFromCollection1(address[] calldata addresses) external;

  function addToCollection2(address[] calldata addresses) external;

  function onCollection2(address addr) external returns (bool);

  function removeFromCollection2(address[] calldata addresses) external;

  function addToCollection3(address[] calldata addresses) external;

  function onCollection3(address addr) external returns (bool);

  function removeFromCollection3(address[] calldata addresses) external;

  function Collection1ClaimedBy(address owner) external returns (uint256);

  function Collection2ClaimedBy(address owner) external returns (uint256);

  function Collection3ClaimedBy(address owner) external returns (uint256);

  function mintCollection1(uint256 numberOfTokens) external payable;

  function mintCollection2(uint256 numberOfTokens) external payable;

  function mintCollection3(uint256 numberOfTokens) external payable;

  function MasterActive(bool isMasterActive) external;

  function Collection1Active(bool isCollection1Active) external;

  function Collection2Active(bool isCollection2Active) external;

  function Collection3Active(bool isCollection3Active) external;

  function setMessage(string memory messageString) external;

  function withdraw() external;
}

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

pragma solidity ^0.8.0;

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

File 9 of 15: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 11 of 15: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

File 12 of 15: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 15: Metadata.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface Metadata {
  function setContractURI(string calldata URI) external;

  function setBaseURI(string calldata URI) external;

  function setRevealedBaseURI(string calldata revealedBaseURI) external;

  function contractURI() external view returns(string memory);
}

File 14 of 15: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 15 of 15: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"dependentContractAddress","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLECTION1_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLECTION2_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLECTION3_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isCollection1Active","type":"bool"}],"name":"Collection1Active","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"Collection1ClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Collection1MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isCollection2Active","type":"bool"}],"name":"Collection2Active","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"Collection2ClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Collection2MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isCollection3Active","type":"bool"}],"name":"Collection3Active","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"Collection3ClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Collection3MaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMasterActive","type":"bool"}],"name":"MasterActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"NFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToCollection1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToCollection2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToCollection3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCollection1Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCollection2Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCollection3Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMasterActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"message","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint3loop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCollection1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCollection2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCollection3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onCollection1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onCollection2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onCollection3","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromCollection1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromCollection2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromCollection3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"messageString","type":"string"}],"name":"setMessage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCollection1Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCollection2Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCollection3Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600b805463ffffffff60a01b191690556001600d819055600e819055600f5560a06040819052600060808190526200003a9160199162000178565b506040805160208101918290526000908190526200005b91601a9162000178565b506040805160208101918290526000908190526200007c91601b9162000178565b503480156200008a57600080fd5b506040516200434e3803806200434e833981016040819052620000ad91620002d5565b825183908390620000c690600090602085019062000178565b508051620000dc90600190602084019062000178565b505050620000f9620000f36200012260201b60201c565b62000126565b600b80546001600160a01b0319166001600160a01b039290921691909117905550620003b59050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001869062000362565b90600052602060002090601f016020900481019282620001aa5760008555620001f5565b82601f10620001c557805160ff1916838001178555620001f5565b82800160010185558215620001f5579182015b82811115620001f5578251825591602001919060010190620001d8565b506200020392915062000207565b5090565b5b8082111562000203576000815560010162000208565b600082601f8301126200023057600080fd5b81516001600160401b03808211156200024d576200024d6200039f565b604051601f8301601f19908116603f011681019082821181831017156200027857620002786200039f565b816040528381526020925086838588010111156200029557600080fd5b600091505b83821015620002b957858201830151818301840152908201906200029a565b83821115620002cb5760008385830101525b9695505050505050565b600080600060608486031215620002eb57600080fd5b83516001600160401b03808211156200030357600080fd5b62000311878388016200021e565b945060208601519150808211156200032857600080fd5b5062000337868287016200021e565b604086015190935090506001600160a01b03811681146200035757600080fd5b809150509250925092565b600181811c908216806200037757607f821691505b602082108114156200039957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613f8980620003c56000396000f3fe6080604052600436106103b75760003560e01c8063768a8dcb116101f2578063b1f433f21161010d578063e985e9c5116100a0578063f1e80af81161006f578063f1e80af814610aa2578063f2fde38b14610ab8578063fa5bfb1814610ad8578063fb87b3c014610af957600080fd5b8063e985e9c514610a1a578063ea98306f14610a63578063ecf0397514610a79578063efc9b13114610a8c57600080fd5b8063d75e6110116100dc578063d75e6110146109bb578063e21f37ce146109d0578063e33a66cc146109e5578063e8a3d48514610a0557600080fd5b8063b1f433f214610946578063b88d4fde14610966578063c30e768414610986578063c87b56dd1461099b57600080fd5b806395d89b4111610185578063a102f03311610154578063a102f033146108d1578063a22cb465146108f1578063a2a3a31314610911578063a73d8ca71461092657600080fd5b806395d89b411461086957806399c56ad91461087e5780639aa035d81461089e5780639bc606c6146108be57600080fd5b80638e736dab116101c15780638e736dab146106075780639123468a14610828578063923fc1d114610607578063938e3d7b1461084957600080fd5b8063768a8dcb1461077d5780637a002ed8146107b65780638d859f3e146107ef5780638da5cb5b1461080a57600080fd5b80635412fb17116102e25780636352211e116102755780636d2643f7116102445780636d2643f7146107155780636e83843a1461072857806370a0823114610748578063715018a61461076857600080fd5b80636352211e146106945780636718b7ee146106b4578063685f00a3146106d45780636c21d5ee146106f457600080fd5b80635ee6da01116102b15780635ee6da011461061d5780635f54d29b1461063e57806362fd9ff4146106545780636340fcbb1461067457600080fd5b80635412fb17146105b157806355f804b3146105c75780635a4d334f146105e75780635cc7b76b1461060757600080fd5b80632631ff051161035a5780633ccfd60b116103295780633ccfd60b146105465780633e4b12651461055b57806342842e0e146105715780634f6ccce71461059157600080fd5b80632631ff05146104c65780632f745c59146104e65780633495eda414610506578063368b87721461052657600080fd5b8063081812fc11610396578063081812fc14610437578063095ea7b31461046f57806318160ddd1461049157806323b872dd146104a657600080fd5b8062b2d368146103bc57806301ffc9a7146103e557806306fdde0314610415575b600080fd5b3480156103c857600080fd5b506103d2600e5481565b6040519081526020015b60405180910390f35b3480156103f157600080fd5b50610405610400366004613947565b610b32565b60405190151581526020016103dc565b34801561042157600080fd5b5061042a610b5d565b6040516103dc9190613aab565b34801561044357600080fd5b506104576104523660046139e1565b610bef565b6040516001600160a01b0390911681526020016103dc565b34801561047b57600080fd5b5061048f61048a36600461388d565b610c89565b005b34801561049d57600080fd5b506008546103d2565b3480156104b257600080fd5b5061048f6104c136600461374b565b610d9f565b3480156104d257600080fd5b5061048f6104e13660046138b7565b610dd0565b3480156104f257600080fd5b506103d261050136600461388d565b610ebc565b34801561051257600080fd5b5061048f6105213660046138b7565b610f52565b34801561053257600080fd5b5061048f610541366004613981565b6110e6565b34801561055257600080fd5b5061048f61111c565b34801561056757600080fd5b506103d26103e881565b34801561057d57600080fd5b5061048f61058c36600461374b565b611179565b34801561059d57600080fd5b506103d26105ac3660046139e1565b611194565b3480156105bd57600080fd5b506103d260105481565b3480156105d357600080fd5b5061048f6105e2366004613981565b611227565b3480156105f357600080fd5b5061048f61060236600461392c565b61125d565b34801561061357600080fd5b506103d261271081565b34801561062957600080fd5b50600b5461040590600160a81b900460ff1681565b34801561064a57600080fd5b506103d260115481565b34801561066057600080fd5b5061048f61066f3660046138b7565b6112a5565b34801561068057600080fd5b5061048f61068f36600461392c565b611439565b3480156106a057600080fd5b506104576106af3660046139e1565b611481565b3480156106c057600080fd5b5061048f6106cf3660046138b7565b6114f8565b3480156106e057600080fd5b5061048f6106ef3660046138b7565b61168c565b34801561070057600080fd5b50600b5461040590600160b01b900460ff1681565b61048f6107233660046139e1565b611778565b34801561073457600080fd5b5061048f610743366004613981565b611bd0565b34801561075457600080fd5b506103d26107633660046136fd565b611c06565b34801561077457600080fd5b5061048f611c8d565b34801561078957600080fd5b506104056107983660046136fd565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156107c257600080fd5b506104056107d13660046136fd565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156107fb57600080fd5b506103d2662386f26fc1000081565b34801561081657600080fd5b50600a546001600160a01b0316610457565b34801561083457600080fd5b50600b5461040590600160b81b900460ff1681565b34801561085557600080fd5b5061048f610864366004613981565b611cc3565b34801561087557600080fd5b5061042a611cf9565b34801561088a57600080fd5b5061048f6108993660046138b7565b611d08565b3480156108aa57600080fd5b506103d26108b93660046136fd565b611df4565b61048f6108cc3660046139e1565b611e38565b3480156108dd57600080fd5b506103d26108ec3660046136fd565b6122a8565b3480156108fd57600080fd5b5061048f61090c366004613863565b6122ec565b34801561091d57600080fd5b506103d2600181565b34801561093257600080fd5b5061048f61094136600461392c565b6123b1565b34801561095257600080fd5b5061048f61096136600461392c565b6123f9565b34801561097257600080fd5b5061048f610981366004613787565b612441565b34801561099257600080fd5b506103d2612479565b3480156109a757600080fd5b5061042a6109b63660046139e1565b612493565b3480156109c757600080fd5b506103d2600381565b3480156109dc57600080fd5b5061042a61264b565b3480156109f157600080fd5b506103d2610a003660046136fd565b6126d9565b348015610a1157600080fd5b5061042a61271d565b348015610a2657600080fd5b50610405610a35366004613718565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6f57600080fd5b506103d2600f5481565b61048f610a873660046139e1565b61272c565b348015610a9857600080fd5b506103d2600d5481565b348015610aae57600080fd5b506103d260125481565b348015610ac457600080fd5b5061048f610ad33660046136fd565b612bca565b348015610ae457600080fd5b50600b5461040590600160a01b900460ff1681565b348015610b0557600080fd5b50610405610b143660046136fd565b6001600160a01b031660009081526013602052604090205460ff1690565b60006001600160e01b0319821663780e9d6360e01b1480610b575750610b5782612c65565b92915050565b606060008054610b6c90613e65565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9890613e65565b8015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9482611481565b9050806001600160a01b0316836001600160a01b03161415610d025760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c64565b336001600160a01b0382161480610d1e5750610d1e8133610a35565b610d905760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c64565b610d9a8383612cb5565b505050565b610da93382612d23565b610dc55760405162461bcd60e51b8152600401610c6490613ce3565b610d9a838383612e1a565b600a546001600160a01b03163314610dfa5760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a576000838383818110610e1957610e19613f11565b9050602002016020810190610e2e91906136fd565b6001600160a01b03161415610e555760405162461bcd60e51b8152600401610c6490613cac565b600060156000858585818110610e6d57610e6d613f11565b9050602002016020810190610e8291906136fd565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610eb481613ea0565b915050610dfd565b6000610ec783611c06565b8210610f295760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c64565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f7c5760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a576000838383818110610f9b57610f9b613f11565b9050602002016020810190610fb091906136fd565b6001600160a01b03161415610fd75760405162461bcd60e51b8152600401610c6490613cac565b600160176000858585818110610fef57610fef613f11565b905060200201602081019061100491906136fd565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560188185858581811061104457611044613f11565b905060200201602081019061105991906136fd565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116110865760006110d3565b6018600084848481811061109c5761109c613f11565b90506020020160208101906110b191906136fd565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806110de81613ea0565b915050610f7f565b600a546001600160a01b031633146111105760405162461bcd60e51b8152600401610c6490613c77565b610d9a600c8383613638565b600a546001600160a01b031633146111465760405162461bcd60e51b8152600401610c6490613c77565b6040514790339082156108fc029083906000818181858888f19350505050158015611175573d6000803e3d6000fd5b5050565b610d9a83838360405180602001604052806000815250612441565b600061119f60085490565b82106112025760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c64565b6008828154811061121557611215613f11565b90600052602060002001549050919050565b600a546001600160a01b031633146112515760405162461bcd60e51b8152600401610c6490613c77565b610d9a601a8383613638565b600a546001600160a01b031633146112875760405162461bcd60e51b8152600401610c6490613c77565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b600a546001600160a01b031633146112cf5760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a5760008383838181106112ee576112ee613f11565b905060200201602081019061130391906136fd565b6001600160a01b0316141561132a5760405162461bcd60e51b8152600401610c6490613cac565b60016015600085858581811061134257611342613f11565b905060200201602081019061135791906136fd565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560168185858581811061139757611397613f11565b90506020020160208101906113ac91906136fd565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116113d9576000611426565b601660008484848181106113ef576113ef613f11565b905060200201602081019061140491906136fd565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061143181613ea0565b9150506112d2565b600a546001600160a01b031633146114635760405162461bcd60e51b8152600401610c6490613c77565b600b8054911515600160a81b0260ff60a81b19909216919091179055565b6000818152600260205260408120546001600160a01b031680610b575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c64565b600a546001600160a01b031633146115225760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a57600083838381811061154157611541613f11565b905060200201602081019061155691906136fd565b6001600160a01b0316141561157d5760405162461bcd60e51b8152600401610c6490613cac565b60016013600085858581811061159557611595613f11565b90506020020160208101906115aa91906136fd565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556014818585858181106115ea576115ea613f11565b90506020020160208101906115ff91906136fd565b6001600160a01b03166001600160a01b03168152602001908152602001600020541161162c576000611679565b6014600084848481811061164257611642613f11565b905060200201602081019061165791906136fd565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061168481613ea0565b915050611525565b600a546001600160a01b031633146116b65760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a5760008383838181106116d5576116d5613f11565b90506020020160208101906116ea91906136fd565b6001600160a01b031614156117115760405162461bcd60e51b8152600401610c6490613cac565b60006017600085858581811061172957611729613f11565b905060200201602081019061173e91906136fd565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061177081613ea0565b9150506116b9565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156117bc57600080fd5b505afa1580156117d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f491906139fa565b905080156119dd576000811161181c5760405162461bcd60e51b8152600401610c6490613abe565b600b54600160b81b900460ff166118455760405162461bcd60e51b8152600401610c6490613c47565b600b54600160a01b900460ff1661186e5760405162461bcd60e51b8152600401610c6490613b47565b61271061187b8180613dd7565b6118859190613dd7565b600854106118a55760405162461bcd60e51b8152600401610c6490613d6b565b600d548211156118c75760405162461bcd60e51b8152600401610c6490613da2565b612710826010546118d89190613dd7565b11156118f65760405162461bcd60e51b8152600401610c6490613c12565b600d5433600090815260146020526040902054611914908490613dd7565b11156119325760405162461bcd60e51b8152600401610c6490613d34565b3461194483662386f26fc10000613e03565b11156119625760405162461bcd60e51b8152600401610c6490613ba4565b60005b828110156119db576000601054600161197e9190613dd7565b90506001601060008282546119939190613dd7565b90915550503360009081526014602052604081208054600192906119b8908490613dd7565b909155506119c890503382612fc5565b50806119d381613ea0565b915050611965565b505b8061117557600b54600160b81b900460ff16611a0b5760405162461bcd60e51b8152600401610c6490613c47565b600b54600160a01b900460ff16611a345760405162461bcd60e51b8152600401610c6490613b47565b3360009081526013602052604090205460ff16611a635760405162461bcd60e51b8152600401610c6490613bdb565b612710611a708180613dd7565b611a7a9190613dd7565b60085410611a9a5760405162461bcd60e51b8152600401610c6490613d6b565b600e54821115611abc5760405162461bcd60e51b8152600401610c6490613da2565b61271082601054611acd9190613dd7565b1115611aeb5760405162461bcd60e51b8152600401610c6490613c12565b600d5433600090815260146020526040902054611b09908490613dd7565b1115611b275760405162461bcd60e51b8152600401610c6490613d34565b34611b3983662386f26fc10000613e03565b1115611b575760405162461bcd60e51b8152600401610c6490613ba4565b60005b82811015610d9a5760006010546001611b739190613dd7565b9050600160106000828254611b889190613dd7565b9091555050336000908152601460205260408120805460019290611bad908490613dd7565b90915550611bbd90503382612fc5565b5080611bc881613ea0565b915050611b5a565b600a546001600160a01b03163314611bfa5760405162461bcd60e51b8152600401610c6490613c77565b610d9a601b8383613638565b60006001600160a01b038216611c715760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c64565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611cb75760405162461bcd60e51b8152600401610c6490613c77565b611cc16000612fdf565b565b600a546001600160a01b03163314611ced5760405162461bcd60e51b8152600401610c6490613c77565b610d9a60198383613638565b606060018054610b6c90613e65565b600a546001600160a01b03163314611d325760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a576000838383818110611d5157611d51613f11565b9050602002016020810190611d6691906136fd565b6001600160a01b03161415611d8d5760405162461bcd60e51b8152600401610c6490613cac565b600060136000858585818110611da557611da5613f11565b9050602002016020810190611dba91906136fd565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611dec81613ea0565b915050611d35565b60006001600160a01b038216611e1c5760405162461bcd60e51b8152600401610c6490613b7e565b506001600160a01b031660009081526016602052604090205490565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611e7c57600080fd5b505afa158015611e90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb491906139fa565b905080156120a95760008111611edc5760405162461bcd60e51b8152600401610c6490613abe565b600b54600160b81b900460ff16611f055760405162461bcd60e51b8152600401610c6490613c47565b600b54600160a81b900460ff16611f2e5760405162461bcd60e51b8152600401610c6490613b47565b612710611f3b8180613dd7565b611f459190613dd7565b60085410611f655760405162461bcd60e51b8152600401610c6490613d6b565b600e54821115611f875760405162461bcd60e51b8152600401610c6490613da2565b61271082601154611f989190613dd7565b1115611fb65760405162461bcd60e51b8152600401610c6490613c12565b600e5433600090815260166020526040902054611fd4908490613dd7565b1115611ff25760405162461bcd60e51b8152600401610c6490613d34565b3461200483662386f26fc10000613e03565b11156120225760405162461bcd60e51b8152600401610c6490613ba4565b60005b828110156120a757600060115461271061203f9190613dd7565b61204a906001613dd7565b905060016011600082825461205f9190613dd7565b9091555050336000908152601660205260408120805460019290612084908490613dd7565b9091555061209490503382612fc5565b508061209f81613ea0565b915050612025565b505b8061117557600b54600160b81b900460ff166120d75760405162461bcd60e51b8152600401610c6490613c47565b600b54600160a81b900460ff166121005760405162461bcd60e51b8152600401610c6490613b47565b3360009081526015602052604090205460ff1661212f5760405162461bcd60e51b8152600401610c6490613bdb565b61271061213c8180613dd7565b6121469190613dd7565b600854106121665760405162461bcd60e51b8152600401610c6490613d6b565b600e548211156121885760405162461bcd60e51b8152600401610c6490613da2565b612710826011546121999190613dd7565b11156121b75760405162461bcd60e51b8152600401610c6490613c12565b600e54336000908152601660205260409020546121d5908490613dd7565b11156121f35760405162461bcd60e51b8152600401610c6490613d34565b3461220583662386f26fc10000613e03565b11156122235760405162461bcd60e51b8152600401610c6490613ba4565b60005b82811015610d9a5760006011546127106122409190613dd7565b61224b906001613dd7565b90506001601160008282546122609190613dd7565b9091555050336000908152601660205260408120805460019290612285908490613dd7565b9091555061229590503382612fc5565b50806122a081613ea0565b915050612226565b60006001600160a01b0382166122d05760405162461bcd60e51b8152600401610c6490613b7e565b506001600160a01b031660009081526018602052604090205490565b6001600160a01b0382163314156123455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c64565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146123db5760405162461bcd60e51b8152600401610c6490613c77565b600b8054911515600160b81b0260ff60b81b19909216919091179055565b600a546001600160a01b031633146124235760405162461bcd60e51b8152600401610c6490613c77565b600b8054911515600160b01b0260ff60b01b19909216919091179055565b61244b3383612d23565b6124675760405162461bcd60e51b8152600401610c6490613ce3565b61247384848484613031565b50505050565b6127106124868180613dd7565b6124909190613dd7565b81565b6000818152600260205260409020546060906001600160a01b03166124f15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610c64565b6000601b805461250090613e65565b80601f016020809104026020016040519081016040528092919081815260200182805461252c90613e65565b80156125795780601f1061254e57610100808354040283529160200191612579565b820191906000526020600020905b81548152906001019060200180831161255c57829003601f168201915b50505050509050600081511161261957601a805461259690613e65565b80601f01602080910402602001604051908101604052809291908181526020018280546125c290613e65565b801561260f5780601f106125e45761010080835404028352916020019161260f565b820191906000526020600020905b8154815290600101906020018083116125f257829003601f168201915b5050505050612644565b8061262384613064565b604051602001612634929190613a3f565b6040516020818303038152906040525b9392505050565b600c805461265890613e65565b80601f016020809104026020016040519081016040528092919081815260200182805461268490613e65565b80156126d15780601f106126a6576101008083540402835291602001916126d1565b820191906000526020600020905b8154815290600101906020018083116126b457829003601f168201915b505050505081565b60006001600160a01b0382166127015760405162461bcd60e51b8152600401610c6490613b7e565b506001600160a01b031660009081526014602052604090205490565b606060198054610b6c90613e65565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561277057600080fd5b505afa158015612784573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127a891906139fa565b905080156129b457600081116127d05760405162461bcd60e51b8152600401610c6490613abe565b600b54600160b81b900460ff166127f95760405162461bcd60e51b8152600401610c6490613c47565b600b54600160b01b900460ff166128225760405162461bcd60e51b8152600401610c6490613b47565b61271061282f8180613dd7565b6128399190613dd7565b600854106128595760405162461bcd60e51b8152600401610c6490613d6b565b600f5482111561287b5760405162461bcd60e51b8152600401610c6490613da2565b6127108260125461288c9190613dd7565b11156128aa5760405162461bcd60e51b8152600401610c6490613c12565b600f54336000908152601860205260409020546128c8908490613dd7565b11156128e65760405162461bcd60e51b8152600401610c6490613d34565b346128f883662386f26fc10000613e03565b11156129165760405162461bcd60e51b8152600401610c6490613ba4565b60005b828110156129b257601254600090612710612936816103e8613dd7565b6129409190613dd7565b61294a9190613dd7565b612955906001613dd7565b905060016012600082825461296a9190613dd7565b909155505033600090815260186020526040812080546001929061298f908490613dd7565b9091555061299f90503382612fc5565b50806129aa81613ea0565b915050612919565b505b8061117557600b54600160b81b900460ff166129e25760405162461bcd60e51b8152600401610c6490613c47565b600b54600160b01b900460ff16612a0b5760405162461bcd60e51b8152600401610c6490613b47565b3360009081526017602052604090205460ff16612a3a5760405162461bcd60e51b8152600401610c6490613bdb565b612710612a478180613dd7565b612a519190613dd7565b60085410612a715760405162461bcd60e51b8152600401610c6490613d6b565b600f54821115612a935760405162461bcd60e51b8152600401610c6490613da2565b61271082601254612aa49190613dd7565b1115612ac25760405162461bcd60e51b8152600401610c6490613c12565b600f5433600090815260186020526040902054612ae0908490613dd7565b1115612afe5760405162461bcd60e51b8152600401610c6490613d34565b34612b1083662386f26fc10000613e03565b1115612b2e5760405162461bcd60e51b8152600401610c6490613ba4565b60005b82811015610d9a57601254600090612710612b4e816103e8613dd7565b612b589190613dd7565b612b629190613dd7565b612b6d906001613dd7565b9050600160126000828254612b829190613dd7565b9091555050336000908152601860205260408120805460019290612ba7908490613dd7565b90915550612bb790503382612fc5565b5080612bc281613ea0565b915050612b31565b600a546001600160a01b03163314612bf45760405162461bcd60e51b8152600401610c6490613c77565b6001600160a01b038116612c595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c64565b612c6281612fdf565b50565b60006001600160e01b031982166380ac58cd60e01b1480612c9657506001600160e01b03198216635b5e139f60e01b145b80610b5757506301ffc9a760e01b6001600160e01b0319831614610b57565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612cea82611481565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612d9c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c64565b6000612da783611481565b9050806001600160a01b0316846001600160a01b03161480612de25750836001600160a01b0316612dd784610bef565b6001600160a01b0316145b80612e1257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612e2d82611481565b6001600160a01b031614612e955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c64565b6001600160a01b038216612ef75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c64565b612f02838383613162565b612f0d600082612cb5565b6001600160a01b0383166000908152600360205260408120805460019290612f36908490613e22565b90915550506001600160a01b0382166000908152600360205260408120805460019290612f64908490613dd7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61117582826040518060200160405280600081525061321a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61303c848484612e1a565b6130488484848461324d565b6124735760405162461bcd60e51b8152600401610c6490613af5565b6060816130885750506040805180820190915260018152600360fc1b602082015290565b8160005b81156130b2578061309c81613ea0565b91506130ab9050600a83613def565b915061308c565b60008167ffffffffffffffff8111156130cd576130cd613f27565b6040519080825280601f01601f1916602001820160405280156130f7576020820181803683370190505b5090505b8415612e125761310c600183613e22565b9150613119600a86613ebb565b613124906030613dd7565b60f81b81838151811061313957613139613f11565b60200101906001600160f81b031916908160001a90535061315b600a86613def565b94506130fb565b6001600160a01b0383166131bd576131b881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6131e0565b816001600160a01b0316836001600160a01b0316146131e0576131e0838261335a565b6001600160a01b0382166131f757610d9a816133f7565b826001600160a01b0316826001600160a01b031614610d9a57610d9a82826134a6565b61322483836134ea565b613231600084848461324d565b610d9a5760405162461bcd60e51b8152600401610c6490613af5565b60006001600160a01b0384163b1561334f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613291903390899088908890600401613a6e565b602060405180830381600087803b1580156132ab57600080fd5b505af19250505080156132db575060408051601f3d908101601f191682019092526132d891810190613964565b60015b613335573d808015613309576040519150601f19603f3d011682016040523d82523d6000602084013e61330e565b606091505b50805161332d5760405162461bcd60e51b8152600401610c6490613af5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612e12565b506001949350505050565b6000600161336784611c06565b6133719190613e22565b6000838152600760205260409020549091508082146133c4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061340990600190613e22565b6000838152600960205260408120546008805493945090928490811061343157613431613f11565b90600052602060002001549050806008838154811061345257613452613f11565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061348a5761348a613efb565b6001900381819060005260206000200160009055905550505050565b60006134b183611c06565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166135405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c64565b6000818152600260205260409020546001600160a01b0316156135a55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c64565b6135b160008383613162565b6001600160a01b03821660009081526003602052604081208054600192906135da908490613dd7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461364490613e65565b90600052602060002090601f01602090048101928261366657600085556136ac565b82601f1061367f5782800160ff198235161785556136ac565b828001600101855582156136ac579182015b828111156136ac578235825591602001919060010190613691565b506136b89291506136bc565b5090565b5b808211156136b857600081556001016136bd565b80356001600160a01b03811681146136e857600080fd5b919050565b803580151581146136e857600080fd5b60006020828403121561370f57600080fd5b612644826136d1565b6000806040838503121561372b57600080fd5b613734836136d1565b9150613742602084016136d1565b90509250929050565b60008060006060848603121561376057600080fd5b613769846136d1565b9250613777602085016136d1565b9150604084013590509250925092565b6000806000806080858703121561379d57600080fd5b6137a6856136d1565b93506137b4602086016136d1565b925060408501359150606085013567ffffffffffffffff808211156137d857600080fd5b818701915087601f8301126137ec57600080fd5b8135818111156137fe576137fe613f27565b604051601f8201601f19908116603f0116810190838211818310171561382657613826613f27565b816040528281528a602084870101111561383f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561387657600080fd5b61387f836136d1565b9150613742602084016136ed565b600080604083850312156138a057600080fd5b6138a9836136d1565b946020939093013593505050565b600080602083850312156138ca57600080fd5b823567ffffffffffffffff808211156138e257600080fd5b818501915085601f8301126138f657600080fd5b81358181111561390557600080fd5b8660208260051b850101111561391a57600080fd5b60209290920196919550909350505050565b60006020828403121561393e57600080fd5b612644826136ed565b60006020828403121561395957600080fd5b813561264481613f3d565b60006020828403121561397657600080fd5b815161264481613f3d565b6000806020838503121561399457600080fd5b823567ffffffffffffffff808211156139ac57600080fd5b818501915085601f8301126139c057600080fd5b8135818111156139cf57600080fd5b86602082850101111561391a57600080fd5b6000602082840312156139f357600080fd5b5035919050565b600060208284031215613a0c57600080fd5b5051919050565b60008151808452613a2b816020860160208601613e39565b601f01601f19169290920160200192915050565b60008351613a51818460208801613e39565b835190830190613a65818360208801613e39565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613aa190830184613a13565b9695505050505050565b6020815260006126446020830184613a13565b6020808252601c908201527f4d75737420686f6c64206174206c6561737420426c616e6b4661636500000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526018908201527f436f6c6c656374696f6e206973206e6f74206163746976650000000000000000604082015260600190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252601b908201527f4d757374206265206f6e204861796c6f732057686974656c6973740000000000604082015260600190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b60008219821115613dea57613dea613ecf565b500190565b600082613dfe57613dfe613ee5565b500490565b6000816000190483118215151615613e1d57613e1d613ecf565b500290565b600082821015613e3457613e34613ecf565b500390565b60005b83811015613e54578181015183820152602001613e3c565b838111156124735750506000910152565b600181811c90821680613e7957607f821691505b60208210811415613e9a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613eb457613eb4613ecf565b5060010190565b600082613eca57613eca613ee5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612c6257600080fdfea2646970667358221220e33282650782426833cfb3702b2c766c48e260b1bdfff60ec00f4ee3d0d532ef64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000006f8b41b72c04b2bba587fc7b09dbfb877ca7d040000000000000000000000000000000000000000000000000000000000000015426c616e6b466163654861796c6f73506965636533000000000000000000000000000000000000000000000000000000000000000000000000000000000000044246483300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103b75760003560e01c8063768a8dcb116101f2578063b1f433f21161010d578063e985e9c5116100a0578063f1e80af81161006f578063f1e80af814610aa2578063f2fde38b14610ab8578063fa5bfb1814610ad8578063fb87b3c014610af957600080fd5b8063e985e9c514610a1a578063ea98306f14610a63578063ecf0397514610a79578063efc9b13114610a8c57600080fd5b8063d75e6110116100dc578063d75e6110146109bb578063e21f37ce146109d0578063e33a66cc146109e5578063e8a3d48514610a0557600080fd5b8063b1f433f214610946578063b88d4fde14610966578063c30e768414610986578063c87b56dd1461099b57600080fd5b806395d89b4111610185578063a102f03311610154578063a102f033146108d1578063a22cb465146108f1578063a2a3a31314610911578063a73d8ca71461092657600080fd5b806395d89b411461086957806399c56ad91461087e5780639aa035d81461089e5780639bc606c6146108be57600080fd5b80638e736dab116101c15780638e736dab146106075780639123468a14610828578063923fc1d114610607578063938e3d7b1461084957600080fd5b8063768a8dcb1461077d5780637a002ed8146107b65780638d859f3e146107ef5780638da5cb5b1461080a57600080fd5b80635412fb17116102e25780636352211e116102755780636d2643f7116102445780636d2643f7146107155780636e83843a1461072857806370a0823114610748578063715018a61461076857600080fd5b80636352211e146106945780636718b7ee146106b4578063685f00a3146106d45780636c21d5ee146106f457600080fd5b80635ee6da01116102b15780635ee6da011461061d5780635f54d29b1461063e57806362fd9ff4146106545780636340fcbb1461067457600080fd5b80635412fb17146105b157806355f804b3146105c75780635a4d334f146105e75780635cc7b76b1461060757600080fd5b80632631ff051161035a5780633ccfd60b116103295780633ccfd60b146105465780633e4b12651461055b57806342842e0e146105715780634f6ccce71461059157600080fd5b80632631ff05146104c65780632f745c59146104e65780633495eda414610506578063368b87721461052657600080fd5b8063081812fc11610396578063081812fc14610437578063095ea7b31461046f57806318160ddd1461049157806323b872dd146104a657600080fd5b8062b2d368146103bc57806301ffc9a7146103e557806306fdde0314610415575b600080fd5b3480156103c857600080fd5b506103d2600e5481565b6040519081526020015b60405180910390f35b3480156103f157600080fd5b50610405610400366004613947565b610b32565b60405190151581526020016103dc565b34801561042157600080fd5b5061042a610b5d565b6040516103dc9190613aab565b34801561044357600080fd5b506104576104523660046139e1565b610bef565b6040516001600160a01b0390911681526020016103dc565b34801561047b57600080fd5b5061048f61048a36600461388d565b610c89565b005b34801561049d57600080fd5b506008546103d2565b3480156104b257600080fd5b5061048f6104c136600461374b565b610d9f565b3480156104d257600080fd5b5061048f6104e13660046138b7565b610dd0565b3480156104f257600080fd5b506103d261050136600461388d565b610ebc565b34801561051257600080fd5b5061048f6105213660046138b7565b610f52565b34801561053257600080fd5b5061048f610541366004613981565b6110e6565b34801561055257600080fd5b5061048f61111c565b34801561056757600080fd5b506103d26103e881565b34801561057d57600080fd5b5061048f61058c36600461374b565b611179565b34801561059d57600080fd5b506103d26105ac3660046139e1565b611194565b3480156105bd57600080fd5b506103d260105481565b3480156105d357600080fd5b5061048f6105e2366004613981565b611227565b3480156105f357600080fd5b5061048f61060236600461392c565b61125d565b34801561061357600080fd5b506103d261271081565b34801561062957600080fd5b50600b5461040590600160a81b900460ff1681565b34801561064a57600080fd5b506103d260115481565b34801561066057600080fd5b5061048f61066f3660046138b7565b6112a5565b34801561068057600080fd5b5061048f61068f36600461392c565b611439565b3480156106a057600080fd5b506104576106af3660046139e1565b611481565b3480156106c057600080fd5b5061048f6106cf3660046138b7565b6114f8565b3480156106e057600080fd5b5061048f6106ef3660046138b7565b61168c565b34801561070057600080fd5b50600b5461040590600160b01b900460ff1681565b61048f6107233660046139e1565b611778565b34801561073457600080fd5b5061048f610743366004613981565b611bd0565b34801561075457600080fd5b506103d26107633660046136fd565b611c06565b34801561077457600080fd5b5061048f611c8d565b34801561078957600080fd5b506104056107983660046136fd565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156107c257600080fd5b506104056107d13660046136fd565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156107fb57600080fd5b506103d2662386f26fc1000081565b34801561081657600080fd5b50600a546001600160a01b0316610457565b34801561083457600080fd5b50600b5461040590600160b81b900460ff1681565b34801561085557600080fd5b5061048f610864366004613981565b611cc3565b34801561087557600080fd5b5061042a611cf9565b34801561088a57600080fd5b5061048f6108993660046138b7565b611d08565b3480156108aa57600080fd5b506103d26108b93660046136fd565b611df4565b61048f6108cc3660046139e1565b611e38565b3480156108dd57600080fd5b506103d26108ec3660046136fd565b6122a8565b3480156108fd57600080fd5b5061048f61090c366004613863565b6122ec565b34801561091d57600080fd5b506103d2600181565b34801561093257600080fd5b5061048f61094136600461392c565b6123b1565b34801561095257600080fd5b5061048f61096136600461392c565b6123f9565b34801561097257600080fd5b5061048f610981366004613787565b612441565b34801561099257600080fd5b506103d2612479565b3480156109a757600080fd5b5061042a6109b63660046139e1565b612493565b3480156109c757600080fd5b506103d2600381565b3480156109dc57600080fd5b5061042a61264b565b3480156109f157600080fd5b506103d2610a003660046136fd565b6126d9565b348015610a1157600080fd5b5061042a61271d565b348015610a2657600080fd5b50610405610a35366004613718565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6f57600080fd5b506103d2600f5481565b61048f610a873660046139e1565b61272c565b348015610a9857600080fd5b506103d2600d5481565b348015610aae57600080fd5b506103d260125481565b348015610ac457600080fd5b5061048f610ad33660046136fd565b612bca565b348015610ae457600080fd5b50600b5461040590600160a01b900460ff1681565b348015610b0557600080fd5b50610405610b143660046136fd565b6001600160a01b031660009081526013602052604090205460ff1690565b60006001600160e01b0319821663780e9d6360e01b1480610b575750610b5782612c65565b92915050565b606060008054610b6c90613e65565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9890613e65565b8015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9482611481565b9050806001600160a01b0316836001600160a01b03161415610d025760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c64565b336001600160a01b0382161480610d1e5750610d1e8133610a35565b610d905760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c64565b610d9a8383612cb5565b505050565b610da93382612d23565b610dc55760405162461bcd60e51b8152600401610c6490613ce3565b610d9a838383612e1a565b600a546001600160a01b03163314610dfa5760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a576000838383818110610e1957610e19613f11565b9050602002016020810190610e2e91906136fd565b6001600160a01b03161415610e555760405162461bcd60e51b8152600401610c6490613cac565b600060156000858585818110610e6d57610e6d613f11565b9050602002016020810190610e8291906136fd565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610eb481613ea0565b915050610dfd565b6000610ec783611c06565b8210610f295760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c64565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f7c5760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a576000838383818110610f9b57610f9b613f11565b9050602002016020810190610fb091906136fd565b6001600160a01b03161415610fd75760405162461bcd60e51b8152600401610c6490613cac565b600160176000858585818110610fef57610fef613f11565b905060200201602081019061100491906136fd565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560188185858581811061104457611044613f11565b905060200201602081019061105991906136fd565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116110865760006110d3565b6018600084848481811061109c5761109c613f11565b90506020020160208101906110b191906136fd565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806110de81613ea0565b915050610f7f565b600a546001600160a01b031633146111105760405162461bcd60e51b8152600401610c6490613c77565b610d9a600c8383613638565b600a546001600160a01b031633146111465760405162461bcd60e51b8152600401610c6490613c77565b6040514790339082156108fc029083906000818181858888f19350505050158015611175573d6000803e3d6000fd5b5050565b610d9a83838360405180602001604052806000815250612441565b600061119f60085490565b82106112025760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c64565b6008828154811061121557611215613f11565b90600052602060002001549050919050565b600a546001600160a01b031633146112515760405162461bcd60e51b8152600401610c6490613c77565b610d9a601a8383613638565b600a546001600160a01b031633146112875760405162461bcd60e51b8152600401610c6490613c77565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b600a546001600160a01b031633146112cf5760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a5760008383838181106112ee576112ee613f11565b905060200201602081019061130391906136fd565b6001600160a01b0316141561132a5760405162461bcd60e51b8152600401610c6490613cac565b60016015600085858581811061134257611342613f11565b905060200201602081019061135791906136fd565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560168185858581811061139757611397613f11565b90506020020160208101906113ac91906136fd565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116113d9576000611426565b601660008484848181106113ef576113ef613f11565b905060200201602081019061140491906136fd565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061143181613ea0565b9150506112d2565b600a546001600160a01b031633146114635760405162461bcd60e51b8152600401610c6490613c77565b600b8054911515600160a81b0260ff60a81b19909216919091179055565b6000818152600260205260408120546001600160a01b031680610b575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c64565b600a546001600160a01b031633146115225760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a57600083838381811061154157611541613f11565b905060200201602081019061155691906136fd565b6001600160a01b0316141561157d5760405162461bcd60e51b8152600401610c6490613cac565b60016013600085858581811061159557611595613f11565b90506020020160208101906115aa91906136fd565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556014818585858181106115ea576115ea613f11565b90506020020160208101906115ff91906136fd565b6001600160a01b03166001600160a01b03168152602001908152602001600020541161162c576000611679565b6014600084848481811061164257611642613f11565b905060200201602081019061165791906136fd565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061168481613ea0565b915050611525565b600a546001600160a01b031633146116b65760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a5760008383838181106116d5576116d5613f11565b90506020020160208101906116ea91906136fd565b6001600160a01b031614156117115760405162461bcd60e51b8152600401610c6490613cac565b60006017600085858581811061172957611729613f11565b905060200201602081019061173e91906136fd565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061177081613ea0565b9150506116b9565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156117bc57600080fd5b505afa1580156117d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f491906139fa565b905080156119dd576000811161181c5760405162461bcd60e51b8152600401610c6490613abe565b600b54600160b81b900460ff166118455760405162461bcd60e51b8152600401610c6490613c47565b600b54600160a01b900460ff1661186e5760405162461bcd60e51b8152600401610c6490613b47565b61271061187b8180613dd7565b6118859190613dd7565b600854106118a55760405162461bcd60e51b8152600401610c6490613d6b565b600d548211156118c75760405162461bcd60e51b8152600401610c6490613da2565b612710826010546118d89190613dd7565b11156118f65760405162461bcd60e51b8152600401610c6490613c12565b600d5433600090815260146020526040902054611914908490613dd7565b11156119325760405162461bcd60e51b8152600401610c6490613d34565b3461194483662386f26fc10000613e03565b11156119625760405162461bcd60e51b8152600401610c6490613ba4565b60005b828110156119db576000601054600161197e9190613dd7565b90506001601060008282546119939190613dd7565b90915550503360009081526014602052604081208054600192906119b8908490613dd7565b909155506119c890503382612fc5565b50806119d381613ea0565b915050611965565b505b8061117557600b54600160b81b900460ff16611a0b5760405162461bcd60e51b8152600401610c6490613c47565b600b54600160a01b900460ff16611a345760405162461bcd60e51b8152600401610c6490613b47565b3360009081526013602052604090205460ff16611a635760405162461bcd60e51b8152600401610c6490613bdb565b612710611a708180613dd7565b611a7a9190613dd7565b60085410611a9a5760405162461bcd60e51b8152600401610c6490613d6b565b600e54821115611abc5760405162461bcd60e51b8152600401610c6490613da2565b61271082601054611acd9190613dd7565b1115611aeb5760405162461bcd60e51b8152600401610c6490613c12565b600d5433600090815260146020526040902054611b09908490613dd7565b1115611b275760405162461bcd60e51b8152600401610c6490613d34565b34611b3983662386f26fc10000613e03565b1115611b575760405162461bcd60e51b8152600401610c6490613ba4565b60005b82811015610d9a5760006010546001611b739190613dd7565b9050600160106000828254611b889190613dd7565b9091555050336000908152601460205260408120805460019290611bad908490613dd7565b90915550611bbd90503382612fc5565b5080611bc881613ea0565b915050611b5a565b600a546001600160a01b03163314611bfa5760405162461bcd60e51b8152600401610c6490613c77565b610d9a601b8383613638565b60006001600160a01b038216611c715760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c64565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611cb75760405162461bcd60e51b8152600401610c6490613c77565b611cc16000612fdf565b565b600a546001600160a01b03163314611ced5760405162461bcd60e51b8152600401610c6490613c77565b610d9a60198383613638565b606060018054610b6c90613e65565b600a546001600160a01b03163314611d325760405162461bcd60e51b8152600401610c6490613c77565b60005b81811015610d9a576000838383818110611d5157611d51613f11565b9050602002016020810190611d6691906136fd565b6001600160a01b03161415611d8d5760405162461bcd60e51b8152600401610c6490613cac565b600060136000858585818110611da557611da5613f11565b9050602002016020810190611dba91906136fd565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611dec81613ea0565b915050611d35565b60006001600160a01b038216611e1c5760405162461bcd60e51b8152600401610c6490613b7e565b506001600160a01b031660009081526016602052604090205490565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611e7c57600080fd5b505afa158015611e90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb491906139fa565b905080156120a95760008111611edc5760405162461bcd60e51b8152600401610c6490613abe565b600b54600160b81b900460ff16611f055760405162461bcd60e51b8152600401610c6490613c47565b600b54600160a81b900460ff16611f2e5760405162461bcd60e51b8152600401610c6490613b47565b612710611f3b8180613dd7565b611f459190613dd7565b60085410611f655760405162461bcd60e51b8152600401610c6490613d6b565b600e54821115611f875760405162461bcd60e51b8152600401610c6490613da2565b61271082601154611f989190613dd7565b1115611fb65760405162461bcd60e51b8152600401610c6490613c12565b600e5433600090815260166020526040902054611fd4908490613dd7565b1115611ff25760405162461bcd60e51b8152600401610c6490613d34565b3461200483662386f26fc10000613e03565b11156120225760405162461bcd60e51b8152600401610c6490613ba4565b60005b828110156120a757600060115461271061203f9190613dd7565b61204a906001613dd7565b905060016011600082825461205f9190613dd7565b9091555050336000908152601660205260408120805460019290612084908490613dd7565b9091555061209490503382612fc5565b508061209f81613ea0565b915050612025565b505b8061117557600b54600160b81b900460ff166120d75760405162461bcd60e51b8152600401610c6490613c47565b600b54600160a81b900460ff166121005760405162461bcd60e51b8152600401610c6490613b47565b3360009081526015602052604090205460ff1661212f5760405162461bcd60e51b8152600401610c6490613bdb565b61271061213c8180613dd7565b6121469190613dd7565b600854106121665760405162461bcd60e51b8152600401610c6490613d6b565b600e548211156121885760405162461bcd60e51b8152600401610c6490613da2565b612710826011546121999190613dd7565b11156121b75760405162461bcd60e51b8152600401610c6490613c12565b600e54336000908152601660205260409020546121d5908490613dd7565b11156121f35760405162461bcd60e51b8152600401610c6490613d34565b3461220583662386f26fc10000613e03565b11156122235760405162461bcd60e51b8152600401610c6490613ba4565b60005b82811015610d9a5760006011546127106122409190613dd7565b61224b906001613dd7565b90506001601160008282546122609190613dd7565b9091555050336000908152601660205260408120805460019290612285908490613dd7565b9091555061229590503382612fc5565b50806122a081613ea0565b915050612226565b60006001600160a01b0382166122d05760405162461bcd60e51b8152600401610c6490613b7e565b506001600160a01b031660009081526018602052604090205490565b6001600160a01b0382163314156123455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c64565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146123db5760405162461bcd60e51b8152600401610c6490613c77565b600b8054911515600160b81b0260ff60b81b19909216919091179055565b600a546001600160a01b031633146124235760405162461bcd60e51b8152600401610c6490613c77565b600b8054911515600160b01b0260ff60b01b19909216919091179055565b61244b3383612d23565b6124675760405162461bcd60e51b8152600401610c6490613ce3565b61247384848484613031565b50505050565b6127106124868180613dd7565b6124909190613dd7565b81565b6000818152600260205260409020546060906001600160a01b03166124f15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610c64565b6000601b805461250090613e65565b80601f016020809104026020016040519081016040528092919081815260200182805461252c90613e65565b80156125795780601f1061254e57610100808354040283529160200191612579565b820191906000526020600020905b81548152906001019060200180831161255c57829003601f168201915b50505050509050600081511161261957601a805461259690613e65565b80601f01602080910402602001604051908101604052809291908181526020018280546125c290613e65565b801561260f5780601f106125e45761010080835404028352916020019161260f565b820191906000526020600020905b8154815290600101906020018083116125f257829003601f168201915b5050505050612644565b8061262384613064565b604051602001612634929190613a3f565b6040516020818303038152906040525b9392505050565b600c805461265890613e65565b80601f016020809104026020016040519081016040528092919081815260200182805461268490613e65565b80156126d15780601f106126a6576101008083540402835291602001916126d1565b820191906000526020600020905b8154815290600101906020018083116126b457829003601f168201915b505050505081565b60006001600160a01b0382166127015760405162461bcd60e51b8152600401610c6490613b7e565b506001600160a01b031660009081526014602052604090205490565b606060198054610b6c90613e65565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561277057600080fd5b505afa158015612784573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127a891906139fa565b905080156129b457600081116127d05760405162461bcd60e51b8152600401610c6490613abe565b600b54600160b81b900460ff166127f95760405162461bcd60e51b8152600401610c6490613c47565b600b54600160b01b900460ff166128225760405162461bcd60e51b8152600401610c6490613b47565b61271061282f8180613dd7565b6128399190613dd7565b600854106128595760405162461bcd60e51b8152600401610c6490613d6b565b600f5482111561287b5760405162461bcd60e51b8152600401610c6490613da2565b6127108260125461288c9190613dd7565b11156128aa5760405162461bcd60e51b8152600401610c6490613c12565b600f54336000908152601860205260409020546128c8908490613dd7565b11156128e65760405162461bcd60e51b8152600401610c6490613d34565b346128f883662386f26fc10000613e03565b11156129165760405162461bcd60e51b8152600401610c6490613ba4565b60005b828110156129b257601254600090612710612936816103e8613dd7565b6129409190613dd7565b61294a9190613dd7565b612955906001613dd7565b905060016012600082825461296a9190613dd7565b909155505033600090815260186020526040812080546001929061298f908490613dd7565b9091555061299f90503382612fc5565b50806129aa81613ea0565b915050612919565b505b8061117557600b54600160b81b900460ff166129e25760405162461bcd60e51b8152600401610c6490613c47565b600b54600160b01b900460ff16612a0b5760405162461bcd60e51b8152600401610c6490613b47565b3360009081526017602052604090205460ff16612a3a5760405162461bcd60e51b8152600401610c6490613bdb565b612710612a478180613dd7565b612a519190613dd7565b60085410612a715760405162461bcd60e51b8152600401610c6490613d6b565b600f54821115612a935760405162461bcd60e51b8152600401610c6490613da2565b61271082601254612aa49190613dd7565b1115612ac25760405162461bcd60e51b8152600401610c6490613c12565b600f5433600090815260186020526040902054612ae0908490613dd7565b1115612afe5760405162461bcd60e51b8152600401610c6490613d34565b34612b1083662386f26fc10000613e03565b1115612b2e5760405162461bcd60e51b8152600401610c6490613ba4565b60005b82811015610d9a57601254600090612710612b4e816103e8613dd7565b612b589190613dd7565b612b629190613dd7565b612b6d906001613dd7565b9050600160126000828254612b829190613dd7565b9091555050336000908152601860205260408120805460019290612ba7908490613dd7565b90915550612bb790503382612fc5565b5080612bc281613ea0565b915050612b31565b600a546001600160a01b03163314612bf45760405162461bcd60e51b8152600401610c6490613c77565b6001600160a01b038116612c595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c64565b612c6281612fdf565b50565b60006001600160e01b031982166380ac58cd60e01b1480612c9657506001600160e01b03198216635b5e139f60e01b145b80610b5757506301ffc9a760e01b6001600160e01b0319831614610b57565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612cea82611481565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612d9c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c64565b6000612da783611481565b9050806001600160a01b0316846001600160a01b03161480612de25750836001600160a01b0316612dd784610bef565b6001600160a01b0316145b80612e1257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612e2d82611481565b6001600160a01b031614612e955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c64565b6001600160a01b038216612ef75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c64565b612f02838383613162565b612f0d600082612cb5565b6001600160a01b0383166000908152600360205260408120805460019290612f36908490613e22565b90915550506001600160a01b0382166000908152600360205260408120805460019290612f64908490613dd7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61117582826040518060200160405280600081525061321a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61303c848484612e1a565b6130488484848461324d565b6124735760405162461bcd60e51b8152600401610c6490613af5565b6060816130885750506040805180820190915260018152600360fc1b602082015290565b8160005b81156130b2578061309c81613ea0565b91506130ab9050600a83613def565b915061308c565b60008167ffffffffffffffff8111156130cd576130cd613f27565b6040519080825280601f01601f1916602001820160405280156130f7576020820181803683370190505b5090505b8415612e125761310c600183613e22565b9150613119600a86613ebb565b613124906030613dd7565b60f81b81838151811061313957613139613f11565b60200101906001600160f81b031916908160001a90535061315b600a86613def565b94506130fb565b6001600160a01b0383166131bd576131b881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6131e0565b816001600160a01b0316836001600160a01b0316146131e0576131e0838261335a565b6001600160a01b0382166131f757610d9a816133f7565b826001600160a01b0316826001600160a01b031614610d9a57610d9a82826134a6565b61322483836134ea565b613231600084848461324d565b610d9a5760405162461bcd60e51b8152600401610c6490613af5565b60006001600160a01b0384163b1561334f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613291903390899088908890600401613a6e565b602060405180830381600087803b1580156132ab57600080fd5b505af19250505080156132db575060408051601f3d908101601f191682019092526132d891810190613964565b60015b613335573d808015613309576040519150601f19603f3d011682016040523d82523d6000602084013e61330e565b606091505b50805161332d5760405162461bcd60e51b8152600401610c6490613af5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612e12565b506001949350505050565b6000600161336784611c06565b6133719190613e22565b6000838152600760205260409020549091508082146133c4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061340990600190613e22565b6000838152600960205260408120546008805493945090928490811061343157613431613f11565b90600052602060002001549050806008838154811061345257613452613f11565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061348a5761348a613efb565b6001900381819060005260206000200160009055905550505050565b60006134b183611c06565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166135405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c64565b6000818152600260205260409020546001600160a01b0316156135a55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c64565b6135b160008383613162565b6001600160a01b03821660009081526003602052604081208054600192906135da908490613dd7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461364490613e65565b90600052602060002090601f01602090048101928261366657600085556136ac565b82601f1061367f5782800160ff198235161785556136ac565b828001600101855582156136ac579182015b828111156136ac578235825591602001919060010190613691565b506136b89291506136bc565b5090565b5b808211156136b857600081556001016136bd565b80356001600160a01b03811681146136e857600080fd5b919050565b803580151581146136e857600080fd5b60006020828403121561370f57600080fd5b612644826136d1565b6000806040838503121561372b57600080fd5b613734836136d1565b9150613742602084016136d1565b90509250929050565b60008060006060848603121561376057600080fd5b613769846136d1565b9250613777602085016136d1565b9150604084013590509250925092565b6000806000806080858703121561379d57600080fd5b6137a6856136d1565b93506137b4602086016136d1565b925060408501359150606085013567ffffffffffffffff808211156137d857600080fd5b818701915087601f8301126137ec57600080fd5b8135818111156137fe576137fe613f27565b604051601f8201601f19908116603f0116810190838211818310171561382657613826613f27565b816040528281528a602084870101111561383f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561387657600080fd5b61387f836136d1565b9150613742602084016136ed565b600080604083850312156138a057600080fd5b6138a9836136d1565b946020939093013593505050565b600080602083850312156138ca57600080fd5b823567ffffffffffffffff808211156138e257600080fd5b818501915085601f8301126138f657600080fd5b81358181111561390557600080fd5b8660208260051b850101111561391a57600080fd5b60209290920196919550909350505050565b60006020828403121561393e57600080fd5b612644826136ed565b60006020828403121561395957600080fd5b813561264481613f3d565b60006020828403121561397657600080fd5b815161264481613f3d565b6000806020838503121561399457600080fd5b823567ffffffffffffffff808211156139ac57600080fd5b818501915085601f8301126139c057600080fd5b8135818111156139cf57600080fd5b86602082850101111561391a57600080fd5b6000602082840312156139f357600080fd5b5035919050565b600060208284031215613a0c57600080fd5b5051919050565b60008151808452613a2b816020860160208601613e39565b601f01601f19169290920160200192915050565b60008351613a51818460208801613e39565b835190830190613a65818360208801613e39565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613aa190830184613a13565b9695505050505050565b6020815260006126446020830184613a13565b6020808252601c908201527f4d75737420686f6c64206174206c6561737420426c616e6b4661636500000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526018908201527f436f6c6c656374696f6e206973206e6f74206163746976650000000000000000604082015260600190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b6020808252601c908201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604082015260600190565b6020808252601b908201527f4d757374206265206f6e204861796c6f732057686974656c6973740000000000604082015260600190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015260600190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b60008219821115613dea57613dea613ecf565b500190565b600082613dfe57613dfe613ee5565b500490565b6000816000190483118215151615613e1d57613e1d613ecf565b500290565b600082821015613e3457613e34613ecf565b500390565b60005b83811015613e54578181015183820152602001613e3c565b838111156124735750506000910152565b600181811c90821680613e7957607f821691505b60208210811415613e9a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613eb457613eb4613ecf565b5060010190565b600082613eca57613eca613ee5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612c6257600080fdfea2646970667358221220e33282650782426833cfb3702b2c766c48e260b1bdfff60ec00f4ee3d0d532ef64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000006f8b41b72c04b2bba587fc7b09dbfb877ca7d040000000000000000000000000000000000000000000000000000000000000015426c616e6b466163654861796c6f73506965636533000000000000000000000000000000000000000000000000000000000000000000000000000000000000044246483300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): BlankFaceHaylosPiece3
Arg [1] : symbol (string): BFH3
Arg [2] : dependentContractAddress (address): 0x06f8b41b72c04b2BbA587Fc7b09dbfb877cA7d04

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000006f8b41b72c04b2bba587fc7b09dbfb877ca7d04
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [4] : 426c616e6b466163654861796c6f735069656365330000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4246483300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

500:12658:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1317:37;;;;;;;;;;;;;;;;;;;18132:25:15;;;18120:2;18105:18;1317:37:1;;;;;;;;937:224:5;;;;;;;;;;-1:-1:-1;937:224:5;;;;;:::i;:::-;;:::i;:::-;;;6690:14:15;;6683:22;6665:41;;6653:2;6638:18;937:224:5;6525:187:15;2426:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3985:221::-;;;;;;;;;;-1:-1:-1;3985:221:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5988:32:15;;;5970:51;;5958:2;5943:18;3985:221:4;5824:203:15;3508:411:4;;;;;;;;;;-1:-1:-1;3508:411:4;;;;;:::i;:::-;;:::i;:::-;;1577:113:5;;;;;;;;;;-1:-1:-1;1665:10:5;:17;1577:113;;4875:339:4;;;;;;;;;;-1:-1:-1;4875:339:4;;;;;:::i;:::-;;:::i;3716:273:1:-;;;;;;;;;;-1:-1:-1;3716:273:1;;;;;:::i;:::-;;:::i;1245:256:5:-;;;;;;;;;;-1:-1:-1;1245:256:5;;;;;:::i;:::-;;:::i;4200:353:1:-;;;;;;;;;;-1:-1:-1;4200:353:1;;;;;:::i;:::-;;:::i;11983:115::-;;;;;;;;;;-1:-1:-1;11983:115:1;;;;;:::i;:::-;;:::i;12106:144::-;;;;;;;;;;;;;:::i;805:34::-;;;;;;;;;;;;835:4;805:34;;5285:185:4;;;;;;;;;;-1:-1:-1;5285:185:4;;;;;:::i;:::-;;:::i;1767:233:5:-;;;;;;;;;;-1:-1:-1;1767:233:5;;;;;:::i;:::-;;:::i;1478:37:1:-;;;;;;;;;;;;;;;;12366:101;;;;;;;;;;-1:-1:-1;12366:101:1;;;;;:::i;:::-;;:::i;11550:137::-;;;;;;;;;;-1:-1:-1;11550:137:1;;;;;:::i;:::-;;:::i;701:47::-;;;;;;;;;;;;743:5;701:47;;1116:39;;;;;;;;;;-1:-1:-1;1116:39:1;;;;-1:-1:-1;;;1116:39:1;;;;;;1520:37;;;;;;;;;;;;;;;;3234:353;;;;;;;;;;-1:-1:-1;3234:353:1;;;;;:::i;:::-;;:::i;11695:137::-;;;;;;;;;;-1:-1:-1;11695:137:1;;;;;:::i;:::-;;:::i;2120:239:4:-;;;;;;;;;;-1:-1:-1;2120:239:4;;;;;:::i;:::-;;:::i;2268:353:1:-;;;;;;;;;;-1:-1:-1;2268:353:1;;;;;:::i;:::-;;:::i;4682:273::-;;;;;;;;;;-1:-1:-1;4682:273:1;;;;;:::i;:::-;;:::i;1160:39::-;;;;;;;;;;-1:-1:-1;1160:39:1;;;;-1:-1:-1;;;1160:39:1;;;;;;5151:2041;;;;;;:::i;:::-;;:::i;12473:141::-;;;;;;;;;;-1:-1:-1;12473:141:1;;;;;:::i;:::-;;:::i;1850:208:4:-;;;;;;;;;;-1:-1:-1;1850:208:4;;;;;:::i;:::-;;:::i;1650:94:13:-;;;;;;;;;;;;;:::i;3595:113:1:-;;;;;;;;;;-1:-1:-1;3595:113:1;;;;;:::i;:::-;-1:-1:-1;;;;;3684:18:1;3664:4;3684:18;;;:12;:18;;;;;;;;;3595:113;4561;;;;;;;;;;-1:-1:-1;4561:113:1;;;;;:::i;:::-;-1:-1:-1;;;;;4650:18:1;4630:4;4650:18;;;:12;:18;;;;;;;;;4561:113;981:42;;;;;;;;;;;;1013:10;981:42;;999:87:13;;;;;;;;;;-1:-1:-1;1072:6:13;;-1:-1:-1;;;;;1072:6:13;999:87;;1204:34:1;;;;;;;;;;-1:-1:-1;1204:34:1;;;;-1:-1:-1;;;1204:34:1;;;;;;12256:104;;;;;;;;;;-1:-1:-1;12256:104:1;;;;;:::i;:::-;;:::i;2595::4:-;;;;;;;;;;;;;:::i;2750:273:1:-;;;;;;;;;;-1:-1:-1;2750:273:1;;;;;:::i;:::-;;:::i;3997:182::-;;;;;;;;;;-1:-1:-1;3997:182:1;;;;;:::i;:::-;;:::i;7199:2077::-;;;;;;:::i;:::-;;:::i;4963:182::-;;;;;;;;;;-1:-1:-1;4963:182:1;;;;;:::i;:::-;;:::i;4278:295:4:-;;;;;;;;;;-1:-1:-1;4278:295:4;;;;;:::i;:::-;;:::i;1028:37:1:-;;;;;;;;;;;;1064:1;1028:37;;11421:117;;;;;;;;;;-1:-1:-1;11421:117:1;;;;;:::i;:::-;;:::i;11840:137::-;;;;;;;;;;-1:-1:-1;11840:137:1;;;;;:::i;:::-;;:::i;5541:328:4:-;;;;;;;;;;-1:-1:-1;5541:328:4;;;;;:::i;:::-;;:::i;844:85:1:-;;;;;;;;;;;;;:::i;12726:429::-;;;;;;;;;;-1:-1:-1;12726:429:1;;;;;:::i;:::-;;:::i;934:42::-;;;;;;;;;;;;975:1;934:42;;1247:21;;;;;;;;;;;;;:::i;3031:182::-;;;;;;;;;;-1:-1:-1;3031:182:1;;;;;:::i;:::-;;:::i;12620:100::-;;;;;;;;;;;;;:::i;4644:164:4:-;;;;;;;;;;-1:-1:-1;4644:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164;1359:37:1;;;;;;;;;;;;;;;;9284:2125;;;;;;:::i;:::-;;:::i;1275:37::-;;;;;;;;;;;;;;;;1562;;;;;;;;;;;;;;;;1899:192:13;;;;;;;;;;-1:-1:-1;1899:192:13;;;;;:::i;:::-;;:::i;1072:39:1:-;;;;;;;;;;-1:-1:-1;1072:39:1;;;;-1:-1:-1;;;1072:39:1;;;;;;2629:113;;;;;;;;;;-1:-1:-1;2629:113:1;;;;;:::i;:::-;-1:-1:-1;;;;;2718:18:1;2698:4;2718:18;;;:12;:18;;;;;;;;;2629:113;937:224:5;1039:4;-1:-1:-1;;;;;;1063:50:5;;-1:-1:-1;;;1063:50:5;;:90;;;1117:36;1141:11;1117:23;:36::i;:::-;1056:97;937:224;-1:-1:-1;;937:224:5:o;2426:100:4:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;4081:73;;;;-1:-1:-1;;;4081:73:4;;14342:2:15;4081:73:4;;;14324:21:15;14381:2;14361:18;;;14354:30;14420:34;14400:18;;;14393:62;-1:-1:-1;;;14471:18:15;;;14464:42;14523:19;;4081:73:4;;;;;;;;;-1:-1:-1;4174:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:4;;3985:221::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:4;:2;-1:-1:-1;;;;;3647:11:4;;;3639:57;;;;-1:-1:-1;;;3639:57:4;;15881:2:15;3639:57:4;;;15863:21:15;15920:2;15900:18;;;15893:30;15959:34;15939:18;;;15932:62;-1:-1:-1;;;16010:18:15;;;16003:31;16051:19;;3639:57:4;15679:397:15;3639:57:4;681:10:2;-1:-1:-1;;;;;3731:21:4;;;;:62;;-1:-1:-1;3756:37:4;3773:5;681:10:2;4644:164:4;:::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:4;;11667:2:15;3709:168:4;;;11649:21:15;11706:2;11686:18;;;11679:30;11745:34;11725:18;;;11718:62;11816:26;11796:18;;;11789:54;11860:19;;3709:168:4;11465:420:15;3709:168:4;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;4875:339::-;5070:41;681:10:2;5103:7:4;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:4;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;3716:273:1:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;3817:9:1::1;3812:172;3832:20:::0;;::::1;3812:172;;;3900:1;3876:9:::0;;3886:1;3876:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3876:26:1::1;;;3868:65;;;;-1:-1:-1::0;;;3868:65:1::1;;;;;;;:::i;:::-;3971:5;3942:12;:26;3955:9;;3965:1;3955:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3942:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3942:26:1;:34;;-1:-1:-1;;3942:34:1::1;::::0;::::1;;::::0;;;::::1;::::0;;3854:3;::::1;::::0;::::1;:::i;:::-;;;;3812:172;;1245:256:5::0;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:5;;7500:2:15;1362:87:5;;;7482:21:15;7539:2;7519:18;;;7512:30;7578:34;7558:18;;;7551:62;-1:-1:-1;;;7629:18:15;;;7622:41;7680:19;;1362:87:5;7298:407:15;1362:87:5;-1:-1:-1;;;;;;1467:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;4200:353:1:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4296:9:1::1;4291:257;4311:20:::0;;::::1;4291:257;;;4379:1;4355:9:::0;;4365:1;4355:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4355:26:1::1;;;4347:65;;;;-1:-1:-1::0;;;4347:65:1::1;;;;;;;:::i;:::-;4450:4;4421:12;:26;4434:9;;4444:1;4434:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4421:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;4421:26:1;;;:33;;-1:-1:-1;;4421:33:1::1;::::0;::::1;;::::0;;;::::1;::::0;;;4463:19:::1;-1:-1:-1::0;4483:9:1;;4493:1;4483:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4463:33:1::1;-1:-1:-1::0;;;;;4463:33:1::1;;;;;;;;;;;;;:37;:77;;4539:1;4463:77;;;4503:19;:33;4523:9;;4533:1;4523:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4503:33:1::1;-1:-1:-1::0;;;;;4503:33:1::1;;;;;;;;;;;;;4463:77;-1:-1:-1::0;4333:3:1;::::1;::::0;::::1;:::i;:::-;;;;4291:257;;11983:115:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;12069:23:1::1;:7;12079:13:::0;;12069:23:::1;:::i;12106:144::-:0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;12207:37:1::1;::::0;12179:21:::1;::::0;12215:10:::1;::::0;12207:37;::::1;;;::::0;12179:21;;12161:15:::1;12207:37:::0;12161:15;12207:37;12179:21;12215:10;12207:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;12154:96;12106:144::o:0;5285:185:4:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;1767:233:5:-;1842:7;1878:30;1665:10;:17;;1577:113;1878:30;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:5;;16701:2:15;1862:95:5;;;16683:21:15;16740:2;16720:18;;;16713:30;16779:34;16759:18;;;16752:62;-1:-1:-1;;;16830:18:15;;;16823:42;16882:19;;1862:95:5;16499:408:15;1862:95:5;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;1968:24;;1767:233;;;:::o;12366:101:1:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;12442:19:1::1;:13;12458:3:::0;;12442:19:::1;:::i;11550:137::-:0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;11639:19:1::1;:42:::0;;;::::1;;-1:-1:-1::0;;;11639:42:1::1;-1:-1:-1::0;;;;11639:42:1;;::::1;::::0;;;::::1;::::0;;11550:137::o;3234:353::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;3330:9:1::1;3325:257;3345:20:::0;;::::1;3325:257;;;3413:1;3389:9:::0;;3399:1;3389:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3389:26:1::1;;;3381:65;;;;-1:-1:-1::0;;;3381:65:1::1;;;;;;;:::i;:::-;3484:4;3455:12;:26;3468:9;;3478:1;3468:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3455:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3455:26:1;;;:33;;-1:-1:-1;;3455:33:1::1;::::0;::::1;;::::0;;;::::1;::::0;;;3497:19:::1;-1:-1:-1::0;3517:9:1;;3527:1;3517:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3497:33:1::1;-1:-1:-1::0;;;;;3497:33:1::1;;;;;;;;;;;;;:37;:77;;3573:1;3497:77;;;3537:19;:33;3557:9;;3567:1;3557:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3537:33:1::1;-1:-1:-1::0;;;;;3537:33:1::1;;;;;;;;;;;;;3497:77;-1:-1:-1::0;3367:3:1;::::1;::::0;::::1;:::i;:::-;;;;3325:257;;11695:137:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;11784:19:1::1;:42:::0;;;::::1;;-1:-1:-1::0;;;11784:42:1::1;-1:-1:-1::0;;;;11784:42:1;;::::1;::::0;;;::::1;::::0;;11695:137::o;2120:239:4:-;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:4;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:4;;12503:2:15;2255:73:4;;;12485:21:15;12542:2;12522:18;;;12515:30;12581:34;12561:18;;;12554:62;-1:-1:-1;;;12632:18:15;;;12625:39;12681:19;;2255:73:4;12301:405:15;2268:353:1;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;2364:9:1::1;2359:257;2379:20:::0;;::::1;2359:257;;;2447:1;2423:9:::0;;2433:1;2423:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2423:26:1::1;;;2415:65;;;;-1:-1:-1::0;;;2415:65:1::1;;;;;;;:::i;:::-;2518:4;2489:12;:26;2502:9;;2512:1;2502:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2489:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2489:26:1;;;:33;;-1:-1:-1;;2489:33:1::1;::::0;::::1;;::::0;;;::::1;::::0;;;2531:19:::1;-1:-1:-1::0;2551:9:1;;2561:1;2551:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2531:33:1::1;-1:-1:-1::0;;;;;2531:33:1::1;;;;;;;;;;;;;:37;:77;;2607:1;2531:77;;;2571:19;:33;2591:9;;2601:1;2591:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2571:33:1::1;-1:-1:-1::0;;;;;2571:33:1::1;;;;;;;;;;;;;2531:77;-1:-1:-1::0;2401:3:1;::::1;::::0;::::1;:::i;:::-;;;;2359:257;;4682:273:::0;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;4783:9:1::1;4778:172;4798:20:::0;;::::1;4778:172;;;4866:1;4842:9:::0;;4852:1;4842:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4842:26:1::1;;;4834:65;;;;-1:-1:-1::0;;;4834:65:1::1;;;;;;;:::i;:::-;4937:5;4908:12;:26;4921:9;;4931:1;4921:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4908:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;4908:26:1;:34;;-1:-1:-1;;4908:34:1::1;::::0;::::1;;::::0;;;::::1;::::0;;4820:3;::::1;::::0;::::1;:::i;:::-;;;;4778:172;;5151:2041:::0;5256:9;;:31;;-1:-1:-1;;;5256:31:1;;5276:10;5256:31;;;5970:51:15;5241:12:1;;-1:-1:-1;;;;;5256:9:1;;:19;;5943:18:15;;5256:31:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5241:46;-1:-1:-1;5304:9:1;;5300:938;;5346:1;5336:7;:11;5328:52;;;;-1:-1:-1;;;5328:52:1;;;;;;;:::i;:::-;5413:14;;-1:-1:-1;;;5413:14:1;;;;5405:49;;;;-1:-1:-1;;;5405:49:1;;;;;;;:::i;:::-;5469:19;;-1:-1:-1;;;5469:19:1;;;;5461:56;;;;-1:-1:-1;;;5461:56:1;;;;;;;:::i;:::-;795:5;878:33;795:5;;878:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;5532:23:1;5524:63;;;;-1:-1:-1;;;5524:63:1;;;;;;;:::i;:::-;5620:18;;5602:14;:36;;5594:81;;;;-1:-1:-1;;;5594:81:1;;;;;;;:::i;:::-;691:5;5715:14;5690:22;;:39;;;;:::i;:::-;:58;;5682:103;;;;-1:-1:-1;;;5682:103:1;;;;;;;:::i;:::-;5852:18;;5820:10;5800:31;;;;:19;:31;;;;;;:48;;5834:14;;5800:48;:::i;:::-;:70;;5792:111;;;;-1:-1:-1;;;5792:111:1;;;;;;;:::i;:::-;5944:9;5918:22;5926:14;1013:10;5918:22;:::i;:::-;:35;;5910:76;;;;-1:-1:-1;;;5910:76:1;;;;;;;:::i;:::-;6000:9;5995:230;6019:14;6015:1;:18;5995:230;;;6051:15;6069:22;;6094:1;6069:26;;;;:::i;:::-;6051:44;;6132:1;6106:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;6162:10:1;6142:31;;;;:19;:31;;;;;:36;;6177:1;;6142:31;:36;;6177:1;;6142:36;:::i;:::-;;;;-1:-1:-1;6187:30:1;;-1:-1:-1;6197:10:1;6209:7;6187:9;:30::i;:::-;-1:-1:-1;6035:3:1;;;;:::i;:::-;;;;5995:230;;;;5300:938;6254:12;6250:931;;6285:14;;-1:-1:-1;;;6285:14:1;;;;6277:49;;;;-1:-1:-1;;;6277:49:1;;;;;;;:::i;:::-;6341:19;;-1:-1:-1;;;6341:19:1;;;;6333:56;;;;-1:-1:-1;;;6333:56:1;;;;;;;:::i;:::-;6417:10;6404:24;;;;:12;:24;;;;;;;;6396:64;;;;-1:-1:-1;;;6396:64:1;;;;;;;:::i;:::-;795:5;878:33;795:5;;878:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;6475:23:1;6467:63;;;;-1:-1:-1;;;6467:63:1;;;;;;;:::i;:::-;6563:18;;6545:14;:36;;6537:81;;;;-1:-1:-1;;;6537:81:1;;;;;;;:::i;:::-;691:5;6658:14;6633:22;;:39;;;;:::i;:::-;:58;;6625:103;;;;-1:-1:-1;;;6625:103:1;;;;;;;:::i;:::-;6795:18;;6763:10;6743:31;;;;:19;:31;;;;;;:48;;6777:14;;6743:48;:::i;:::-;:70;;6735:111;;;;-1:-1:-1;;;6735:111:1;;;;;;;:::i;:::-;6887:9;6861:22;6869:14;1013:10;6861:22;:::i;:::-;:35;;6853:76;;;;-1:-1:-1;;;6853:76:1;;;;;;;:::i;:::-;6943:9;6938:230;6962:14;6958:1;:18;6938:230;;;6994:15;7012:22;;7037:1;7012:26;;;;:::i;:::-;6994:44;;7075:1;7049:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;7105:10:1;7085:31;;;;:19;:31;;;;;:36;;7120:1;;7085:31;:36;;7120:1;;7085:36;:::i;:::-;;;;-1:-1:-1;7130:30:1;;-1:-1:-1;7140:10:1;7152:7;7130:9;:30::i;:::-;-1:-1:-1;6978:3:1;;;;:::i;:::-;;;;6938:230;;12473:141;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;12569:39:1::1;:21;12593:15:::0;;12569:39:::1;:::i;1850:208:4:-:0;1922:7;-1:-1:-1;;;;;1950:19:4;;1942:74;;;;-1:-1:-1;;;1942:74:4;;12092:2:15;1942:74:4;;;12074:21:15;12131:2;12111:18;;;12104:30;12170:34;12150:18;;;12143:62;-1:-1:-1;;;12221:18:15;;;12214:40;12271:19;;1942:74:4;11890:406:15;1942:74:4;-1:-1:-1;;;;;;2034:16:4;;;;;:9;:16;;;;;;;1850:208::o;1650:94:13:-;1072:6;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;12256:104:1:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;12336:18:1::1;:12;12351:3:::0;;12336:18:::1;:::i;2595:104:4:-:0;2651:13;2684:7;2677:14;;;;;:::i;2750:273:1:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;2851:9:1::1;2846:172;2866:20:::0;;::::1;2846:172;;;2934:1;2910:9:::0;;2920:1;2910:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2910:26:1::1;;;2902:65;;;;-1:-1:-1::0;;;2902:65:1::1;;;;;;;:::i;:::-;3005:5;2976:12;:26;2989:9;;2999:1;2989:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2976:26:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2976:26:1;:34;;-1:-1:-1;;2976:34:1::1;::::0;::::1;;::::0;;;::::1;::::0;;2888:3;::::1;::::0;::::1;:::i;:::-;;;;2846:172;;3997:182:::0;4074:7;-1:-1:-1;;;;;4097:19:1;;4089:44;;;;-1:-1:-1;;;4089:44:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4147:26:1;;;;;:19;:26;;;;;;;3997:182::o;7199:2077::-;7304:9;;:31;;-1:-1:-1;;;7304:31:1;;7324:10;7304:31;;;5970:51:15;7289:12:1;;-1:-1:-1;;;;;7304:9:1;;:19;;5943:18:15;;7304:31:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7289:46;-1:-1:-1;7352:9:1;;7348:956;;7394:1;7384:7;:11;7376:52;;;;-1:-1:-1;;;7376:52:1;;;;;;;:::i;:::-;7461:14;;-1:-1:-1;;;7461:14:1;;;;7453:49;;;;-1:-1:-1;;;7453:49:1;;;;;;;:::i;:::-;7517:19;;-1:-1:-1;;;7517:19:1;;;;7509:56;;;;-1:-1:-1;;;7509:56:1;;;;;;;:::i;:::-;795:5;878:33;795:5;;878:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;7580:23:1;7572:63;;;;-1:-1:-1;;;7572:63:1;;;;;;;:::i;:::-;7668:18;;7650:14;:36;;7642:81;;;;-1:-1:-1;;;7642:81:1;;;;;;;:::i;:::-;743:5;7763:14;7738:22;;:39;;;;:::i;:::-;:58;;7730:103;;;;-1:-1:-1;;;7730:103:1;;;;;;;:::i;:::-;7900:18;;7868:10;7848:31;;;;:19;:31;;;;;;:48;;7882:14;;7848:48;:::i;:::-;:70;;7840:111;;;;-1:-1:-1;;;7840:111:1;;;;;;;:::i;:::-;7992:9;7966:22;7974:14;1013:10;7966:22;:::i;:::-;:35;;7958:76;;;;-1:-1:-1;;;7958:76:1;;;;;;;:::i;:::-;8048:9;8043:248;8067:14;8063:1;:18;8043:248;;;8099:15;8135:22;;691:5;8117:40;;;;:::i;:::-;:44;;8160:1;8117:44;:::i;:::-;8099:62;;8198:1;8172:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;8228:10:1;8208:31;;;;:19;:31;;;;;:36;;8243:1;;8208:31;:36;;8243:1;;8208:36;:::i;:::-;;;;-1:-1:-1;8253:30:1;;-1:-1:-1;8263:10:1;8275:7;8253:9;:30::i;:::-;-1:-1:-1;8083:3:1;;;;:::i;:::-;;;;8043:248;;;;7348:956;8320:12;8316:949;;8351:14;;-1:-1:-1;;;8351:14:1;;;;8343:49;;;;-1:-1:-1;;;8343:49:1;;;;;;;:::i;:::-;8407:19;;-1:-1:-1;;;8407:19:1;;;;8399:56;;;;-1:-1:-1;;;8399:56:1;;;;;;;:::i;:::-;8483:10;8470:24;;;;:12;:24;;;;;;;;8462:64;;;;-1:-1:-1;;;8462:64:1;;;;;;;:::i;:::-;795:5;878:33;795:5;;878:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;8541:23:1;8533:63;;;;-1:-1:-1;;;8533:63:1;;;;;;;:::i;:::-;8629:18;;8611:14;:36;;8603:81;;;;-1:-1:-1;;;8603:81:1;;;;;;;:::i;:::-;743:5;8724:14;8699:22;;:39;;;;:::i;:::-;:58;;8691:103;;;;-1:-1:-1;;;8691:103:1;;;;;;;:::i;:::-;8861:18;;8829:10;8809:31;;;;:19;:31;;;;;;:48;;8843:14;;8809:48;:::i;:::-;:70;;8801:111;;;;-1:-1:-1;;;8801:111:1;;;;;;;:::i;:::-;8953:9;8927:22;8935:14;1013:10;8927:22;:::i;:::-;:35;;8919:76;;;;-1:-1:-1;;;8919:76:1;;;;;;;:::i;:::-;9009:9;9004:248;9028:14;9024:1;:18;9004:248;;;9060:15;9096:22;;691:5;9078:40;;;;:::i;:::-;:44;;9121:1;9078:44;:::i;:::-;9060:62;;9159:1;9133:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;9189:10:1;9169:31;;;;:19;:31;;;;;:36;;9204:1;;9169:31;:36;;9204:1;;9169:36;:::i;:::-;;;;-1:-1:-1;9214:30:1;;-1:-1:-1;9224:10:1;9236:7;9214:9;:30::i;:::-;-1:-1:-1;9044:3:1;;;;:::i;:::-;;;;9004:248;;4963:182;5040:7;-1:-1:-1;;;;;5063:19:1;;5055:44;;;;-1:-1:-1;;;5055:44:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;;5113:26:1;;;;;:19;:26;;;;;;;4963:182::o;4278:295:4:-;-1:-1:-1;;;;;4381:24:4;;681:10:2;4381:24:4;;4373:62;;;;-1:-1:-1;;;4373:62:4;;9500:2:15;4373:62:4;;;9482:21:15;9539:2;9519:18;;;9512:30;9578:27;9558:18;;;9551:55;9623:18;;4373:62:4;9298:349:15;4373:62:4;681:10:2;4448:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4448:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:4;;;;;;;;;;4517:48;;6665:41:15;;;4448:42:4;;681:10:2;4517:48:4;;6638:18:15;4517:48:4;;;;;;;4278:295;;:::o;11421:117:1:-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;11500:14:1::1;:32:::0;;;::::1;;-1:-1:-1::0;;;11500:32:1::1;-1:-1:-1::0;;;;11500:32:1;;::::1;::::0;;;::::1;::::0;;11421:117::o;11840:137::-;1072:6:13;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;11929:19:1::1;:42:::0;;;::::1;;-1:-1:-1::0;;;11929:42:1::1;-1:-1:-1::0;;;;11929:42:1;;::::1;::::0;;;::::1;::::0;;11840:137::o;5541:328:4:-;5716:41;681:10:2;5749:7:4;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:4;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;844:85:1:-;795:5;878:33;795:5;;878:33;:::i;:::-;:51;;;;:::i;:::-;844:85;:::o;12726:429::-;7444:4:4;7468:16;;;:7;:16;;;;;;12799:13:1;;-1:-1:-1;;;;;7468:16:4;12821:49:1;;;;-1:-1:-1;;;12821:49:1;;10548:2:15;12821:49:1;;;10530:21:15;10587:2;10567:18;;;10560:30;-1:-1:-1;;;10606:18:15;;;10599:50;10666:18;;12821:49:1;10346:344:15;12821:49:1;12955:29;12987:21;12955:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13054:1;13028:15;13022:29;:33;:127;;13136:13;13022:127;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13089:15;13106:18;:7;:16;:18::i;:::-;13072:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;13022:127;13015:134;12726:429;-1:-1:-1;;;12726:429:1:o;1247:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3031:182::-;3108:7;-1:-1:-1;;;;;3131:19:1;;3123:44;;;;-1:-1:-1;;;3123:44:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3181:26:1;;;;;:19;:26;;;;;;;3031:182::o;12620:100::-;12673:13;12702:12;12695:19;;;;;:::i;9284:2125::-;9389:9;;:31;;-1:-1:-1;;;9389:31:1;;9409:10;9389:31;;;5970:51:15;9374:12:1;;-1:-1:-1;;;;;9389:9:1;;:19;;5943:18:15;;9389:31:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9374:46;-1:-1:-1;9437:9:1;;9433:980;;9479:1;9469:7;:11;9461:52;;;;-1:-1:-1;;;9461:52:1;;;;;;;:::i;:::-;9546:14;;-1:-1:-1;;;9546:14:1;;;;9538:49;;;;-1:-1:-1;;;9538:49:1;;;;;;;:::i;:::-;9602:19;;-1:-1:-1;;;9602:19:1;;;;9594:56;;;;-1:-1:-1;;;9594:56:1;;;;;;;:::i;:::-;795:5;878:33;795:5;;878:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;9665:23:1;9657:63;;;;-1:-1:-1;;;9657:63:1;;;;;;;:::i;:::-;9753:18;;9735:14;:36;;9727:81;;;;-1:-1:-1;;;9727:81:1;;;;;;;:::i;:::-;795:5;9848:14;9823:22;;:39;;;;:::i;:::-;:58;;9815:103;;;;-1:-1:-1;;;9815:103:1;;;;;;;:::i;:::-;9985:18;;9953:10;9933:31;;;;:19;:31;;;;;;:48;;9967:14;;9933:48;:::i;:::-;:70;;9925:111;;;;-1:-1:-1;;;9925:111:1;;;;;;;:::i;:::-;10077:9;10051:22;10059:14;1013:10;10051:22;:::i;:::-;:35;;10043:76;;;;-1:-1:-1;;;10043:76:1;;;;;;;:::i;:::-;10133:9;10128:272;10152:14;10148:1;:18;10128:272;;;10244:22;;10184:15;;743:5;10202:21;743:5;835:4;10202:21;:::i;:::-;:39;;;;:::i;:::-;:64;;;;:::i;:::-;:68;;10269:1;10202:68;:::i;:::-;10184:86;;10307:1;10281:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;10337:10:1;10317:31;;;;:19;:31;;;;;:36;;10352:1;;10317:31;:36;;10352:1;;10317:36;:::i;:::-;;;;-1:-1:-1;10362:30:1;;-1:-1:-1;10372:10:1;10384:7;10362:9;:30::i;:::-;-1:-1:-1;10168:3:1;;;;:::i;:::-;;;;10128:272;;;;9433:980;10429:12;10425:973;;10460:14;;-1:-1:-1;;;10460:14:1;;;;10452:49;;;;-1:-1:-1;;;10452:49:1;;;;;;;:::i;:::-;10516:19;;-1:-1:-1;;;10516:19:1;;;;10508:56;;;;-1:-1:-1;;;10508:56:1;;;;;;;:::i;:::-;10592:10;10579:24;;;;:12;:24;;;;;;;;10571:64;;;;-1:-1:-1;;;10571:64:1;;;;;;;:::i;:::-;795:5;878:33;795:5;;878:33;:::i;:::-;:51;;;;:::i;:::-;1665:10:5;:17;10650:23:1;10642:63;;;;-1:-1:-1;;;10642:63:1;;;;;;;:::i;:::-;10738:18;;10720:14;:36;;10712:81;;;;-1:-1:-1;;;10712:81:1;;;;;;;:::i;:::-;795:5;10833:14;10808:22;;:39;;;;:::i;:::-;:58;;10800:103;;;;-1:-1:-1;;;10800:103:1;;;;;;;:::i;:::-;10970:18;;10938:10;10918:31;;;;:19;:31;;;;;;:48;;10952:14;;10918:48;:::i;:::-;:70;;10910:111;;;;-1:-1:-1;;;10910:111:1;;;;;;;:::i;:::-;11062:9;11036:22;11044:14;1013:10;11036:22;:::i;:::-;:35;;11028:76;;;;-1:-1:-1;;;11028:76:1;;;;;;;:::i;:::-;11118:9;11113:272;11137:14;11133:1;:18;11113:272;;;11229:22;;11169:15;;743:5;11187:21;743:5;835:4;11187:21;:::i;:::-;:39;;;;:::i;:::-;:64;;;;:::i;:::-;:68;;11254:1;11187:68;:::i;:::-;11169:86;;11292:1;11266:22;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;11322:10:1;11302:31;;;;:19;:31;;;;;:36;;11337:1;;11302:31;:36;;11337:1;;11302:36;:::i;:::-;;;;-1:-1:-1;11347:30:1;;-1:-1:-1;11357:10:1;11369:7;11347:9;:30::i;:::-;-1:-1:-1;11153:3:1;;;;:::i;:::-;;;;11113:272;;1899:192:13;1072:6;;-1:-1:-1;;;;;1072:6:13;681:10:2;1219:23:13;1211:68;;;;-1:-1:-1;;;1211:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:13;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:13;;8331:2:15;1980:73:13::1;::::0;::::1;8313:21:15::0;8370:2;8350:18;;;8343:30;8409:34;8389:18;;;8382:62;-1:-1:-1;;;8460:18:15;;;8453:36;8506:19;;1980:73:13::1;8129:402:15::0;1980:73:13::1;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;1481:305:4:-;1583:4;-1:-1:-1;;;;;;1620:40:4;;-1:-1:-1;;;1620:40:4;;:105;;-1:-1:-1;;;;;;;1677:48:4;;-1:-1:-1;;;1677:48:4;1620:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:3;;;1742:36:4;787:157:3;11361:174:4;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:4;-1:-1:-1;;;;;11436:29:4;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:4;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;7783:73;;;;-1:-1:-1;;;7783:73:4;;11254:2:15;7783:73:4;;;11236:21:15;11293:2;11273:18;;;11266:30;11332:34;11312:18;;;11305:62;-1:-1:-1;;;11383:18:15;;;11376:42;11435:19;;7783:73:4;11052:408:15;7783:73:4;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:4;:7;-1:-1:-1;;;;;7925:16:4;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:4;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:4;;7925:51;:87;;;-1:-1:-1;;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7980:32;7917:96;7673:348;-1:-1:-1;;;;7673:348:4:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:4;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:4;;10789:85;;;;-1:-1:-1;;;10789:85:4;;15471:2:15;10789:85:4;;;15453:21:15;15510:2;15490:18;;;15483:30;15549:34;15529:18;;;15522:62;-1:-1:-1;;;15600:18:15;;;15593:39;15649:19;;10789:85:4;15269:405:15;10789:85:4;-1:-1:-1;;;;;10893:16:4;;10885:65;;;;-1:-1:-1;;;10885:65:4;;9095:2:15;10885:65:4;;;9077:21:15;9134:2;9114:18;;;9107:30;9173:34;9153:18;;;9146:62;-1:-1:-1;;;9224:18:15;;;9217:34;9268:19;;10885:65:4;8893:400:15;10885:65:4;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:4;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:4;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:4;-1:-1:-1;;;;;11169:21:4;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;8363:110::-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;2099:173:13:-;2174:6;;;-1:-1:-1;;;;;2191:17:13;;;-1:-1:-1;;;;;;2191:17:13;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;6751:315:4:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:4;;;;;;;:::i;288:723:14:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:14;;;;;;;;;;;;-1:-1:-1;;;592:10:14;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:14;;-1:-1:-1;744:2:14;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:14;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:14;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:14;;;;;;;;-1:-1:-1;949:11:14;958:2;949:11;;:::i;:::-;;;818:154;;2613:589:5;-1:-1:-1;;;;;2819:18:5;;2815:187;;2854:40;2886:7;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164;2854:40;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:5;:4;-1:-1:-1;;;;;2916:10:5;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:5;;3012:183;;3049:45;3086:7;3049:36;:45::i;3012:183::-;3122:4;-1:-1:-1;;;;;3116:10:5;:2;-1:-1:-1;;;;;3116:10:5;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;8700:321:4:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:4;;;;;;;:::i;12100:803::-;12255:4;-1:-1:-1;;;;;12276:13:4;;1066:20:0;1114:8;12272:624:4;;12312:72;;-1:-1:-1;;;12312:72:4;;-1:-1:-1;;;;;12312:36:4;;;;;:72;;681:10:2;;12363:4:4;;12369:7;;12378:5;;12312:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:4;;;;;;;;-1:-1:-1;;12312:72:4;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12558:13:4;;12554:272;;12601:60;;-1:-1:-1;;;12601:60:4;;;;;;;:::i;12554:272::-;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;-1:-1:-1;;;;;;12435:55:4;-1:-1:-1;;;12435:55:4;;-1:-1:-1;12428:62:4;;12272:624;-1:-1:-1;12880:4:4;12100:803;;;;;;:::o;4716:988:5:-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:5;;;5194:328;;-1:-1:-1;;;;;5265:18:5;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:5;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:5;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:5;;6252:46;;6703:26;;;;;;:::i;:::-;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:5:o;9357:382:4:-;-1:-1:-1;;;;;9437:16:4;;9429:61;;;;-1:-1:-1;;;9429:61:4;;13630:2:15;9429:61:4;;;13612:21:15;;;13649:18;;;13642:30;13708:34;13688:18;;;13681:62;13760:18;;9429:61:4;13428:356:15;9429:61:4;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;:30;9501:58;;;;-1:-1:-1;;;9501:58:4;;8738:2:15;9501:58:4;;;8720:21:15;8777:2;8757:18;;;8750:30;8816;8796:18;;;8789:58;8864:18;;9501:58:4;8536:352:15;9501:58:4;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:4;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:4;-1:-1:-1;;;;;9659:21:4;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:15;82:20;;-1:-1:-1;;;;;131:31:15;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:15;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:15:o;2807:615::-;2893:6;2901;2954:2;2942:9;2933:7;2929:23;2925:32;2922:52;;;2970:1;2967;2960:12;2922:52;3010:9;2997:23;3039:18;3080:2;3072:6;3069:14;3066:34;;;3096:1;3093;3086:12;3066:34;3134:6;3123:9;3119:22;3109:32;;3179:7;3172:4;3168:2;3164:13;3160:27;3150:55;;3201:1;3198;3191:12;3150:55;3241:2;3228:16;3267:2;3259:6;3256:14;3253:34;;;3283:1;3280;3273:12;3253:34;3336:7;3331:2;3321:6;3318:1;3314:14;3310:2;3306:23;3302:32;3299:45;3296:65;;;3357:1;3354;3347:12;3296:65;3388:2;3380:11;;;;;3410:6;;-1:-1:-1;2807:615:15;;-1:-1:-1;;;;2807:615:15:o;3427:180::-;3483:6;3536:2;3524:9;3515:7;3511:23;3507:32;3504:52;;;3552:1;3549;3542:12;3504:52;3575:26;3591:9;3575:26;:::i;3612:245::-;3670:6;3723:2;3711:9;3702:7;3698:23;3694:32;3691:52;;;3739:1;3736;3729:12;3691:52;3778:9;3765:23;3797:30;3821:5;3797:30;:::i;3862:249::-;3931:6;3984:2;3972:9;3963:7;3959:23;3955:32;3952:52;;;4000:1;3997;3990:12;3952:52;4032:9;4026:16;4051:30;4075:5;4051:30;:::i;4116:592::-;4187:6;4195;4248:2;4236:9;4227:7;4223:23;4219:32;4216:52;;;4264:1;4261;4254:12;4216:52;4304:9;4291:23;4333:18;4374:2;4366:6;4363:14;4360:34;;;4390:1;4387;4380:12;4360:34;4428:6;4417:9;4413:22;4403:32;;4473:7;4466:4;4462:2;4458:13;4454:27;4444:55;;4495:1;4492;4485:12;4444:55;4535:2;4522:16;4561:2;4553:6;4550:14;4547:34;;;4577:1;4574;4567:12;4547:34;4622:7;4617:2;4608:6;4604:2;4600:15;4596:24;4593:37;4590:57;;;4643:1;4640;4633:12;4713:180;4772:6;4825:2;4813:9;4804:7;4800:23;4796:32;4793:52;;;4841:1;4838;4831:12;4793:52;-1:-1:-1;4864:23:15;;4713:180;-1:-1:-1;4713:180:15:o;4898:184::-;4968:6;5021:2;5009:9;5000:7;4996:23;4992:32;4989:52;;;5037:1;5034;5027:12;4989:52;-1:-1:-1;5060:16:15;;4898:184;-1:-1:-1;4898:184:15:o;5087:257::-;5128:3;5166:5;5160:12;5193:6;5188:3;5181:19;5209:63;5265:6;5258:4;5253:3;5249:14;5242:4;5235:5;5231:16;5209:63;:::i;:::-;5326:2;5305:15;-1:-1:-1;;5301:29:15;5292:39;;;;5333:4;5288:50;;5087:257;-1:-1:-1;;5087:257:15:o;5349:470::-;5528:3;5566:6;5560:13;5582:53;5628:6;5623:3;5616:4;5608:6;5604:17;5582:53;:::i;:::-;5698:13;;5657:16;;;;5720:57;5698:13;5657:16;5754:4;5742:17;;5720:57;:::i;:::-;5793:20;;5349:470;-1:-1:-1;;;;5349:470:15:o;6032:488::-;-1:-1:-1;;;;;6301:15:15;;;6283:34;;6353:15;;6348:2;6333:18;;6326:43;6400:2;6385:18;;6378:34;;;6448:3;6443:2;6428:18;;6421:31;;;6226:4;;6469:45;;6494:19;;6486:6;6469:45;:::i;:::-;6461:53;6032:488;-1:-1:-1;;;;;;6032:488:15:o;6717:219::-;6866:2;6855:9;6848:21;6829:4;6886:44;6926:2;6915:9;6911:18;6903:6;6886:44;:::i;6941:352::-;7143:2;7125:21;;;7182:2;7162:18;;;7155:30;7221;7216:2;7201:18;;7194:58;7284:2;7269:18;;6941:352::o;7710:414::-;7912:2;7894:21;;;7951:2;7931:18;;;7924:30;7990:34;7985:2;7970:18;;7963:62;-1:-1:-1;;;8056:2:15;8041:18;;8034:48;8114:3;8099:19;;7710:414::o;9652:348::-;9854:2;9836:21;;;9893:2;9873:18;;;9866:30;9932:26;9927:2;9912:18;;9905:54;9991:2;9976:18;;9652:348::o;10005:336::-;10207:2;10189:21;;;10246:2;10226:18;;;10219:30;-1:-1:-1;;;10280:2:15;10265:18;;10258:42;10332:2;10317:18;;10005:336::o;10695:352::-;10897:2;10879:21;;;10936:2;10916:18;;;10909:30;10975;10970:2;10955:18;;10948:58;11038:2;11023:18;;10695:352::o;12711:351::-;12913:2;12895:21;;;12952:2;12932:18;;;12925:30;12991:29;12986:2;12971:18;;12964:57;13053:2;13038:18;;12711:351::o;13067:356::-;13269:2;13251:21;;;13288:18;;;13281:30;13347:34;13342:2;13327:18;;13320:62;13414:2;13399:18;;13067:356::o;13789:346::-;13991:2;13973:21;;;14030:2;14010:18;;;14003:30;-1:-1:-1;;;14064:2:15;14049:18;;14042:52;14126:2;14111:18;;13789:346::o;14553:356::-;14755:2;14737:21;;;14774:18;;;14767:30;14833:34;14828:2;14813:18;;14806:62;14900:2;14885:18;;14553:356::o;14914:350::-;15116:2;15098:21;;;15155:2;15135:18;;;15128:30;15194:28;15189:2;15174:18;;15167:56;15255:2;15240:18;;14914:350::o;16081:413::-;16283:2;16265:21;;;16322:2;16302:18;;;16295:30;16361:34;16356:2;16341:18;;16334:62;-1:-1:-1;;;16427:2:15;16412:18;;16405:47;16484:3;16469:19;;16081:413::o;16912:352::-;17114:2;17096:21;;;17153:2;17133:18;;;17126:30;17192;17187:2;17172:18;;17165:58;17255:2;17240:18;;16912:352::o;17269:351::-;17471:2;17453:21;;;17510:2;17490:18;;;17483:30;17549:29;17544:2;17529:18;;17522:57;17611:2;17596:18;;17269:351::o;17625:356::-;17827:2;17809:21;;;17846:18;;;17839:30;17905:34;17900:2;17885:18;;17878:62;17972:2;17957:18;;17625:356::o;18168:128::-;18208:3;18239:1;18235:6;18232:1;18229:13;18226:39;;;18245:18;;:::i;:::-;-1:-1:-1;18281:9:15;;18168:128::o;18301:120::-;18341:1;18367;18357:35;;18372:18;;:::i;:::-;-1:-1:-1;18406:9:15;;18301:120::o;18426:168::-;18466:7;18532:1;18528;18524:6;18520:14;18517:1;18514:21;18509:1;18502:9;18495:17;18491:45;18488:71;;;18539:18;;:::i;:::-;-1:-1:-1;18579:9:15;;18426:168::o;18599:125::-;18639:4;18667:1;18664;18661:8;18658:34;;;18672:18;;:::i;:::-;-1:-1:-1;18709:9:15;;18599:125::o;18729:258::-;18801:1;18811:113;18825:6;18822:1;18819:13;18811:113;;;18901:11;;;18895:18;18882:11;;;18875:39;18847:2;18840:10;18811:113;;;18942:6;18939:1;18936:13;18933:48;;;-1:-1:-1;;18977:1:15;18959:16;;18952:27;18729:258::o;18992:380::-;19071:1;19067:12;;;;19114;;;19135:61;;19189:4;19181:6;19177:17;19167:27;;19135:61;19242:2;19234:6;19231:14;19211:18;19208:38;19205:161;;;19288:10;19283:3;19279:20;19276:1;19269:31;19323:4;19320:1;19313:15;19351:4;19348:1;19341:15;19205:161;;18992:380;;;:::o;19377:135::-;19416:3;-1:-1:-1;;19437:17:15;;19434:43;;;19457:18;;:::i;:::-;-1:-1:-1;19504:1:15;19493:13;;19377:135::o;19517:112::-;19549:1;19575;19565:35;;19580:18;;:::i;:::-;-1:-1:-1;19614:9:15;;19517:112::o;19634:127::-;19695:10;19690:3;19686:20;19683:1;19676:31;19726:4;19723:1;19716:15;19750:4;19747:1;19740:15;19766:127;19827:10;19822:3;19818:20;19815:1;19808:31;19858:4;19855:1;19848:15;19882:4;19879:1;19872:15;19898:127;19959:10;19954:3;19950:20;19947:1;19940:31;19990:4;19987:1;19980:15;20014:4;20011:1;20004:15;20030:127;20091:10;20086:3;20082:20;20079:1;20072:31;20122:4;20119:1;20112:15;20146:4;20143:1;20136:15;20162:127;20223:10;20218:3;20214:20;20211:1;20204:31;20254:4;20251:1;20244:15;20278:4;20275:1;20268:15;20294:131;-1:-1:-1;;;;;;20368:32:15;;20358:43;;20348:71;;20415:1;20412;20405:12

Swarm Source

ipfs://e33282650782426833cfb3702b2c766c48e260b1bdfff60ec00f4ee3d0d532ef
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.