ETH Price: $3,275.47 (-3.96%)
Gas: 14 Gwei

Token

infiNFT alpha poster (∞AP)
 

Overview

Max Total Supply

10 ∞AP

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
mkdragon.eth
Balance
1 ∞AP
0xA0ab8Eddf14a5174688E2eb1bdb69CDF377142C3
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:
infiNFTalphaposter

Compiler Version
v0.5.14+commit.1f1aaa4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-06-02
*/

pragma solidity ^0.5.14;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

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

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

// File: node_modules\@openzeppelin\contracts\ownership\Ownable.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.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = _msgSender();
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

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

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}


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

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

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

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

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

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


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

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing 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.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

    function increment(Counter storage counter) internal {
        counter._value += 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _ownedTokensCount[owner].current();
    }

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

        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transferFrom(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _clearApproval(tokenId);

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

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

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

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

        _clearApproval(tokenId);

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

        _tokenOwner[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * This function is deprecated.
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        internal returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }

        bytes4 retval = IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data);
        return (retval == _ERC721_RECEIVED);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        _removeTokenFromOwnerEnumeration(from, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);
    }

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

        _addTokenToOwnerEnumeration(to, tokenId);

        _addTokenToAllTokensEnumeration(tokenId);
    }

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

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

        _removeTokenFromAllTokensEnumeration(tokenId);
    }

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

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

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

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

        uint256 lastTokenIndex = _ownedTokens[from].length.sub(1);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

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

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

        // This also deletes the contents at the last position of the array
        _ownedTokens[from].length--;

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

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

        uint256 lastTokenIndex = _allTokens.length.sub(1);
        uint256 tokenIndex = _allTokensIndex[tokenId];

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

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

        // This also deletes the contents at the last position of the array
        _allTokens.length--;
        _allTokensIndex[tokenId] = 0;
    }
}

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

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

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;
    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

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

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

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

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


    /**
     * @dev Returns an URI for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
     

    /**
     * @dev Internal function to set the token URI for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function _setTokenURI(uint256 tokenId, string memory uri) internal {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = uri;
    }

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

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

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


contract infiNFTalphaposter is ERC721Full, Ownable {
    using SafeMath for uint256;
    using Roles for Roles.Role;

    Roles.Role private _curators;
    
    uint256 public totalArtPieces;
    string public fileIPFSReferenceURL;
    string public fileArweaveReferenceURL;
    string public tokenReferenceURI;
    uint256 public alphaPosterCapacity = 10;

    mapping (address => bool) internal addressApprovedForMinting;
    
    mapping (uint256 => string) internal fileIPFSHashStorage;
    mapping (uint256 => string) internal fileArweaveHashStorage;
    mapping (uint256 => string) internal artTitleStorage;
    mapping (uint256 => string) internal artistNameStorage;
    mapping (uint256 => string) internal artistNoteStorage;
    mapping (uint256 => uint256) internal royaltyFeeStorage;
    mapping (uint256 => address) internal artistAddressStorage;
    mapping (uint256 => uint256) internal editionNumberStorage;
    mapping (uint256 => uint256) internal totalEditionsStorage;
    mapping (uint256 => string) internal fileTypeStorage;
    
    event NewArtMetadata(uint256 tokenID,string artTitle, string artistName, string artistNote, uint256 editionNumber, uint256 totalCap, string fileType);
    event NewArtImageRefs(uint256 tokenID, string fileIPFSHash, string fileArweaveHash);
    event NewArtRoyaltyInfo(uint256 tokenID, uint256 royaltyFee, address artistAddress); 
    
    constructor() ERC721Full("infiNFT alpha poster", "∞AP") public {
        fileIPFSReferenceURL = "https://gateway.pinata.cloud/ipfs/";
        fileArweaveReferenceURL = "https://arweave.rocks/";
        tokenReferenceURI = "https://infiNFTalphaposter.azurewebsites.net/api/HttpTrigger?id=";
        _curators.add(0x63a9dbCe75413036B2B778E670aaBd4493aAF9F3);
        _curators.add(0xA096b47EbF7727d01Ff4F09c34Fc6591f2c375F0);
        _curators.add(0x442DCCEe68425828C106A3662014B4F131e3BD9b);
    }
    
    function getCoreMetadata(uint256 tokenID) public view returns (string memory fileIPFSHashByID, string memory fileArweaveHashByID, string memory artTitleByID, string memory artistNameByID, string memory artistNoteByID, uint256 editionNumberByID, uint256 totalEditionsByID, string memory fileTypeByID) {
      
      fileIPFSHashByID = fileIPFSHashStorage[tokenID];
      fileArweaveHashByID = fileArweaveHashStorage[tokenID];
      artTitleByID = artTitleStorage[tokenID];
      artistNameByID = artistNameStorage[tokenID];
      artistNoteByID = artistNoteStorage[tokenID];
      editionNumberByID = editionNumberStorage[tokenID];
      totalEditionsByID = totalEditionsStorage[tokenID];
      fileTypeByID = fileTypeStorage[tokenID];
    }
    
    function getRoyaltyData(uint256 tokenID) public view returns (address artistAddressByID, uint256 royaltyFeeByID) {
      artistAddressByID = artistAddressStorage[tokenID];
      royaltyFeeByID = royaltyFeeStorage[tokenID];
    }
    
    function getImageLink(uint256 tokenID) public view returns (string memory fileIPFSURL, string memory fileArweaveURL) {
        fileIPFSURL = string(abi.encodePacked(fileIPFSReferenceURL, fileIPFSHashStorage[tokenID]));
        fileArweaveURL = string(abi.encodePacked(fileArweaveReferenceURL, fileArweaveHashStorage[tokenID]));
    }

    function updateIPFSLink(string memory newIPFSURL) public {
        require(_curators.has(msg.sender), "Only Curators can change IPFS pointer");
        fileIPFSReferenceURL = newIPFSURL;
    }
    
    function updateArweaveLink(string memory newArweaveURL) public {
        require(_curators.has(msg.sender), "Only Curators can change Arweave pointer");
        fileArweaveReferenceURL = newArweaveURL;
    }
    
    function updateURI(string memory newURI) public {
        require(_curators.has(msg.sender), "Only Curators can update URI");
        tokenReferenceURI = newURI;
    }
    
    function createPoster(string memory fileIPFSHash, string memory fileArweaveHash, string memory artTitle, string memory artistName, string memory artistNote, uint256 royaltyFee, address artistAddress, uint256 totalCap, string memory fileType) public onlyOwner {

    for (uint8 i = 1; i <= totalCap; i++) { 
        totalArtPieces = totalArtPieces + 1;
    
    fileIPFSHashStorage[totalArtPieces] = fileIPFSHash;
    fileArweaveHashStorage[totalArtPieces] = fileArweaveHash;
    artTitleStorage[totalArtPieces] = artTitle;    
    artistNameStorage[totalArtPieces] = artistName;   
    artistNoteStorage[totalArtPieces] = artistNote;
    royaltyFeeStorage[totalArtPieces] = royaltyFee;
    artistAddressStorage[totalArtPieces] = artistAddress;
    editionNumberStorage[totalArtPieces] = i;
    totalEditionsStorage[totalArtPieces] = totalCap;
    fileTypeStorage[totalArtPieces] = fileType;
    
    _registerToken();
    
    emit NewArtMetadata(totalArtPieces, artTitle, artistName, artistNote, i, totalCap, fileType);
    emit NewArtImageRefs(totalArtPieces, fileIPFSHash, fileArweaveHash);
    emit NewArtRoyaltyInfo(totalArtPieces, royaltyFee, artistAddressStorage[totalArtPieces]);
    
    }
    
    }   

    function _registerToken() private {
        uint256 tokenId = totalArtPieces;
        require(totalArtPieces <= alphaPosterCapacity, "A total of 10 posters were made to celebrate the Alpha Launch Party");
        
        _mint(msg.sender, tokenId);
        
    }
    
    function tokenURI(uint256 tokenID) external view returns (string memory) {
        return string(abi.encodePacked(tokenReferenceURI, integerToString(tokenID)));
    } 

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

   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenID","type":"uint256"},{"indexed":false,"internalType":"string","name":"fileIPFSHash","type":"string"},{"indexed":false,"internalType":"string","name":"fileArweaveHash","type":"string"}],"name":"NewArtImageRefs","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenID","type":"uint256"},{"indexed":false,"internalType":"string","name":"artTitle","type":"string"},{"indexed":false,"internalType":"string","name":"artistName","type":"string"},{"indexed":false,"internalType":"string","name":"artistNote","type":"string"},{"indexed":false,"internalType":"uint256","name":"editionNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalCap","type":"uint256"},{"indexed":false,"internalType":"string","name":"fileType","type":"string"}],"name":"NewArtMetadata","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"royaltyFee","type":"uint256"},{"indexed":false,"internalType":"address","name":"artistAddress","type":"address"}],"name":"NewArtRoyaltyInfo","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"alphaPosterCapacity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"fileIPFSHash","type":"string"},{"internalType":"string","name":"fileArweaveHash","type":"string"},{"internalType":"string","name":"artTitle","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"string","name":"artistNote","type":"string"},{"internalType":"uint256","name":"royaltyFee","type":"uint256"},{"internalType":"address","name":"artistAddress","type":"address"},{"internalType":"uint256","name":"totalCap","type":"uint256"},{"internalType":"string","name":"fileType","type":"string"}],"name":"createPoster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"fileArweaveReferenceURL","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fileIPFSReferenceURL","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getCoreMetadata","outputs":[{"internalType":"string","name":"fileIPFSHashByID","type":"string"},{"internalType":"string","name":"fileArweaveHashByID","type":"string"},{"internalType":"string","name":"artTitleByID","type":"string"},{"internalType":"string","name":"artistNameByID","type":"string"},{"internalType":"string","name":"artistNoteByID","type":"string"},{"internalType":"uint256","name":"editionNumberByID","type":"uint256"},{"internalType":"uint256","name":"totalEditionsByID","type":"uint256"},{"internalType":"string","name":"fileTypeByID","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getImageLink","outputs":[{"internalType":"string","name":"fileIPFSURL","type":"string"},{"internalType":"string","name":"fileArweaveURL","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getRoyaltyData","outputs":[{"internalType":"address","name":"artistAddressByID","type":"address"},{"internalType":"uint256","name":"royaltyFeeByID","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenReferenceURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalArtPieces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"newArweaveURL","type":"string"}],"name":"updateArweaveLink","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"newIPFSURL","type":"string"}],"name":"updateIPFSLink","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"updateURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

6080604052600a6012553480156200001657600080fd5b506040518060400160405280601481526020017f696e66694e465420616c70686120706f737465720000000000000000000000008152506040518060400160405280600581526020017fe2889e415000000000000000000000000000000000000000000000000000000081525081816200009d6301ffc9a760e01b6200032d60201b60201c565b620000b56380ac58cd60e01b6200032d60201b60201c565b620000cd63780e9d6360e01b6200032d60201b60201c565b8160099080519060200190620000e592919062000602565b5080600a9080519060200190620000fe92919062000602565b5062000117635b5e139f60e01b6200032d60201b60201c565b505050506200012b6200043660201b60201c565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3604051806060016040528060228152602001620050ac60229139600f90805190602001906200021992919062000602565b506040518060400160405280601681526020017f68747470733a2f2f617277656176652e726f636b732f00000000000000000000815250601090805190602001906200026792919062000602565b506040518060600160405280604081526020016200506c60409139601190805190602001906200029992919062000602565b50620002c97363a9dbce75413036b2b778e670aabd4493aaf9f3600d6200043e60201b620045b81790919060201c565b620002f873a096b47ebf7727d01ff4f09c34fc6591f2c375f0600d6200043e60201b620045b81790919060201c565b6200032773442dccee68425828c106a3662014b4f131e3bd9b600d6200043e60201b620045b81790919060201c565b620006b1565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620003ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b6200045082826200052260201b60201c565b15620004c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620050ce6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200064557805160ff191683800117855562000676565b8280016001018555821562000676579182015b828111156200067557825182559160200191906001019062000658565b5b50905062000685919062000689565b5090565b620006ae91905b80821115620006aa57600081600090555060010162000690565b5090565b90565b6149ab80620006c16000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063793a08311161010f578063a65ff74c116100a2578063e985e9c511610071578063e985e9c5146113e6578063f1def99514611462578063f2fde38b1461151d578063fd73d81c14611561576101f0565b8063a65ff74c1461110a578063b88d4fde1461117f578063c30f4a5a14611284578063c87b56dd1461133f576101f0565b80638f32d59b116100de5780638f32d59b14610f0257806395d89b4114610f245780639bdb6f8014610fa7578063a22cb465146110ba576101f0565b8063793a083114610a99578063842afe8a14610e7c57806385fadf9414610e9a5780638da5cb5b14610eb8576101f0565b80632f745c59116101875780636352211e116101565780636352211e1461094657806370a08231146109b4578063715018a614610a0c57806378954d1814610a16576101f0565b80632f745c59146105635780633ee98482146105c557806342842e0e146108965780634f6ccce714610904576101f0565b806318160ddd116101c357806318160ddd146103995780631ae6bbe6146103b75780631f9dbb2c1461047257806323b872dd146104f5576101f0565b806301ffc9a7146101f557806306fdde031461025a578063081812fc146102dd578063095ea7b31461034b575b600080fd5b6102406004803603602081101561020b57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506115e4565b604051808215151515815260200191505060405180910390f35b61026261164b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a2578082015181840152602081019050610287565b50505050905090810190601f1680156102cf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610309600480360360208110156102f357600080fd5b81019080803590602001909291905050506116ed565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103976004803603604081101561036157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611788565b005b6103a161196f565b6040518082815260200191505060405180910390f35b610470600480360360208110156103cd57600080fd5b81019080803590602001906401000000008111156103ea57600080fd5b8201836020820111156103fc57600080fd5b8035906020019184600183028401116401000000008311171561041e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061197c565b005b61047a6119ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104ba57808201518184015260208101905061049f565b50505050905090810190601f1680156104e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105616004803603606081101561050b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a9d565b005b6105af6004803603604081101561057957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b13565b6040518082815260200191505060405180910390f35b6105f1600480360360208110156105db57600080fd5b8101908080359060200190929190505050611bd2565b6040518080602001806020018060200180602001806020018981526020018881526020018060200187810387528f818151815260200191508051906020019080838360005b83811015610651578082015181840152602081019050610636565b50505050905090810190601f16801561067e5780820380516001836020036101000a031916815260200191505b5087810386528e818151815260200191508051906020019080838360005b838110156106b757808201518184015260208101905061069c565b50505050905090810190601f1680156106e45780820380516001836020036101000a031916815260200191505b5087810385528d818151815260200191508051906020019080838360005b8381101561071d578082015181840152602081019050610702565b50505050905090810190601f16801561074a5780820380516001836020036101000a031916815260200191505b5087810384528c818151815260200191508051906020019080838360005b83811015610783578082015181840152602081019050610768565b50505050905090810190601f1680156107b05780820380516001836020036101000a031916815260200191505b5087810383528b818151815260200191508051906020019080838360005b838110156107e95780820151818401526020810190506107ce565b50505050905090810190601f1680156108165780820380516001836020036101000a031916815260200191505b50878103825288818151815260200191508051906020019080838360005b8381101561084f578082015181840152602081019050610834565b50505050905090810190601f16801561087c5780820380516001836020036101000a031916815260200191505b509e50505050505050505050505050505060405180910390f35b610902600480360360608110156108ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061202a565b005b6109306004803603602081101561091a57600080fd5b810190808035906020019092919050505061204a565b6040518082815260200191505060405180910390f35b6109726004803603602081101561095c57600080fd5b81019080803590602001909291905050506120ca565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109f6600480360360208110156109ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612192565b6040518082815260200191505060405180910390f35b610a14612267565b005b610a1e6123a2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5e578082015181840152602081019050610a43565b50505050905090810190601f168015610a8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610e7a6004803603610120811015610ab057600080fd5b8101908080359060200190640100000000811115610acd57600080fd5b820183602082011115610adf57600080fd5b80359060200191846001830284011164010000000083111715610b0157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610b6457600080fd5b820183602082011115610b7657600080fd5b80359060200191846001830284011164010000000083111715610b9857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610bfb57600080fd5b820183602082011115610c0d57600080fd5b80359060200191846001830284011164010000000083111715610c2f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610c9257600080fd5b820183602082011115610ca457600080fd5b80359060200191846001830284011164010000000083111715610cc657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610d2957600080fd5b820183602082011115610d3b57600080fd5b80359060200191846001830284011164010000000083111715610d5d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610df457600080fd5b820183602082011115610e0657600080fd5b80359060200191846001830284011164010000000083111715610e2857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612440565b005b610e84612a56565b6040518082815260200191505060405180910390f35b610ea2612a5c565b6040518082815260200191505060405180910390f35b610ec0612a62565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610f0a612a8c565b604051808215151515815260200191505060405180910390f35b610f2c612aeb565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f6c578082015181840152602081019050610f51565b50505050905090810190601f168015610f995780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610fd360048036036020811015610fbd57600080fd5b8101908080359060200190929190505050612b8d565b604051808060200180602001838103835285818151815260200191508051906020019080838360005b83811015611017578082015181840152602081019050610ffc565b50505050905090810190601f1680156110445780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b8381101561107d578082015181840152602081019050611062565b50505050905090810190601f1680156110aa5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b611108600480360360408110156110d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612d5b565b005b6111366004803603602081101561112057600080fd5b8101908080359060200190929190505050612f13565b604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390f35b6112826004803603608081101561119557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156111fc57600080fd5b82018360208201111561120e57600080fd5b8035906020019184600183028401116401000000008311171561123057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612f67565b005b61133d6004803603602081101561129a57600080fd5b81019080803590602001906401000000008111156112b757600080fd5b8201836020820111156112c957600080fd5b803590602001918460018302840111640100000000831117156112eb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612fdf565b005b61136b6004803603602081101561135557600080fd5b810190808035906020019092919050505061307f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156113ab578082015181840152602081019050611390565b50505050905090810190601f1680156113d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b611448600480360360408110156113fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613157565b604051808215151515815260200191505060405180910390f35b61151b6004803603602081101561147857600080fd5b810190808035906020019064010000000081111561149557600080fd5b8201836020820111156114a757600080fd5b803590602001918460018302840111640100000000831117156114c957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506131eb565b005b61155f6004803603602081101561153357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061326e565b005b6115696132f4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156115a957808201518184015260208101905061158e565b50505050905090810190601f1680156115d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116e35780601f106116b8576101008083540402835291602001916116e3565b820191906000526020600020905b8154815290600101906020018083116116c657829003601f168201915b5050505050905090565b60006116f882613392565b61174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061483f602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611793826120ca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561181a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806148b66021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611839613404565b73ffffffffffffffffffffffffffffffffffffffff161480611868575061186781611862613404565b613157565b5b6118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806147b46038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600780549050905090565b61199033600d61340c90919063ffffffff16565b6119e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061473f6025913960400191505060405180910390fd5b80600f90805190602001906119fb9291906144e7565b5050565b60108054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a955780601f10611a6a57610100808354040283529160200191611a95565b820191906000526020600020905b815481529060010190602001808311611a7857829003601f168201915b505050505081565b611aae611aa8613404565b826134ea565b611b03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061491a6031913960400191505060405180910390fd5b611b0e8383836135de565b505050565b6000611b1e83612192565b8210611b75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806146bc602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110611bbf57fe5b9060005260206000200154905092915050565b60608060608060606000806060601460008a81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c865780601f10611c5b57610100808354040283529160200191611c86565b820191906000526020600020905b815481529060010190602001808311611c6957829003601f168201915b50505050509750601560008a81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d345780601f10611d0957610100808354040283529160200191611d34565b820191906000526020600020905b815481529060010190602001808311611d1757829003601f168201915b50505050509650601660008a81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611de25780601f10611db757610100808354040283529160200191611de2565b820191906000526020600020905b815481529060010190602001808311611dc557829003601f168201915b50505050509550601760008a81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e905780601f10611e6557610100808354040283529160200191611e90565b820191906000526020600020905b815481529060010190602001808311611e7357829003601f168201915b50505050509450601860008a81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f3e5780601f10611f1357610100808354040283529160200191611f3e565b820191906000526020600020905b815481529060010190602001808311611f2157829003601f168201915b50505050509350601b60008a8152602001908152602001600020549250601c60008a8152602001908152602001600020549150601d60008a81526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120185780601f10611fed57610100808354040283529160200191612018565b820191906000526020600020905b815481529060010190602001808311611ffb57829003601f168201915b50505050509050919395975091939597565b61204583838360405180602001604052806000815250612f67565b505050565b600061205461196f565b82106120ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061494b602c913960400191505060405180910390fd5b600782815481106120b857fe5b90600052602060002001549050919050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806148166029913960400191505060405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806147ec602a913960400191505060405180910390fd5b612260600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613602565b9050919050565b61226f612a8c565b6122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60118054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124385780601f1061240d57610100808354040283529160200191612438565b820191906000526020600020905b81548152906001019060200180831161241b57829003601f168201915b505050505081565b612448612a8c565b6124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600190505b828160ff1611612a4a576001600e5401600e819055508960146000600e54815260200190815260200160002090805190602001906125009291906144e7565b508860156000600e548152602001908152602001600020908051906020019061252a9291906144e7565b508760166000600e54815260200190815260200160002090805190602001906125549291906144e7565b508660176000600e548152602001908152602001600020908051906020019061257e9291906144e7565b508560186000600e54815260200190815260200160002090805190602001906125a89291906144e7565b508460196000600e5481526020019081526020016000208190555083601a6000600e54815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060ff16601b6000600e5481526020019081526020016000208190555082601c6000600e5481526020019081526020016000208190555081601d6000600e54815260200190815260200160002090805190602001906126779291906144e7565b50612680613610565b7fcbbea1d686aaab4aedff549a0aeaee8b3892f069f1e0154edaa1e6ce7095be18600e54898989858888604051808881526020018060200180602001806020018760ff1681526020018681526020018060200185810385528b818151815260200191508051906020019080838360005b8381101561270b5780820151818401526020810190506126f0565b50505050905090810190601f1680156127385780820380516001836020036101000a031916815260200191505b5085810384528a818151815260200191508051906020019080838360005b83811015612771578082015181840152602081019050612756565b50505050905090810190601f16801561279e5780820380516001836020036101000a031916815260200191505b50858103835289818151815260200191508051906020019080838360005b838110156127d75780820151818401526020810190506127bc565b50505050905090810190601f1680156128045780820380516001836020036101000a031916815260200191505b50858103825286818151815260200191508051906020019080838360005b8381101561283d578082015181840152602081019050612822565b50505050905090810190601f16801561286a5780820380516001836020036101000a031916815260200191505b509b50505050505050505050505060405180910390a17f554b8ec88e9796df3410a6b1e9233856c2613d4b93eb5a37e34224567d849969600e548b8b604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156128f05780820151818401526020810190506128d5565b50505050905090810190601f16801561291d5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b8381101561295657808201518184015260208101905061293b565b50505050905090810190601f1680156129835780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a17f423231a1c91c63d9ab32b93c11c2235d0be62c1f5a0906840e38f2685f2cf928600e5486601a6000600e54815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001935050505060405180910390a180806001019150506124c1565b50505050505050505050565b60125481565b600e5481565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612acf613404565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612b835780601f10612b5857610100808354040283529160200191612b83565b820191906000526020600020905b815481529060010190602001808311612b6657829003601f168201915b5050505050905090565b606080600f601460008581526020019081526020016000206040516020018083805460018160011615610100020316600290048015612c035780601f10612be1576101008083540402835291820191612c03565b820191906000526020600020905b815481529060010190602001808311612bef575b505082805460018160011615610100020316600290048015612c5c5780601f10612c3a576101008083540402835291820191612c5c565b820191906000526020600020905b815481529060010190602001808311612c48575b50509250505060405160208183030381529060405291506010601560008581526020019081526020016000206040516020018083805460018160011615610100020316600290048015612ce65780601f10612cc4576101008083540402835291820191612ce6565b820191906000526020600020905b815481529060010190602001808311612cd2575b505082805460018160011615610100020316600290048015612d3f5780601f10612d1d576101008083540402835291820191612d3f565b820191906000526020600020905b815481529060010190602001808311612d2b575b5050925050506040516020818303038152906040529050915091565b612d63613404565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060046000612e11613404565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612ebe613404565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600080601a600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915060196000848152602001908152602001600020549050915091565b612f78612f72613404565b836134ea565b612fcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061491a6031913960400191505060405180910390fd5b612fd984848484613681565b50505050565b612ff333600d61340c90919063ffffffff16565b613065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f6e6c792043757261746f72732063616e20757064617465205552490000000081525060200191505060405180910390fd5b806011908051906020019061307b9291906144e7565b5050565b6060601161308c836136f3565b60405160200180838054600181600116156101000203166002900480156130ea5780601f106130c85761010080835404028352918201916130ea565b820191906000526020600020905b8154815290600101906020018083116130d6575b505082805190602001908083835b6020831061311b57805182526020820191506020810190506020830392506130f8565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6131ff33600d61340c90919063ffffffff16565b613254576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806146946028913960400191505060405180910390fd5b806010908051906020019061326a9291906144e7565b5050565b613276612a8c565b6132e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6132f181613820565b50565b600f8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561338a5780601f1061335f5761010080835404028352916020019161338a565b820191906000526020600020905b81548152906001019060200180831161336d57829003601f168201915b505050505081565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061486b6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006134f582613392565b61354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614788602c913960400191505060405180910390fd5b6000613555836120ca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806135c457508373ffffffffffffffffffffffffffffffffffffffff166135ac846116ed565b73ffffffffffffffffffffffffffffffffffffffff16145b806135d557506135d48185613157565b5b91505092915050565b6135e9838383613966565b6135f38382613bc1565b6135fd8282613d5f565b505050565b600081600001549050919050565b6000600e549050601254600e541115613674576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260438152602001806148d76043913960600191505060405180910390fd5b61367e3382613e26565b50565b61368c8484846135de565b61369884848484613e47565b6136ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146e76032913960400191505060405180910390fd5b50505050565b6060600082141561373b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061381b565b600082905060005b60008214613765578080600101915050600a828161375d57fe5b049150613743565b6060816040519080825280601f01601f19166020018201604052801561379a5781602001600182028038833980820191505090505b50905060006001830390505b6000861461381357600a86816137b857fe5b0660300160f81b828280600190039350815181106137d257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161380b57fe5b0495506137a6565b819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156138a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147196026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff16613986826120ca565b73ffffffffffffffffffffffffffffffffffffffff16146139f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061488d6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806147646024913960400191505060405180910390fd5b613a8181614037565b613ac8600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206140f5565b613b0f600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614118565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613c196001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061412e90919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114613d06576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613c8657fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613cde57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003613d589190614567565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b613e308282614178565b613e3a8282613d5f565b613e4381614390565b5050565b6000613e688473ffffffffffffffffffffffffffffffffffffffff166143dc565b613e75576001905061402f565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02613e9b613404565b8887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613f57578082015181840152602081019050613f3c565b50505050905090810190601f168015613f845780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015613fa657600080fd5b505af1158015613fba573d6000803e3d6000fd5b505050506040513d6020811015613fd057600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146140f25760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b61410d6001826000015461412e90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b600061417083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614427565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561421b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61422481613392565b15614297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550614330600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614118565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b821415801561441e5750808214155b92505050919050565b60008383111582906144d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561449957808201518184015260208101905061447e565b50505050905090810190601f1680156144c65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061452857805160ff1916838001178555614556565b82800160010185558215614556579182015b8281111561455557825182559160200191906001019061453a565b5b5090506145639190614593565b5090565b81548183558181111561458e5781836000526020600020918201910161458d9190614593565b5b505050565b6145b591905b808211156145b1576000816000905550600101614599565b5090565b90565b6145c2828261340c565b15614635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fe4f6e6c792043757261746f72732063616e206368616e6765204172776561766520706f696e746572455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f6e6c792043757261746f72732063616e206368616e6765204950465320706f696e7465724552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724120746f74616c206f6620313020706f73746572732077657265206d61646520746f2063656c6562726174652074686520416c706861204c61756e63682050617274794552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a723158205dc44e082856e6954903825d407630338f47a5143854694ed3966b9b1b3dfe7364736f6c634300050e003268747470733a2f2f696e66694e4654616c706861706f737465722e617a75726577656273697465732e6e65742f6170692f48747470547269676765723f69643d68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063793a08311161010f578063a65ff74c116100a2578063e985e9c511610071578063e985e9c5146113e6578063f1def99514611462578063f2fde38b1461151d578063fd73d81c14611561576101f0565b8063a65ff74c1461110a578063b88d4fde1461117f578063c30f4a5a14611284578063c87b56dd1461133f576101f0565b80638f32d59b116100de5780638f32d59b14610f0257806395d89b4114610f245780639bdb6f8014610fa7578063a22cb465146110ba576101f0565b8063793a083114610a99578063842afe8a14610e7c57806385fadf9414610e9a5780638da5cb5b14610eb8576101f0565b80632f745c59116101875780636352211e116101565780636352211e1461094657806370a08231146109b4578063715018a614610a0c57806378954d1814610a16576101f0565b80632f745c59146105635780633ee98482146105c557806342842e0e146108965780634f6ccce714610904576101f0565b806318160ddd116101c357806318160ddd146103995780631ae6bbe6146103b75780631f9dbb2c1461047257806323b872dd146104f5576101f0565b806301ffc9a7146101f557806306fdde031461025a578063081812fc146102dd578063095ea7b31461034b575b600080fd5b6102406004803603602081101561020b57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506115e4565b604051808215151515815260200191505060405180910390f35b61026261164b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a2578082015181840152602081019050610287565b50505050905090810190601f1680156102cf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610309600480360360208110156102f357600080fd5b81019080803590602001909291905050506116ed565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103976004803603604081101561036157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611788565b005b6103a161196f565b6040518082815260200191505060405180910390f35b610470600480360360208110156103cd57600080fd5b81019080803590602001906401000000008111156103ea57600080fd5b8201836020820111156103fc57600080fd5b8035906020019184600183028401116401000000008311171561041e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061197c565b005b61047a6119ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104ba57808201518184015260208101905061049f565b50505050905090810190601f1680156104e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105616004803603606081101561050b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a9d565b005b6105af6004803603604081101561057957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b13565b6040518082815260200191505060405180910390f35b6105f1600480360360208110156105db57600080fd5b8101908080359060200190929190505050611bd2565b6040518080602001806020018060200180602001806020018981526020018881526020018060200187810387528f818151815260200191508051906020019080838360005b83811015610651578082015181840152602081019050610636565b50505050905090810190601f16801561067e5780820380516001836020036101000a031916815260200191505b5087810386528e818151815260200191508051906020019080838360005b838110156106b757808201518184015260208101905061069c565b50505050905090810190601f1680156106e45780820380516001836020036101000a031916815260200191505b5087810385528d818151815260200191508051906020019080838360005b8381101561071d578082015181840152602081019050610702565b50505050905090810190601f16801561074a5780820380516001836020036101000a031916815260200191505b5087810384528c818151815260200191508051906020019080838360005b83811015610783578082015181840152602081019050610768565b50505050905090810190601f1680156107b05780820380516001836020036101000a031916815260200191505b5087810383528b818151815260200191508051906020019080838360005b838110156107e95780820151818401526020810190506107ce565b50505050905090810190601f1680156108165780820380516001836020036101000a031916815260200191505b50878103825288818151815260200191508051906020019080838360005b8381101561084f578082015181840152602081019050610834565b50505050905090810190601f16801561087c5780820380516001836020036101000a031916815260200191505b509e50505050505050505050505050505060405180910390f35b610902600480360360608110156108ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061202a565b005b6109306004803603602081101561091a57600080fd5b810190808035906020019092919050505061204a565b6040518082815260200191505060405180910390f35b6109726004803603602081101561095c57600080fd5b81019080803590602001909291905050506120ca565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109f6600480360360208110156109ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612192565b6040518082815260200191505060405180910390f35b610a14612267565b005b610a1e6123a2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5e578082015181840152602081019050610a43565b50505050905090810190601f168015610a8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610e7a6004803603610120811015610ab057600080fd5b8101908080359060200190640100000000811115610acd57600080fd5b820183602082011115610adf57600080fd5b80359060200191846001830284011164010000000083111715610b0157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610b6457600080fd5b820183602082011115610b7657600080fd5b80359060200191846001830284011164010000000083111715610b9857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610bfb57600080fd5b820183602082011115610c0d57600080fd5b80359060200191846001830284011164010000000083111715610c2f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610c9257600080fd5b820183602082011115610ca457600080fd5b80359060200191846001830284011164010000000083111715610cc657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610d2957600080fd5b820183602082011115610d3b57600080fd5b80359060200191846001830284011164010000000083111715610d5d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610df457600080fd5b820183602082011115610e0657600080fd5b80359060200191846001830284011164010000000083111715610e2857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612440565b005b610e84612a56565b6040518082815260200191505060405180910390f35b610ea2612a5c565b6040518082815260200191505060405180910390f35b610ec0612a62565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610f0a612a8c565b604051808215151515815260200191505060405180910390f35b610f2c612aeb565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f6c578082015181840152602081019050610f51565b50505050905090810190601f168015610f995780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610fd360048036036020811015610fbd57600080fd5b8101908080359060200190929190505050612b8d565b604051808060200180602001838103835285818151815260200191508051906020019080838360005b83811015611017578082015181840152602081019050610ffc565b50505050905090810190601f1680156110445780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b8381101561107d578082015181840152602081019050611062565b50505050905090810190601f1680156110aa5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b611108600480360360408110156110d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612d5b565b005b6111366004803603602081101561112057600080fd5b8101908080359060200190929190505050612f13565b604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390f35b6112826004803603608081101561119557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156111fc57600080fd5b82018360208201111561120e57600080fd5b8035906020019184600183028401116401000000008311171561123057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612f67565b005b61133d6004803603602081101561129a57600080fd5b81019080803590602001906401000000008111156112b757600080fd5b8201836020820111156112c957600080fd5b803590602001918460018302840111640100000000831117156112eb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612fdf565b005b61136b6004803603602081101561135557600080fd5b810190808035906020019092919050505061307f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156113ab578082015181840152602081019050611390565b50505050905090810190601f1680156113d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b611448600480360360408110156113fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613157565b604051808215151515815260200191505060405180910390f35b61151b6004803603602081101561147857600080fd5b810190808035906020019064010000000081111561149557600080fd5b8201836020820111156114a757600080fd5b803590602001918460018302840111640100000000831117156114c957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506131eb565b005b61155f6004803603602081101561153357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061326e565b005b6115696132f4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156115a957808201518184015260208101905061158e565b50505050905090810190601f1680156115d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116e35780601f106116b8576101008083540402835291602001916116e3565b820191906000526020600020905b8154815290600101906020018083116116c657829003601f168201915b5050505050905090565b60006116f882613392565b61174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061483f602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611793826120ca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561181a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806148b66021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611839613404565b73ffffffffffffffffffffffffffffffffffffffff161480611868575061186781611862613404565b613157565b5b6118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806147b46038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600780549050905090565b61199033600d61340c90919063ffffffff16565b6119e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061473f6025913960400191505060405180910390fd5b80600f90805190602001906119fb9291906144e7565b5050565b60108054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a955780601f10611a6a57610100808354040283529160200191611a95565b820191906000526020600020905b815481529060010190602001808311611a7857829003601f168201915b505050505081565b611aae611aa8613404565b826134ea565b611b03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061491a6031913960400191505060405180910390fd5b611b0e8383836135de565b505050565b6000611b1e83612192565b8210611b75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806146bc602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110611bbf57fe5b9060005260206000200154905092915050565b60608060608060606000806060601460008a81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c865780601f10611c5b57610100808354040283529160200191611c86565b820191906000526020600020905b815481529060010190602001808311611c6957829003601f168201915b50505050509750601560008a81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d345780601f10611d0957610100808354040283529160200191611d34565b820191906000526020600020905b815481529060010190602001808311611d1757829003601f168201915b50505050509650601660008a81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611de25780601f10611db757610100808354040283529160200191611de2565b820191906000526020600020905b815481529060010190602001808311611dc557829003601f168201915b50505050509550601760008a81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e905780601f10611e6557610100808354040283529160200191611e90565b820191906000526020600020905b815481529060010190602001808311611e7357829003601f168201915b50505050509450601860008a81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f3e5780601f10611f1357610100808354040283529160200191611f3e565b820191906000526020600020905b815481529060010190602001808311611f2157829003601f168201915b50505050509350601b60008a8152602001908152602001600020549250601c60008a8152602001908152602001600020549150601d60008a81526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120185780601f10611fed57610100808354040283529160200191612018565b820191906000526020600020905b815481529060010190602001808311611ffb57829003601f168201915b50505050509050919395975091939597565b61204583838360405180602001604052806000815250612f67565b505050565b600061205461196f565b82106120ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061494b602c913960400191505060405180910390fd5b600782815481106120b857fe5b90600052602060002001549050919050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806148166029913960400191505060405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806147ec602a913960400191505060405180910390fd5b612260600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613602565b9050919050565b61226f612a8c565b6122e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60118054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124385780601f1061240d57610100808354040283529160200191612438565b820191906000526020600020905b81548152906001019060200180831161241b57829003601f168201915b505050505081565b612448612a8c565b6124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600190505b828160ff1611612a4a576001600e5401600e819055508960146000600e54815260200190815260200160002090805190602001906125009291906144e7565b508860156000600e548152602001908152602001600020908051906020019061252a9291906144e7565b508760166000600e54815260200190815260200160002090805190602001906125549291906144e7565b508660176000600e548152602001908152602001600020908051906020019061257e9291906144e7565b508560186000600e54815260200190815260200160002090805190602001906125a89291906144e7565b508460196000600e5481526020019081526020016000208190555083601a6000600e54815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060ff16601b6000600e5481526020019081526020016000208190555082601c6000600e5481526020019081526020016000208190555081601d6000600e54815260200190815260200160002090805190602001906126779291906144e7565b50612680613610565b7fcbbea1d686aaab4aedff549a0aeaee8b3892f069f1e0154edaa1e6ce7095be18600e54898989858888604051808881526020018060200180602001806020018760ff1681526020018681526020018060200185810385528b818151815260200191508051906020019080838360005b8381101561270b5780820151818401526020810190506126f0565b50505050905090810190601f1680156127385780820380516001836020036101000a031916815260200191505b5085810384528a818151815260200191508051906020019080838360005b83811015612771578082015181840152602081019050612756565b50505050905090810190601f16801561279e5780820380516001836020036101000a031916815260200191505b50858103835289818151815260200191508051906020019080838360005b838110156127d75780820151818401526020810190506127bc565b50505050905090810190601f1680156128045780820380516001836020036101000a031916815260200191505b50858103825286818151815260200191508051906020019080838360005b8381101561283d578082015181840152602081019050612822565b50505050905090810190601f16801561286a5780820380516001836020036101000a031916815260200191505b509b50505050505050505050505060405180910390a17f554b8ec88e9796df3410a6b1e9233856c2613d4b93eb5a37e34224567d849969600e548b8b604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156128f05780820151818401526020810190506128d5565b50505050905090810190601f16801561291d5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b8381101561295657808201518184015260208101905061293b565b50505050905090810190601f1680156129835780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a17f423231a1c91c63d9ab32b93c11c2235d0be62c1f5a0906840e38f2685f2cf928600e5486601a6000600e54815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001935050505060405180910390a180806001019150506124c1565b50505050505050505050565b60125481565b600e5481565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612acf613404565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612b835780601f10612b5857610100808354040283529160200191612b83565b820191906000526020600020905b815481529060010190602001808311612b6657829003601f168201915b5050505050905090565b606080600f601460008581526020019081526020016000206040516020018083805460018160011615610100020316600290048015612c035780601f10612be1576101008083540402835291820191612c03565b820191906000526020600020905b815481529060010190602001808311612bef575b505082805460018160011615610100020316600290048015612c5c5780601f10612c3a576101008083540402835291820191612c5c565b820191906000526020600020905b815481529060010190602001808311612c48575b50509250505060405160208183030381529060405291506010601560008581526020019081526020016000206040516020018083805460018160011615610100020316600290048015612ce65780601f10612cc4576101008083540402835291820191612ce6565b820191906000526020600020905b815481529060010190602001808311612cd2575b505082805460018160011615610100020316600290048015612d3f5780601f10612d1d576101008083540402835291820191612d3f565b820191906000526020600020905b815481529060010190602001808311612d2b575b5050925050506040516020818303038152906040529050915091565b612d63613404565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060046000612e11613404565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612ebe613404565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600080601a600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915060196000848152602001908152602001600020549050915091565b612f78612f72613404565b836134ea565b612fcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061491a6031913960400191505060405180910390fd5b612fd984848484613681565b50505050565b612ff333600d61340c90919063ffffffff16565b613065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f6e6c792043757261746f72732063616e20757064617465205552490000000081525060200191505060405180910390fd5b806011908051906020019061307b9291906144e7565b5050565b6060601161308c836136f3565b60405160200180838054600181600116156101000203166002900480156130ea5780601f106130c85761010080835404028352918201916130ea565b820191906000526020600020905b8154815290600101906020018083116130d6575b505082805190602001908083835b6020831061311b57805182526020820191506020810190506020830392506130f8565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6131ff33600d61340c90919063ffffffff16565b613254576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806146946028913960400191505060405180910390fd5b806010908051906020019061326a9291906144e7565b5050565b613276612a8c565b6132e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6132f181613820565b50565b600f8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561338a5780601f1061335f5761010080835404028352916020019161338a565b820191906000526020600020905b81548152906001019060200180831161336d57829003601f168201915b505050505081565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061486b6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006134f582613392565b61354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614788602c913960400191505060405180910390fd5b6000613555836120ca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806135c457508373ffffffffffffffffffffffffffffffffffffffff166135ac846116ed565b73ffffffffffffffffffffffffffffffffffffffff16145b806135d557506135d48185613157565b5b91505092915050565b6135e9838383613966565b6135f38382613bc1565b6135fd8282613d5f565b505050565b600081600001549050919050565b6000600e549050601254600e541115613674576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260438152602001806148d76043913960600191505060405180910390fd5b61367e3382613e26565b50565b61368c8484846135de565b61369884848484613e47565b6136ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146e76032913960400191505060405180910390fd5b50505050565b6060600082141561373b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061381b565b600082905060005b60008214613765578080600101915050600a828161375d57fe5b049150613743565b6060816040519080825280601f01601f19166020018201604052801561379a5781602001600182028038833980820191505090505b50905060006001830390505b6000861461381357600a86816137b857fe5b0660300160f81b828280600190039350815181106137d257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161380b57fe5b0495506137a6565b819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156138a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147196026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff16613986826120ca565b73ffffffffffffffffffffffffffffffffffffffff16146139f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061488d6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806147646024913960400191505060405180910390fd5b613a8181614037565b613ac8600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206140f5565b613b0f600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614118565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613c196001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061412e90919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114613d06576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613c8657fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613cde57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003613d589190614567565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b613e308282614178565b613e3a8282613d5f565b613e4381614390565b5050565b6000613e688473ffffffffffffffffffffffffffffffffffffffff166143dc565b613e75576001905061402f565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02613e9b613404565b8887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613f57578082015181840152602081019050613f3c565b50505050905090810190601f168015613f845780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015613fa657600080fd5b505af1158015613fba573d6000803e3d6000fd5b505050506040513d6020811015613fd057600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146140f25760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b61410d6001826000015461412e90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b600061417083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614427565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561421b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61422481613392565b15614297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550614330600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614118565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b821415801561441e5750808214155b92505050919050565b60008383111582906144d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561449957808201518184015260208101905061447e565b50505050905090810190601f1680156144c65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061452857805160ff1916838001178555614556565b82800160010185558215614556579182015b8281111561455557825182559160200191906001019061453a565b5b5090506145639190614593565b5090565b81548183558181111561458e5781836000526020600020918201910161458d9190614593565b5b505050565b6145b591905b808211156145b1576000816000905550600101614599565b5090565b90565b6145c2828261340c565b15614635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fe4f6e6c792043757261746f72732063616e206368616e6765204172776561766520706f696e746572455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f6e6c792043757261746f72732063616e206368616e6765204950465320706f696e7465724552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724120746f74616c206f6620313020706f73746572732077657265206d61646520746f2063656c6562726174652074686520416c706861204c61756e63682050617274794552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a723158205dc44e082856e6954903825d407630338f47a5143854694ed3966b9b1b3dfe7364736f6c634300050e0032

Deployed Bytecode Sourcemap

47726:6080:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47726:6080:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19244:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19244:135:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45712:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;45712:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24105:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24105:204:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23387:425;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23387:425:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37556:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51014:195;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51014:195:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51014:195:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51014:195:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51014:195:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;51014:195:0;;;;;;;;;;;;;;;:::i;:::-;;47970:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;47970:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25788:292;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25788:292:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37165:232;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37165:232:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49665:750;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49665:750:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;49665:750:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;49665:750:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;49665:750:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;49665:750:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;49665:750:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;49665:750:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26742:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26742:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37998:199;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37998:199:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22728:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22728:228:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22291:211;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22291:211:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2857:140;;;:::i;:::-;;48014:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;48014:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51625:1233;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;51625:1233:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51625:1233:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51625:1233:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51625:1233:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;51625:1233:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51625:1233:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51625:1233:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51625:1233:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;51625:1233:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51625:1233:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51625:1233:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51625:1233:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;51625:1233:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51625:1233:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51625:1233:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51625:1233:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;51625:1233:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51625:1233:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51625:1233:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51625:1233:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;51625:1233:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51625:1233:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51625:1233:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51625:1233:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;51625:1233:0;;;;;;;;;;;;;;;:::i;:::-;;48052:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47893:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2046:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2412:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45912:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;45912:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50670:336;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50670:336:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;50670:336:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;50670:336:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24610:254;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24610:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50427:231;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50427:231:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27613:272;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;27613:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;27613:272:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27613:272:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;27613:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;27613:272:0;;;;;;;;;;;;;;;:::i;:::-;;51443:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51443:170:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51443:170:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51443:170:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51443:170:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;51443:170:0;;;;;;;;;;;;;;;:::i;:::-;;53151:168;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;53151:168:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;53151:168:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25194:147;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25194:147:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;51221:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51221:210:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51221:210:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51221:210:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51221:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;51221:210:0;;;;;;;;;;;;;;;:::i;:::-;;3152:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3152:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;47929:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;47929:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19244:135;19314:4;19338:20;:33;19359:11;19338:33;;;;;;;;;;;;;;;;;;;;;;;;;;;19331:40;;19244:135;;;:::o;45712:85::-;45751:13;45784:5;45777:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45712:85;:::o;24105:204::-;24164:7;24192:16;24200:7;24192;:16::i;:::-;24184:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24277:15;:24;24293:7;24277:24;;;;;;;;;;;;;;;;;;;;;24270:31;;24105:204;;;:::o;23387:425::-;23451:13;23467:16;23475:7;23467;:16::i;:::-;23451:32;;23508:5;23502:11;;:2;:11;;;;23494:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23588:5;23572:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23597:37;23614:5;23621:12;:10;:12::i;:::-;23597:16;:37::i;:::-;23572:62;23564:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23758:2;23731:15;:24;23747:7;23731:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23796:7;23792:2;23776:28;;23785:5;23776:28;;;;;;;;;;;;23387:425;;;:::o;37556:96::-;37600:7;37627:10;:17;;;;37620:24;;37556:96;:::o;51014:195::-;51090:25;51104:10;51090:9;:13;;:25;;;;:::i;:::-;51082:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51191:10;51168:20;:33;;;;;;;;;;;;:::i;:::-;;51014:195;:::o;47970:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25788:292::-;25932:41;25951:12;:10;:12::i;:::-;25965:7;25932:18;:41::i;:::-;25924:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26040:32;26054:4;26060:2;26064:7;26040:13;:32::i;:::-;25788:292;;;:::o;37165:232::-;37245:7;37281:16;37291:5;37281:9;:16::i;:::-;37273:5;:24;37265:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37363:12;:19;37376:5;37363:19;;;;;;;;;;;;;;;37383:5;37363:26;;;;;;;;;;;;;;;;37356:33;;37165:232;;;;:::o;49665:750::-;49728:30;49760:33;49795:26;49823:28;49853;49883:25;49910;49937:26;50001:19;:28;50021:7;50001:28;;;;;;;;;;;49982:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50060:22;:31;50083:7;50060:31;;;;;;;;;;;50038:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50115:15;:24;50131:7;50115:24;;;;;;;;;;;50100:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50165:17;:26;50183:7;50165:26;;;;;;;;;;;50148:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50217:17;:26;50235:7;50217:26;;;;;;;;;;;50200:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50272:20;:29;50293:7;50272:29;;;;;;;;;;;;50252:49;;50330:20;:29;50351:7;50330:29;;;;;;;;;;;;50310:49;;50383:15;:24;50399:7;50383:24;;;;;;;;;;;50368:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49665:750;;;;;;;;;:::o;26742:134::-;26829:39;26846:4;26852:2;26856:7;26829:39;;;;;;;;;;;;:16;:39::i;:::-;26742:134;;;:::o;37998:199::-;38056:7;38092:13;:11;:13::i;:::-;38084:5;:21;38076:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38172:10;38183:5;38172:17;;;;;;;;;;;;;;;;38165:24;;37998:199;;;:::o;22728:228::-;22783:7;22803:13;22819:11;:20;22831:7;22819:20;;;;;;;;;;;;;;;;;;;;;22803:36;;22875:1;22858:19;;:5;:19;;;;22850:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22943:5;22936:12;;;22728:228;;;:::o;22291:211::-;22346:7;22391:1;22374:19;;:5;:19;;;;22366:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22460:34;:17;:24;22478:5;22460:24;;;;;;;;;;;;;;;:32;:34::i;:::-;22453:41;;22291:211;;;:::o;2857:140::-;2258:9;:7;:9::i;:::-;2250:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2956:1;2919:40;;2940:6;;;;;;;;;;;2919:40;;;;;;;;;;;;2987:1;2970:6;;:19;;;;;;;;;;;;;;;;;;2857:140::o;48014:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51625:1233::-;2258:9;:7;:9::i;:::-;2250:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51898:7;51908:1;51898:11;;51893:952;51916:8;51911:1;:13;;;51893:952;;51977:1;51960:14;;:18;51943:14;:35;;;;52029:12;51991:19;:35;52011:14;;51991:35;;;;;;;;;;;:50;;;;;;;;;;;;:::i;:::-;;52089:15;52048:22;:38;52071:14;;52048:38;;;;;;;;;;;:56;;;;;;;;;;;;:::i;:::-;;52145:8;52111:15;:31;52127:14;;52111:31;;;;;;;;;;;:42;;;;;;;;;;;;:::i;:::-;;52200:10;52164:17;:33;52182:14;;52164:33;;;;;;;;;;;:46;;;;;;;;;;;;:::i;:::-;;52256:10;52220:17;:33;52238:14;;52220:33;;;;;;;;;;;:46;;;;;;;;;;;;:::i;:::-;;52309:10;52273:17;:33;52291:14;;52273:33;;;;;;;;;;;:46;;;;52365:13;52326:20;:36;52347:14;;52326:36;;;;;;;;;;;;:52;;;;;;;;;;;;;;;;;;52424:1;52385:40;;:20;:36;52406:14;;52385:36;;;;;;;;;;;:40;;;;52471:8;52432:20;:36;52453:14;;52432:36;;;;;;;;;;;:47;;;;52520:8;52486:15;:31;52502:14;;52486:31;;;;;;;;;;;:42;;;;;;;;;;;;:::i;:::-;;52541:16;:14;:16::i;:::-;52575:87;52590:14;;52606:8;52616:10;52628;52640:1;52643:8;52653;52575:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;52575:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;52575:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;52575:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;52575:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52674:62;52690:14;;52706:12;52720:15;52674:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;52674:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;52674:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52748:83;52766:14;;52782:10;52794:20;:36;52815:14;;52794:36;;;;;;;;;;;;;;;;;;;;;52748:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51926:3;;;;;;;51893:952;;;;51625:1233;;;;;;;;;:::o;48052:39::-;;;;:::o;47893:29::-;;;;:::o;2046:79::-;2084:7;2111:6;;;;;;;;;;;2104:13;;2046:79;:::o;2412:94::-;2452:4;2492:6;;;;;;;;;;;2476:22;;:12;:10;:12::i;:::-;:22;;;2469:29;;2412:94;:::o;45912:89::-;45953:13;45986:7;45979:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45912:89;:::o;50670:336::-;50730:25;50757:28;50836:20;50858:19;:28;50878:7;50858:28;;;;;;;;;;;50819:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;50819:68:0;;;50798:90;;50940:23;50965:22;:31;50988:7;50965:31;;;;;;;;;;;50923:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;50923:74:0;;;50899:99;;50670:336;;;:::o;24610:254::-;24696:12;:10;:12::i;:::-;24690:18;;:2;:18;;;;24682:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24790:8;24751:18;:32;24770:12;:10;:12::i;:::-;24751:32;;;;;;;;;;;;;;;:36;24784:2;24751:36;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;24843:2;24814:42;;24829:12;:10;:12::i;:::-;24814:42;;;24847:8;24814:42;;;;;;;;;;;;;;;;;;;;;;24610:254;;:::o;50427:231::-;50489:25;50516:22;50569:20;:29;50590:7;50569:29;;;;;;;;;;;;;;;;;;;;;50549:49;;50624:17;:26;50642:7;50624:26;;;;;;;;;;;;50607:43;;50427:231;;;:::o;27613:272::-;27728:41;27747:12;:10;:12::i;:::-;27761:7;27728:18;:41::i;:::-;27720:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27834:43;27852:4;27858:2;27862:7;27871:5;27834:17;:43::i;:::-;27613:272;;;;:::o;51443:170::-;51510:25;51524:10;51510:9;:13;;:25;;;;:::i;:::-;51502:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51599:6;51579:17;:26;;;;;;;;;;;;:::i;:::-;;51443:170;:::o;53151:168::-;53209:13;53266:17;53285:24;53301:7;53285:15;:24::i;:::-;53249:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;53249:61:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;53249:61:0;;;53235:76;;53151:168;;;:::o;25194:147::-;25274:4;25298:18;:25;25317:5;25298:25;;;;;;;;;;;;;;;:35;25324:8;25298:35;;;;;;;;;;;;;;;;;;;;;;;;;25291:42;;25194:147;;;;:::o;51221:210::-;51303:25;51317:10;51303:9;:13;;:25;;;;:::i;:::-;51295:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51410:13;51384:23;:39;;;;;;;;;;;;:::i;:::-;;51221:210;:::o;3152:109::-;2258:9;:7;:9::i;:::-;2250:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3225:28;3244:8;3225:18;:28::i;:::-;3152:109;:::o;47929:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29078:155::-;29135:4;29152:13;29168:11;:20;29180:7;29168:20;;;;;;;;;;;;;;;;;;;;;29152:36;;29223:1;29206:19;;:5;:19;;;;29199:26;;;29078:155;;;:::o;807:98::-;852:15;887:10;880:17;;807:98;:::o;4386:203::-;4458:4;4502:1;4483:21;;:7;:21;;;;4475:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4561:4;:11;;:20;4573:7;4561:20;;;;;;;;;;;;;;;;;;;;;;;;;4554:27;;4386:203;;;;:::o;29603:333::-;29688:4;29713:16;29721:7;29713;:16::i;:::-;29705:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29789:13;29805:16;29813:7;29805;:16::i;:::-;29789:32;;29851:5;29840:16;;:7;:16;;;:51;;;;29884:7;29860:31;;:20;29872:7;29860:11;:20::i;:::-;:31;;;29840:51;:87;;;;29895:32;29912:5;29919:7;29895:16;:32::i;:::-;29840:87;29832:96;;;29603:333;;;;:::o;38581:245::-;38667:38;38687:4;38693:2;38697:7;38667:19;:38::i;:::-;38718:47;38751:4;38757:7;38718:32;:47::i;:::-;38778:40;38806:2;38810:7;38778:27;:40::i;:::-;38581:245;;;:::o;18013:114::-;18078:7;18105;:14;;;18098:21;;18013:114;;;:::o;52869:270::-;52914:15;52932:14;;52914:32;;52983:19;;52965:14;;:37;;52957:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53095:26;53101:10;53113:7;53095:5;:26::i;:::-;52869:270;:::o;28604:272::-;28714:32;28728:4;28734:2;28738:7;28714:13;:32::i;:::-;28765:48;28788:4;28794:2;28798:7;28807:5;28765:22;:48::i;:::-;28757:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28604:272;;;;:::o;53327:469::-;53392:13;53434:1;53428:2;:7;53424:45;;;53449:10;;;;;;;;;;;;;;;;;;;;;53424:45;53477:6;53486:2;53477:11;;53497:8;53522:61;53534:1;53529;:6;53522:61;;53549:5;;;;;;;53571:2;53566:7;;;;;;;;;53522:61;;;53591:17;53621:3;53611:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;53611:14:0;;;;53591:34;;53634:6;53649:1;53643:3;:7;53634:16;;53667:95;53680:1;53674:2;:7;53667:95;;53728:2;53723;:7;;;;;;53718:2;:12;53707:25;;53695:4;53700:3;;;;;;;53695:9;;;;;;;;;;;:37;;;;;;;;;;;53750:2;53744:8;;;;;;;;;53667:95;;;53784:4;53770:19;;;;;;53327:469;;;;:::o;3367:229::-;3461:1;3441:22;;:8;:22;;;;3433:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3551:8;3522:38;;3543:6;;;;;;;;;;;3522:38;;;;;;;;;;;;3580:8;3571:6;;:17;;;;;;;;;;;;;;;;;;3367:229;:::o;33299:459::-;33413:4;33393:24;;:16;33401:7;33393;:16::i;:::-;:24;;;33385:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33496:1;33482:16;;:2;:16;;;;33474:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33552:23;33567:7;33552:14;:23::i;:::-;33588:35;:17;:23;33606:4;33588:23;;;;;;;;;;;;;;;:33;:35::i;:::-;33634:33;:17;:21;33652:2;33634:21;;;;;;;;;;;;;;;:31;:33::i;:::-;33703:2;33680:11;:20;33692:7;33680:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;33742:7;33738:2;33723:27;;33732:4;33723:27;;;;;;;;;;;;33299:459;;;:::o;41766:1148::-;42032:22;42057:32;42087:1;42057:12;:18;42070:4;42057:18;;;;;;;;;;;;;;;:25;;;;:29;;:32;;;;:::i;:::-;42032:57;;42100:18;42121:17;:26;42139:7;42121:26;;;;;;;;;;;;42100:47;;42268:14;42254:10;:28;42250:328;;42299:19;42321:12;:18;42334:4;42321:18;;;;;;;;;;;;;;;42340:14;42321:34;;;;;;;;;;;;;;;;42299:56;;42405:11;42372:12;:18;42385:4;42372:18;;;;;;;;;;;;;;;42391:10;42372:30;;;;;;;;;;;;;;;:44;;;;42522:10;42489:17;:30;42507:11;42489:30;;;;;;;;;;;:43;;;;42250:328;;42667:12;:18;42680:4;42667:18;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;41766:1148;;;;:::o;40588:186::-;40702:12;:16;40715:2;40702:16;;;;;;;;;;;;;;;:23;;;;40673:17;:26;40691:7;40673:26;;;;;;;;;;;:52;;;;40736:12;:16;40749:2;40736:16;;;;;;;;;;;;;;;40758:7;40736:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;40736:30:0;;;;;;;;;;;;;;;;;;;;;;40588:186;;:::o;39091:202::-;39155:24;39167:2;39171:7;39155:11;:24::i;:::-;39192:40;39220:2;39224:7;39192:27;:40::i;:::-;39245;39277:7;39245:31;:40::i;:::-;39091:202;;:::o;34360:358::-;34482:4;34509:15;:2;:13;;;:15::i;:::-;34504:60;;34548:4;34541:11;;;;34504:60;34576:13;34608:2;34592:36;;;34629:12;:10;:12::i;:::-;34643:4;34649:7;34658:5;34592:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;34592:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34592:72:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34592:72:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34592:72:0;;;;;;;;;;;;;;;;34576:88;;20492:10;34693:16;;34683:26;;;:6;:26;;;;34675:35;;;34360:358;;;;;;;:::o;34886:175::-;34986:1;34950:38;;:15;:24;34966:7;34950:24;;;;;;;;;;;;;;;;;;;;;:38;;;34946:108;;35040:1;35005:15;:24;35021:7;35005:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;34946:108;34886:175;:::o;18234:110::-;18315:21;18334:1;18315:7;:14;;;:18;;:21;;;;:::i;:::-;18298:7;:14;;:38;;;;18234:110;:::o;18135:91::-;18217:1;18199:7;:14;;;:19;;;;;;;;;;;18135:91;:::o;9787:136::-;9845:7;9872:43;9876:1;9879;9872:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;9865:50;;9787:136;;;;:::o;31688:335::-;31774:1;31760:16;;:2;:16;;;;31752:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31833:16;31841:7;31833;:16::i;:::-;31832:17;31824:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31918:2;31895:11;:20;31907:7;31895:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;31931:33;:17;:21;31949:2;31931:21;;;;;;;;;;;;;;;:31;:33::i;:::-;32007:7;32003:2;31982:33;;31999:1;31982:33;;;;;;;;;;;;31688:335;;:::o;40975:164::-;41079:10;:17;;;;41052:15;:24;41068:7;41052:24;;;;;;;;;;;:44;;;;41107:10;41123:7;41107:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;41107:24:0;;;;;;;;;;;;;;;;;;;;;;40975:164;:::o;14475:810::-;14535:4;14988:16;15015:19;15037:66;15015:88;;;;15206:7;15194:20;15182:32;;15246:3;15234:15;;:8;:15;;:42;;;;;15265:11;15253:8;:23;;15234:42;15226:51;;;;14475:810;;;:::o;10260:192::-;10346:7;10379:1;10374;:6;;10382:12;10366:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10366:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10406:9;10422:1;10418;:5;10406:17;;10443:1;10436:8;;;10260:192;;;;;:::o;47726:6080::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3850:178::-;3928:18;3932:4;3938:7;3928:3;:18::i;:::-;3927:19;3919:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4016:4;3993;:11;;:20;4005:7;3993:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;3850:178;;:::o

Swarm Source

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